diff --git a/.eslintignore b/.eslintignore index 2e0ac92741fb37..fd1ac9f8804043 100644 --- a/.eslintignore +++ b/.eslintignore @@ -12,7 +12,7 @@ /packages/material-ui-codemod/src/*/*.test.js /packages/material-ui-icons/src /packages/material-ui-icons/test/fixtures -/packages/material-ui-icons/tpl +/packages/material-ui-icons/templateSvgIcon.js /tmp build node_modules diff --git a/.gitignore b/.gitignore index 485041be7dcbf0..9df1bb8a651ee6 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ /coverage /docs/export /packages/material-ui-codemod/lib +/packages/material-ui-icons/material-design-icons /test/regressions/screenshots /test/selenium-output /tmp diff --git a/docs/src/modules/components/AppFrame.js b/docs/src/modules/components/AppFrame.js index 7857d5da2a45ec..521bc2b12dbb88 100644 --- a/docs/src/modules/components/AppFrame.js +++ b/docs/src/modules/components/AppFrame.js @@ -11,12 +11,12 @@ import Toolbar from '@material-ui/core/Toolbar'; import IconButton from '@material-ui/core/IconButton'; import Tooltip from '@material-ui/core/Tooltip'; import MenuIcon from '@material-ui/icons/Menu'; -import LightbulbOutline from '@material-ui/icons/LightbulbOutline'; -import LightbublFull from '@material-ui/docs/svgIcons/LightbublFull'; +import LightbulbOutlineIcon from '@material-ui/docs/svgIcons/LightbulbOutline'; +import LightbulbFullIcon from '@material-ui/docs/svgIcons/LightbulbFull'; import NProgressBar from '@material-ui/docs/NProgressBar'; import FormatTextdirectionLToR from '@material-ui/icons/FormatTextdirectionLToR'; import FormatTextdirectionRToL from '@material-ui/icons/FormatTextdirectionRToL'; -import Github from '@material-ui/docs/svgIcons/GitHub'; +import GithubIcon from '@material-ui/docs/svgIcons/GitHub'; import AppDrawer from 'docs/src/modules/components/AppDrawer'; import AppSearch from 'docs/src/modules/components/AppSearch'; import Notifications from 'docs/src/modules/components/Notifications'; @@ -152,7 +152,7 @@ class AppFrame extends React.Component { onClick={this.handleTogglePaletteType} aria-labelledby="appbar-theme" > - {uiTheme.paletteType === 'light' ? : } + {uiTheme.paletteType === 'light' ? : } - + diff --git a/docs/src/modules/components/Demo.js b/docs/src/modules/components/Demo.js index 5d5090b365255d..5d152b82dc7113 100644 --- a/docs/src/modules/components/Demo.js +++ b/docs/src/modules/components/Demo.js @@ -6,7 +6,7 @@ import copy from 'clipboard-copy'; import { withStyles } from '@material-ui/core/styles'; import IconButton from '@material-ui/core/IconButton'; import Collapse from '@material-ui/core/Collapse'; -import ModeEditIcon from '@material-ui/icons/ModeEdit'; +import EditIcon from '@material-ui/icons/Edit'; import CodeIcon from '@material-ui/icons/Code'; import Menu from '@material-ui/core/Menu'; import MenuItem from '@material-ui/core/MenuItem'; @@ -226,7 +226,7 @@ class Demo extends React.Component { onClick={this.handleClickCodeSandbox} aria-labelledby={`demo-codesandbox-${index}`} > - + )} diff --git a/docs/src/modules/components/HomeSteps.js b/docs/src/modules/components/HomeSteps.js index 84521dd5bf7c64..a8de92ca3e03df 100644 --- a/docs/src/modules/components/HomeSteps.js +++ b/docs/src/modules/components/HomeSteps.js @@ -6,7 +6,7 @@ import Typography from '@material-ui/core/Typography'; import Grid from '@material-ui/core/Grid'; import Button from '@material-ui/core/Button'; import Divider from '@material-ui/core/Divider'; -import FileDownloadIcon from '@material-ui/icons/FileDownload'; +import FileDownloadIcon from '@material-ui/docs/svgIcons/FileDownload'; import BuildIcon from '@material-ui/icons/Build'; // eslint-disable-line import/no-unresolved import WhatshotIcon from '@material-ui/icons/Whatshot'; import MarkdownElement from '@material-ui/docs/MarkdownElement'; diff --git a/docs/src/pages/demos/buttons/FloatingActionButtonZoom.js b/docs/src/pages/demos/buttons/FloatingActionButtonZoom.js index 5457fe8160018c..61c625d1f62ef9 100644 --- a/docs/src/pages/demos/buttons/FloatingActionButtonZoom.js +++ b/docs/src/pages/demos/buttons/FloatingActionButtonZoom.js @@ -10,7 +10,7 @@ import Typography from '@material-ui/core/Typography'; import Zoom from '@material-ui/core/Zoom'; import Button from '@material-ui/core/Button'; import AddIcon from '@material-ui/icons/Add'; -import EditIcon from '@material-ui/icons/ModeEdit'; +import EditIcon from '@material-ui/icons/Edit'; import UpIcon from '@material-ui/icons/KeyboardArrowUp'; import green from '@material-ui/core/colors/green'; diff --git a/docs/src/pages/demos/buttons/IconLabelButtons.js b/docs/src/pages/demos/buttons/IconLabelButtons.js index 00ebb2cb11f891..b6cd34848b16ac 100644 --- a/docs/src/pages/demos/buttons/IconLabelButtons.js +++ b/docs/src/pages/demos/buttons/IconLabelButtons.js @@ -3,11 +3,11 @@ import PropTypes from 'prop-types'; import classNames from 'classnames'; import Button from '@material-ui/core/Button'; import { withStyles } from '@material-ui/core/styles'; -import Delete from '@material-ui/icons/Delete'; -import FileUpload from '@material-ui/icons/FileUpload'; -import KeyboardVoice from '@material-ui/icons/KeyboardVoice'; +import DeleteIcon from '@material-ui/icons/Delete'; +import CloudUploadIcon from '@material-ui/icons/CloudUpload'; +import KeyboardVoiceICon from '@material-ui/icons/KeyboardVoice'; import Icon from '@material-ui/core/Icon'; -import Save from '@material-ui/icons/Save'; +import SaveIcon from '@material-ui/icons/Save'; const styles = theme => ({ button: { @@ -30,7 +30,7 @@ function IconLabelButtons(props) {
diff --git a/docs/src/pages/lab/speed-dial/OpenIconSpeedDial.js b/docs/src/pages/lab/speed-dial/OpenIconSpeedDial.js index cd42b725909601..bd203fe3a50824 100644 --- a/docs/src/pages/lab/speed-dial/OpenIconSpeedDial.js +++ b/docs/src/pages/lab/speed-dial/OpenIconSpeedDial.js @@ -5,12 +5,12 @@ import Button from '@material-ui/core/Button'; import SpeedDial from '@material-ui/lab/SpeedDial'; import SpeedDialIcon from '@material-ui/lab/SpeedDialIcon'; import SpeedDialAction from '@material-ui/lab/SpeedDialAction'; -import ContentCopyIcon from '@material-ui/icons/ContentCopy'; +import FileCopyIcon from '@material-ui/icons/FileCopyOutlined'; import SaveIcon from '@material-ui/icons/Save'; import PrintIcon from '@material-ui/icons/Print'; import ShareIcon from '@material-ui/icons/Share'; import DeleteIcon from '@material-ui/icons/Delete'; -import EditIcon from '@material-ui/icons/ModeEdit'; +import EditIcon from '@material-ui/icons/Edit'; const styles = theme => ({ root: { @@ -24,7 +24,7 @@ const styles = theme => ({ }); const actions = [ - { icon: , name: 'Copy' }, + { icon: , name: 'Copy' }, { icon: , name: 'Save' }, { icon: , name: 'Print' }, { icon: , name: 'Share' }, diff --git a/docs/src/pages/lab/speed-dial/SpeedDials.js b/docs/src/pages/lab/speed-dial/SpeedDials.js index f296b1d530f2cb..66a9bf392de6ad 100644 --- a/docs/src/pages/lab/speed-dial/SpeedDials.js +++ b/docs/src/pages/lab/speed-dial/SpeedDials.js @@ -5,7 +5,7 @@ import Button from '@material-ui/core/Button'; import SpeedDial from '@material-ui/lab/SpeedDial'; import SpeedDialIcon from '@material-ui/lab/SpeedDialIcon'; import SpeedDialAction from '@material-ui/lab/SpeedDialAction'; -import ContentCopyIcon from '@material-ui/icons/ContentCopy'; +import FileCopyIcon from '@material-ui/icons/FileCopyOutlined'; import SaveIcon from '@material-ui/icons/Save'; import PrintIcon from '@material-ui/icons/Print'; import ShareIcon from '@material-ui/icons/Share'; @@ -23,7 +23,7 @@ const styles = theme => ({ }); const actions = [ - { icon: , name: 'Copy' }, + { icon: , name: 'Copy' }, { icon: , name: 'Save' }, { icon: , name: 'Print' }, { icon: , name: 'Share' }, diff --git a/docs/src/pages/style/icons/SvgMaterialIcons.js b/docs/src/pages/style/icons/SvgMaterialIcons.js index 4948541d93c910..98c399b36a4113 100644 --- a/docs/src/pages/style/icons/SvgMaterialIcons.js +++ b/docs/src/pages/style/icons/SvgMaterialIcons.js @@ -1,8 +1,20 @@ import React from 'react'; import PropTypes from 'prop-types'; -import AlarmIcon from '@material-ui/icons/Alarm'; -import AlarmOffIcon from '@material-ui/icons/AlarmOff'; +import Grid from '@material-ui/core/Grid'; +import Typography from '@material-ui/core/Typography'; +import DeleteIcon from '@material-ui/icons/Delete'; +import DeleteOutlinedIcon from '@material-ui/icons/DeleteOutlined'; +import DeleteRoundedIcon from '@material-ui/icons/DeleteRounded'; +import DeleteTwoToneIcon from '@material-ui/icons/DeleteTwoTone'; +import DeleteSharpIcon from '@material-ui/icons/DeleteSharp'; +import DeleteForeverIcon from '@material-ui/icons/DeleteForever'; +import DeleteForeverOutlinedIcon from '@material-ui/icons/DeleteForeverOutlined'; +import DeleteForeverRoundedIcon from '@material-ui/icons/DeleteForeverRounded'; +import DeleteForeverTwoToneIcon from '@material-ui/icons/DeleteForeverTwoTone'; +import DeleteForeverSharpIcon from '@material-ui/icons/DeleteForeverSharp'; import ThreeDRotationIcon from '@material-ui/icons/ThreeDRotation'; +import FourKIcon from '@material-ui/icons/FourK'; +import ThreeSixtyIcon from '@material-ui/icons/ThreeSixty'; import { withStyles } from '@material-ui/core/styles'; const styles = theme => ({ @@ -11,17 +23,58 @@ const styles = theme => ({ }, icon: { margin: theme.spacing.unit, + fontSize: 32, }, }); function SvgMaterialIcons(props) { const { classes } = props; return ( -
- - - -
+ + + Filled + + + + + + + Outlined + + + + + + + Rounded + + + + + + + Two Tone + + + + + + + Sharp + + + + + + + Edge-cases + + + + + + + ); } diff --git a/docs/src/pages/style/icons/icons.md b/docs/src/pages/style/icons/icons.md index 4a08e8e110af41..a21792fa8710e2 100644 --- a/docs/src/pages/style/icons/icons.md +++ b/docs/src/pages/style/icons/icons.md @@ -33,19 +33,27 @@ Optionally, you can set the icon color using one of the theme color properties: It's interesting to have the building blocks needed to implement custom icons, but what about presets? We provide a separate NPM package, [@material-ui/icons](https://www.npmjs.com/package/@material-ui/icons), -that includes the 900+ official [Material icons](https://material.io/tools/icons/?style=baseline) converted to `SvgIcon` components. +that includes the 1,000+ official [Material icons](https://material.io/tools/icons/?style=baseline) converted to `SvgIcon` components. - + You can use [material.io/tools/icons](https://material.io/tools/icons/?style=baseline) to find a specific icon. When importing an icon, keep in mind that the names of the icons are `PascalCase`, for instance: -- [`alarm`](https://material.io/tools/icons/?icon=alarm&style=baseline) is exposed as `@material-ui/icons/Alarm` -- [`alarm off`](https://material.io/tools/icons/?icon=alarm_off&style=baseline) is exposed as `@material-ui/icons/AlarmOff` - -There is one exception to this rule: -- [`3d_rotation`](https://material.io/tools/icons/?icon=3d_rotation&style=baseline) is exposed as `@material-ui/icons/ThreeDRotation`. +- [`delete`](https://material.io/tools/icons/?icon=delete&style=baseline) is exposed as `@material-ui/icons/Delete` +- [`delete forever`](https://material.io/tools/icons/?icon=delete_forever&style=baseline) is exposed as `@material-ui/icons/DeleteForever` + +For *"themed"* icons, append the theme name to the icon name. For instance with the +- The Outlined [`delete`](https://material.io/tools/icons/?icon=delete&style=outline) icon is exposed as `@material-ui/icons/BuildOutlined` +- The Rounded [`delete`](https://material.io/tools/icons/?icon=delete&style=rounded) icon is exposed as `@material-ui/icons/BuildRounded` +- The Two Tone [`delete`](https://material.io/tools/icons/?icon=delete&style=twotone) icon is exposed as `@material-ui/icons/BuildTwoTone` +- The Sharp [`delete`](https://material.io/tools/icons/?icon=delete&style=sharp) icon is exposed as `@material-ui/icons/BuildSharp` + +There are three exceptions to this rule: +- [`3d_rotation`](https://material.io/tools/icons/?icon=3d_rotation&style=baseline) is exposed as `@material-ui/icons/ThreeDRotation` +- [`4k`](https://material.io/tools/icons/?icon=4k&style=baseline) is exposed as `@material-ui/icons/FourK` +- [`360`](https://material.io/tools/icons/?icon=360&style=baseline) is exposed as `@material-ui/icons/ThreeSixty` {{"demo": "pages/style/icons/SvgMaterialIcons.js"}} diff --git a/packages/material-ui-docs/package.json b/packages/material-ui-docs/package.json index dedc87c9898de3..0c5250ad4b16c0 100644 --- a/packages/material-ui-docs/package.json +++ b/packages/material-ui-docs/package.json @@ -31,7 +31,6 @@ }, "peerDependencies": { "@material-ui/core": "^1.0.0", - "@material-ui/icons": "^1.0.0", "react": "^16.3.0", "react-dom": "^16.3.0" }, diff --git a/packages/material-ui-docs/src/svgIcons/FileDownload.js b/packages/material-ui-docs/src/svgIcons/FileDownload.js new file mode 100644 index 00000000000000..bfda83e1d7ce0b --- /dev/null +++ b/packages/material-ui-docs/src/svgIcons/FileDownload.js @@ -0,0 +1,16 @@ +/* eslint-disable max-len */ + +import React from 'react'; +import SvgIcon from '@material-ui/core/SvgIcon'; + +function FileDownload(props) { + return ( + + + + ); +} + +FileDownload.muiName = 'SvgIcon'; + +export default FileDownload; diff --git a/packages/material-ui-docs/src/svgIcons/LightbublFull.js b/packages/material-ui-docs/src/svgIcons/LightbulbFull.js similarity index 80% rename from packages/material-ui-docs/src/svgIcons/LightbublFull.js rename to packages/material-ui-docs/src/svgIcons/LightbulbFull.js index 695fd6c00aafee..1d1d0aa51814d2 100644 --- a/packages/material-ui-docs/src/svgIcons/LightbublFull.js +++ b/packages/material-ui-docs/src/svgIcons/LightbulbFull.js @@ -3,7 +3,7 @@ import React from 'react'; import SvgIcon from '@material-ui/core/SvgIcon'; -function LightbublFull(props) { +function LightbulbFull(props) { return ( @@ -11,6 +11,6 @@ function LightbublFull(props) { ); } -LightbublFull.muiName = 'SvgIcon'; +LightbulbFull.muiName = 'SvgIcon'; -export default LightbublFull; +export default LightbulbFull; diff --git a/packages/material-ui-docs/src/svgIcons/LightbulbOutline.js b/packages/material-ui-docs/src/svgIcons/LightbulbOutline.js new file mode 100644 index 00000000000000..ff073ff65d4dbd --- /dev/null +++ b/packages/material-ui-docs/src/svgIcons/LightbulbOutline.js @@ -0,0 +1,16 @@ +/* eslint-disable max-len */ + +import React from 'react'; +import SvgIcon from '@material-ui/core/SvgIcon'; + +function LightbulbOutline(props) { + return ( + + + + ); +} + +LightbulbOutline.muiName = 'SvgIcon'; + +export default LightbulbOutline; diff --git a/packages/material-ui-icons/README.md b/packages/material-ui-icons/README.md index bfac7c02eab8ba..c3488879e79aa9 100644 --- a/packages/material-ui-icons/README.md +++ b/packages/material-ui-icons/README.md @@ -1,6 +1,6 @@ # @material-ui/icons -This package provides the Google [Material icons](https://material.io/icons/) packaged as a set of [React](https://facebook.github.io/react/) components. +This package provides the Google [Material icons](https://material.io/tools/icons/) packaged as a set of [React](https://facebook.github.io/react/) components. ## Installation @@ -25,11 +25,15 @@ yarn add @material-ui/core ## Usage -The import path for each Material icon component includes the icon name in PascalCase. There are two versions provided: filled icon and outline icon. Append `Outline` to the icon name to use the outlined version of the icon (i.e., `@material-ui/icons/InfoOutline`) when available, as not all icons are provided with two versions. +The import path for each Material icon component includes the icon name in PascalCase. For example to use the 'access alarm' icon component, import `@material-ui/icons/AccessAlarm`. +For "themed" icons, append the theme name to the icon name, for example `AccessAlarmOutlined`. -Note: One exception is '3d rotation', which is named `ThreeDRotation`. +Note, there are three exceptions: +- '3d rotation' is named `ThreeDRotation` +- '4k' is named `FourK` +- '360' is named `ThreeSixty` ### Examples diff --git a/packages/material-ui-icons/builder.js b/packages/material-ui-icons/builder.js index 3cff859c48bf7e..ad5e9502d0377b 100755 --- a/packages/material-ui-icons/builder.js +++ b/packages/material-ui-icons/builder.js @@ -7,55 +7,109 @@ import rimraf from 'rimraf'; import Mustache from 'mustache'; import glob from 'glob'; import mkdirp from 'mkdirp'; +import SVGO from 'svgo'; const RENAME_FILTER_DEFAULT = './filters/rename/default'; const RENAME_FILTER_MUI = './filters/rename/material-design-icons'; +const svgo = new SVGO({ + plugins: [ + { cleanupAttrs: true }, + { removeDoctype: true }, + { removeXMLProcInst: true }, + { removeComments: true }, + { removeMetadata: true }, + { removeTitle: true }, + { removeDesc: true }, + { removeUselessDefs: true }, + { removeXMLNS: true }, + { removeEditorsNSData: true }, + { removeEmptyAttrs: true }, + { removeHiddenElems: true }, + { removeEmptyText: true }, + { removeEmptyContainers: true }, + { removeViewBox: true }, + { cleanupEnableBackground: true }, + { minifyStyles: true }, + { convertStyleToAttrs: true }, + { convertColors: true }, + { convertPathData: true }, + { convertTransform: true }, + { removeUnknownsAndDefaults: true }, + { removeNonInheritableGroupAttrs: true }, + { removeUselessStrokeAndFill: true }, + { removeUnusedNS: true }, + { cleanupIDs: true }, + { cleanupNumericValues: true }, + { cleanupListOfValues: true }, + { moveElemsAttrsToGroup: true }, + { moveGroupAttrsToElems: true }, + { collapseGroups: true }, + { removeRasterImages: true }, + { mergePaths: true }, + { convertShapeToPath: true }, + { sortAttrs: true }, + { removeDimensions: true }, + { removeAttrs: true }, + { removeElementsByAttr: true }, + { removeStyleElement: true }, + { removeScriptElement: true }, + ], +}); + /** - * Return Pascal-Cased classname. + * Return Pascal-Cased component name. * * @param {string} svgPath * @returns {string} class name */ -function pascalCase(destPath) { +function getComponentName(destPath) { const splitregex = new RegExp(`[${path.sep}-]+`); - let parts = destPath.replace('.js', '').split(splitregex); - parts = parts.map(part => { - return part.charAt(0).toUpperCase() + part.substring(1); - }); - - const className = parts.join(''); + const parts = destPath + .replace('.js', '') + .split(splitregex) + .map(part => { + return part.charAt(0).toUpperCase() + part.substring(1); + }); - return className; + return parts.join(''); } -function getJsxString(svgPath, destPath) { - const className = pascalCase(destPath); - - console.log(` ${className}`); +async function getJsxString(svgPath, destPath, absDestPath) { + const componentName = getComponentName(destPath); + console.log(` ${componentName}`); - const data = fs.readFileSync(svgPath, { - encoding: 'utf8', - }); - const template = fs.readFileSync(path.join(__dirname, 'tpl/SvgIcon.js'), { + const data = fs.readFileSync(svgPath, { encoding: 'utf8' }); + const template = fs.readFileSync(path.join(__dirname, 'templateSvgIcon.js'), { encoding: 'utf8', }); + const result = await svgo.optimize(data); // Extract the paths from the svg string - let paths = data.slice(data.indexOf('>') + 1); - paths = paths.slice(0, -6); // Clean xml paths - paths = paths.replace(/xlink:href="#a"/g, ''); - paths = paths.replace(/xlink:href="#c"/g, ''); - paths = paths.replace(/fill-opacity=/g, 'fillOpacity='); - paths = paths.replace(/\s?fill=".*?"/g, ''); - paths = paths.replace(/"\/>/g, '" />'); - - return Mustache.render(template, { + const paths = result.data + .replace(//g, '') + .replace(/<\?xml[^>]*>/g, '') + .replace(/]*>/g, '') + .replace(/<\/svg>/g, '') + .replace(//g, '') + .replace(/<\/g>/g, '') + .replace(/xlink:href="#a"/g, '') + .replace(/xlink:href="#c"/g, '') + .replace(/xlink:href="#SVGID_[\d]*_"/g, '') + .replace(/fill-opacity=/g, 'fillOpacity=') + .replace(/\s?fill=".*?"/g, '') + .replace(/]*0h24[^>]*>/g, '') + .replace(/]*0H24[^>]*>/g, '') + .replace(/"\/>/g, '" />'); + + const fileString = Mustache.render(template, { paths, - className, + componentName, }); + + fs.writeFileSync(absDestPath, fileString); } /** @@ -67,16 +121,15 @@ function getJsxString(svgPath, destPath) { * * @param {object} options */ -function processFile(svgPath, destPath, options) { +async function processFile(svgPath, destPath, options) { const outputFileDir = path.dirname(path.join(options.outputDir, destPath)); if (!fs.existsSync(outputFileDir)) { console.log(`Making dir: ${outputFileDir}`); mkdirp.sync(outputFileDir); } - const fileString = getJsxString(svgPath, destPath); const absDestPath = path.join(options.outputDir, destPath); - fs.writeFileSync(absDestPath, fileString); + await getJsxString(svgPath, destPath, absDestPath); } /** @@ -84,70 +137,43 @@ function processFile(svgPath, destPath, options) { * @param {object} options */ function processIndex(options) { - const files = glob.sync(path.join(options.outputDir, '*.js')); - const results = []; - files.forEach(jsPath => { - const typename = path.basename(jsPath).replace('.js', ''); - results.push(`export { default as ${typename} } from './${typename}';\n`); - }); - const index = results.join(''); - const absDestPath = path.join(options.outputDir, 'index.js'); - fs.writeFileSync(absDestPath, index); + const index = glob + .sync(path.join(options.outputDir, '*.js')) + .map(file => { + const typename = path.basename(file).replace('.js', ''); + return `export { default as ${typename} } from './${typename}';\n`; + }) + .join(''); + + fs.writeFileSync(path.join(options.outputDir, 'index.js'), index); } -function parseArgs() { - return yargs - .usage("Build JSX components from SVG's.\nUsage: $0") - .demand('output-dir') - .describe('output-dir', 'Directory to output jsx components') - .demand('svg-dir') - .describe('svg-dir', 'SVG directory') - .describe('glob', 'Glob to match inside of --svg-dir. Default **/*.svg') - .describe( - 'inner-path', - '"Reach into" subdirs, since libraries like material-design-icons' + - ' use arbitrary build directories to organize icons' + - ' e.g. "action/svg/production/icon_3d_rotation_24px.svg"', - ) - .describe( - 'file-suffix', - 'Filter only files ending with a suffix (pretty much only for @material-ui/icons)', - ) - .describe( - 'rename-filter', - `Path to JS module used to rename destination filename and path. - Default: ${RENAME_FILTER_DEFAULT}`, - ) - .options('mui-require', { - demand: false, - type: 'string', - describe: `Load material-ui dependencies (SvgIcon) relatively or absolutely. - (absolute|relative). - For material-ui distributions, relative, for anything else, you probably want absolute.`, - }).argv; +async function asyncForEach(array, callback) { + for (let index = 0; index < array.length; index += 1) { + // eslint-disable-next-line no-await-in-loop + await callback(array[index]); + } } -function main(options, callback) { - let originalWrite; // todo, add winston / other logging tool +async function main(options) { + let originalWrite; options.glob = options.glob || '/**/*.svg'; options.innerPath = options.innerPath || ''; options.renameFilter = options.renameFilter || RENAME_FILTER_DEFAULT; + // Disable console.log opt, used for tests if (options.disableLog) { - // disable console.log opt, used for tests. originalWrite = process.stdout.write; process.stdout.write = () => {}; } rimraf.sync(`${options.outputDir}/*.js`); // Clean old files - console.log('** Starting Build'); let renameFilter = options.renameFilter; if (typeof renameFilter === 'string') { - /* eslint-disable global-require, import/no-dynamic-require */ + /* eslint-disable-next-line global-require, import/no-dynamic-require */ renameFilter = require(renameFilter).default; - /* eslint-enable */ } if (typeof renameFilter !== 'function') { throw Error('renameFilter must be a function'); @@ -157,7 +183,7 @@ function main(options, callback) { } const files = glob.sync(path.join(options.svgDir, options.glob)); - files.forEach(svgPath => { + await asyncForEach(files, async svgPath => { const svgPathObj = path.parse(svgPath); const innerPath = path .dirname(svgPath) @@ -165,7 +191,7 @@ function main(options, callback) { .replace(path.relative(process.cwd(), options.svgDir), ''); // for relative dirs const destPath = renameFilter(svgPathObj, innerPath, options); - processFile(svgPath, destPath, options); + await processFile(svgPath, destPath, options); }); processIndex(options); @@ -174,19 +200,36 @@ function main(options, callback) { // bring back stdout process.stdout.write = originalWrite; } - - if (callback) { - callback(); - } } if (require.main === module) { - const argv = parseArgs(); + const argv = yargs + .usage("Build JSX components from SVG's.\nUsage: $0") + .demand('output-dir') + .describe('output-dir', 'Directory to output jsx components') + .demand('svg-dir') + .describe('svg-dir', 'SVG directory') + .describe('glob', 'Glob to match inside of --svg-dir. Default **/*.svg') + .describe( + 'inner-path', + '"Reach into" subdirs, since libraries like material-design-icons' + + ' use arbitrary build directories to organize icons' + + ' e.g. "action/svg/production/icon_3d_rotation_24px.svg"', + ) + .describe( + 'file-suffix', + 'Filter only files ending with a suffix (pretty much only for @material-ui/icons)', + ) + .describe( + 'rename-filter', + `Path to JS module used to rename destination filename and path. + Default: ${RENAME_FILTER_DEFAULT}`, + ).argv; main(argv); } export default { - pascalCase, + getComponentName, getJsxString, processFile, processIndex, diff --git a/packages/material-ui-icons/builder.md b/packages/material-ui-icons/builder.md index a2b2c0e2645764..1ac512b45ab48b 100644 --- a/packages/material-ui-icons/builder.md +++ b/packages/material-ui-icons/builder.md @@ -4,24 +4,23 @@ This tool generates Material-UI SvgIcon components for a set of svg icons. ## Running the build -The npm script builds the [material-design-icons](https://github.com/google/material-design-icons) -that are distributed as a standalone package. +The build script downloads and builds the Material Design Icons. ```sh -npm install -npm run build +yarn install +yarn build cd build -npm publish +yarn publish ``` ## Generated folders -The npm build script walks through all of the svg icons in the material-design-icons package - and generates the appropriate `.js` files in the `build` folder, and creates an a `package.json`. +The build script downloads Material Design SVG icons to the `material-design-icons` folder, +generates the appropriate `.js` files in the `build` folder, and creates a `package.json`. ## Advanced usage and Custom builds -`node build.js --help` can be used to pull up options available for building. +`node build.js --help` can be used to display the options available for building. You can build your own SVG icons as well as collections like [game-icons](http://game-icons.net/) through command line options. diff --git a/packages/material-ui-icons/builder.test.js b/packages/material-ui-icons/builder.test.js new file mode 100644 index 00000000000000..eb554ed97d567c --- /dev/null +++ b/packages/material-ui-icons/builder.test.js @@ -0,0 +1,170 @@ +import { assert } from 'chai'; +import fs from 'fs'; +import path from 'path'; +import temp from 'temp'; +import builder from './builder'; + +// Automatically track and cleanup files at exit +temp.track(); + +const DISABLE_LOG = true; + +// To cut down on test time, use fixtures instead of node_modules +// const MUI_ICONS_ROOT = path.join(__dirname, '../node_modules/material-design-icons/'); +const MUI_ICONS_ROOT = path.join(__dirname, './test/fixtures/material-design-icons/'); +const MUI_ICONS_SVG_DIR = path.join(MUI_ICONS_ROOT, 'svg'); + +const GAME_ICONS_ROOT = path.join(__dirname, './test/fixtures/game-icons/'); +const GAME_ICONS_SVG_DIR = path.join(GAME_ICONS_ROOT, 'svg/icons/'); + +describe('builder', () => { + describe('material-design-icons', () => { + it('should have icons to test with', () => { + assert.strictEqual(fs.lstatSync(MUI_ICONS_SVG_DIR).isDirectory(), true); + }); + }); + + describe('#getComponentName', () => { + it('should be a function', () => { + assert.strictEqual(builder.hasOwnProperty('getComponentName'), true); + assert.isFunction(builder.getComponentName); + }); + + it('should change capitalize dashes', () => { + assert.strictEqual(builder.getComponentName('hi-world'), 'HiWorld', true); + }); + + it('should capitalize based on environment path.sep', () => { + assert.strictEqual(builder.getComponentName(`this${path.sep}dir`), 'ThisDir', true); + }); + }); + + describe('#main', () => { + it('should have main', () => { + assert.strictEqual(builder.hasOwnProperty('main'), true); + assert.isFunction(builder.main); + }); + }); + + describe('#getJsxString', () => { + it('should have getJsxString', () => { + assert.strictEqual(builder.hasOwnProperty('getJsxString'), true); + assert.strictEqual(typeof builder.getJsxString === 'function', true); + }); + }); + + describe('#processFile', () => { + it('should be a function', () => { + assert.strictEqual(builder.hasOwnProperty('processFile'), true); + assert.isFunction(builder.processFile); + }); + }); + + describe('#processIndex', () => { + it('should be a function', () => { + assert.strictEqual(builder.hasOwnProperty('processIndex'), true); + assert.isFunction(builder.processIndex); + }); + }); + + describe('--output-dir', () => { + const options = { + svgDir: MUI_ICONS_SVG_DIR, + innerPath: '/svg/production/', + glob: '/**/production/*_24px.svg', + renameFilter: builder.RENAME_FILTER_MUI, + disableLog: DISABLE_LOG, + outputDir: null, + }; + + before(() => { + options.outputDir = temp.mkdirSync(); + }); + + after(() => { + temp.cleanupSync(); + }); + + it('script outputs to directory', async () => { + await builder.main(options); + assert.strictEqual(fs.lstatSync(options.outputDir).isDirectory(), true); + assert.strictEqual(fs.lstatSync(path.join(options.outputDir, 'index.js')).isFile(), true); + }); + }); + + describe('--svg-dir, --innerPath, --fileSuffix', () => { + const options = { + svgDir: GAME_ICONS_SVG_DIR, + glob: '**/*.svg', + innerPath: '/dice/svg/000000/transparent/', + renameFilter: builder.RENAME_FILTER_DEFAULT, + disableLog: DISABLE_LOG, + outputDir: null, + }; + + before(() => { + options.outputDir = temp.mkdirSync(); + }); + + after(() => { + temp.cleanupSync(); + }); + + it('script outputs to directory', async () => { + await builder.main(options); + assert.strictEqual(fs.lstatSync(options.outputDir).isDirectory(), true); + assert.strictEqual( + fs.lstatSync(path.join(options.outputDir, 'delapouite')).isDirectory(), + true, + ); + + const actualFilePath = path.join( + options.outputDir, + 'delapouite', + 'dice', + 'svg', + '000000', + 'transparent', + 'dice-six-faces-four.js', + ); + assert.strictEqual(fs.existsSync(actualFilePath), true); + + const actualFileData = fs.readFileSync(actualFilePath, { encoding: 'utf8' }); + assert.include(actualFileData, "import createSvgIcon from './utils/createSvgIcon'"); + }); + }); + + describe('Template rendering', () => { + const options = { + svgDir: MUI_ICONS_SVG_DIR, + innerPath: '/svg/production/', + glob: '/**/production/*_24px.svg', + renameFilter: builder.RENAME_FILTER_MUI, + disableLog: DISABLE_LOG, + outputDir: null, + }; + + before(() => { + options.outputDir = temp.mkdirSync(); + }); + + after(() => { + temp.cleanupSync(); + }); + + it('should produce the expected output', async () => { + await builder.main(options); + const expectedFilePath = path.join(MUI_ICONS_ROOT, 'expected', 'Accessibility.js'); + const actualFilePath = path.join(options.outputDir, 'Accessibility.js'); + + assert.strictEqual(fs.lstatSync(options.outputDir).isDirectory(), true); + assert.strictEqual(fs.existsSync(expectedFilePath), true); + assert.strictEqual(fs.existsSync(actualFilePath), true); + + const expected = fs.readFileSync(expectedFilePath, { encoding: 'utf8' }); + const actual = fs.readFileSync(actualFilePath, { encoding: 'utf8' }); + + assert.include(actual, expected); + }); + }); +}); diff --git a/packages/material-ui-icons/filters/rename/default.js b/packages/material-ui-icons/filters/rename/default.js index 18e78093c33b4b..346494b4700bbc 100644 --- a/packages/material-ui-icons/filters/rename/default.js +++ b/packages/material-ui-icons/filters/rename/default.js @@ -5,7 +5,7 @@ import path from 'path'; /* * Return path to write file to inside outputDir. * - * @param {object} pathObj + * @param {object} svgPathObj * path objects from path.parse * * @param {string} innerPath @@ -17,8 +17,8 @@ import path from 'path'; * @param {object} options * @return {string} output file dest relative to outputDir */ -function defaultDestRewriter(pathObj: Object, innerPath: string, options: Object) { - let fileName = pathObj.base; +function defaultDestRewriter(svgPathObj: Object, innerPath: string, options: Object) { + let fileName = svgPathObj.base; if (options.fileSuffix) { fileName.replace(options.fileSuffix, '.svg'); } else { diff --git a/packages/material-ui-icons/filters/rename/kebab-case.js b/packages/material-ui-icons/filters/rename/kebab-case.js deleted file mode 100644 index 3d3c6fb8f2a075..00000000000000 --- a/packages/material-ui-icons/filters/rename/kebab-case.js +++ /dev/null @@ -1,31 +0,0 @@ -// @flow - -import path from 'path'; - -/* - * Return path to write file to inside outputDir. - * - * @param {object} pathObj - * path objects from path.parse - * - * @param {string} innerPath - * Path (relative to options.svgDir) to svg file - * e.g. if svgFile was /home/user/icons/path/to/svg/file.svg - * options.svgDir is /home/user/icons/ - * innerPath is path/to/svg - * - * @param {object} options - * @return {string} output file dest relative to outputDir - */ -function kebabDestRewriter(pathObj: Object, innerPath: string, options: Object) { - let fileName = pathObj.base; - if (options.fileSuffix) { - fileName.replace(options.fileSuffix, '.svg'); - } else { - fileName = fileName.replace('.svg', '.js'); - } - fileName = fileName.replace(/_/g, '-'); - return path.join(innerPath, fileName); -} - -export default kebabDestRewriter; diff --git a/packages/material-ui-icons/filters/rename/material-design-icons.js b/packages/material-ui-icons/filters/rename/material-design-icons.js index 6853189391c947..ea91150c2a35b2 100644 --- a/packages/material-ui-icons/filters/rename/material-design-icons.js +++ b/packages/material-ui-icons/filters/rename/material-design-icons.js @@ -1,17 +1,25 @@ // @flow -function myDestRewriter(pathObj: Object) { - let fileName = pathObj.base; +function myDestRewriter(svgPathObj: Object) { + let fileName = svgPathObj.base; fileName = fileName .replace('_24px.svg', '.js') .slice(3) .replace(/(^.)|(_)(.)/g, (match, p1, p2, p3) => (p1 || p3).toUpperCase()); - if (fileName.indexOf('3d') === 0) { + if (fileName.indexOf('3d_rotation') === 0) { fileName = `ThreeD${fileName.slice(2)}`; } + if (fileName.indexOf('360') === 0) { + fileName = `ThreeSixty${fileName.slice(3)}`; + } + + if (fileName.indexOf('4k') === 0) { + fileName = `FourK${fileName.slice(2)}`; + } + return fileName; } diff --git a/packages/material-ui-icons/package.json b/packages/material-ui-icons/package.json index e223d70c8058f6..8d3cfa2ff79d3d 100644 --- a/packages/material-ui-icons/package.json +++ b/packages/material-ui-icons/package.json @@ -2,7 +2,7 @@ "name": "@material-ui/icons", "private": false, "author": "Material-UI Team", - "version": "1.1.0", + "version": "2.0.0", "description": "Material Design Svg Icons converted to Material-UI React components.", "main": "./src/index.js", "keywords": [ @@ -23,16 +23,17 @@ "homepage": "https://github.com/mui-org/material-ui/tree/master/packages/material-ui-icons", "scripts": { "test": "yarn test:unit", - "test:unit": "cd ../../ && ./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/mocha packages/material-ui-icons/test/index.test.js", + "test:unit": "cd ../../ && ./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/mocha packages/material-ui-icons/{,**/}*.test.js", "test:watch": "yarn test:unit --watch", + "download": "../../node_modules/.bin/babel-node ./scripts/download.js", + "src:icons": "../../node_modules/.bin/babel-node ./builder.js --output-dir ./src --svg-dir ./material-design-icons --glob '/**/*_24px.svg' --renameFilter ./filters/rename/material-design-icons.js", "prebuild": "../../node_modules/.bin/rimraf build", - "src:icons": "../../node_modules/.bin/babel-node ./builder.js --output-dir ./src --svg-dir ../../node_modules/material-design-icons --glob '/**/production/*_24px.svg' --renameFilter ./filters/rename/material-design-icons.js", "build:es2015": "../../node_modules/.bin/cross-env NODE_ENV=production ../../node_modules/.bin/babel ./src --out-dir ./build", "build:es2015modules": "../../node_modules/.bin/cross-env NODE_ENV=production BABEL_ENV=modules ../../node_modules/.bin/babel ./src/index.js --out-file ./build/index.es.js", "build:es": "../../node_modules/.bin/cross-env NODE_ENV=production BABEL_ENV=es ../../node_modules/.bin/babel ./src --out-dir ./build/es", "build:copy-files": "../../node_modules/.bin/babel-node ./scripts/copy-files.js", "build:typings": "../../node_modules/.bin/babel-node ./scripts/create-typings.js", - "build": "yarn src:icons && yarn build:es2015 && yarn build:es2015modules && yarn build:es && yarn build:typings && yarn build:copy-files", + "build": "yarn download && yarn src:icons && yarn build:es2015 && yarn build:es2015modules && yarn build:es && yarn build:typings && yarn build:copy-files", "release": "yarn build && npm publish build" }, "peerDependencies": { @@ -44,9 +45,10 @@ "recompose": "^0.26.0 || ^0.27.0" }, "devDependencies": { - "material-design-icons": "^3.0.0", + "fs-extra": "^6.0.1", "mkdirp": "^0.5.0", "mustache": "^2.0.0", + "svgo": "^1.0.5", "temp": "^0.8.3", "yargs": "^11.0.0" }, diff --git a/packages/material-ui-icons/scripts/download.js b/packages/material-ui-icons/scripts/download.js new file mode 100644 index 00000000000000..c230ca68023089 --- /dev/null +++ b/packages/material-ui-icons/scripts/download.js @@ -0,0 +1,86 @@ +/* eslint-disable no-console */ + +import fse from 'fs-extra'; +import yargs from 'yargs'; +import 'isomorphic-fetch'; + +const themeMap = { + baseline: '', // filled + outline: '_outlined', + round: '_rounded', + twotone: '_two_tone', + sharp: '_sharp', +}; + +// Some icons have different sizes. +const sizes = { + cast_for_education: { + baseline: 48, + }, + domain: { + baseline: 48, + }, + play_circle_filled_white: { + baseline: 48, + }, + settings: { + baseline: 20, + }, + star_rate: { + baseline: 18, + outline: 18, + round: 18, + twotone: 18, + sharp: 18, + }, + weekend: { + baseline: 48, + }, +}; + +async function asyncForEach(array, callback, startAfter = 0) { + for (let index = startAfter; index < array.length; index += 1) { + // eslint-disable-next-line no-await-in-loop + await callback(array[index], index); + } +} + +function downloadIcon(icon, index) { + console.log(`downloadIcon ${index}: ${icon.id}`); + + return Promise.all( + Object.keys(themeMap).map(async theme => { + const size = sizes[icon.id] && sizes[icon.id][theme] ? sizes[icon.id][theme] : 24; + const response = await fetch( + `https://material.io/tools/icons/static/icons/${theme}-${icon.id}-${size}px.svg`, + ); + const SVG = await response.text(); + await fse.writeFile( + `./material-design-icons/ic_${icon.id}${themeMap[theme]}_${size}px.svg`, + SVG, + ); + }), + ); +} + +async function run() { + try { + const argv = yargs + .usage('Download the SVG from material.io/tools/icons') + .describe('start-after', 'Resume at the following index').argv; + console.log('run', argv); + await fse.ensureDir('material-design-icons'); + const response = await fetch('https://material.io/tools/icons/static/data.json'); + const data = await response.json(); + const icons = data.categories.reduce((acc, item) => { + return acc.concat(item.icons); + }, []); + console.log(`${icons.length} icons to download`); + await asyncForEach(icons, downloadIcon, argv.startAfter); + } catch (err) { + console.log('err', err); + throw err; + } +} + +run(); diff --git a/packages/material-ui-icons/src/AcUnitOutlined.js b/packages/material-ui-icons/src/AcUnitOutlined.js new file mode 100644 index 00000000000000..dfde3e6742501c --- /dev/null +++ b/packages/material-ui-icons/src/AcUnitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AcUnitOutlined'); diff --git a/packages/material-ui-icons/src/AcUnitRounded.js b/packages/material-ui-icons/src/AcUnitRounded.js new file mode 100644 index 00000000000000..688a4922b86d60 --- /dev/null +++ b/packages/material-ui-icons/src/AcUnitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AcUnitRounded'); diff --git a/packages/material-ui-icons/src/AcUnitSharp.js b/packages/material-ui-icons/src/AcUnitSharp.js new file mode 100644 index 00000000000000..d7e1f334388a47 --- /dev/null +++ b/packages/material-ui-icons/src/AcUnitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AcUnitSharp'); diff --git a/packages/material-ui-icons/src/AcUnitTwoTone.js b/packages/material-ui-icons/src/AcUnitTwoTone.js new file mode 100644 index 00000000000000..16302f53def53d --- /dev/null +++ b/packages/material-ui-icons/src/AcUnitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AcUnitTwoTone'); diff --git a/packages/material-ui-icons/src/AccessAlarm.js b/packages/material-ui-icons/src/AccessAlarm.js index c7273e96a5d52d..56ecc7eaf57ba4 100644 --- a/packages/material-ui-icons/src/AccessAlarm.js +++ b/packages/material-ui-icons/src/AccessAlarm.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AccessAlarm'); diff --git a/packages/material-ui-icons/src/AccessAlarmOutlined.js b/packages/material-ui-icons/src/AccessAlarmOutlined.js new file mode 100644 index 00000000000000..747faedc2cfbbe --- /dev/null +++ b/packages/material-ui-icons/src/AccessAlarmOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessAlarmOutlined'); diff --git a/packages/material-ui-icons/src/AccessAlarmRounded.js b/packages/material-ui-icons/src/AccessAlarmRounded.js new file mode 100644 index 00000000000000..9787779f776631 --- /dev/null +++ b/packages/material-ui-icons/src/AccessAlarmRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessAlarmRounded'); diff --git a/packages/material-ui-icons/src/AccessAlarmSharp.js b/packages/material-ui-icons/src/AccessAlarmSharp.js new file mode 100644 index 00000000000000..e414918e2e3900 --- /dev/null +++ b/packages/material-ui-icons/src/AccessAlarmSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessAlarmSharp'); diff --git a/packages/material-ui-icons/src/AccessAlarmTwoTone.js b/packages/material-ui-icons/src/AccessAlarmTwoTone.js new file mode 100644 index 00000000000000..8b897406a917d9 --- /dev/null +++ b/packages/material-ui-icons/src/AccessAlarmTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessAlarmTwoTone'); diff --git a/packages/material-ui-icons/src/AccessAlarmsOutlined.js b/packages/material-ui-icons/src/AccessAlarmsOutlined.js new file mode 100644 index 00000000000000..0af56e888ed9d6 --- /dev/null +++ b/packages/material-ui-icons/src/AccessAlarmsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessAlarmsOutlined'); diff --git a/packages/material-ui-icons/src/AccessAlarmsRounded.js b/packages/material-ui-icons/src/AccessAlarmsRounded.js new file mode 100644 index 00000000000000..6191beccd4ddd5 --- /dev/null +++ b/packages/material-ui-icons/src/AccessAlarmsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessAlarmsRounded'); diff --git a/packages/material-ui-icons/src/AccessAlarmsSharp.js b/packages/material-ui-icons/src/AccessAlarmsSharp.js new file mode 100644 index 00000000000000..4b195480441445 --- /dev/null +++ b/packages/material-ui-icons/src/AccessAlarmsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessAlarmsSharp'); diff --git a/packages/material-ui-icons/src/AccessAlarmsTwoTone.js b/packages/material-ui-icons/src/AccessAlarmsTwoTone.js new file mode 100644 index 00000000000000..28ad8efaee6c9e --- /dev/null +++ b/packages/material-ui-icons/src/AccessAlarmsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessAlarmsTwoTone'); diff --git a/packages/material-ui-icons/src/AccessTime.js b/packages/material-ui-icons/src/AccessTime.js index 6c426b4d0f0c51..e30cf947e00ab1 100644 --- a/packages/material-ui-icons/src/AccessTime.js +++ b/packages/material-ui-icons/src/AccessTime.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AccessTime'); diff --git a/packages/material-ui-icons/src/AccessTimeOutlined.js b/packages/material-ui-icons/src/AccessTimeOutlined.js new file mode 100644 index 00000000000000..b8af6db68df416 --- /dev/null +++ b/packages/material-ui-icons/src/AccessTimeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessTimeOutlined'); diff --git a/packages/material-ui-icons/src/AccessTimeRounded.js b/packages/material-ui-icons/src/AccessTimeRounded.js new file mode 100644 index 00000000000000..d62cfe9fd6308d --- /dev/null +++ b/packages/material-ui-icons/src/AccessTimeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessTimeRounded'); diff --git a/packages/material-ui-icons/src/AccessTimeSharp.js b/packages/material-ui-icons/src/AccessTimeSharp.js new file mode 100644 index 00000000000000..59a159df35cdf6 --- /dev/null +++ b/packages/material-ui-icons/src/AccessTimeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessTimeSharp'); diff --git a/packages/material-ui-icons/src/AccessTimeTwoTone.js b/packages/material-ui-icons/src/AccessTimeTwoTone.js new file mode 100644 index 00000000000000..82cbef866241eb --- /dev/null +++ b/packages/material-ui-icons/src/AccessTimeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessTimeTwoTone'); diff --git a/packages/material-ui-icons/src/AccessibilityNew.js b/packages/material-ui-icons/src/AccessibilityNew.js new file mode 100644 index 00000000000000..bcfb7a5f2713df --- /dev/null +++ b/packages/material-ui-icons/src/AccessibilityNew.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibilityNew'); diff --git a/packages/material-ui-icons/src/AccessibilityNewOutlined.js b/packages/material-ui-icons/src/AccessibilityNewOutlined.js new file mode 100644 index 00000000000000..b8a672f422f9d9 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibilityNewOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibilityNewOutlined'); diff --git a/packages/material-ui-icons/src/AccessibilityNewRounded.js b/packages/material-ui-icons/src/AccessibilityNewRounded.js new file mode 100644 index 00000000000000..49440eda70b64f --- /dev/null +++ b/packages/material-ui-icons/src/AccessibilityNewRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibilityNewRounded'); diff --git a/packages/material-ui-icons/src/AccessibilityNewSharp.js b/packages/material-ui-icons/src/AccessibilityNewSharp.js new file mode 100644 index 00000000000000..60cc13a3ba74d0 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibilityNewSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibilityNewSharp'); diff --git a/packages/material-ui-icons/src/AccessibilityNewTwoTone.js b/packages/material-ui-icons/src/AccessibilityNewTwoTone.js new file mode 100644 index 00000000000000..063af6a84b7b2e --- /dev/null +++ b/packages/material-ui-icons/src/AccessibilityNewTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibilityNewTwoTone'); diff --git a/packages/material-ui-icons/src/AccessibilityOutlined.js b/packages/material-ui-icons/src/AccessibilityOutlined.js new file mode 100644 index 00000000000000..5166d8bf1e32db --- /dev/null +++ b/packages/material-ui-icons/src/AccessibilityOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibilityOutlined'); diff --git a/packages/material-ui-icons/src/AccessibilityRounded.js b/packages/material-ui-icons/src/AccessibilityRounded.js new file mode 100644 index 00000000000000..14511a02f5ec3f --- /dev/null +++ b/packages/material-ui-icons/src/AccessibilityRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibilityRounded'); diff --git a/packages/material-ui-icons/src/AccessibilitySharp.js b/packages/material-ui-icons/src/AccessibilitySharp.js new file mode 100644 index 00000000000000..000f3bb6eb8854 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibilitySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibilitySharp'); diff --git a/packages/material-ui-icons/src/AccessibilityTwoTone.js b/packages/material-ui-icons/src/AccessibilityTwoTone.js new file mode 100644 index 00000000000000..558c6abaa82f21 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibilityTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibilityTwoTone'); diff --git a/packages/material-ui-icons/src/Accessible.js b/packages/material-ui-icons/src/Accessible.js index f4be2fced73adf..0a0e9167e62077 100644 --- a/packages/material-ui-icons/src/Accessible.js +++ b/packages/material-ui-icons/src/Accessible.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Accessible'); diff --git a/packages/material-ui-icons/src/AccessibleForward.js b/packages/material-ui-icons/src/AccessibleForward.js new file mode 100644 index 00000000000000..f455c63fe02cb8 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibleForward.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibleForward'); diff --git a/packages/material-ui-icons/src/AccessibleForwardOutlined.js b/packages/material-ui-icons/src/AccessibleForwardOutlined.js new file mode 100644 index 00000000000000..790da8013d3e00 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibleForwardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibleForwardOutlined'); diff --git a/packages/material-ui-icons/src/AccessibleForwardRounded.js b/packages/material-ui-icons/src/AccessibleForwardRounded.js new file mode 100644 index 00000000000000..0aa2d7bc4ed184 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibleForwardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibleForwardRounded'); diff --git a/packages/material-ui-icons/src/AccessibleForwardSharp.js b/packages/material-ui-icons/src/AccessibleForwardSharp.js new file mode 100644 index 00000000000000..717975cf659105 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibleForwardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibleForwardSharp'); diff --git a/packages/material-ui-icons/src/AccessibleForwardTwoTone.js b/packages/material-ui-icons/src/AccessibleForwardTwoTone.js new file mode 100644 index 00000000000000..166fe0a5d81052 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibleForwardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibleForwardTwoTone'); diff --git a/packages/material-ui-icons/src/AccessibleOutlined.js b/packages/material-ui-icons/src/AccessibleOutlined.js new file mode 100644 index 00000000000000..2597e13c9da035 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibleOutlined'); diff --git a/packages/material-ui-icons/src/AccessibleRounded.js b/packages/material-ui-icons/src/AccessibleRounded.js new file mode 100644 index 00000000000000..28419a5af22c61 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibleRounded'); diff --git a/packages/material-ui-icons/src/AccessibleSharp.js b/packages/material-ui-icons/src/AccessibleSharp.js new file mode 100644 index 00000000000000..4de78ba109885b --- /dev/null +++ b/packages/material-ui-icons/src/AccessibleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibleSharp'); diff --git a/packages/material-ui-icons/src/AccessibleTwoTone.js b/packages/material-ui-icons/src/AccessibleTwoTone.js new file mode 100644 index 00000000000000..2a3639b8916348 --- /dev/null +++ b/packages/material-ui-icons/src/AccessibleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccessibleTwoTone'); diff --git a/packages/material-ui-icons/src/AccountBalanceOutlined.js b/packages/material-ui-icons/src/AccountBalanceOutlined.js new file mode 100644 index 00000000000000..827e4c0b6232e7 --- /dev/null +++ b/packages/material-ui-icons/src/AccountBalanceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBalanceOutlined'); diff --git a/packages/material-ui-icons/src/AccountBalanceRounded.js b/packages/material-ui-icons/src/AccountBalanceRounded.js new file mode 100644 index 00000000000000..060dc634ab1a81 --- /dev/null +++ b/packages/material-ui-icons/src/AccountBalanceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBalanceRounded'); diff --git a/packages/material-ui-icons/src/AccountBalanceSharp.js b/packages/material-ui-icons/src/AccountBalanceSharp.js new file mode 100644 index 00000000000000..5ccd5ea9aaee63 --- /dev/null +++ b/packages/material-ui-icons/src/AccountBalanceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBalanceSharp'); diff --git a/packages/material-ui-icons/src/AccountBalanceTwoTone.js b/packages/material-ui-icons/src/AccountBalanceTwoTone.js new file mode 100644 index 00000000000000..37f8336f6a227b --- /dev/null +++ b/packages/material-ui-icons/src/AccountBalanceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBalanceTwoTone'); diff --git a/packages/material-ui-icons/src/AccountBalanceWallet.js b/packages/material-ui-icons/src/AccountBalanceWallet.js index fef10f8f484be6..2155509b3c6f0d 100644 --- a/packages/material-ui-icons/src/AccountBalanceWallet.js +++ b/packages/material-ui-icons/src/AccountBalanceWallet.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AccountBalanceWallet'); diff --git a/packages/material-ui-icons/src/AccountBalanceWalletOutlined.js b/packages/material-ui-icons/src/AccountBalanceWalletOutlined.js new file mode 100644 index 00000000000000..f7d312147c0376 --- /dev/null +++ b/packages/material-ui-icons/src/AccountBalanceWalletOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBalanceWalletOutlined'); diff --git a/packages/material-ui-icons/src/AccountBalanceWalletRounded.js b/packages/material-ui-icons/src/AccountBalanceWalletRounded.js new file mode 100644 index 00000000000000..a29fd93592af8f --- /dev/null +++ b/packages/material-ui-icons/src/AccountBalanceWalletRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBalanceWalletRounded'); diff --git a/packages/material-ui-icons/src/AccountBalanceWalletSharp.js b/packages/material-ui-icons/src/AccountBalanceWalletSharp.js new file mode 100644 index 00000000000000..8280077950f61c --- /dev/null +++ b/packages/material-ui-icons/src/AccountBalanceWalletSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBalanceWalletSharp'); diff --git a/packages/material-ui-icons/src/AccountBalanceWalletTwoTone.js b/packages/material-ui-icons/src/AccountBalanceWalletTwoTone.js new file mode 100644 index 00000000000000..3ea9bdcab0c7e4 --- /dev/null +++ b/packages/material-ui-icons/src/AccountBalanceWalletTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBalanceWalletTwoTone'); diff --git a/packages/material-ui-icons/src/AccountBox.js b/packages/material-ui-icons/src/AccountBox.js index 7797e543b3e618..57df20bf070c2f 100644 --- a/packages/material-ui-icons/src/AccountBox.js +++ b/packages/material-ui-icons/src/AccountBox.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AccountBox'); diff --git a/packages/material-ui-icons/src/AccountBoxOutlined.js b/packages/material-ui-icons/src/AccountBoxOutlined.js new file mode 100644 index 00000000000000..b992f91128babb --- /dev/null +++ b/packages/material-ui-icons/src/AccountBoxOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBoxOutlined'); diff --git a/packages/material-ui-icons/src/AccountBoxRounded.js b/packages/material-ui-icons/src/AccountBoxRounded.js new file mode 100644 index 00000000000000..cef333e4a08648 --- /dev/null +++ b/packages/material-ui-icons/src/AccountBoxRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBoxRounded'); diff --git a/packages/material-ui-icons/src/AccountBoxSharp.js b/packages/material-ui-icons/src/AccountBoxSharp.js new file mode 100644 index 00000000000000..5464b78986059a --- /dev/null +++ b/packages/material-ui-icons/src/AccountBoxSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBoxSharp'); diff --git a/packages/material-ui-icons/src/AccountBoxTwoTone.js b/packages/material-ui-icons/src/AccountBoxTwoTone.js new file mode 100644 index 00000000000000..e49efd654c61e8 --- /dev/null +++ b/packages/material-ui-icons/src/AccountBoxTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountBoxTwoTone'); diff --git a/packages/material-ui-icons/src/AccountCircle.js b/packages/material-ui-icons/src/AccountCircle.js index 00b7b17a6866f4..ac23d0c0882fd7 100644 --- a/packages/material-ui-icons/src/AccountCircle.js +++ b/packages/material-ui-icons/src/AccountCircle.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AccountCircle'); diff --git a/packages/material-ui-icons/src/AccountCircleOutlined.js b/packages/material-ui-icons/src/AccountCircleOutlined.js new file mode 100644 index 00000000000000..a54824a91accd5 --- /dev/null +++ b/packages/material-ui-icons/src/AccountCircleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountCircleOutlined'); diff --git a/packages/material-ui-icons/src/AccountCircleRounded.js b/packages/material-ui-icons/src/AccountCircleRounded.js new file mode 100644 index 00000000000000..c3f8ecbc839716 --- /dev/null +++ b/packages/material-ui-icons/src/AccountCircleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountCircleRounded'); diff --git a/packages/material-ui-icons/src/AccountCircleSharp.js b/packages/material-ui-icons/src/AccountCircleSharp.js new file mode 100644 index 00000000000000..5046bde01d0fd7 --- /dev/null +++ b/packages/material-ui-icons/src/AccountCircleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountCircleSharp'); diff --git a/packages/material-ui-icons/src/AccountCircleTwoTone.js b/packages/material-ui-icons/src/AccountCircleTwoTone.js new file mode 100644 index 00000000000000..78198801dd53c6 --- /dev/null +++ b/packages/material-ui-icons/src/AccountCircleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AccountCircleTwoTone'); diff --git a/packages/material-ui-icons/src/AdbOutlined.js b/packages/material-ui-icons/src/AdbOutlined.js new file mode 100644 index 00000000000000..d91696043e6619 --- /dev/null +++ b/packages/material-ui-icons/src/AdbOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AdbOutlined'); diff --git a/packages/material-ui-icons/src/AdbRounded.js b/packages/material-ui-icons/src/AdbRounded.js new file mode 100644 index 00000000000000..beae931d297286 --- /dev/null +++ b/packages/material-ui-icons/src/AdbRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AdbRounded'); diff --git a/packages/material-ui-icons/src/AdbSharp.js b/packages/material-ui-icons/src/AdbSharp.js new file mode 100644 index 00000000000000..64f04fc21bf925 --- /dev/null +++ b/packages/material-ui-icons/src/AdbSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AdbSharp'); diff --git a/packages/material-ui-icons/src/AdbTwoTone.js b/packages/material-ui-icons/src/AdbTwoTone.js new file mode 100644 index 00000000000000..bbf4aafa3b2d1d --- /dev/null +++ b/packages/material-ui-icons/src/AdbTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AdbTwoTone'); diff --git a/packages/material-ui-icons/src/AddAPhoto.js b/packages/material-ui-icons/src/AddAPhoto.js index 98a84e7029447e..7c0eff6b018cdd 100644 --- a/packages/material-ui-icons/src/AddAPhoto.js +++ b/packages/material-ui-icons/src/AddAPhoto.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AddAPhoto'); diff --git a/packages/material-ui-icons/src/AddAPhotoOutlined.js b/packages/material-ui-icons/src/AddAPhotoOutlined.js new file mode 100644 index 00000000000000..687086b6c4a776 --- /dev/null +++ b/packages/material-ui-icons/src/AddAPhotoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAPhotoOutlined'); diff --git a/packages/material-ui-icons/src/AddAPhotoRounded.js b/packages/material-ui-icons/src/AddAPhotoRounded.js new file mode 100644 index 00000000000000..b6647f4d7a993d --- /dev/null +++ b/packages/material-ui-icons/src/AddAPhotoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAPhotoRounded'); diff --git a/packages/material-ui-icons/src/AddAPhotoSharp.js b/packages/material-ui-icons/src/AddAPhotoSharp.js new file mode 100644 index 00000000000000..911fb8cb238942 --- /dev/null +++ b/packages/material-ui-icons/src/AddAPhotoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAPhotoSharp'); diff --git a/packages/material-ui-icons/src/AddAPhotoTwoTone.js b/packages/material-ui-icons/src/AddAPhotoTwoTone.js new file mode 100644 index 00000000000000..fea2715885cb5a --- /dev/null +++ b/packages/material-ui-icons/src/AddAPhotoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAPhotoTwoTone'); diff --git a/packages/material-ui-icons/src/AddAlarm.js b/packages/material-ui-icons/src/AddAlarm.js index 36c0107060f723..9d193690c96419 100644 --- a/packages/material-ui-icons/src/AddAlarm.js +++ b/packages/material-ui-icons/src/AddAlarm.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AddAlarm'); diff --git a/packages/material-ui-icons/src/AddAlarmOutlined.js b/packages/material-ui-icons/src/AddAlarmOutlined.js new file mode 100644 index 00000000000000..2f502edd8c4e14 --- /dev/null +++ b/packages/material-ui-icons/src/AddAlarmOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAlarmOutlined'); diff --git a/packages/material-ui-icons/src/AddAlarmRounded.js b/packages/material-ui-icons/src/AddAlarmRounded.js new file mode 100644 index 00000000000000..3ff2b231dcebc5 --- /dev/null +++ b/packages/material-ui-icons/src/AddAlarmRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAlarmRounded'); diff --git a/packages/material-ui-icons/src/AddAlarmSharp.js b/packages/material-ui-icons/src/AddAlarmSharp.js new file mode 100644 index 00000000000000..4ca13d469028d6 --- /dev/null +++ b/packages/material-ui-icons/src/AddAlarmSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAlarmSharp'); diff --git a/packages/material-ui-icons/src/AddAlarmTwoTone.js b/packages/material-ui-icons/src/AddAlarmTwoTone.js new file mode 100644 index 00000000000000..bcc74ab82249f6 --- /dev/null +++ b/packages/material-ui-icons/src/AddAlarmTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAlarmTwoTone'); diff --git a/packages/material-ui-icons/src/AddAlert.js b/packages/material-ui-icons/src/AddAlert.js index 0663de91389bf5..532f6a3357345f 100644 --- a/packages/material-ui-icons/src/AddAlert.js +++ b/packages/material-ui-icons/src/AddAlert.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AddAlert'); diff --git a/packages/material-ui-icons/src/AddAlertOutlined.js b/packages/material-ui-icons/src/AddAlertOutlined.js new file mode 100644 index 00000000000000..8f1d3e89292142 --- /dev/null +++ b/packages/material-ui-icons/src/AddAlertOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAlertOutlined'); diff --git a/packages/material-ui-icons/src/AddAlertRounded.js b/packages/material-ui-icons/src/AddAlertRounded.js new file mode 100644 index 00000000000000..be9df34e8a95bf --- /dev/null +++ b/packages/material-ui-icons/src/AddAlertRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAlertRounded'); diff --git a/packages/material-ui-icons/src/AddAlertSharp.js b/packages/material-ui-icons/src/AddAlertSharp.js new file mode 100644 index 00000000000000..45c8e98cdffd3f --- /dev/null +++ b/packages/material-ui-icons/src/AddAlertSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAlertSharp'); diff --git a/packages/material-ui-icons/src/AddAlertTwoTone.js b/packages/material-ui-icons/src/AddAlertTwoTone.js new file mode 100644 index 00000000000000..aaaba777a67725 --- /dev/null +++ b/packages/material-ui-icons/src/AddAlertTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddAlertTwoTone'); diff --git a/packages/material-ui-icons/src/AddBox.js b/packages/material-ui-icons/src/AddBox.js index 9b48a9052529bf..1acc08f07709ad 100644 --- a/packages/material-ui-icons/src/AddBox.js +++ b/packages/material-ui-icons/src/AddBox.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AddBox'); diff --git a/packages/material-ui-icons/src/AddBoxOutlined.js b/packages/material-ui-icons/src/AddBoxOutlined.js new file mode 100644 index 00000000000000..b17ca30d214a12 --- /dev/null +++ b/packages/material-ui-icons/src/AddBoxOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddBoxOutlined'); diff --git a/packages/material-ui-icons/src/AddBoxRounded.js b/packages/material-ui-icons/src/AddBoxRounded.js new file mode 100644 index 00000000000000..69b6e3f76416f8 --- /dev/null +++ b/packages/material-ui-icons/src/AddBoxRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddBoxRounded'); diff --git a/packages/material-ui-icons/src/AddBoxSharp.js b/packages/material-ui-icons/src/AddBoxSharp.js new file mode 100644 index 00000000000000..03bf9d99503763 --- /dev/null +++ b/packages/material-ui-icons/src/AddBoxSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddBoxSharp'); diff --git a/packages/material-ui-icons/src/AddBoxTwoTone.js b/packages/material-ui-icons/src/AddBoxTwoTone.js new file mode 100644 index 00000000000000..32dcfd053e4f79 --- /dev/null +++ b/packages/material-ui-icons/src/AddBoxTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddBoxTwoTone'); diff --git a/packages/material-ui-icons/src/AddCircleOutlineOutlined.js b/packages/material-ui-icons/src/AddCircleOutlineOutlined.js new file mode 100644 index 00000000000000..4260be93b6b95b --- /dev/null +++ b/packages/material-ui-icons/src/AddCircleOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCircleOutlineOutlined'); diff --git a/packages/material-ui-icons/src/AddCircleOutlineRounded.js b/packages/material-ui-icons/src/AddCircleOutlineRounded.js new file mode 100644 index 00000000000000..020c8bea1a76a1 --- /dev/null +++ b/packages/material-ui-icons/src/AddCircleOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCircleOutlineRounded'); diff --git a/packages/material-ui-icons/src/AddCircleOutlineSharp.js b/packages/material-ui-icons/src/AddCircleOutlineSharp.js new file mode 100644 index 00000000000000..0cda5fb9a76046 --- /dev/null +++ b/packages/material-ui-icons/src/AddCircleOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCircleOutlineSharp'); diff --git a/packages/material-ui-icons/src/AddCircleOutlineTwoTone.js b/packages/material-ui-icons/src/AddCircleOutlineTwoTone.js new file mode 100644 index 00000000000000..fb8e31a7f7db04 --- /dev/null +++ b/packages/material-ui-icons/src/AddCircleOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCircleOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/AddCircleOutlined.js b/packages/material-ui-icons/src/AddCircleOutlined.js new file mode 100644 index 00000000000000..f4dabc424d489b --- /dev/null +++ b/packages/material-ui-icons/src/AddCircleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCircleOutlined'); diff --git a/packages/material-ui-icons/src/AddCircleRounded.js b/packages/material-ui-icons/src/AddCircleRounded.js new file mode 100644 index 00000000000000..4361edd235af99 --- /dev/null +++ b/packages/material-ui-icons/src/AddCircleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCircleRounded'); diff --git a/packages/material-ui-icons/src/AddCircleSharp.js b/packages/material-ui-icons/src/AddCircleSharp.js new file mode 100644 index 00000000000000..14bab801e3c6e0 --- /dev/null +++ b/packages/material-ui-icons/src/AddCircleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCircleSharp'); diff --git a/packages/material-ui-icons/src/AddCircleTwoTone.js b/packages/material-ui-icons/src/AddCircleTwoTone.js new file mode 100644 index 00000000000000..3fb03350a656f8 --- /dev/null +++ b/packages/material-ui-icons/src/AddCircleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCircleTwoTone'); diff --git a/packages/material-ui-icons/src/AddComment.js b/packages/material-ui-icons/src/AddComment.js new file mode 100644 index 00000000000000..5e287b6dce5a7a --- /dev/null +++ b/packages/material-ui-icons/src/AddComment.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddComment'); diff --git a/packages/material-ui-icons/src/AddCommentOutlined.js b/packages/material-ui-icons/src/AddCommentOutlined.js new file mode 100644 index 00000000000000..c115c7282fa943 --- /dev/null +++ b/packages/material-ui-icons/src/AddCommentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCommentOutlined'); diff --git a/packages/material-ui-icons/src/AddCommentRounded.js b/packages/material-ui-icons/src/AddCommentRounded.js new file mode 100644 index 00000000000000..283c920605393f --- /dev/null +++ b/packages/material-ui-icons/src/AddCommentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCommentRounded'); diff --git a/packages/material-ui-icons/src/AddCommentSharp.js b/packages/material-ui-icons/src/AddCommentSharp.js new file mode 100644 index 00000000000000..e7af0903fb393f --- /dev/null +++ b/packages/material-ui-icons/src/AddCommentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCommentSharp'); diff --git a/packages/material-ui-icons/src/AddCommentTwoTone.js b/packages/material-ui-icons/src/AddCommentTwoTone.js new file mode 100644 index 00000000000000..0956c74c63dc87 --- /dev/null +++ b/packages/material-ui-icons/src/AddCommentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddCommentTwoTone'); diff --git a/packages/material-ui-icons/src/AddLocationOutlined.js b/packages/material-ui-icons/src/AddLocationOutlined.js new file mode 100644 index 00000000000000..b50d265acd5c5b --- /dev/null +++ b/packages/material-ui-icons/src/AddLocationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddLocationOutlined'); diff --git a/packages/material-ui-icons/src/AddLocationRounded.js b/packages/material-ui-icons/src/AddLocationRounded.js new file mode 100644 index 00000000000000..5283b36fd69ea6 --- /dev/null +++ b/packages/material-ui-icons/src/AddLocationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddLocationRounded'); diff --git a/packages/material-ui-icons/src/AddLocationSharp.js b/packages/material-ui-icons/src/AddLocationSharp.js new file mode 100644 index 00000000000000..ca596b7afc0a56 --- /dev/null +++ b/packages/material-ui-icons/src/AddLocationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddLocationSharp'); diff --git a/packages/material-ui-icons/src/AddLocationTwoTone.js b/packages/material-ui-icons/src/AddLocationTwoTone.js new file mode 100644 index 00000000000000..fb8dbc2402cf6c --- /dev/null +++ b/packages/material-ui-icons/src/AddLocationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddLocationTwoTone'); diff --git a/packages/material-ui-icons/src/FileUpload.js b/packages/material-ui-icons/src/AddOutlined.js similarity index 58% rename from packages/material-ui-icons/src/FileUpload.js rename to packages/material-ui-icons/src/AddOutlined.js index 67ee71425a0c8e..eeacea879c77f8 100644 --- a/packages/material-ui-icons/src/FileUpload.js +++ b/packages/material-ui-icons/src/AddOutlined.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - -, 'FileUpload'); + +, 'AddOutlined'); diff --git a/packages/material-ui-icons/src/AddPhotoAlternate.js b/packages/material-ui-icons/src/AddPhotoAlternate.js new file mode 100644 index 00000000000000..0283a465b9a196 --- /dev/null +++ b/packages/material-ui-icons/src/AddPhotoAlternate.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddPhotoAlternate'); diff --git a/packages/material-ui-icons/src/AddPhotoAlternateOutlined.js b/packages/material-ui-icons/src/AddPhotoAlternateOutlined.js new file mode 100644 index 00000000000000..cad2632a106fd9 --- /dev/null +++ b/packages/material-ui-icons/src/AddPhotoAlternateOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddPhotoAlternateOutlined'); diff --git a/packages/material-ui-icons/src/AddPhotoAlternateRounded.js b/packages/material-ui-icons/src/AddPhotoAlternateRounded.js new file mode 100644 index 00000000000000..d6061283d8674f --- /dev/null +++ b/packages/material-ui-icons/src/AddPhotoAlternateRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddPhotoAlternateRounded'); diff --git a/packages/material-ui-icons/src/AddPhotoAlternateSharp.js b/packages/material-ui-icons/src/AddPhotoAlternateSharp.js new file mode 100644 index 00000000000000..0542c65544339b --- /dev/null +++ b/packages/material-ui-icons/src/AddPhotoAlternateSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddPhotoAlternateSharp'); diff --git a/packages/material-ui-icons/src/AddPhotoAlternateTwoTone.js b/packages/material-ui-icons/src/AddPhotoAlternateTwoTone.js new file mode 100644 index 00000000000000..5797ea580ebaa5 --- /dev/null +++ b/packages/material-ui-icons/src/AddPhotoAlternateTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddPhotoAlternateTwoTone'); diff --git a/packages/material-ui-icons/src/AddRounded.js b/packages/material-ui-icons/src/AddRounded.js new file mode 100644 index 00000000000000..0b5f4134e65ce5 --- /dev/null +++ b/packages/material-ui-icons/src/AddRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddRounded'); diff --git a/packages/material-ui-icons/src/AddSharp.js b/packages/material-ui-icons/src/AddSharp.js new file mode 100644 index 00000000000000..a13eaf8d3e40d8 --- /dev/null +++ b/packages/material-ui-icons/src/AddSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddSharp'); diff --git a/packages/material-ui-icons/src/AddShoppingCartOutlined.js b/packages/material-ui-icons/src/AddShoppingCartOutlined.js new file mode 100644 index 00000000000000..0dfe3090061f55 --- /dev/null +++ b/packages/material-ui-icons/src/AddShoppingCartOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddShoppingCartOutlined'); diff --git a/packages/material-ui-icons/src/AddShoppingCartRounded.js b/packages/material-ui-icons/src/AddShoppingCartRounded.js new file mode 100644 index 00000000000000..5ad19d08571650 --- /dev/null +++ b/packages/material-ui-icons/src/AddShoppingCartRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddShoppingCartRounded'); diff --git a/packages/material-ui-icons/src/AddShoppingCartSharp.js b/packages/material-ui-icons/src/AddShoppingCartSharp.js new file mode 100644 index 00000000000000..d6098f721a2b27 --- /dev/null +++ b/packages/material-ui-icons/src/AddShoppingCartSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddShoppingCartSharp'); diff --git a/packages/material-ui-icons/src/AddShoppingCartTwoTone.js b/packages/material-ui-icons/src/AddShoppingCartTwoTone.js new file mode 100644 index 00000000000000..a4c5ae8f285382 --- /dev/null +++ b/packages/material-ui-icons/src/AddShoppingCartTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddShoppingCartTwoTone'); diff --git a/packages/material-ui-icons/src/AddToHomeScreen.js b/packages/material-ui-icons/src/AddToHomeScreen.js new file mode 100644 index 00000000000000..888e66490e446c --- /dev/null +++ b/packages/material-ui-icons/src/AddToHomeScreen.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToHomeScreen'); diff --git a/packages/material-ui-icons/src/AddToHomeScreenOutlined.js b/packages/material-ui-icons/src/AddToHomeScreenOutlined.js new file mode 100644 index 00000000000000..102fadb318fb42 --- /dev/null +++ b/packages/material-ui-icons/src/AddToHomeScreenOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToHomeScreenOutlined'); diff --git a/packages/material-ui-icons/src/AddToHomeScreenRounded.js b/packages/material-ui-icons/src/AddToHomeScreenRounded.js new file mode 100644 index 00000000000000..0e5ad63e656bad --- /dev/null +++ b/packages/material-ui-icons/src/AddToHomeScreenRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToHomeScreenRounded'); diff --git a/packages/material-ui-icons/src/AddToHomeScreenSharp.js b/packages/material-ui-icons/src/AddToHomeScreenSharp.js new file mode 100644 index 00000000000000..c48fbeeaefb5f3 --- /dev/null +++ b/packages/material-ui-icons/src/AddToHomeScreenSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToHomeScreenSharp'); diff --git a/packages/material-ui-icons/src/AddToHomeScreenTwoTone.js b/packages/material-ui-icons/src/AddToHomeScreenTwoTone.js new file mode 100644 index 00000000000000..dd638b609f7d05 --- /dev/null +++ b/packages/material-ui-icons/src/AddToHomeScreenTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToHomeScreenTwoTone'); diff --git a/packages/material-ui-icons/src/AddToPhotosOutlined.js b/packages/material-ui-icons/src/AddToPhotosOutlined.js new file mode 100644 index 00000000000000..9adfd3c3ee3e2d --- /dev/null +++ b/packages/material-ui-icons/src/AddToPhotosOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToPhotosOutlined'); diff --git a/packages/material-ui-icons/src/AddToPhotosRounded.js b/packages/material-ui-icons/src/AddToPhotosRounded.js new file mode 100644 index 00000000000000..9a058dcb25b382 --- /dev/null +++ b/packages/material-ui-icons/src/AddToPhotosRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToPhotosRounded'); diff --git a/packages/material-ui-icons/src/AddToPhotosSharp.js b/packages/material-ui-icons/src/AddToPhotosSharp.js new file mode 100644 index 00000000000000..51c246f381701c --- /dev/null +++ b/packages/material-ui-icons/src/AddToPhotosSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToPhotosSharp'); diff --git a/packages/material-ui-icons/src/AddToPhotosTwoTone.js b/packages/material-ui-icons/src/AddToPhotosTwoTone.js new file mode 100644 index 00000000000000..3053b4028cf978 --- /dev/null +++ b/packages/material-ui-icons/src/AddToPhotosTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToPhotosTwoTone'); diff --git a/packages/material-ui-icons/src/AddToQueue.js b/packages/material-ui-icons/src/AddToQueue.js index ab8795347f12f1..d546cfb3cabc9c 100644 --- a/packages/material-ui-icons/src/AddToQueue.js +++ b/packages/material-ui-icons/src/AddToQueue.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AddToQueue'); diff --git a/packages/material-ui-icons/src/AddToQueueOutlined.js b/packages/material-ui-icons/src/AddToQueueOutlined.js new file mode 100644 index 00000000000000..06c7631f09eb11 --- /dev/null +++ b/packages/material-ui-icons/src/AddToQueueOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToQueueOutlined'); diff --git a/packages/material-ui-icons/src/AddToQueueRounded.js b/packages/material-ui-icons/src/AddToQueueRounded.js new file mode 100644 index 00000000000000..d38ea559262ffa --- /dev/null +++ b/packages/material-ui-icons/src/AddToQueueRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToQueueRounded'); diff --git a/packages/material-ui-icons/src/AddToQueueSharp.js b/packages/material-ui-icons/src/AddToQueueSharp.js new file mode 100644 index 00000000000000..1b7f95ad7c7aed --- /dev/null +++ b/packages/material-ui-icons/src/AddToQueueSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToQueueSharp'); diff --git a/packages/material-ui-icons/src/AddToQueueTwoTone.js b/packages/material-ui-icons/src/AddToQueueTwoTone.js new file mode 100644 index 00000000000000..bdd481cccf3b7a --- /dev/null +++ b/packages/material-ui-icons/src/AddToQueueTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddToQueueTwoTone'); diff --git a/packages/material-ui-icons/src/AddTwoTone.js b/packages/material-ui-icons/src/AddTwoTone.js new file mode 100644 index 00000000000000..f456d74953fe9e --- /dev/null +++ b/packages/material-ui-icons/src/AddTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AddTwoTone'); diff --git a/packages/material-ui-icons/src/AdjustOutlined.js b/packages/material-ui-icons/src/AdjustOutlined.js new file mode 100644 index 00000000000000..215d56bde343c1 --- /dev/null +++ b/packages/material-ui-icons/src/AdjustOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AdjustOutlined'); diff --git a/packages/material-ui-icons/src/AdjustRounded.js b/packages/material-ui-icons/src/AdjustRounded.js new file mode 100644 index 00000000000000..05a61a4ef249d3 --- /dev/null +++ b/packages/material-ui-icons/src/AdjustRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AdjustRounded'); diff --git a/packages/material-ui-icons/src/AdjustSharp.js b/packages/material-ui-icons/src/AdjustSharp.js new file mode 100644 index 00000000000000..7b7839f666990a --- /dev/null +++ b/packages/material-ui-icons/src/AdjustSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AdjustSharp'); diff --git a/packages/material-ui-icons/src/AdjustTwoTone.js b/packages/material-ui-icons/src/AdjustTwoTone.js new file mode 100644 index 00000000000000..e8d98b6868ca4f --- /dev/null +++ b/packages/material-ui-icons/src/AdjustTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AdjustTwoTone'); diff --git a/packages/material-ui-icons/src/AirlineSeatFlat.js b/packages/material-ui-icons/src/AirlineSeatFlat.js index c37de047a34b16..691a4543d95a94 100644 --- a/packages/material-ui-icons/src/AirlineSeatFlat.js +++ b/packages/material-ui-icons/src/AirlineSeatFlat.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AirlineSeatFlat'); diff --git a/packages/material-ui-icons/src/AirlineSeatFlatAngled.js b/packages/material-ui-icons/src/AirlineSeatFlatAngled.js index c2f8494f347f5b..35abd7f2637dfc 100644 --- a/packages/material-ui-icons/src/AirlineSeatFlatAngled.js +++ b/packages/material-ui-icons/src/AirlineSeatFlatAngled.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AirlineSeatFlatAngled'); diff --git a/packages/material-ui-icons/src/AirlineSeatFlatAngledOutlined.js b/packages/material-ui-icons/src/AirlineSeatFlatAngledOutlined.js new file mode 100644 index 00000000000000..1d54de6b5d179f --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatFlatAngledOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatFlatAngledOutlined'); diff --git a/packages/material-ui-icons/src/AirlineSeatFlatAngledRounded.js b/packages/material-ui-icons/src/AirlineSeatFlatAngledRounded.js new file mode 100644 index 00000000000000..5580ed7e774e7c --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatFlatAngledRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatFlatAngledRounded'); diff --git a/packages/material-ui-icons/src/AirlineSeatFlatAngledSharp.js b/packages/material-ui-icons/src/AirlineSeatFlatAngledSharp.js new file mode 100644 index 00000000000000..873732d7b70d72 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatFlatAngledSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatFlatAngledSharp'); diff --git a/packages/material-ui-icons/src/AirlineSeatFlatAngledTwoTone.js b/packages/material-ui-icons/src/AirlineSeatFlatAngledTwoTone.js new file mode 100644 index 00000000000000..cbb79bf5a38033 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatFlatAngledTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatFlatAngledTwoTone'); diff --git a/packages/material-ui-icons/src/AirlineSeatFlatOutlined.js b/packages/material-ui-icons/src/AirlineSeatFlatOutlined.js new file mode 100644 index 00000000000000..940011580d4e00 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatFlatOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatFlatOutlined'); diff --git a/packages/material-ui-icons/src/AirlineSeatFlatRounded.js b/packages/material-ui-icons/src/AirlineSeatFlatRounded.js new file mode 100644 index 00000000000000..dc5c0f1186115c --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatFlatRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatFlatRounded'); diff --git a/packages/material-ui-icons/src/AirlineSeatFlatSharp.js b/packages/material-ui-icons/src/AirlineSeatFlatSharp.js new file mode 100644 index 00000000000000..3097205e0b2aae --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatFlatSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatFlatSharp'); diff --git a/packages/material-ui-icons/src/AirlineSeatFlatTwoTone.js b/packages/material-ui-icons/src/AirlineSeatFlatTwoTone.js new file mode 100644 index 00000000000000..8532fc0a243de1 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatFlatTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatFlatTwoTone'); diff --git a/packages/material-ui-icons/src/AirlineSeatIndividualSuiteOutlined.js b/packages/material-ui-icons/src/AirlineSeatIndividualSuiteOutlined.js new file mode 100644 index 00000000000000..12183a88b68828 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatIndividualSuiteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatIndividualSuiteOutlined'); diff --git a/packages/material-ui-icons/src/AirlineSeatIndividualSuiteRounded.js b/packages/material-ui-icons/src/AirlineSeatIndividualSuiteRounded.js new file mode 100644 index 00000000000000..ad49f40ecf7f06 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatIndividualSuiteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatIndividualSuiteRounded'); diff --git a/packages/material-ui-icons/src/AirlineSeatIndividualSuiteSharp.js b/packages/material-ui-icons/src/AirlineSeatIndividualSuiteSharp.js new file mode 100644 index 00000000000000..8bb7ce69eca194 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatIndividualSuiteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatIndividualSuiteSharp'); diff --git a/packages/material-ui-icons/src/AirlineSeatIndividualSuiteTwoTone.js b/packages/material-ui-icons/src/AirlineSeatIndividualSuiteTwoTone.js new file mode 100644 index 00000000000000..f2b8285de5f220 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatIndividualSuiteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatIndividualSuiteTwoTone'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomExtra.js b/packages/material-ui-icons/src/AirlineSeatLegroomExtra.js index 009922c26e9bca..6c6536bc1945b3 100644 --- a/packages/material-ui-icons/src/AirlineSeatLegroomExtra.js +++ b/packages/material-ui-icons/src/AirlineSeatLegroomExtra.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AirlineSeatLegroomExtra'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomExtraOutlined.js b/packages/material-ui-icons/src/AirlineSeatLegroomExtraOutlined.js new file mode 100644 index 00000000000000..42558d58a4e847 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomExtraOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomExtraOutlined'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomExtraRounded.js b/packages/material-ui-icons/src/AirlineSeatLegroomExtraRounded.js new file mode 100644 index 00000000000000..12512a9b20a7c7 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomExtraRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomExtraRounded'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomExtraSharp.js b/packages/material-ui-icons/src/AirlineSeatLegroomExtraSharp.js new file mode 100644 index 00000000000000..17b792ec2db1c6 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomExtraSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomExtraSharp'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomExtraTwoTone.js b/packages/material-ui-icons/src/AirlineSeatLegroomExtraTwoTone.js new file mode 100644 index 00000000000000..254c4f0a537cb8 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomExtraTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomExtraTwoTone'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomNormalOutlined.js b/packages/material-ui-icons/src/AirlineSeatLegroomNormalOutlined.js new file mode 100644 index 00000000000000..b86d4023d792a4 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomNormalOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomNormalOutlined'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomNormalRounded.js b/packages/material-ui-icons/src/AirlineSeatLegroomNormalRounded.js new file mode 100644 index 00000000000000..109ea28c4c06e4 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomNormalRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomNormalRounded'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomNormalSharp.js b/packages/material-ui-icons/src/AirlineSeatLegroomNormalSharp.js new file mode 100644 index 00000000000000..abe95799dadb00 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomNormalSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomNormalSharp'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomNormalTwoTone.js b/packages/material-ui-icons/src/AirlineSeatLegroomNormalTwoTone.js new file mode 100644 index 00000000000000..77c871f0d3959b --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomNormalTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomNormalTwoTone'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomReducedOutlined.js b/packages/material-ui-icons/src/AirlineSeatLegroomReducedOutlined.js new file mode 100644 index 00000000000000..f6b9af0fe5666e --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomReducedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomReducedOutlined'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomReducedRounded.js b/packages/material-ui-icons/src/AirlineSeatLegroomReducedRounded.js new file mode 100644 index 00000000000000..6b1889531a1f0e --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomReducedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomReducedRounded'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomReducedSharp.js b/packages/material-ui-icons/src/AirlineSeatLegroomReducedSharp.js new file mode 100644 index 00000000000000..b3006c96942939 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomReducedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomReducedSharp'); diff --git a/packages/material-ui-icons/src/AirlineSeatLegroomReducedTwoTone.js b/packages/material-ui-icons/src/AirlineSeatLegroomReducedTwoTone.js new file mode 100644 index 00000000000000..84078912616424 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatLegroomReducedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatLegroomReducedTwoTone'); diff --git a/packages/material-ui-icons/src/AirlineSeatReclineExtra.js b/packages/material-ui-icons/src/AirlineSeatReclineExtra.js index 16229742e32c19..7f8d5c2d16edb7 100644 --- a/packages/material-ui-icons/src/AirlineSeatReclineExtra.js +++ b/packages/material-ui-icons/src/AirlineSeatReclineExtra.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AirlineSeatReclineExtra'); diff --git a/packages/material-ui-icons/src/AirlineSeatReclineExtraOutlined.js b/packages/material-ui-icons/src/AirlineSeatReclineExtraOutlined.js new file mode 100644 index 00000000000000..648dfcb0d9d336 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatReclineExtraOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatReclineExtraOutlined'); diff --git a/packages/material-ui-icons/src/AirlineSeatReclineExtraRounded.js b/packages/material-ui-icons/src/AirlineSeatReclineExtraRounded.js new file mode 100644 index 00000000000000..c383fddde0bdbe --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatReclineExtraRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatReclineExtraRounded'); diff --git a/packages/material-ui-icons/src/AirlineSeatReclineExtraSharp.js b/packages/material-ui-icons/src/AirlineSeatReclineExtraSharp.js new file mode 100644 index 00000000000000..acc057f61a9db0 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatReclineExtraSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatReclineExtraSharp'); diff --git a/packages/material-ui-icons/src/AirlineSeatReclineExtraTwoTone.js b/packages/material-ui-icons/src/AirlineSeatReclineExtraTwoTone.js new file mode 100644 index 00000000000000..9f1c1e1cbfd4d1 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatReclineExtraTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatReclineExtraTwoTone'); diff --git a/packages/material-ui-icons/src/AirlineSeatReclineNormalOutlined.js b/packages/material-ui-icons/src/AirlineSeatReclineNormalOutlined.js new file mode 100644 index 00000000000000..69c7d0a6a02453 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatReclineNormalOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatReclineNormalOutlined'); diff --git a/packages/material-ui-icons/src/AirlineSeatReclineNormalRounded.js b/packages/material-ui-icons/src/AirlineSeatReclineNormalRounded.js new file mode 100644 index 00000000000000..37b83f0a71013a --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatReclineNormalRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatReclineNormalRounded'); diff --git a/packages/material-ui-icons/src/AirlineSeatReclineNormalSharp.js b/packages/material-ui-icons/src/AirlineSeatReclineNormalSharp.js new file mode 100644 index 00000000000000..03487969ae073d --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatReclineNormalSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatReclineNormalSharp'); diff --git a/packages/material-ui-icons/src/AirlineSeatReclineNormalTwoTone.js b/packages/material-ui-icons/src/AirlineSeatReclineNormalTwoTone.js new file mode 100644 index 00000000000000..19f048e5919460 --- /dev/null +++ b/packages/material-ui-icons/src/AirlineSeatReclineNormalTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirlineSeatReclineNormalTwoTone'); diff --git a/packages/material-ui-icons/src/AirplanemodeActive.js b/packages/material-ui-icons/src/AirplanemodeActive.js index a54728b1df6152..5a1167689ddcfb 100644 --- a/packages/material-ui-icons/src/AirplanemodeActive.js +++ b/packages/material-ui-icons/src/AirplanemodeActive.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AirplanemodeActive'); diff --git a/packages/material-ui-icons/src/AirplanemodeActiveOutlined.js b/packages/material-ui-icons/src/AirplanemodeActiveOutlined.js new file mode 100644 index 00000000000000..05f01eddee4c55 --- /dev/null +++ b/packages/material-ui-icons/src/AirplanemodeActiveOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplanemodeActiveOutlined'); diff --git a/packages/material-ui-icons/src/AirplanemodeActiveRounded.js b/packages/material-ui-icons/src/AirplanemodeActiveRounded.js new file mode 100644 index 00000000000000..207c06274a308d --- /dev/null +++ b/packages/material-ui-icons/src/AirplanemodeActiveRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplanemodeActiveRounded'); diff --git a/packages/material-ui-icons/src/AirplanemodeActiveSharp.js b/packages/material-ui-icons/src/AirplanemodeActiveSharp.js new file mode 100644 index 00000000000000..ed87013c29a85d --- /dev/null +++ b/packages/material-ui-icons/src/AirplanemodeActiveSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplanemodeActiveSharp'); diff --git a/packages/material-ui-icons/src/AirplanemodeActiveTwoTone.js b/packages/material-ui-icons/src/AirplanemodeActiveTwoTone.js new file mode 100644 index 00000000000000..9e4d7557b6206c --- /dev/null +++ b/packages/material-ui-icons/src/AirplanemodeActiveTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplanemodeActiveTwoTone'); diff --git a/packages/material-ui-icons/src/AirplanemodeInactiveOutlined.js b/packages/material-ui-icons/src/AirplanemodeInactiveOutlined.js new file mode 100644 index 00000000000000..04afadd2d950f3 --- /dev/null +++ b/packages/material-ui-icons/src/AirplanemodeInactiveOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplanemodeInactiveOutlined'); diff --git a/packages/material-ui-icons/src/AirplanemodeInactiveRounded.js b/packages/material-ui-icons/src/AirplanemodeInactiveRounded.js new file mode 100644 index 00000000000000..f103ad7ff0b01c --- /dev/null +++ b/packages/material-ui-icons/src/AirplanemodeInactiveRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplanemodeInactiveRounded'); diff --git a/packages/material-ui-icons/src/AirplanemodeInactiveSharp.js b/packages/material-ui-icons/src/AirplanemodeInactiveSharp.js new file mode 100644 index 00000000000000..d740bb9950530f --- /dev/null +++ b/packages/material-ui-icons/src/AirplanemodeInactiveSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplanemodeInactiveSharp'); diff --git a/packages/material-ui-icons/src/AirplanemodeInactiveTwoTone.js b/packages/material-ui-icons/src/AirplanemodeInactiveTwoTone.js new file mode 100644 index 00000000000000..c40e65510a1205 --- /dev/null +++ b/packages/material-ui-icons/src/AirplanemodeInactiveTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplanemodeInactiveTwoTone'); diff --git a/packages/material-ui-icons/src/Airplay.js b/packages/material-ui-icons/src/Airplay.js index da655ba90616d8..92865b128614b4 100644 --- a/packages/material-ui-icons/src/Airplay.js +++ b/packages/material-ui-icons/src/Airplay.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Airplay'); diff --git a/packages/material-ui-icons/src/AirplayOutlined.js b/packages/material-ui-icons/src/AirplayOutlined.js new file mode 100644 index 00000000000000..30932189b3bece --- /dev/null +++ b/packages/material-ui-icons/src/AirplayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplayOutlined'); diff --git a/packages/material-ui-icons/src/AirplayRounded.js b/packages/material-ui-icons/src/AirplayRounded.js new file mode 100644 index 00000000000000..00ce0adde636d1 --- /dev/null +++ b/packages/material-ui-icons/src/AirplayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplayRounded'); diff --git a/packages/material-ui-icons/src/AirplaySharp.js b/packages/material-ui-icons/src/AirplaySharp.js new file mode 100644 index 00000000000000..1c20a05fc952e2 --- /dev/null +++ b/packages/material-ui-icons/src/AirplaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplaySharp'); diff --git a/packages/material-ui-icons/src/AirplayTwoTone.js b/packages/material-ui-icons/src/AirplayTwoTone.js new file mode 100644 index 00000000000000..fff44670bd8011 --- /dev/null +++ b/packages/material-ui-icons/src/AirplayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirplayTwoTone'); diff --git a/packages/material-ui-icons/src/AirportShuttle.js b/packages/material-ui-icons/src/AirportShuttle.js index 3d30c2b69ee1b4..a8d5481e0ad8f3 100644 --- a/packages/material-ui-icons/src/AirportShuttle.js +++ b/packages/material-ui-icons/src/AirportShuttle.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AirportShuttle'); diff --git a/packages/material-ui-icons/src/AirportShuttleOutlined.js b/packages/material-ui-icons/src/AirportShuttleOutlined.js new file mode 100644 index 00000000000000..43811680a0cd8b --- /dev/null +++ b/packages/material-ui-icons/src/AirportShuttleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirportShuttleOutlined'); diff --git a/packages/material-ui-icons/src/AirportShuttleRounded.js b/packages/material-ui-icons/src/AirportShuttleRounded.js new file mode 100644 index 00000000000000..57cf842ef04887 --- /dev/null +++ b/packages/material-ui-icons/src/AirportShuttleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirportShuttleRounded'); diff --git a/packages/material-ui-icons/src/AirportShuttleSharp.js b/packages/material-ui-icons/src/AirportShuttleSharp.js new file mode 100644 index 00000000000000..2a08996b4c9069 --- /dev/null +++ b/packages/material-ui-icons/src/AirportShuttleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirportShuttleSharp'); diff --git a/packages/material-ui-icons/src/AirportShuttleTwoTone.js b/packages/material-ui-icons/src/AirportShuttleTwoTone.js new file mode 100644 index 00000000000000..fcd0d68282572e --- /dev/null +++ b/packages/material-ui-icons/src/AirportShuttleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AirportShuttleTwoTone'); diff --git a/packages/material-ui-icons/src/Alarm.js b/packages/material-ui-icons/src/Alarm.js index f3f64e2bc3fbab..0fe2be49e16340 100644 --- a/packages/material-ui-icons/src/Alarm.js +++ b/packages/material-ui-icons/src/Alarm.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Alarm'); diff --git a/packages/material-ui-icons/src/AlarmAdd.js b/packages/material-ui-icons/src/AlarmAdd.js index 4a39442d6f8303..a81167c67ce70e 100644 --- a/packages/material-ui-icons/src/AlarmAdd.js +++ b/packages/material-ui-icons/src/AlarmAdd.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AlarmAdd'); diff --git a/packages/material-ui-icons/src/AlarmAddOutlined.js b/packages/material-ui-icons/src/AlarmAddOutlined.js new file mode 100644 index 00000000000000..7aa8d8e7efde97 --- /dev/null +++ b/packages/material-ui-icons/src/AlarmAddOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmAddOutlined'); diff --git a/packages/material-ui-icons/src/AlarmAddRounded.js b/packages/material-ui-icons/src/AlarmAddRounded.js new file mode 100644 index 00000000000000..4f0008218752ff --- /dev/null +++ b/packages/material-ui-icons/src/AlarmAddRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmAddRounded'); diff --git a/packages/material-ui-icons/src/AlarmAddSharp.js b/packages/material-ui-icons/src/AlarmAddSharp.js new file mode 100644 index 00000000000000..b588b9290928fd --- /dev/null +++ b/packages/material-ui-icons/src/AlarmAddSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmAddSharp'); diff --git a/packages/material-ui-icons/src/AlarmAddTwoTone.js b/packages/material-ui-icons/src/AlarmAddTwoTone.js new file mode 100644 index 00000000000000..b7c03e0c41a1da --- /dev/null +++ b/packages/material-ui-icons/src/AlarmAddTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmAddTwoTone'); diff --git a/packages/material-ui-icons/src/AlarmOff.js b/packages/material-ui-icons/src/AlarmOff.js index 1f74646b425a55..802d727a674d62 100644 --- a/packages/material-ui-icons/src/AlarmOff.js +++ b/packages/material-ui-icons/src/AlarmOff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AlarmOff'); diff --git a/packages/material-ui-icons/src/AlarmOffOutlined.js b/packages/material-ui-icons/src/AlarmOffOutlined.js new file mode 100644 index 00000000000000..7a7177e0019f3c --- /dev/null +++ b/packages/material-ui-icons/src/AlarmOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmOffOutlined'); diff --git a/packages/material-ui-icons/src/AlarmOffRounded.js b/packages/material-ui-icons/src/AlarmOffRounded.js new file mode 100644 index 00000000000000..f719992c51c811 --- /dev/null +++ b/packages/material-ui-icons/src/AlarmOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmOffRounded'); diff --git a/packages/material-ui-icons/src/AlarmOffSharp.js b/packages/material-ui-icons/src/AlarmOffSharp.js new file mode 100644 index 00000000000000..58066ae7a97be0 --- /dev/null +++ b/packages/material-ui-icons/src/AlarmOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmOffSharp'); diff --git a/packages/material-ui-icons/src/AlarmOffTwoTone.js b/packages/material-ui-icons/src/AlarmOffTwoTone.js new file mode 100644 index 00000000000000..c8b5d73f1c052a --- /dev/null +++ b/packages/material-ui-icons/src/AlarmOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmOffTwoTone'); diff --git a/packages/material-ui-icons/src/AlarmOn.js b/packages/material-ui-icons/src/AlarmOn.js index 25fd3f1ca5dd5e..1193181c7e4bab 100644 --- a/packages/material-ui-icons/src/AlarmOn.js +++ b/packages/material-ui-icons/src/AlarmOn.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AlarmOn'); diff --git a/packages/material-ui-icons/src/AlarmOnOutlined.js b/packages/material-ui-icons/src/AlarmOnOutlined.js new file mode 100644 index 00000000000000..43f2761d38bc70 --- /dev/null +++ b/packages/material-ui-icons/src/AlarmOnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmOnOutlined'); diff --git a/packages/material-ui-icons/src/AlarmOnRounded.js b/packages/material-ui-icons/src/AlarmOnRounded.js new file mode 100644 index 00000000000000..3accccd876cf2f --- /dev/null +++ b/packages/material-ui-icons/src/AlarmOnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmOnRounded'); diff --git a/packages/material-ui-icons/src/AlarmOnSharp.js b/packages/material-ui-icons/src/AlarmOnSharp.js new file mode 100644 index 00000000000000..cfd075edf05e7f --- /dev/null +++ b/packages/material-ui-icons/src/AlarmOnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmOnSharp'); diff --git a/packages/material-ui-icons/src/AlarmOnTwoTone.js b/packages/material-ui-icons/src/AlarmOnTwoTone.js new file mode 100644 index 00000000000000..3404db32724635 --- /dev/null +++ b/packages/material-ui-icons/src/AlarmOnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmOnTwoTone'); diff --git a/packages/material-ui-icons/src/AlarmOutlined.js b/packages/material-ui-icons/src/AlarmOutlined.js new file mode 100644 index 00000000000000..d635d364dcf9b0 --- /dev/null +++ b/packages/material-ui-icons/src/AlarmOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmOutlined'); diff --git a/packages/material-ui-icons/src/AlarmRounded.js b/packages/material-ui-icons/src/AlarmRounded.js new file mode 100644 index 00000000000000..cc577199f096f3 --- /dev/null +++ b/packages/material-ui-icons/src/AlarmRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmRounded'); diff --git a/packages/material-ui-icons/src/AlarmSharp.js b/packages/material-ui-icons/src/AlarmSharp.js new file mode 100644 index 00000000000000..11110a28087c83 --- /dev/null +++ b/packages/material-ui-icons/src/AlarmSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmSharp'); diff --git a/packages/material-ui-icons/src/AlarmTwoTone.js b/packages/material-ui-icons/src/AlarmTwoTone.js new file mode 100644 index 00000000000000..47d0c2d9a380c7 --- /dev/null +++ b/packages/material-ui-icons/src/AlarmTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlarmTwoTone'); diff --git a/packages/material-ui-icons/src/AlbumOutlined.js b/packages/material-ui-icons/src/AlbumOutlined.js new file mode 100644 index 00000000000000..50df081d3f3866 --- /dev/null +++ b/packages/material-ui-icons/src/AlbumOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlbumOutlined'); diff --git a/packages/material-ui-icons/src/AlbumRounded.js b/packages/material-ui-icons/src/AlbumRounded.js new file mode 100644 index 00000000000000..3f0958ec211d24 --- /dev/null +++ b/packages/material-ui-icons/src/AlbumRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlbumRounded'); diff --git a/packages/material-ui-icons/src/AlbumSharp.js b/packages/material-ui-icons/src/AlbumSharp.js new file mode 100644 index 00000000000000..47508609575b7f --- /dev/null +++ b/packages/material-ui-icons/src/AlbumSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlbumSharp'); diff --git a/packages/material-ui-icons/src/AlbumTwoTone.js b/packages/material-ui-icons/src/AlbumTwoTone.js new file mode 100644 index 00000000000000..71095620d14611 --- /dev/null +++ b/packages/material-ui-icons/src/AlbumTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlbumTwoTone'); diff --git a/packages/material-ui-icons/src/AllInbox.js b/packages/material-ui-icons/src/AllInbox.js new file mode 100644 index 00000000000000..4da2c22015b30f --- /dev/null +++ b/packages/material-ui-icons/src/AllInbox.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllInbox'); diff --git a/packages/material-ui-icons/src/AllInboxOutlined.js b/packages/material-ui-icons/src/AllInboxOutlined.js new file mode 100644 index 00000000000000..66ab4588dd4fc3 --- /dev/null +++ b/packages/material-ui-icons/src/AllInboxOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllInboxOutlined'); diff --git a/packages/material-ui-icons/src/AllInboxRounded.js b/packages/material-ui-icons/src/AllInboxRounded.js new file mode 100644 index 00000000000000..0501d309fb2a19 --- /dev/null +++ b/packages/material-ui-icons/src/AllInboxRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllInboxRounded'); diff --git a/packages/material-ui-icons/src/AllInboxSharp.js b/packages/material-ui-icons/src/AllInboxSharp.js new file mode 100644 index 00000000000000..bd562bd937b677 --- /dev/null +++ b/packages/material-ui-icons/src/AllInboxSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllInboxSharp'); diff --git a/packages/material-ui-icons/src/AllInboxTwoTone.js b/packages/material-ui-icons/src/AllInboxTwoTone.js new file mode 100644 index 00000000000000..488ed519629d32 --- /dev/null +++ b/packages/material-ui-icons/src/AllInboxTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllInboxTwoTone'); diff --git a/packages/material-ui-icons/src/AllInclusive.js b/packages/material-ui-icons/src/AllInclusive.js index 392478e02a2a36..a89833bae23b9f 100644 --- a/packages/material-ui-icons/src/AllInclusive.js +++ b/packages/material-ui-icons/src/AllInclusive.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AllInclusive'); diff --git a/packages/material-ui-icons/src/AllInclusiveOutlined.js b/packages/material-ui-icons/src/AllInclusiveOutlined.js new file mode 100644 index 00000000000000..c3429376b62af1 --- /dev/null +++ b/packages/material-ui-icons/src/AllInclusiveOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllInclusiveOutlined'); diff --git a/packages/material-ui-icons/src/AllInclusiveRounded.js b/packages/material-ui-icons/src/AllInclusiveRounded.js new file mode 100644 index 00000000000000..c4c32b02b9f5d3 --- /dev/null +++ b/packages/material-ui-icons/src/AllInclusiveRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllInclusiveRounded'); diff --git a/packages/material-ui-icons/src/AllInclusiveSharp.js b/packages/material-ui-icons/src/AllInclusiveSharp.js new file mode 100644 index 00000000000000..3b801a6471dfd0 --- /dev/null +++ b/packages/material-ui-icons/src/AllInclusiveSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllInclusiveSharp'); diff --git a/packages/material-ui-icons/src/AllInclusiveTwoTone.js b/packages/material-ui-icons/src/AllInclusiveTwoTone.js new file mode 100644 index 00000000000000..1d923d5756eb55 --- /dev/null +++ b/packages/material-ui-icons/src/AllInclusiveTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllInclusiveTwoTone'); diff --git a/packages/material-ui-icons/src/AllOut.js b/packages/material-ui-icons/src/AllOut.js index a9d296b31439ed..2ac31ae6fcaf56 100644 --- a/packages/material-ui-icons/src/AllOut.js +++ b/packages/material-ui-icons/src/AllOut.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AllOut'); diff --git a/packages/material-ui-icons/src/AllOutOutlined.js b/packages/material-ui-icons/src/AllOutOutlined.js new file mode 100644 index 00000000000000..4d2c4f96f4851c --- /dev/null +++ b/packages/material-ui-icons/src/AllOutOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllOutOutlined'); diff --git a/packages/material-ui-icons/src/AllOutRounded.js b/packages/material-ui-icons/src/AllOutRounded.js new file mode 100644 index 00000000000000..13ef365525adb2 --- /dev/null +++ b/packages/material-ui-icons/src/AllOutRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllOutRounded'); diff --git a/packages/material-ui-icons/src/AllOutSharp.js b/packages/material-ui-icons/src/AllOutSharp.js new file mode 100644 index 00000000000000..53a20f111fabe7 --- /dev/null +++ b/packages/material-ui-icons/src/AllOutSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllOutSharp'); diff --git a/packages/material-ui-icons/src/AllOutTwoTone.js b/packages/material-ui-icons/src/AllOutTwoTone.js new file mode 100644 index 00000000000000..da322129cf6bce --- /dev/null +++ b/packages/material-ui-icons/src/AllOutTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AllOutTwoTone'); diff --git a/packages/material-ui-icons/src/AlternateEmail.js b/packages/material-ui-icons/src/AlternateEmail.js new file mode 100644 index 00000000000000..a52ee9b60bede3 --- /dev/null +++ b/packages/material-ui-icons/src/AlternateEmail.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlternateEmail'); diff --git a/packages/material-ui-icons/src/AlternateEmailOutlined.js b/packages/material-ui-icons/src/AlternateEmailOutlined.js new file mode 100644 index 00000000000000..ae9e6aa4c97418 --- /dev/null +++ b/packages/material-ui-icons/src/AlternateEmailOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlternateEmailOutlined'); diff --git a/packages/material-ui-icons/src/AlternateEmailRounded.js b/packages/material-ui-icons/src/AlternateEmailRounded.js new file mode 100644 index 00000000000000..50241d06450c6d --- /dev/null +++ b/packages/material-ui-icons/src/AlternateEmailRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlternateEmailRounded'); diff --git a/packages/material-ui-icons/src/AlternateEmailSharp.js b/packages/material-ui-icons/src/AlternateEmailSharp.js new file mode 100644 index 00000000000000..55bbcda616d63f --- /dev/null +++ b/packages/material-ui-icons/src/AlternateEmailSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlternateEmailSharp'); diff --git a/packages/material-ui-icons/src/AlternateEmailTwoTone.js b/packages/material-ui-icons/src/AlternateEmailTwoTone.js new file mode 100644 index 00000000000000..3584d4921dbaa6 --- /dev/null +++ b/packages/material-ui-icons/src/AlternateEmailTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AlternateEmailTwoTone'); diff --git a/packages/material-ui-icons/src/Android.js b/packages/material-ui-icons/src/Android.js index aceff24bb3605a..61c0f86feda26c 100644 --- a/packages/material-ui-icons/src/Android.js +++ b/packages/material-ui-icons/src/Android.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Android'); diff --git a/packages/material-ui-icons/src/AndroidOutlined.js b/packages/material-ui-icons/src/AndroidOutlined.js new file mode 100644 index 00000000000000..4162a9b4441339 --- /dev/null +++ b/packages/material-ui-icons/src/AndroidOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AndroidOutlined'); diff --git a/packages/material-ui-icons/src/AndroidRounded.js b/packages/material-ui-icons/src/AndroidRounded.js new file mode 100644 index 00000000000000..db599447cb3a45 --- /dev/null +++ b/packages/material-ui-icons/src/AndroidRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AndroidRounded'); diff --git a/packages/material-ui-icons/src/AndroidSharp.js b/packages/material-ui-icons/src/AndroidSharp.js new file mode 100644 index 00000000000000..49c1dc587a5ce2 --- /dev/null +++ b/packages/material-ui-icons/src/AndroidSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AndroidSharp'); diff --git a/packages/material-ui-icons/src/AndroidTwoTone.js b/packages/material-ui-icons/src/AndroidTwoTone.js new file mode 100644 index 00000000000000..81cd1cb65a5028 --- /dev/null +++ b/packages/material-ui-icons/src/AndroidTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AndroidTwoTone'); diff --git a/packages/material-ui-icons/src/AnnouncementOutlined.js b/packages/material-ui-icons/src/AnnouncementOutlined.js new file mode 100644 index 00000000000000..fdd2ffb30b8acf --- /dev/null +++ b/packages/material-ui-icons/src/AnnouncementOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AnnouncementOutlined'); diff --git a/packages/material-ui-icons/src/AnnouncementRounded.js b/packages/material-ui-icons/src/AnnouncementRounded.js new file mode 100644 index 00000000000000..8c1e5c5fd0d602 --- /dev/null +++ b/packages/material-ui-icons/src/AnnouncementRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AnnouncementRounded'); diff --git a/packages/material-ui-icons/src/AnnouncementSharp.js b/packages/material-ui-icons/src/AnnouncementSharp.js new file mode 100644 index 00000000000000..27a258873c8378 --- /dev/null +++ b/packages/material-ui-icons/src/AnnouncementSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AnnouncementSharp'); diff --git a/packages/material-ui-icons/src/AnnouncementTwoTone.js b/packages/material-ui-icons/src/AnnouncementTwoTone.js new file mode 100644 index 00000000000000..3555b27696fe5b --- /dev/null +++ b/packages/material-ui-icons/src/AnnouncementTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AnnouncementTwoTone'); diff --git a/packages/material-ui-icons/src/AppsOutlined.js b/packages/material-ui-icons/src/AppsOutlined.js new file mode 100644 index 00000000000000..201dc41f7116e8 --- /dev/null +++ b/packages/material-ui-icons/src/AppsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AppsOutlined'); diff --git a/packages/material-ui-icons/src/AppsRounded.js b/packages/material-ui-icons/src/AppsRounded.js new file mode 100644 index 00000000000000..c7fe30c6a262ed --- /dev/null +++ b/packages/material-ui-icons/src/AppsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AppsRounded'); diff --git a/packages/material-ui-icons/src/AppsSharp.js b/packages/material-ui-icons/src/AppsSharp.js new file mode 100644 index 00000000000000..73a1b3859e2343 --- /dev/null +++ b/packages/material-ui-icons/src/AppsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AppsSharp'); diff --git a/packages/material-ui-icons/src/AppsTwoTone.js b/packages/material-ui-icons/src/AppsTwoTone.js new file mode 100644 index 00000000000000..82d80d3e29cfe0 --- /dev/null +++ b/packages/material-ui-icons/src/AppsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AppsTwoTone'); diff --git a/packages/material-ui-icons/src/ArchiveOutlined.js b/packages/material-ui-icons/src/ArchiveOutlined.js new file mode 100644 index 00000000000000..a32bf7206dd024 --- /dev/null +++ b/packages/material-ui-icons/src/ArchiveOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArchiveOutlined'); diff --git a/packages/material-ui-icons/src/ArchiveRounded.js b/packages/material-ui-icons/src/ArchiveRounded.js new file mode 100644 index 00000000000000..3956c754b80a3f --- /dev/null +++ b/packages/material-ui-icons/src/ArchiveRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArchiveRounded'); diff --git a/packages/material-ui-icons/src/ArchiveSharp.js b/packages/material-ui-icons/src/ArchiveSharp.js new file mode 100644 index 00000000000000..f119fdcbe10d0e --- /dev/null +++ b/packages/material-ui-icons/src/ArchiveSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArchiveSharp'); diff --git a/packages/material-ui-icons/src/ArchiveTwoTone.js b/packages/material-ui-icons/src/ArchiveTwoTone.js new file mode 100644 index 00000000000000..2455b534b9d948 --- /dev/null +++ b/packages/material-ui-icons/src/ArchiveTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArchiveTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowBackIos.js b/packages/material-ui-icons/src/ArrowBackIos.js new file mode 100644 index 00000000000000..b4f45573e757b9 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowBackIos.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowBackIos'); diff --git a/packages/material-ui-icons/src/ArrowBackIosOutlined.js b/packages/material-ui-icons/src/ArrowBackIosOutlined.js new file mode 100644 index 00000000000000..e5157536cf79f8 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowBackIosOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowBackIosOutlined'); diff --git a/packages/material-ui-icons/src/ArrowBackIosRounded.js b/packages/material-ui-icons/src/ArrowBackIosRounded.js new file mode 100644 index 00000000000000..7cbb1701b63f37 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowBackIosRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowBackIosRounded'); diff --git a/packages/material-ui-icons/src/ArrowBackIosSharp.js b/packages/material-ui-icons/src/ArrowBackIosSharp.js new file mode 100644 index 00000000000000..d266f3d10265fc --- /dev/null +++ b/packages/material-ui-icons/src/ArrowBackIosSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowBackIosSharp'); diff --git a/packages/material-ui-icons/src/ArrowBackIosTwoTone.js b/packages/material-ui-icons/src/ArrowBackIosTwoTone.js new file mode 100644 index 00000000000000..66cc67a4a4d485 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowBackIosTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowBackIosTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowBackOutlined.js b/packages/material-ui-icons/src/ArrowBackOutlined.js new file mode 100644 index 00000000000000..9f8e14bb91d6f8 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowBackOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowBackOutlined'); diff --git a/packages/material-ui-icons/src/ArrowBackRounded.js b/packages/material-ui-icons/src/ArrowBackRounded.js new file mode 100644 index 00000000000000..e82858333f4fa7 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowBackRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowBackRounded'); diff --git a/packages/material-ui-icons/src/ArrowBackSharp.js b/packages/material-ui-icons/src/ArrowBackSharp.js new file mode 100644 index 00000000000000..27032b3c2836f5 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowBackSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowBackSharp'); diff --git a/packages/material-ui-icons/src/ArrowBackTwoTone.js b/packages/material-ui-icons/src/ArrowBackTwoTone.js new file mode 100644 index 00000000000000..ae72db1bc321d7 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowBackTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowBackTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowDownwardOutlined.js b/packages/material-ui-icons/src/ArrowDownwardOutlined.js new file mode 100644 index 00000000000000..319a66e48de841 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDownwardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDownwardOutlined'); diff --git a/packages/material-ui-icons/src/ArrowDownwardRounded.js b/packages/material-ui-icons/src/ArrowDownwardRounded.js new file mode 100644 index 00000000000000..4c218e3180f58e --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDownwardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDownwardRounded'); diff --git a/packages/material-ui-icons/src/ArrowDownwardSharp.js b/packages/material-ui-icons/src/ArrowDownwardSharp.js new file mode 100644 index 00000000000000..0a098ea4237289 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDownwardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDownwardSharp'); diff --git a/packages/material-ui-icons/src/ArrowDownwardTwoTone.js b/packages/material-ui-icons/src/ArrowDownwardTwoTone.js new file mode 100644 index 00000000000000..e826e842f2841c --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDownwardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDownwardTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowDropDownCircleOutlined.js b/packages/material-ui-icons/src/ArrowDropDownCircleOutlined.js new file mode 100644 index 00000000000000..841e9ee570c31b --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropDownCircleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropDownCircleOutlined'); diff --git a/packages/material-ui-icons/src/ArrowDropDownCircleRounded.js b/packages/material-ui-icons/src/ArrowDropDownCircleRounded.js new file mode 100644 index 00000000000000..1327121bbace4d --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropDownCircleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropDownCircleRounded'); diff --git a/packages/material-ui-icons/src/ArrowDropDownCircleSharp.js b/packages/material-ui-icons/src/ArrowDropDownCircleSharp.js new file mode 100644 index 00000000000000..c58c105b649521 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropDownCircleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropDownCircleSharp'); diff --git a/packages/material-ui-icons/src/ArrowDropDownCircleTwoTone.js b/packages/material-ui-icons/src/ArrowDropDownCircleTwoTone.js new file mode 100644 index 00000000000000..8a761a3a7ab15d --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropDownCircleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropDownCircleTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowDropDownOutlined.js b/packages/material-ui-icons/src/ArrowDropDownOutlined.js new file mode 100644 index 00000000000000..5f0b4a5abab7cc --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropDownOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropDownOutlined'); diff --git a/packages/material-ui-icons/src/ArrowDropDownRounded.js b/packages/material-ui-icons/src/ArrowDropDownRounded.js new file mode 100644 index 00000000000000..677d6dddb0ae49 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropDownRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropDownRounded'); diff --git a/packages/material-ui-icons/src/ArrowDropDownSharp.js b/packages/material-ui-icons/src/ArrowDropDownSharp.js new file mode 100644 index 00000000000000..459f80c59505a1 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropDownSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropDownSharp'); diff --git a/packages/material-ui-icons/src/ArrowDropDownTwoTone.js b/packages/material-ui-icons/src/ArrowDropDownTwoTone.js new file mode 100644 index 00000000000000..837b592db82fd1 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropDownTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropDownTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowDropUpOutlined.js b/packages/material-ui-icons/src/ArrowDropUpOutlined.js new file mode 100644 index 00000000000000..11531925af6ff4 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropUpOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropUpOutlined'); diff --git a/packages/material-ui-icons/src/ArrowDropUpRounded.js b/packages/material-ui-icons/src/ArrowDropUpRounded.js new file mode 100644 index 00000000000000..f85f899caa6b74 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropUpRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropUpRounded'); diff --git a/packages/material-ui-icons/src/ArrowDropUpSharp.js b/packages/material-ui-icons/src/ArrowDropUpSharp.js new file mode 100644 index 00000000000000..2f825aa7a0dd61 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropUpSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropUpSharp'); diff --git a/packages/material-ui-icons/src/ArrowDropUpTwoTone.js b/packages/material-ui-icons/src/ArrowDropUpTwoTone.js new file mode 100644 index 00000000000000..68c8ddab6d9e75 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowDropUpTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowDropUpTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowForwardIos.js b/packages/material-ui-icons/src/ArrowForwardIos.js new file mode 100644 index 00000000000000..0c270dac6fa0c7 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowForwardIos.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowForwardIos'); diff --git a/packages/material-ui-icons/src/ArrowForwardIosOutlined.js b/packages/material-ui-icons/src/ArrowForwardIosOutlined.js new file mode 100644 index 00000000000000..7d8fbcae44e517 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowForwardIosOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowForwardIosOutlined'); diff --git a/packages/material-ui-icons/src/ArrowForwardIosRounded.js b/packages/material-ui-icons/src/ArrowForwardIosRounded.js new file mode 100644 index 00000000000000..0a806094a3277d --- /dev/null +++ b/packages/material-ui-icons/src/ArrowForwardIosRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowForwardIosRounded'); diff --git a/packages/material-ui-icons/src/ArrowForwardIosSharp.js b/packages/material-ui-icons/src/ArrowForwardIosSharp.js new file mode 100644 index 00000000000000..b9455bfa9511dd --- /dev/null +++ b/packages/material-ui-icons/src/ArrowForwardIosSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowForwardIosSharp'); diff --git a/packages/material-ui-icons/src/ArrowForwardIosTwoTone.js b/packages/material-ui-icons/src/ArrowForwardIosTwoTone.js new file mode 100644 index 00000000000000..8518190742593c --- /dev/null +++ b/packages/material-ui-icons/src/ArrowForwardIosTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowForwardIosTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowForwardOutlined.js b/packages/material-ui-icons/src/ArrowForwardOutlined.js new file mode 100644 index 00000000000000..3dbaf3f91f514e --- /dev/null +++ b/packages/material-ui-icons/src/ArrowForwardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowForwardOutlined'); diff --git a/packages/material-ui-icons/src/ArrowForwardRounded.js b/packages/material-ui-icons/src/ArrowForwardRounded.js new file mode 100644 index 00000000000000..317e6d3af00ac6 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowForwardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowForwardRounded'); diff --git a/packages/material-ui-icons/src/ArrowForwardSharp.js b/packages/material-ui-icons/src/ArrowForwardSharp.js new file mode 100644 index 00000000000000..12cdc53dd563db --- /dev/null +++ b/packages/material-ui-icons/src/ArrowForwardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowForwardSharp'); diff --git a/packages/material-ui-icons/src/ArrowForwardTwoTone.js b/packages/material-ui-icons/src/ArrowForwardTwoTone.js new file mode 100644 index 00000000000000..61eb0d63d5a278 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowForwardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowForwardTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowLeft.js b/packages/material-ui-icons/src/ArrowLeft.js new file mode 100644 index 00000000000000..e3f049a5fd6039 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowLeft.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowLeft'); diff --git a/packages/material-ui-icons/src/ArrowLeftOutlined.js b/packages/material-ui-icons/src/ArrowLeftOutlined.js new file mode 100644 index 00000000000000..608941253d8c73 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowLeftOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowLeftOutlined'); diff --git a/packages/material-ui-icons/src/ArrowLeftRounded.js b/packages/material-ui-icons/src/ArrowLeftRounded.js new file mode 100644 index 00000000000000..57636a4fd33dfa --- /dev/null +++ b/packages/material-ui-icons/src/ArrowLeftRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowLeftRounded'); diff --git a/packages/material-ui-icons/src/ArrowLeftSharp.js b/packages/material-ui-icons/src/ArrowLeftSharp.js new file mode 100644 index 00000000000000..5a7bbedcb398b5 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowLeftSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowLeftSharp'); diff --git a/packages/material-ui-icons/src/ArrowLeftTwoTone.js b/packages/material-ui-icons/src/ArrowLeftTwoTone.js new file mode 100644 index 00000000000000..6ca46139485672 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowLeftTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowLeftTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowRight.js b/packages/material-ui-icons/src/ArrowRight.js new file mode 100644 index 00000000000000..c469f9c677c9e3 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowRight.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowRight'); diff --git a/packages/material-ui-icons/src/ArrowRightAlt.js b/packages/material-ui-icons/src/ArrowRightAlt.js new file mode 100644 index 00000000000000..17d0c6d46cc8e9 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowRightAlt.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowRightAlt'); diff --git a/packages/material-ui-icons/src/ArrowRightAltOutlined.js b/packages/material-ui-icons/src/ArrowRightAltOutlined.js new file mode 100644 index 00000000000000..c923aa50627d70 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowRightAltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowRightAltOutlined'); diff --git a/packages/material-ui-icons/src/ArrowRightAltRounded.js b/packages/material-ui-icons/src/ArrowRightAltRounded.js new file mode 100644 index 00000000000000..6fcf4bb13e5c29 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowRightAltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowRightAltRounded'); diff --git a/packages/material-ui-icons/src/ArrowRightAltSharp.js b/packages/material-ui-icons/src/ArrowRightAltSharp.js new file mode 100644 index 00000000000000..f91db4306edba8 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowRightAltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowRightAltSharp'); diff --git a/packages/material-ui-icons/src/ArrowRightAltTwoTone.js b/packages/material-ui-icons/src/ArrowRightAltTwoTone.js new file mode 100644 index 00000000000000..dd9005af05f85d --- /dev/null +++ b/packages/material-ui-icons/src/ArrowRightAltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowRightAltTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowRightOutlined.js b/packages/material-ui-icons/src/ArrowRightOutlined.js new file mode 100644 index 00000000000000..dd1cba9818ee14 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowRightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowRightOutlined'); diff --git a/packages/material-ui-icons/src/ArrowRightRounded.js b/packages/material-ui-icons/src/ArrowRightRounded.js new file mode 100644 index 00000000000000..910696ec93be47 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowRightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowRightRounded'); diff --git a/packages/material-ui-icons/src/ArrowRightSharp.js b/packages/material-ui-icons/src/ArrowRightSharp.js new file mode 100644 index 00000000000000..b4f80430c666bb --- /dev/null +++ b/packages/material-ui-icons/src/ArrowRightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowRightSharp'); diff --git a/packages/material-ui-icons/src/ArrowRightTwoTone.js b/packages/material-ui-icons/src/ArrowRightTwoTone.js new file mode 100644 index 00000000000000..841859ae888d99 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowRightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowRightTwoTone'); diff --git a/packages/material-ui-icons/src/ArrowUpwardOutlined.js b/packages/material-ui-icons/src/ArrowUpwardOutlined.js new file mode 100644 index 00000000000000..f5a5f838fcdf71 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowUpwardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowUpwardOutlined'); diff --git a/packages/material-ui-icons/src/ArrowUpwardRounded.js b/packages/material-ui-icons/src/ArrowUpwardRounded.js new file mode 100644 index 00000000000000..fe32c5a0050572 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowUpwardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowUpwardRounded'); diff --git a/packages/material-ui-icons/src/ArrowUpwardSharp.js b/packages/material-ui-icons/src/ArrowUpwardSharp.js new file mode 100644 index 00000000000000..8f0b5dd975fb15 --- /dev/null +++ b/packages/material-ui-icons/src/ArrowUpwardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowUpwardSharp'); diff --git a/packages/material-ui-icons/src/ArrowUpwardTwoTone.js b/packages/material-ui-icons/src/ArrowUpwardTwoTone.js new file mode 100644 index 00000000000000..0948f2d0bc24ab --- /dev/null +++ b/packages/material-ui-icons/src/ArrowUpwardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArrowUpwardTwoTone'); diff --git a/packages/material-ui-icons/src/ArtTrackOutlined.js b/packages/material-ui-icons/src/ArtTrackOutlined.js new file mode 100644 index 00000000000000..85cdfb8a004976 --- /dev/null +++ b/packages/material-ui-icons/src/ArtTrackOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArtTrackOutlined'); diff --git a/packages/material-ui-icons/src/ArtTrackRounded.js b/packages/material-ui-icons/src/ArtTrackRounded.js new file mode 100644 index 00000000000000..6fcfa3a1bdde7b --- /dev/null +++ b/packages/material-ui-icons/src/ArtTrackRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArtTrackRounded'); diff --git a/packages/material-ui-icons/src/ArtTrackSharp.js b/packages/material-ui-icons/src/ArtTrackSharp.js new file mode 100644 index 00000000000000..6133fae55a8c59 --- /dev/null +++ b/packages/material-ui-icons/src/ArtTrackSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArtTrackSharp'); diff --git a/packages/material-ui-icons/src/ArtTrackTwoTone.js b/packages/material-ui-icons/src/ArtTrackTwoTone.js new file mode 100644 index 00000000000000..37752001d03281 --- /dev/null +++ b/packages/material-ui-icons/src/ArtTrackTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ArtTrackTwoTone'); diff --git a/packages/material-ui-icons/src/AspectRatioOutlined.js b/packages/material-ui-icons/src/AspectRatioOutlined.js new file mode 100644 index 00000000000000..3603893ec6f1ed --- /dev/null +++ b/packages/material-ui-icons/src/AspectRatioOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AspectRatioOutlined'); diff --git a/packages/material-ui-icons/src/AspectRatioRounded.js b/packages/material-ui-icons/src/AspectRatioRounded.js new file mode 100644 index 00000000000000..73d9339e52d660 --- /dev/null +++ b/packages/material-ui-icons/src/AspectRatioRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AspectRatioRounded'); diff --git a/packages/material-ui-icons/src/AspectRatioSharp.js b/packages/material-ui-icons/src/AspectRatioSharp.js new file mode 100644 index 00000000000000..26bb35fc9f750d --- /dev/null +++ b/packages/material-ui-icons/src/AspectRatioSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AspectRatioSharp'); diff --git a/packages/material-ui-icons/src/AspectRatioTwoTone.js b/packages/material-ui-icons/src/AspectRatioTwoTone.js new file mode 100644 index 00000000000000..0b141d89536999 --- /dev/null +++ b/packages/material-ui-icons/src/AspectRatioTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AspectRatioTwoTone'); diff --git a/packages/material-ui-icons/src/AssessmentOutlined.js b/packages/material-ui-icons/src/AssessmentOutlined.js new file mode 100644 index 00000000000000..82181b2d1f00e4 --- /dev/null +++ b/packages/material-ui-icons/src/AssessmentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssessmentOutlined'); diff --git a/packages/material-ui-icons/src/AssessmentRounded.js b/packages/material-ui-icons/src/AssessmentRounded.js new file mode 100644 index 00000000000000..77b106685b847e --- /dev/null +++ b/packages/material-ui-icons/src/AssessmentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssessmentRounded'); diff --git a/packages/material-ui-icons/src/AssessmentSharp.js b/packages/material-ui-icons/src/AssessmentSharp.js new file mode 100644 index 00000000000000..856e02b5464a01 --- /dev/null +++ b/packages/material-ui-icons/src/AssessmentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssessmentSharp'); diff --git a/packages/material-ui-icons/src/AssessmentTwoTone.js b/packages/material-ui-icons/src/AssessmentTwoTone.js new file mode 100644 index 00000000000000..907146b5a668ed --- /dev/null +++ b/packages/material-ui-icons/src/AssessmentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssessmentTwoTone'); diff --git a/packages/material-ui-icons/src/AssignmentIndOutlined.js b/packages/material-ui-icons/src/AssignmentIndOutlined.js new file mode 100644 index 00000000000000..58474f9b4ac4bd --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentIndOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentIndOutlined'); diff --git a/packages/material-ui-icons/src/AssignmentIndRounded.js b/packages/material-ui-icons/src/AssignmentIndRounded.js new file mode 100644 index 00000000000000..0de1d1d5906164 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentIndRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentIndRounded'); diff --git a/packages/material-ui-icons/src/AssignmentIndSharp.js b/packages/material-ui-icons/src/AssignmentIndSharp.js new file mode 100644 index 00000000000000..7ca48dc8417a4a --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentIndSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentIndSharp'); diff --git a/packages/material-ui-icons/src/AssignmentIndTwoTone.js b/packages/material-ui-icons/src/AssignmentIndTwoTone.js new file mode 100644 index 00000000000000..616450a6ee98af --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentIndTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentIndTwoTone'); diff --git a/packages/material-ui-icons/src/AssignmentLateOutlined.js b/packages/material-ui-icons/src/AssignmentLateOutlined.js new file mode 100644 index 00000000000000..fb58504e59d1b2 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentLateOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentLateOutlined'); diff --git a/packages/material-ui-icons/src/AssignmentLateRounded.js b/packages/material-ui-icons/src/AssignmentLateRounded.js new file mode 100644 index 00000000000000..c9a8f4d9f999cb --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentLateRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentLateRounded'); diff --git a/packages/material-ui-icons/src/AssignmentLateSharp.js b/packages/material-ui-icons/src/AssignmentLateSharp.js new file mode 100644 index 00000000000000..9cfb7d6a959a58 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentLateSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentLateSharp'); diff --git a/packages/material-ui-icons/src/AssignmentLateTwoTone.js b/packages/material-ui-icons/src/AssignmentLateTwoTone.js new file mode 100644 index 00000000000000..b2da3a11c3d9ce --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentLateTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentLateTwoTone'); diff --git a/packages/material-ui-icons/src/AssignmentOutlined.js b/packages/material-ui-icons/src/AssignmentOutlined.js new file mode 100644 index 00000000000000..e48b09ab32d472 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentOutlined'); diff --git a/packages/material-ui-icons/src/AssignmentReturnOutlined.js b/packages/material-ui-icons/src/AssignmentReturnOutlined.js new file mode 100644 index 00000000000000..f6b24ef42fcb34 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentReturnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentReturnOutlined'); diff --git a/packages/material-ui-icons/src/AssignmentReturnRounded.js b/packages/material-ui-icons/src/AssignmentReturnRounded.js new file mode 100644 index 00000000000000..acecac9d8eb0d6 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentReturnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentReturnRounded'); diff --git a/packages/material-ui-icons/src/AssignmentReturnSharp.js b/packages/material-ui-icons/src/AssignmentReturnSharp.js new file mode 100644 index 00000000000000..62298277b7d4d9 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentReturnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentReturnSharp'); diff --git a/packages/material-ui-icons/src/AssignmentReturnTwoTone.js b/packages/material-ui-icons/src/AssignmentReturnTwoTone.js new file mode 100644 index 00000000000000..507254785a56f3 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentReturnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentReturnTwoTone'); diff --git a/packages/material-ui-icons/src/AssignmentReturnedOutlined.js b/packages/material-ui-icons/src/AssignmentReturnedOutlined.js new file mode 100644 index 00000000000000..a9e62011e2ae29 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentReturnedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentReturnedOutlined'); diff --git a/packages/material-ui-icons/src/AssignmentReturnedRounded.js b/packages/material-ui-icons/src/AssignmentReturnedRounded.js new file mode 100644 index 00000000000000..8fa69a3ee25b10 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentReturnedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentReturnedRounded'); diff --git a/packages/material-ui-icons/src/AssignmentReturnedSharp.js b/packages/material-ui-icons/src/AssignmentReturnedSharp.js new file mode 100644 index 00000000000000..21bc23b0b0bba4 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentReturnedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentReturnedSharp'); diff --git a/packages/material-ui-icons/src/AssignmentReturnedTwoTone.js b/packages/material-ui-icons/src/AssignmentReturnedTwoTone.js new file mode 100644 index 00000000000000..374c6e58246620 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentReturnedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentReturnedTwoTone'); diff --git a/packages/material-ui-icons/src/AssignmentRounded.js b/packages/material-ui-icons/src/AssignmentRounded.js new file mode 100644 index 00000000000000..28fab5e127d8cd --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentRounded'); diff --git a/packages/material-ui-icons/src/AssignmentSharp.js b/packages/material-ui-icons/src/AssignmentSharp.js new file mode 100644 index 00000000000000..caf958b30ad234 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentSharp'); diff --git a/packages/material-ui-icons/src/AssignmentTurnedInOutlined.js b/packages/material-ui-icons/src/AssignmentTurnedInOutlined.js new file mode 100644 index 00000000000000..3a957e89e4354c --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentTurnedInOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentTurnedInOutlined'); diff --git a/packages/material-ui-icons/src/AssignmentTurnedInRounded.js b/packages/material-ui-icons/src/AssignmentTurnedInRounded.js new file mode 100644 index 00000000000000..4cec42417ca875 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentTurnedInRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentTurnedInRounded'); diff --git a/packages/material-ui-icons/src/AssignmentTurnedInSharp.js b/packages/material-ui-icons/src/AssignmentTurnedInSharp.js new file mode 100644 index 00000000000000..e5c8e26a9f82dd --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentTurnedInSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentTurnedInSharp'); diff --git a/packages/material-ui-icons/src/AssignmentTurnedInTwoTone.js b/packages/material-ui-icons/src/AssignmentTurnedInTwoTone.js new file mode 100644 index 00000000000000..34edada1ae5801 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentTurnedInTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentTurnedInTwoTone'); diff --git a/packages/material-ui-icons/src/AssignmentTwoTone.js b/packages/material-ui-icons/src/AssignmentTwoTone.js new file mode 100644 index 00000000000000..afe273d3961ce6 --- /dev/null +++ b/packages/material-ui-icons/src/AssignmentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssignmentTwoTone'); diff --git a/packages/material-ui-icons/src/AssistantOutlined.js b/packages/material-ui-icons/src/AssistantOutlined.js new file mode 100644 index 00000000000000..67e2fdfc1af5bb --- /dev/null +++ b/packages/material-ui-icons/src/AssistantOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssistantOutlined'); diff --git a/packages/material-ui-icons/src/AssistantPhotoOutlined.js b/packages/material-ui-icons/src/AssistantPhotoOutlined.js new file mode 100644 index 00000000000000..f3d90b65c12318 --- /dev/null +++ b/packages/material-ui-icons/src/AssistantPhotoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssistantPhotoOutlined'); diff --git a/packages/material-ui-icons/src/AssistantPhotoRounded.js b/packages/material-ui-icons/src/AssistantPhotoRounded.js new file mode 100644 index 00000000000000..82fc50b4974dba --- /dev/null +++ b/packages/material-ui-icons/src/AssistantPhotoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssistantPhotoRounded'); diff --git a/packages/material-ui-icons/src/AssistantPhotoSharp.js b/packages/material-ui-icons/src/AssistantPhotoSharp.js new file mode 100644 index 00000000000000..ebf29d75128aea --- /dev/null +++ b/packages/material-ui-icons/src/AssistantPhotoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssistantPhotoSharp'); diff --git a/packages/material-ui-icons/src/AssistantPhotoTwoTone.js b/packages/material-ui-icons/src/AssistantPhotoTwoTone.js new file mode 100644 index 00000000000000..dfa70699c45b39 --- /dev/null +++ b/packages/material-ui-icons/src/AssistantPhotoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssistantPhotoTwoTone'); diff --git a/packages/material-ui-icons/src/AssistantRounded.js b/packages/material-ui-icons/src/AssistantRounded.js new file mode 100644 index 00000000000000..5e4d4c38fb9d04 --- /dev/null +++ b/packages/material-ui-icons/src/AssistantRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssistantRounded'); diff --git a/packages/material-ui-icons/src/AssistantSharp.js b/packages/material-ui-icons/src/AssistantSharp.js new file mode 100644 index 00000000000000..d7166ca1fa9d83 --- /dev/null +++ b/packages/material-ui-icons/src/AssistantSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssistantSharp'); diff --git a/packages/material-ui-icons/src/AssistantTwoTone.js b/packages/material-ui-icons/src/AssistantTwoTone.js new file mode 100644 index 00000000000000..c59ec51af49707 --- /dev/null +++ b/packages/material-ui-icons/src/AssistantTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AssistantTwoTone'); diff --git a/packages/material-ui-icons/src/Atm.js b/packages/material-ui-icons/src/Atm.js new file mode 100644 index 00000000000000..50116e8307c1dd --- /dev/null +++ b/packages/material-ui-icons/src/Atm.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Atm'); diff --git a/packages/material-ui-icons/src/AtmOutlined.js b/packages/material-ui-icons/src/AtmOutlined.js new file mode 100644 index 00000000000000..c9952543f82764 --- /dev/null +++ b/packages/material-ui-icons/src/AtmOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AtmOutlined'); diff --git a/packages/material-ui-icons/src/AtmRounded.js b/packages/material-ui-icons/src/AtmRounded.js new file mode 100644 index 00000000000000..5c919053a3160d --- /dev/null +++ b/packages/material-ui-icons/src/AtmRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AtmRounded'); diff --git a/packages/material-ui-icons/src/AtmSharp.js b/packages/material-ui-icons/src/AtmSharp.js new file mode 100644 index 00000000000000..a36aadbda20082 --- /dev/null +++ b/packages/material-ui-icons/src/AtmSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AtmSharp'); diff --git a/packages/material-ui-icons/src/AtmTwoTone.js b/packages/material-ui-icons/src/AtmTwoTone.js new file mode 100644 index 00000000000000..f9ff7dbd4a7a83 --- /dev/null +++ b/packages/material-ui-icons/src/AtmTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AtmTwoTone'); diff --git a/packages/material-ui-icons/src/AttachFile.js b/packages/material-ui-icons/src/AttachFile.js index c28a032684fd86..f0ad15f20285e4 100644 --- a/packages/material-ui-icons/src/AttachFile.js +++ b/packages/material-ui-icons/src/AttachFile.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AttachFile'); diff --git a/packages/material-ui-icons/src/AttachFileOutlined.js b/packages/material-ui-icons/src/AttachFileOutlined.js new file mode 100644 index 00000000000000..7b8253eba81975 --- /dev/null +++ b/packages/material-ui-icons/src/AttachFileOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachFileOutlined'); diff --git a/packages/material-ui-icons/src/AttachFileRounded.js b/packages/material-ui-icons/src/AttachFileRounded.js new file mode 100644 index 00000000000000..f1f3235e8ae3a2 --- /dev/null +++ b/packages/material-ui-icons/src/AttachFileRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachFileRounded'); diff --git a/packages/material-ui-icons/src/AttachFileSharp.js b/packages/material-ui-icons/src/AttachFileSharp.js new file mode 100644 index 00000000000000..127ae13a85404a --- /dev/null +++ b/packages/material-ui-icons/src/AttachFileSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachFileSharp'); diff --git a/packages/material-ui-icons/src/AttachFileTwoTone.js b/packages/material-ui-icons/src/AttachFileTwoTone.js new file mode 100644 index 00000000000000..3e918c0eb5acc3 --- /dev/null +++ b/packages/material-ui-icons/src/AttachFileTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachFileTwoTone'); diff --git a/packages/material-ui-icons/src/AttachMoneyOutlined.js b/packages/material-ui-icons/src/AttachMoneyOutlined.js new file mode 100644 index 00000000000000..c4970f9fc915e6 --- /dev/null +++ b/packages/material-ui-icons/src/AttachMoneyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachMoneyOutlined'); diff --git a/packages/material-ui-icons/src/AttachMoneyRounded.js b/packages/material-ui-icons/src/AttachMoneyRounded.js new file mode 100644 index 00000000000000..2ebdccc977d400 --- /dev/null +++ b/packages/material-ui-icons/src/AttachMoneyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachMoneyRounded'); diff --git a/packages/material-ui-icons/src/AttachMoneySharp.js b/packages/material-ui-icons/src/AttachMoneySharp.js new file mode 100644 index 00000000000000..e926871d7fb5e1 --- /dev/null +++ b/packages/material-ui-icons/src/AttachMoneySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachMoneySharp'); diff --git a/packages/material-ui-icons/src/AttachMoneyTwoTone.js b/packages/material-ui-icons/src/AttachMoneyTwoTone.js new file mode 100644 index 00000000000000..60503e24b60f11 --- /dev/null +++ b/packages/material-ui-icons/src/AttachMoneyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachMoneyTwoTone'); diff --git a/packages/material-ui-icons/src/Attachment.js b/packages/material-ui-icons/src/Attachment.js index fce5a7e33e96c5..b5915e806ee47d 100644 --- a/packages/material-ui-icons/src/Attachment.js +++ b/packages/material-ui-icons/src/Attachment.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Attachment'); diff --git a/packages/material-ui-icons/src/AttachmentOutlined.js b/packages/material-ui-icons/src/AttachmentOutlined.js new file mode 100644 index 00000000000000..18220984cfe5de --- /dev/null +++ b/packages/material-ui-icons/src/AttachmentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachmentOutlined'); diff --git a/packages/material-ui-icons/src/AttachmentRounded.js b/packages/material-ui-icons/src/AttachmentRounded.js new file mode 100644 index 00000000000000..a31bce3643899c --- /dev/null +++ b/packages/material-ui-icons/src/AttachmentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachmentRounded'); diff --git a/packages/material-ui-icons/src/AttachmentSharp.js b/packages/material-ui-icons/src/AttachmentSharp.js new file mode 100644 index 00000000000000..286049710db0b7 --- /dev/null +++ b/packages/material-ui-icons/src/AttachmentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachmentSharp'); diff --git a/packages/material-ui-icons/src/AttachmentTwoTone.js b/packages/material-ui-icons/src/AttachmentTwoTone.js new file mode 100644 index 00000000000000..ec39e79b03555c --- /dev/null +++ b/packages/material-ui-icons/src/AttachmentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AttachmentTwoTone'); diff --git a/packages/material-ui-icons/src/Audiotrack.js b/packages/material-ui-icons/src/Audiotrack.js index 1fc502a394fb84..c3ccc9b5253483 100644 --- a/packages/material-ui-icons/src/Audiotrack.js +++ b/packages/material-ui-icons/src/Audiotrack.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Audiotrack'); diff --git a/packages/material-ui-icons/src/AudiotrackOutlined.js b/packages/material-ui-icons/src/AudiotrackOutlined.js new file mode 100644 index 00000000000000..c86fd72a8e20c0 --- /dev/null +++ b/packages/material-ui-icons/src/AudiotrackOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AudiotrackOutlined'); diff --git a/packages/material-ui-icons/src/AudiotrackRounded.js b/packages/material-ui-icons/src/AudiotrackRounded.js new file mode 100644 index 00000000000000..d48f9c381fcd66 --- /dev/null +++ b/packages/material-ui-icons/src/AudiotrackRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AudiotrackRounded'); diff --git a/packages/material-ui-icons/src/AudiotrackSharp.js b/packages/material-ui-icons/src/AudiotrackSharp.js new file mode 100644 index 00000000000000..c15ffb86f18d7e --- /dev/null +++ b/packages/material-ui-icons/src/AudiotrackSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AudiotrackSharp'); diff --git a/packages/material-ui-icons/src/AudiotrackTwoTone.js b/packages/material-ui-icons/src/AudiotrackTwoTone.js new file mode 100644 index 00000000000000..f671e978e2f617 --- /dev/null +++ b/packages/material-ui-icons/src/AudiotrackTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AudiotrackTwoTone'); diff --git a/packages/material-ui-icons/src/Autorenew.js b/packages/material-ui-icons/src/Autorenew.js index aa7b02e39aa3bc..af5f7e20c7a288 100644 --- a/packages/material-ui-icons/src/Autorenew.js +++ b/packages/material-ui-icons/src/Autorenew.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Autorenew'); diff --git a/packages/material-ui-icons/src/AutorenewOutlined.js b/packages/material-ui-icons/src/AutorenewOutlined.js new file mode 100644 index 00000000000000..7b2c656f5e6e0f --- /dev/null +++ b/packages/material-ui-icons/src/AutorenewOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AutorenewOutlined'); diff --git a/packages/material-ui-icons/src/AutorenewRounded.js b/packages/material-ui-icons/src/AutorenewRounded.js new file mode 100644 index 00000000000000..75342267edbf8d --- /dev/null +++ b/packages/material-ui-icons/src/AutorenewRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AutorenewRounded'); diff --git a/packages/material-ui-icons/src/AutorenewSharp.js b/packages/material-ui-icons/src/AutorenewSharp.js new file mode 100644 index 00000000000000..e5f41f5aff037a --- /dev/null +++ b/packages/material-ui-icons/src/AutorenewSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AutorenewSharp'); diff --git a/packages/material-ui-icons/src/AutorenewTwoTone.js b/packages/material-ui-icons/src/AutorenewTwoTone.js new file mode 100644 index 00000000000000..61ca3117540944 --- /dev/null +++ b/packages/material-ui-icons/src/AutorenewTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AutorenewTwoTone'); diff --git a/packages/material-ui-icons/src/AvTimer.js b/packages/material-ui-icons/src/AvTimer.js index c3836b8bb2a53c..b247cb695bca30 100644 --- a/packages/material-ui-icons/src/AvTimer.js +++ b/packages/material-ui-icons/src/AvTimer.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'AvTimer'); diff --git a/packages/material-ui-icons/src/AvTimerOutlined.js b/packages/material-ui-icons/src/AvTimerOutlined.js new file mode 100644 index 00000000000000..5f38c56aebe960 --- /dev/null +++ b/packages/material-ui-icons/src/AvTimerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AvTimerOutlined'); diff --git a/packages/material-ui-icons/src/AvTimerRounded.js b/packages/material-ui-icons/src/AvTimerRounded.js new file mode 100644 index 00000000000000..a15acee4de61e9 --- /dev/null +++ b/packages/material-ui-icons/src/AvTimerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AvTimerRounded'); diff --git a/packages/material-ui-icons/src/AvTimerSharp.js b/packages/material-ui-icons/src/AvTimerSharp.js new file mode 100644 index 00000000000000..c8ba90d348bf97 --- /dev/null +++ b/packages/material-ui-icons/src/AvTimerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AvTimerSharp'); diff --git a/packages/material-ui-icons/src/AvTimerTwoTone.js b/packages/material-ui-icons/src/AvTimerTwoTone.js new file mode 100644 index 00000000000000..533ce1e120774e --- /dev/null +++ b/packages/material-ui-icons/src/AvTimerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'AvTimerTwoTone'); diff --git a/packages/material-ui-icons/src/BackspaceOutlined.js b/packages/material-ui-icons/src/BackspaceOutlined.js new file mode 100644 index 00000000000000..2af8f24cacb7c4 --- /dev/null +++ b/packages/material-ui-icons/src/BackspaceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BackspaceOutlined'); diff --git a/packages/material-ui-icons/src/BackspaceRounded.js b/packages/material-ui-icons/src/BackspaceRounded.js new file mode 100644 index 00000000000000..074ac90910364f --- /dev/null +++ b/packages/material-ui-icons/src/BackspaceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BackspaceRounded'); diff --git a/packages/material-ui-icons/src/BackspaceSharp.js b/packages/material-ui-icons/src/BackspaceSharp.js new file mode 100644 index 00000000000000..07e857159b26a4 --- /dev/null +++ b/packages/material-ui-icons/src/BackspaceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BackspaceSharp'); diff --git a/packages/material-ui-icons/src/BackspaceTwoTone.js b/packages/material-ui-icons/src/BackspaceTwoTone.js new file mode 100644 index 00000000000000..73d6943c9267c1 --- /dev/null +++ b/packages/material-ui-icons/src/BackspaceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BackspaceTwoTone'); diff --git a/packages/material-ui-icons/src/Backup.js b/packages/material-ui-icons/src/Backup.js index ef00a71cc617a8..1c5f8bba06f637 100644 --- a/packages/material-ui-icons/src/Backup.js +++ b/packages/material-ui-icons/src/Backup.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Backup'); diff --git a/packages/material-ui-icons/src/BackupOutlined.js b/packages/material-ui-icons/src/BackupOutlined.js new file mode 100644 index 00000000000000..921a914409dab0 --- /dev/null +++ b/packages/material-ui-icons/src/BackupOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BackupOutlined'); diff --git a/packages/material-ui-icons/src/BackupRounded.js b/packages/material-ui-icons/src/BackupRounded.js new file mode 100644 index 00000000000000..bb294cfc9ba1aa --- /dev/null +++ b/packages/material-ui-icons/src/BackupRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BackupRounded'); diff --git a/packages/material-ui-icons/src/BackupSharp.js b/packages/material-ui-icons/src/BackupSharp.js new file mode 100644 index 00000000000000..8f0cbe18406749 --- /dev/null +++ b/packages/material-ui-icons/src/BackupSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BackupSharp'); diff --git a/packages/material-ui-icons/src/BackupTwoTone.js b/packages/material-ui-icons/src/BackupTwoTone.js new file mode 100644 index 00000000000000..d5b4fc7d4f15b3 --- /dev/null +++ b/packages/material-ui-icons/src/BackupTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BackupTwoTone'); diff --git a/packages/material-ui-icons/src/Ballot.js b/packages/material-ui-icons/src/Ballot.js new file mode 100644 index 00000000000000..26ba5789dcfffd --- /dev/null +++ b/packages/material-ui-icons/src/Ballot.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Ballot'); diff --git a/packages/material-ui-icons/src/BallotOutlined.js b/packages/material-ui-icons/src/BallotOutlined.js new file mode 100644 index 00000000000000..7077e694941ded --- /dev/null +++ b/packages/material-ui-icons/src/BallotOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BallotOutlined'); diff --git a/packages/material-ui-icons/src/BallotRounded.js b/packages/material-ui-icons/src/BallotRounded.js new file mode 100644 index 00000000000000..ee3a7b12110ffa --- /dev/null +++ b/packages/material-ui-icons/src/BallotRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BallotRounded'); diff --git a/packages/material-ui-icons/src/BallotSharp.js b/packages/material-ui-icons/src/BallotSharp.js new file mode 100644 index 00000000000000..8f3cf99d7dfe0e --- /dev/null +++ b/packages/material-ui-icons/src/BallotSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BallotSharp'); diff --git a/packages/material-ui-icons/src/BallotTwoTone.js b/packages/material-ui-icons/src/BallotTwoTone.js new file mode 100644 index 00000000000000..6fc96d0184c25a --- /dev/null +++ b/packages/material-ui-icons/src/BallotTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BallotTwoTone'); diff --git a/packages/material-ui-icons/src/BarChart.js b/packages/material-ui-icons/src/BarChart.js new file mode 100644 index 00000000000000..ce74f02a77bae9 --- /dev/null +++ b/packages/material-ui-icons/src/BarChart.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BarChart'); diff --git a/packages/material-ui-icons/src/BarChartOutlined.js b/packages/material-ui-icons/src/BarChartOutlined.js new file mode 100644 index 00000000000000..0b1dd27b54ee80 --- /dev/null +++ b/packages/material-ui-icons/src/BarChartOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BarChartOutlined'); diff --git a/packages/material-ui-icons/src/BarChartRounded.js b/packages/material-ui-icons/src/BarChartRounded.js new file mode 100644 index 00000000000000..a4927bb84c5eae --- /dev/null +++ b/packages/material-ui-icons/src/BarChartRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BarChartRounded'); diff --git a/packages/material-ui-icons/src/BarChartSharp.js b/packages/material-ui-icons/src/BarChartSharp.js new file mode 100644 index 00000000000000..843026e59b7b76 --- /dev/null +++ b/packages/material-ui-icons/src/BarChartSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BarChartSharp'); diff --git a/packages/material-ui-icons/src/BarChartTwoTone.js b/packages/material-ui-icons/src/BarChartTwoTone.js new file mode 100644 index 00000000000000..61b537a606e859 --- /dev/null +++ b/packages/material-ui-icons/src/BarChartTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BarChartTwoTone'); diff --git a/packages/material-ui-icons/src/Battery20Outlined.js b/packages/material-ui-icons/src/Battery20Outlined.js new file mode 100644 index 00000000000000..0d219980ab888b --- /dev/null +++ b/packages/material-ui-icons/src/Battery20Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery20Outlined'); diff --git a/packages/material-ui-icons/src/Battery20Rounded.js b/packages/material-ui-icons/src/Battery20Rounded.js new file mode 100644 index 00000000000000..8052561f7fc235 --- /dev/null +++ b/packages/material-ui-icons/src/Battery20Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery20Rounded'); diff --git a/packages/material-ui-icons/src/Battery20Sharp.js b/packages/material-ui-icons/src/Battery20Sharp.js new file mode 100644 index 00000000000000..0534f315040c19 --- /dev/null +++ b/packages/material-ui-icons/src/Battery20Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery20Sharp'); diff --git a/packages/material-ui-icons/src/Battery20TwoTone.js b/packages/material-ui-icons/src/Battery20TwoTone.js new file mode 100644 index 00000000000000..24e7daa73acb27 --- /dev/null +++ b/packages/material-ui-icons/src/Battery20TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery20TwoTone'); diff --git a/packages/material-ui-icons/src/Battery30Outlined.js b/packages/material-ui-icons/src/Battery30Outlined.js new file mode 100644 index 00000000000000..ea6f58be9b1d77 --- /dev/null +++ b/packages/material-ui-icons/src/Battery30Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery30Outlined'); diff --git a/packages/material-ui-icons/src/Battery30Rounded.js b/packages/material-ui-icons/src/Battery30Rounded.js new file mode 100644 index 00000000000000..38d13be866396d --- /dev/null +++ b/packages/material-ui-icons/src/Battery30Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery30Rounded'); diff --git a/packages/material-ui-icons/src/Battery30Sharp.js b/packages/material-ui-icons/src/Battery30Sharp.js new file mode 100644 index 00000000000000..dcd840001e3a35 --- /dev/null +++ b/packages/material-ui-icons/src/Battery30Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery30Sharp'); diff --git a/packages/material-ui-icons/src/Battery30TwoTone.js b/packages/material-ui-icons/src/Battery30TwoTone.js new file mode 100644 index 00000000000000..ce2d5f7e47257e --- /dev/null +++ b/packages/material-ui-icons/src/Battery30TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery30TwoTone'); diff --git a/packages/material-ui-icons/src/Battery50Outlined.js b/packages/material-ui-icons/src/Battery50Outlined.js new file mode 100644 index 00000000000000..4db9b41766e6f7 --- /dev/null +++ b/packages/material-ui-icons/src/Battery50Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery50Outlined'); diff --git a/packages/material-ui-icons/src/Battery50Rounded.js b/packages/material-ui-icons/src/Battery50Rounded.js new file mode 100644 index 00000000000000..ae9468a8cfc5b5 --- /dev/null +++ b/packages/material-ui-icons/src/Battery50Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery50Rounded'); diff --git a/packages/material-ui-icons/src/Battery50Sharp.js b/packages/material-ui-icons/src/Battery50Sharp.js new file mode 100644 index 00000000000000..998222dd29a47f --- /dev/null +++ b/packages/material-ui-icons/src/Battery50Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery50Sharp'); diff --git a/packages/material-ui-icons/src/Battery50TwoTone.js b/packages/material-ui-icons/src/Battery50TwoTone.js new file mode 100644 index 00000000000000..a762872f422326 --- /dev/null +++ b/packages/material-ui-icons/src/Battery50TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery50TwoTone'); diff --git a/packages/material-ui-icons/src/Battery60Outlined.js b/packages/material-ui-icons/src/Battery60Outlined.js new file mode 100644 index 00000000000000..45b8d48d3bd69e --- /dev/null +++ b/packages/material-ui-icons/src/Battery60Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery60Outlined'); diff --git a/packages/material-ui-icons/src/Battery60Rounded.js b/packages/material-ui-icons/src/Battery60Rounded.js new file mode 100644 index 00000000000000..b4b9057695ca6f --- /dev/null +++ b/packages/material-ui-icons/src/Battery60Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery60Rounded'); diff --git a/packages/material-ui-icons/src/Battery60Sharp.js b/packages/material-ui-icons/src/Battery60Sharp.js new file mode 100644 index 00000000000000..7d9ccd33cec781 --- /dev/null +++ b/packages/material-ui-icons/src/Battery60Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery60Sharp'); diff --git a/packages/material-ui-icons/src/Battery60TwoTone.js b/packages/material-ui-icons/src/Battery60TwoTone.js new file mode 100644 index 00000000000000..6c808f85a6b0f8 --- /dev/null +++ b/packages/material-ui-icons/src/Battery60TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery60TwoTone'); diff --git a/packages/material-ui-icons/src/Battery80Outlined.js b/packages/material-ui-icons/src/Battery80Outlined.js new file mode 100644 index 00000000000000..e4e274610115c2 --- /dev/null +++ b/packages/material-ui-icons/src/Battery80Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery80Outlined'); diff --git a/packages/material-ui-icons/src/Battery80Rounded.js b/packages/material-ui-icons/src/Battery80Rounded.js new file mode 100644 index 00000000000000..27bbaa647eaef6 --- /dev/null +++ b/packages/material-ui-icons/src/Battery80Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery80Rounded'); diff --git a/packages/material-ui-icons/src/Battery80Sharp.js b/packages/material-ui-icons/src/Battery80Sharp.js new file mode 100644 index 00000000000000..eb1b6ca6a13dbe --- /dev/null +++ b/packages/material-ui-icons/src/Battery80Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery80Sharp'); diff --git a/packages/material-ui-icons/src/Battery80TwoTone.js b/packages/material-ui-icons/src/Battery80TwoTone.js new file mode 100644 index 00000000000000..deb30fca9454ad --- /dev/null +++ b/packages/material-ui-icons/src/Battery80TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery80TwoTone'); diff --git a/packages/material-ui-icons/src/Battery90Outlined.js b/packages/material-ui-icons/src/Battery90Outlined.js new file mode 100644 index 00000000000000..241b1ea08f8e31 --- /dev/null +++ b/packages/material-ui-icons/src/Battery90Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery90Outlined'); diff --git a/packages/material-ui-icons/src/Battery90Rounded.js b/packages/material-ui-icons/src/Battery90Rounded.js new file mode 100644 index 00000000000000..4a31f9621541c4 --- /dev/null +++ b/packages/material-ui-icons/src/Battery90Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery90Rounded'); diff --git a/packages/material-ui-icons/src/Battery90Sharp.js b/packages/material-ui-icons/src/Battery90Sharp.js new file mode 100644 index 00000000000000..6eb8128a8b045a --- /dev/null +++ b/packages/material-ui-icons/src/Battery90Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery90Sharp'); diff --git a/packages/material-ui-icons/src/Battery90TwoTone.js b/packages/material-ui-icons/src/Battery90TwoTone.js new file mode 100644 index 00000000000000..a85e0acf15d44a --- /dev/null +++ b/packages/material-ui-icons/src/Battery90TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Battery90TwoTone'); diff --git a/packages/material-ui-icons/src/BatteryAlertOutlined.js b/packages/material-ui-icons/src/BatteryAlertOutlined.js new file mode 100644 index 00000000000000..b15cd591ef51c2 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryAlertOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryAlertOutlined'); diff --git a/packages/material-ui-icons/src/BatteryAlertRounded.js b/packages/material-ui-icons/src/BatteryAlertRounded.js new file mode 100644 index 00000000000000..77c62ad474799e --- /dev/null +++ b/packages/material-ui-icons/src/BatteryAlertRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryAlertRounded'); diff --git a/packages/material-ui-icons/src/BatteryAlertSharp.js b/packages/material-ui-icons/src/BatteryAlertSharp.js new file mode 100644 index 00000000000000..a7911ad5118733 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryAlertSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryAlertSharp'); diff --git a/packages/material-ui-icons/src/BatteryAlertTwoTone.js b/packages/material-ui-icons/src/BatteryAlertTwoTone.js new file mode 100644 index 00000000000000..f54a9213eec777 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryAlertTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryAlertTwoTone'); diff --git a/packages/material-ui-icons/src/BatteryCharging20Outlined.js b/packages/material-ui-icons/src/BatteryCharging20Outlined.js new file mode 100644 index 00000000000000..55ff88e06774ca --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging20Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging20Outlined'); diff --git a/packages/material-ui-icons/src/BatteryCharging20Rounded.js b/packages/material-ui-icons/src/BatteryCharging20Rounded.js new file mode 100644 index 00000000000000..d9c0a9b192df20 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging20Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging20Rounded'); diff --git a/packages/material-ui-icons/src/BatteryCharging20Sharp.js b/packages/material-ui-icons/src/BatteryCharging20Sharp.js new file mode 100644 index 00000000000000..2ffecf8dc13c80 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging20Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging20Sharp'); diff --git a/packages/material-ui-icons/src/BatteryCharging20TwoTone.js b/packages/material-ui-icons/src/BatteryCharging20TwoTone.js new file mode 100644 index 00000000000000..a26c076d3c8b86 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging20TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging20TwoTone'); diff --git a/packages/material-ui-icons/src/BatteryCharging30Outlined.js b/packages/material-ui-icons/src/BatteryCharging30Outlined.js new file mode 100644 index 00000000000000..6d062b5981d2e7 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging30Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging30Outlined'); diff --git a/packages/material-ui-icons/src/BatteryCharging30Rounded.js b/packages/material-ui-icons/src/BatteryCharging30Rounded.js new file mode 100644 index 00000000000000..b9a477687adc44 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging30Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging30Rounded'); diff --git a/packages/material-ui-icons/src/BatteryCharging30Sharp.js b/packages/material-ui-icons/src/BatteryCharging30Sharp.js new file mode 100644 index 00000000000000..c8c45aa983ccf1 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging30Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging30Sharp'); diff --git a/packages/material-ui-icons/src/BatteryCharging30TwoTone.js b/packages/material-ui-icons/src/BatteryCharging30TwoTone.js new file mode 100644 index 00000000000000..f0a96ccf48a6b3 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging30TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging30TwoTone'); diff --git a/packages/material-ui-icons/src/BatteryCharging50Outlined.js b/packages/material-ui-icons/src/BatteryCharging50Outlined.js new file mode 100644 index 00000000000000..04154aeb473bd5 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging50Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging50Outlined'); diff --git a/packages/material-ui-icons/src/BatteryCharging50Rounded.js b/packages/material-ui-icons/src/BatteryCharging50Rounded.js new file mode 100644 index 00000000000000..7a7c009483637c --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging50Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging50Rounded'); diff --git a/packages/material-ui-icons/src/BatteryCharging50Sharp.js b/packages/material-ui-icons/src/BatteryCharging50Sharp.js new file mode 100644 index 00000000000000..f323c4a461d0ff --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging50Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging50Sharp'); diff --git a/packages/material-ui-icons/src/BatteryCharging50TwoTone.js b/packages/material-ui-icons/src/BatteryCharging50TwoTone.js new file mode 100644 index 00000000000000..71b2109e67c626 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging50TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging50TwoTone'); diff --git a/packages/material-ui-icons/src/BatteryCharging60Outlined.js b/packages/material-ui-icons/src/BatteryCharging60Outlined.js new file mode 100644 index 00000000000000..eb38bad4f70cba --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging60Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging60Outlined'); diff --git a/packages/material-ui-icons/src/BatteryCharging60Rounded.js b/packages/material-ui-icons/src/BatteryCharging60Rounded.js new file mode 100644 index 00000000000000..b4e0183b998d57 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging60Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging60Rounded'); diff --git a/packages/material-ui-icons/src/BatteryCharging60Sharp.js b/packages/material-ui-icons/src/BatteryCharging60Sharp.js new file mode 100644 index 00000000000000..5e611ce4d14689 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging60Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging60Sharp'); diff --git a/packages/material-ui-icons/src/BatteryCharging60TwoTone.js b/packages/material-ui-icons/src/BatteryCharging60TwoTone.js new file mode 100644 index 00000000000000..e6d5cda84723b4 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging60TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging60TwoTone'); diff --git a/packages/material-ui-icons/src/BatteryCharging80Outlined.js b/packages/material-ui-icons/src/BatteryCharging80Outlined.js new file mode 100644 index 00000000000000..144ae4e3a42715 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging80Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging80Outlined'); diff --git a/packages/material-ui-icons/src/BatteryCharging80Rounded.js b/packages/material-ui-icons/src/BatteryCharging80Rounded.js new file mode 100644 index 00000000000000..79a11490d57a0d --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging80Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging80Rounded'); diff --git a/packages/material-ui-icons/src/BatteryCharging80Sharp.js b/packages/material-ui-icons/src/BatteryCharging80Sharp.js new file mode 100644 index 00000000000000..f718f6885b2b4b --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging80Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging80Sharp'); diff --git a/packages/material-ui-icons/src/BatteryCharging80TwoTone.js b/packages/material-ui-icons/src/BatteryCharging80TwoTone.js new file mode 100644 index 00000000000000..b850b119ecf4e7 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging80TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging80TwoTone'); diff --git a/packages/material-ui-icons/src/BatteryCharging90Outlined.js b/packages/material-ui-icons/src/BatteryCharging90Outlined.js new file mode 100644 index 00000000000000..b4a9de6ab208bd --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging90Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging90Outlined'); diff --git a/packages/material-ui-icons/src/BatteryCharging90Rounded.js b/packages/material-ui-icons/src/BatteryCharging90Rounded.js new file mode 100644 index 00000000000000..a12506d1eb02b3 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging90Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging90Rounded'); diff --git a/packages/material-ui-icons/src/BatteryCharging90Sharp.js b/packages/material-ui-icons/src/BatteryCharging90Sharp.js new file mode 100644 index 00000000000000..29812af5a8393e --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging90Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging90Sharp'); diff --git a/packages/material-ui-icons/src/BatteryCharging90TwoTone.js b/packages/material-ui-icons/src/BatteryCharging90TwoTone.js new file mode 100644 index 00000000000000..87a19d72fd6c2a --- /dev/null +++ b/packages/material-ui-icons/src/BatteryCharging90TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryCharging90TwoTone'); diff --git a/packages/material-ui-icons/src/BatteryChargingFullOutlined.js b/packages/material-ui-icons/src/BatteryChargingFullOutlined.js new file mode 100644 index 00000000000000..d4616e3f8f7cff --- /dev/null +++ b/packages/material-ui-icons/src/BatteryChargingFullOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryChargingFullOutlined'); diff --git a/packages/material-ui-icons/src/BatteryChargingFullRounded.js b/packages/material-ui-icons/src/BatteryChargingFullRounded.js new file mode 100644 index 00000000000000..7ec72578e0e147 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryChargingFullRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryChargingFullRounded'); diff --git a/packages/material-ui-icons/src/BatteryChargingFullSharp.js b/packages/material-ui-icons/src/BatteryChargingFullSharp.js new file mode 100644 index 00000000000000..4345c264222864 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryChargingFullSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryChargingFullSharp'); diff --git a/packages/material-ui-icons/src/BatteryChargingFullTwoTone.js b/packages/material-ui-icons/src/BatteryChargingFullTwoTone.js new file mode 100644 index 00000000000000..21d81497bce259 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryChargingFullTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryChargingFullTwoTone'); diff --git a/packages/material-ui-icons/src/BatteryFullOutlined.js b/packages/material-ui-icons/src/BatteryFullOutlined.js new file mode 100644 index 00000000000000..df2f4b0ea37c6a --- /dev/null +++ b/packages/material-ui-icons/src/BatteryFullOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryFullOutlined'); diff --git a/packages/material-ui-icons/src/BatteryFullRounded.js b/packages/material-ui-icons/src/BatteryFullRounded.js new file mode 100644 index 00000000000000..21690c64c27ef1 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryFullRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryFullRounded'); diff --git a/packages/material-ui-icons/src/BatteryFullSharp.js b/packages/material-ui-icons/src/BatteryFullSharp.js new file mode 100644 index 00000000000000..e93f75051b6cd9 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryFullSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryFullSharp'); diff --git a/packages/material-ui-icons/src/BatteryFullTwoTone.js b/packages/material-ui-icons/src/BatteryFullTwoTone.js new file mode 100644 index 00000000000000..f2e79e06eec55b --- /dev/null +++ b/packages/material-ui-icons/src/BatteryFullTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryFullTwoTone'); diff --git a/packages/material-ui-icons/src/BatteryStdOutlined.js b/packages/material-ui-icons/src/BatteryStdOutlined.js new file mode 100644 index 00000000000000..c28365d4455a29 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryStdOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryStdOutlined'); diff --git a/packages/material-ui-icons/src/BatteryStdRounded.js b/packages/material-ui-icons/src/BatteryStdRounded.js new file mode 100644 index 00000000000000..d14fc467423930 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryStdRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryStdRounded'); diff --git a/packages/material-ui-icons/src/BatteryStdSharp.js b/packages/material-ui-icons/src/BatteryStdSharp.js new file mode 100644 index 00000000000000..6c441017a3d237 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryStdSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryStdSharp'); diff --git a/packages/material-ui-icons/src/BatteryStdTwoTone.js b/packages/material-ui-icons/src/BatteryStdTwoTone.js new file mode 100644 index 00000000000000..08e47a298ed750 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryStdTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryStdTwoTone'); diff --git a/packages/material-ui-icons/src/BatteryUnknown.js b/packages/material-ui-icons/src/BatteryUnknown.js index f37113a5a0b263..957c22918ef46e 100644 --- a/packages/material-ui-icons/src/BatteryUnknown.js +++ b/packages/material-ui-icons/src/BatteryUnknown.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'BatteryUnknown'); diff --git a/packages/material-ui-icons/src/BatteryUnknownOutlined.js b/packages/material-ui-icons/src/BatteryUnknownOutlined.js new file mode 100644 index 00000000000000..58cff315b34b6e --- /dev/null +++ b/packages/material-ui-icons/src/BatteryUnknownOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryUnknownOutlined'); diff --git a/packages/material-ui-icons/src/BatteryUnknownRounded.js b/packages/material-ui-icons/src/BatteryUnknownRounded.js new file mode 100644 index 00000000000000..924eb0439d3e89 --- /dev/null +++ b/packages/material-ui-icons/src/BatteryUnknownRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryUnknownRounded'); diff --git a/packages/material-ui-icons/src/BatteryUnknownSharp.js b/packages/material-ui-icons/src/BatteryUnknownSharp.js new file mode 100644 index 00000000000000..49f674a36d574f --- /dev/null +++ b/packages/material-ui-icons/src/BatteryUnknownSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryUnknownSharp'); diff --git a/packages/material-ui-icons/src/BatteryUnknownTwoTone.js b/packages/material-ui-icons/src/BatteryUnknownTwoTone.js new file mode 100644 index 00000000000000..c7b1483f4d4d3c --- /dev/null +++ b/packages/material-ui-icons/src/BatteryUnknownTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BatteryUnknownTwoTone'); diff --git a/packages/material-ui-icons/src/BeachAccessOutlined.js b/packages/material-ui-icons/src/BeachAccessOutlined.js new file mode 100644 index 00000000000000..442d56e2daf861 --- /dev/null +++ b/packages/material-ui-icons/src/BeachAccessOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BeachAccessOutlined'); diff --git a/packages/material-ui-icons/src/BeachAccessRounded.js b/packages/material-ui-icons/src/BeachAccessRounded.js new file mode 100644 index 00000000000000..68c0feafca145a --- /dev/null +++ b/packages/material-ui-icons/src/BeachAccessRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BeachAccessRounded'); diff --git a/packages/material-ui-icons/src/BeachAccessSharp.js b/packages/material-ui-icons/src/BeachAccessSharp.js new file mode 100644 index 00000000000000..b78ca7923c0de1 --- /dev/null +++ b/packages/material-ui-icons/src/BeachAccessSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BeachAccessSharp'); diff --git a/packages/material-ui-icons/src/BeachAccessTwoTone.js b/packages/material-ui-icons/src/BeachAccessTwoTone.js new file mode 100644 index 00000000000000..652a177f85e5e9 --- /dev/null +++ b/packages/material-ui-icons/src/BeachAccessTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BeachAccessTwoTone'); diff --git a/packages/material-ui-icons/src/BeenhereOutlined.js b/packages/material-ui-icons/src/BeenhereOutlined.js new file mode 100644 index 00000000000000..b14d06cf090b30 --- /dev/null +++ b/packages/material-ui-icons/src/BeenhereOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BeenhereOutlined'); diff --git a/packages/material-ui-icons/src/BeenhereRounded.js b/packages/material-ui-icons/src/BeenhereRounded.js new file mode 100644 index 00000000000000..2ca9ad0d08e8a0 --- /dev/null +++ b/packages/material-ui-icons/src/BeenhereRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BeenhereRounded'); diff --git a/packages/material-ui-icons/src/BeenhereSharp.js b/packages/material-ui-icons/src/BeenhereSharp.js new file mode 100644 index 00000000000000..880401986da409 --- /dev/null +++ b/packages/material-ui-icons/src/BeenhereSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BeenhereSharp'); diff --git a/packages/material-ui-icons/src/BeenhereTwoTone.js b/packages/material-ui-icons/src/BeenhereTwoTone.js new file mode 100644 index 00000000000000..e8d906313ea92a --- /dev/null +++ b/packages/material-ui-icons/src/BeenhereTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BeenhereTwoTone'); diff --git a/packages/material-ui-icons/src/Block.js b/packages/material-ui-icons/src/Block.js index 7b9d3835b49312..8da613f1d45dd6 100644 --- a/packages/material-ui-icons/src/Block.js +++ b/packages/material-ui-icons/src/Block.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Block'); diff --git a/packages/material-ui-icons/src/BlockOutlined.js b/packages/material-ui-icons/src/BlockOutlined.js new file mode 100644 index 00000000000000..8b619d4b0a7d31 --- /dev/null +++ b/packages/material-ui-icons/src/BlockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlockOutlined'); diff --git a/packages/material-ui-icons/src/BlockRounded.js b/packages/material-ui-icons/src/BlockRounded.js new file mode 100644 index 00000000000000..9221c147d80220 --- /dev/null +++ b/packages/material-ui-icons/src/BlockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlockRounded'); diff --git a/packages/material-ui-icons/src/BlockSharp.js b/packages/material-ui-icons/src/BlockSharp.js new file mode 100644 index 00000000000000..8b7e49365fe76a --- /dev/null +++ b/packages/material-ui-icons/src/BlockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlockSharp'); diff --git a/packages/material-ui-icons/src/BlockTwoTone.js b/packages/material-ui-icons/src/BlockTwoTone.js new file mode 100644 index 00000000000000..12dd53783b08e5 --- /dev/null +++ b/packages/material-ui-icons/src/BlockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlockTwoTone'); diff --git a/packages/material-ui-icons/src/BluetoothAudio.js b/packages/material-ui-icons/src/BluetoothAudio.js index c4a326caf9afa7..4f6cadcac10a15 100644 --- a/packages/material-ui-icons/src/BluetoothAudio.js +++ b/packages/material-ui-icons/src/BluetoothAudio.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'BluetoothAudio'); diff --git a/packages/material-ui-icons/src/BluetoothAudioOutlined.js b/packages/material-ui-icons/src/BluetoothAudioOutlined.js new file mode 100644 index 00000000000000..f706dce7dc45b9 --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothAudioOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothAudioOutlined'); diff --git a/packages/material-ui-icons/src/BluetoothAudioRounded.js b/packages/material-ui-icons/src/BluetoothAudioRounded.js new file mode 100644 index 00000000000000..a58e83eb85c06f --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothAudioRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothAudioRounded'); diff --git a/packages/material-ui-icons/src/BluetoothAudioSharp.js b/packages/material-ui-icons/src/BluetoothAudioSharp.js new file mode 100644 index 00000000000000..f21e7266f7f09b --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothAudioSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothAudioSharp'); diff --git a/packages/material-ui-icons/src/BluetoothAudioTwoTone.js b/packages/material-ui-icons/src/BluetoothAudioTwoTone.js new file mode 100644 index 00000000000000..8c998031275c7b --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothAudioTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothAudioTwoTone'); diff --git a/packages/material-ui-icons/src/BluetoothConnectedOutlined.js b/packages/material-ui-icons/src/BluetoothConnectedOutlined.js new file mode 100644 index 00000000000000..6c98a183a6722d --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothConnectedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothConnectedOutlined'); diff --git a/packages/material-ui-icons/src/BluetoothConnectedRounded.js b/packages/material-ui-icons/src/BluetoothConnectedRounded.js new file mode 100644 index 00000000000000..9af78786d362ec --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothConnectedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothConnectedRounded'); diff --git a/packages/material-ui-icons/src/BluetoothConnectedSharp.js b/packages/material-ui-icons/src/BluetoothConnectedSharp.js new file mode 100644 index 00000000000000..0cf41a60bb5e22 --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothConnectedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothConnectedSharp'); diff --git a/packages/material-ui-icons/src/BluetoothConnectedTwoTone.js b/packages/material-ui-icons/src/BluetoothConnectedTwoTone.js new file mode 100644 index 00000000000000..5783e70fbedc7b --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothConnectedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothConnectedTwoTone'); diff --git a/packages/material-ui-icons/src/BluetoothDisabledOutlined.js b/packages/material-ui-icons/src/BluetoothDisabledOutlined.js new file mode 100644 index 00000000000000..45d2b85c551ecf --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothDisabledOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothDisabledOutlined'); diff --git a/packages/material-ui-icons/src/BluetoothDisabledRounded.js b/packages/material-ui-icons/src/BluetoothDisabledRounded.js new file mode 100644 index 00000000000000..7c6b4fc9556d81 --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothDisabledRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothDisabledRounded'); diff --git a/packages/material-ui-icons/src/BluetoothDisabledSharp.js b/packages/material-ui-icons/src/BluetoothDisabledSharp.js new file mode 100644 index 00000000000000..37d7e47ef87813 --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothDisabledSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothDisabledSharp'); diff --git a/packages/material-ui-icons/src/BluetoothDisabledTwoTone.js b/packages/material-ui-icons/src/BluetoothDisabledTwoTone.js new file mode 100644 index 00000000000000..7d7d3a039525c8 --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothDisabledTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothDisabledTwoTone'); diff --git a/packages/material-ui-icons/src/BluetoothOutlined.js b/packages/material-ui-icons/src/BluetoothOutlined.js new file mode 100644 index 00000000000000..9d1257e30963b2 --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothOutlined'); diff --git a/packages/material-ui-icons/src/BluetoothRounded.js b/packages/material-ui-icons/src/BluetoothRounded.js new file mode 100644 index 00000000000000..8f0aa2545bfc57 --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothRounded'); diff --git a/packages/material-ui-icons/src/BluetoothSearching.js b/packages/material-ui-icons/src/BluetoothSearching.js index 319b90bf95cb85..5891d93289c378 100644 --- a/packages/material-ui-icons/src/BluetoothSearching.js +++ b/packages/material-ui-icons/src/BluetoothSearching.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'BluetoothSearching'); diff --git a/packages/material-ui-icons/src/BluetoothSearchingOutlined.js b/packages/material-ui-icons/src/BluetoothSearchingOutlined.js new file mode 100644 index 00000000000000..e567b29dbef39c --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothSearchingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothSearchingOutlined'); diff --git a/packages/material-ui-icons/src/BluetoothSearchingRounded.js b/packages/material-ui-icons/src/BluetoothSearchingRounded.js new file mode 100644 index 00000000000000..e294fd88092f8b --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothSearchingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothSearchingRounded'); diff --git a/packages/material-ui-icons/src/BluetoothSearchingSharp.js b/packages/material-ui-icons/src/BluetoothSearchingSharp.js new file mode 100644 index 00000000000000..49651b73c6d26a --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothSearchingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothSearchingSharp'); diff --git a/packages/material-ui-icons/src/BluetoothSearchingTwoTone.js b/packages/material-ui-icons/src/BluetoothSearchingTwoTone.js new file mode 100644 index 00000000000000..f234b994549319 --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothSearchingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothSearchingTwoTone'); diff --git a/packages/material-ui-icons/src/BluetoothSharp.js b/packages/material-ui-icons/src/BluetoothSharp.js new file mode 100644 index 00000000000000..f1ad78247bd75f --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothSharp'); diff --git a/packages/material-ui-icons/src/BluetoothTwoTone.js b/packages/material-ui-icons/src/BluetoothTwoTone.js new file mode 100644 index 00000000000000..9377bf32509fb5 --- /dev/null +++ b/packages/material-ui-icons/src/BluetoothTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BluetoothTwoTone'); diff --git a/packages/material-ui-icons/src/BlurCircularOutlined.js b/packages/material-ui-icons/src/BlurCircularOutlined.js new file mode 100644 index 00000000000000..ac0acec959db77 --- /dev/null +++ b/packages/material-ui-icons/src/BlurCircularOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurCircularOutlined'); diff --git a/packages/material-ui-icons/src/BlurCircularRounded.js b/packages/material-ui-icons/src/BlurCircularRounded.js new file mode 100644 index 00000000000000..57cd07a5aad4c8 --- /dev/null +++ b/packages/material-ui-icons/src/BlurCircularRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurCircularRounded'); diff --git a/packages/material-ui-icons/src/BlurCircularSharp.js b/packages/material-ui-icons/src/BlurCircularSharp.js new file mode 100644 index 00000000000000..9155f24341c0dd --- /dev/null +++ b/packages/material-ui-icons/src/BlurCircularSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurCircularSharp'); diff --git a/packages/material-ui-icons/src/BlurCircularTwoTone.js b/packages/material-ui-icons/src/BlurCircularTwoTone.js new file mode 100644 index 00000000000000..13609d2b02b4eb --- /dev/null +++ b/packages/material-ui-icons/src/BlurCircularTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurCircularTwoTone'); diff --git a/packages/material-ui-icons/src/BlurLinearOutlined.js b/packages/material-ui-icons/src/BlurLinearOutlined.js new file mode 100644 index 00000000000000..0306dd270b9ae4 --- /dev/null +++ b/packages/material-ui-icons/src/BlurLinearOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurLinearOutlined'); diff --git a/packages/material-ui-icons/src/BlurLinearRounded.js b/packages/material-ui-icons/src/BlurLinearRounded.js new file mode 100644 index 00000000000000..338192d7053bfc --- /dev/null +++ b/packages/material-ui-icons/src/BlurLinearRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurLinearRounded'); diff --git a/packages/material-ui-icons/src/BlurLinearSharp.js b/packages/material-ui-icons/src/BlurLinearSharp.js new file mode 100644 index 00000000000000..0d95a9eb258037 --- /dev/null +++ b/packages/material-ui-icons/src/BlurLinearSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurLinearSharp'); diff --git a/packages/material-ui-icons/src/BlurLinearTwoTone.js b/packages/material-ui-icons/src/BlurLinearTwoTone.js new file mode 100644 index 00000000000000..c9c43dac22575a --- /dev/null +++ b/packages/material-ui-icons/src/BlurLinearTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurLinearTwoTone'); diff --git a/packages/material-ui-icons/src/BlurOff.js b/packages/material-ui-icons/src/BlurOff.js index 7d6512ac2ebf29..8f241e30e18567 100644 --- a/packages/material-ui-icons/src/BlurOff.js +++ b/packages/material-ui-icons/src/BlurOff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'BlurOff'); diff --git a/packages/material-ui-icons/src/BlurOffOutlined.js b/packages/material-ui-icons/src/BlurOffOutlined.js new file mode 100644 index 00000000000000..e02a751cfbd755 --- /dev/null +++ b/packages/material-ui-icons/src/BlurOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurOffOutlined'); diff --git a/packages/material-ui-icons/src/BlurOffRounded.js b/packages/material-ui-icons/src/BlurOffRounded.js new file mode 100644 index 00000000000000..25b1dafef32cbd --- /dev/null +++ b/packages/material-ui-icons/src/BlurOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurOffRounded'); diff --git a/packages/material-ui-icons/src/BlurOffSharp.js b/packages/material-ui-icons/src/BlurOffSharp.js new file mode 100644 index 00000000000000..2897857f4c7281 --- /dev/null +++ b/packages/material-ui-icons/src/BlurOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurOffSharp'); diff --git a/packages/material-ui-icons/src/BlurOffTwoTone.js b/packages/material-ui-icons/src/BlurOffTwoTone.js new file mode 100644 index 00000000000000..81b4913bc841b8 --- /dev/null +++ b/packages/material-ui-icons/src/BlurOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurOffTwoTone'); diff --git a/packages/material-ui-icons/src/BlurOnOutlined.js b/packages/material-ui-icons/src/BlurOnOutlined.js new file mode 100644 index 00000000000000..1cbcbe5c88ae04 --- /dev/null +++ b/packages/material-ui-icons/src/BlurOnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurOnOutlined'); diff --git a/packages/material-ui-icons/src/BlurOnRounded.js b/packages/material-ui-icons/src/BlurOnRounded.js new file mode 100644 index 00000000000000..ccf53b3338a959 --- /dev/null +++ b/packages/material-ui-icons/src/BlurOnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurOnRounded'); diff --git a/packages/material-ui-icons/src/BlurOnSharp.js b/packages/material-ui-icons/src/BlurOnSharp.js new file mode 100644 index 00000000000000..6321fd71ebc403 --- /dev/null +++ b/packages/material-ui-icons/src/BlurOnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurOnSharp'); diff --git a/packages/material-ui-icons/src/BlurOnTwoTone.js b/packages/material-ui-icons/src/BlurOnTwoTone.js new file mode 100644 index 00000000000000..1c572da4f00838 --- /dev/null +++ b/packages/material-ui-icons/src/BlurOnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BlurOnTwoTone'); diff --git a/packages/material-ui-icons/src/BookOutlined.js b/packages/material-ui-icons/src/BookOutlined.js new file mode 100644 index 00000000000000..89c4719a7c784f --- /dev/null +++ b/packages/material-ui-icons/src/BookOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookOutlined'); diff --git a/packages/material-ui-icons/src/BookRounded.js b/packages/material-ui-icons/src/BookRounded.js new file mode 100644 index 00000000000000..ea7963c523ea1b --- /dev/null +++ b/packages/material-ui-icons/src/BookRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookRounded'); diff --git a/packages/material-ui-icons/src/BookSharp.js b/packages/material-ui-icons/src/BookSharp.js new file mode 100644 index 00000000000000..092f1a1f0f95f2 --- /dev/null +++ b/packages/material-ui-icons/src/BookSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookSharp'); diff --git a/packages/material-ui-icons/src/BookTwoTone.js b/packages/material-ui-icons/src/BookTwoTone.js new file mode 100644 index 00000000000000..cc5a46b715fba7 --- /dev/null +++ b/packages/material-ui-icons/src/BookTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookTwoTone'); diff --git a/packages/material-ui-icons/src/BookmarkBorderOutlined.js b/packages/material-ui-icons/src/BookmarkBorderOutlined.js new file mode 100644 index 00000000000000..1364ecb229d9bd --- /dev/null +++ b/packages/material-ui-icons/src/BookmarkBorderOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarkBorderOutlined'); diff --git a/packages/material-ui-icons/src/BookmarkBorderRounded.js b/packages/material-ui-icons/src/BookmarkBorderRounded.js new file mode 100644 index 00000000000000..4a61c1d0d69c43 --- /dev/null +++ b/packages/material-ui-icons/src/BookmarkBorderRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarkBorderRounded'); diff --git a/packages/material-ui-icons/src/BookmarkBorderSharp.js b/packages/material-ui-icons/src/BookmarkBorderSharp.js new file mode 100644 index 00000000000000..2251e10166dfa0 --- /dev/null +++ b/packages/material-ui-icons/src/BookmarkBorderSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarkBorderSharp'); diff --git a/packages/material-ui-icons/src/BookmarkBorderTwoTone.js b/packages/material-ui-icons/src/BookmarkBorderTwoTone.js new file mode 100644 index 00000000000000..9270e88838a4e5 --- /dev/null +++ b/packages/material-ui-icons/src/BookmarkBorderTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarkBorderTwoTone'); diff --git a/packages/material-ui-icons/src/BookmarkOutlined.js b/packages/material-ui-icons/src/BookmarkOutlined.js new file mode 100644 index 00000000000000..952dc119812fb8 --- /dev/null +++ b/packages/material-ui-icons/src/BookmarkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarkOutlined'); diff --git a/packages/material-ui-icons/src/BookmarkRounded.js b/packages/material-ui-icons/src/BookmarkRounded.js new file mode 100644 index 00000000000000..9178a707a06aff --- /dev/null +++ b/packages/material-ui-icons/src/BookmarkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarkRounded'); diff --git a/packages/material-ui-icons/src/BookmarkSharp.js b/packages/material-ui-icons/src/BookmarkSharp.js new file mode 100644 index 00000000000000..e75d3992c302c2 --- /dev/null +++ b/packages/material-ui-icons/src/BookmarkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarkSharp'); diff --git a/packages/material-ui-icons/src/BookmarkTwoTone.js b/packages/material-ui-icons/src/BookmarkTwoTone.js new file mode 100644 index 00000000000000..e70bf5ff6c4192 --- /dev/null +++ b/packages/material-ui-icons/src/BookmarkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarkTwoTone'); diff --git a/packages/material-ui-icons/src/Bookmarks.js b/packages/material-ui-icons/src/Bookmarks.js new file mode 100644 index 00000000000000..d85045d70236c5 --- /dev/null +++ b/packages/material-ui-icons/src/Bookmarks.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Bookmarks'); diff --git a/packages/material-ui-icons/src/BookmarksOutlined.js b/packages/material-ui-icons/src/BookmarksOutlined.js new file mode 100644 index 00000000000000..ea5b6db851fed7 --- /dev/null +++ b/packages/material-ui-icons/src/BookmarksOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarksOutlined'); diff --git a/packages/material-ui-icons/src/BookmarksRounded.js b/packages/material-ui-icons/src/BookmarksRounded.js new file mode 100644 index 00000000000000..3f2b7054cb2e5f --- /dev/null +++ b/packages/material-ui-icons/src/BookmarksRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarksRounded'); diff --git a/packages/material-ui-icons/src/BookmarksSharp.js b/packages/material-ui-icons/src/BookmarksSharp.js new file mode 100644 index 00000000000000..3c4c0abcddddbd --- /dev/null +++ b/packages/material-ui-icons/src/BookmarksSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarksSharp'); diff --git a/packages/material-ui-icons/src/BookmarksTwoTone.js b/packages/material-ui-icons/src/BookmarksTwoTone.js new file mode 100644 index 00000000000000..2540172d372fd6 --- /dev/null +++ b/packages/material-ui-icons/src/BookmarksTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BookmarksTwoTone'); diff --git a/packages/material-ui-icons/src/BorderAllOutlined.js b/packages/material-ui-icons/src/BorderAllOutlined.js new file mode 100644 index 00000000000000..e043c7bdae9fb2 --- /dev/null +++ b/packages/material-ui-icons/src/BorderAllOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderAllOutlined'); diff --git a/packages/material-ui-icons/src/BorderAllRounded.js b/packages/material-ui-icons/src/BorderAllRounded.js new file mode 100644 index 00000000000000..1456a5ad985396 --- /dev/null +++ b/packages/material-ui-icons/src/BorderAllRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderAllRounded'); diff --git a/packages/material-ui-icons/src/BorderAllSharp.js b/packages/material-ui-icons/src/BorderAllSharp.js new file mode 100644 index 00000000000000..7bb52d01037005 --- /dev/null +++ b/packages/material-ui-icons/src/BorderAllSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderAllSharp'); diff --git a/packages/material-ui-icons/src/BorderAllTwoTone.js b/packages/material-ui-icons/src/BorderAllTwoTone.js new file mode 100644 index 00000000000000..25bc6553f59545 --- /dev/null +++ b/packages/material-ui-icons/src/BorderAllTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderAllTwoTone'); diff --git a/packages/material-ui-icons/src/BorderBottomOutlined.js b/packages/material-ui-icons/src/BorderBottomOutlined.js new file mode 100644 index 00000000000000..284baffd3ba1ff --- /dev/null +++ b/packages/material-ui-icons/src/BorderBottomOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderBottomOutlined'); diff --git a/packages/material-ui-icons/src/BorderBottomRounded.js b/packages/material-ui-icons/src/BorderBottomRounded.js new file mode 100644 index 00000000000000..97fbaaa65c4031 --- /dev/null +++ b/packages/material-ui-icons/src/BorderBottomRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderBottomRounded'); diff --git a/packages/material-ui-icons/src/BorderBottomSharp.js b/packages/material-ui-icons/src/BorderBottomSharp.js new file mode 100644 index 00000000000000..e992ce6c2db644 --- /dev/null +++ b/packages/material-ui-icons/src/BorderBottomSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderBottomSharp'); diff --git a/packages/material-ui-icons/src/BorderBottomTwoTone.js b/packages/material-ui-icons/src/BorderBottomTwoTone.js new file mode 100644 index 00000000000000..d0e1c0ced4736f --- /dev/null +++ b/packages/material-ui-icons/src/BorderBottomTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderBottomTwoTone'); diff --git a/packages/material-ui-icons/src/BorderClearOutlined.js b/packages/material-ui-icons/src/BorderClearOutlined.js new file mode 100644 index 00000000000000..11ba5525eec704 --- /dev/null +++ b/packages/material-ui-icons/src/BorderClearOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderClearOutlined'); diff --git a/packages/material-ui-icons/src/BorderClearRounded.js b/packages/material-ui-icons/src/BorderClearRounded.js new file mode 100644 index 00000000000000..32ca98483e3941 --- /dev/null +++ b/packages/material-ui-icons/src/BorderClearRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderClearRounded'); diff --git a/packages/material-ui-icons/src/BorderClearSharp.js b/packages/material-ui-icons/src/BorderClearSharp.js new file mode 100644 index 00000000000000..699da907988d8a --- /dev/null +++ b/packages/material-ui-icons/src/BorderClearSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderClearSharp'); diff --git a/packages/material-ui-icons/src/BorderClearTwoTone.js b/packages/material-ui-icons/src/BorderClearTwoTone.js new file mode 100644 index 00000000000000..18efd2fc8d813c --- /dev/null +++ b/packages/material-ui-icons/src/BorderClearTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderClearTwoTone'); diff --git a/packages/material-ui-icons/src/BorderColor.js b/packages/material-ui-icons/src/BorderColor.js index 0770f332f79a7d..c03a158f7e6f1e 100644 --- a/packages/material-ui-icons/src/BorderColor.js +++ b/packages/material-ui-icons/src/BorderColor.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'BorderColor'); diff --git a/packages/material-ui-icons/src/BorderColorOutlined.js b/packages/material-ui-icons/src/BorderColorOutlined.js new file mode 100644 index 00000000000000..ab5c47aaef0dd4 --- /dev/null +++ b/packages/material-ui-icons/src/BorderColorOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderColorOutlined'); diff --git a/packages/material-ui-icons/src/BorderColorRounded.js b/packages/material-ui-icons/src/BorderColorRounded.js new file mode 100644 index 00000000000000..e438971e47ada9 --- /dev/null +++ b/packages/material-ui-icons/src/BorderColorRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderColorRounded'); diff --git a/packages/material-ui-icons/src/BorderColorSharp.js b/packages/material-ui-icons/src/BorderColorSharp.js new file mode 100644 index 00000000000000..9cd3e22e012a67 --- /dev/null +++ b/packages/material-ui-icons/src/BorderColorSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderColorSharp'); diff --git a/packages/material-ui-icons/src/BorderColorTwoTone.js b/packages/material-ui-icons/src/BorderColorTwoTone.js new file mode 100644 index 00000000000000..9fc4fd3924951a --- /dev/null +++ b/packages/material-ui-icons/src/BorderColorTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderColorTwoTone'); diff --git a/packages/material-ui-icons/src/BorderHorizontalOutlined.js b/packages/material-ui-icons/src/BorderHorizontalOutlined.js new file mode 100644 index 00000000000000..998ed3a7d98f7b --- /dev/null +++ b/packages/material-ui-icons/src/BorderHorizontalOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderHorizontalOutlined'); diff --git a/packages/material-ui-icons/src/BorderHorizontalRounded.js b/packages/material-ui-icons/src/BorderHorizontalRounded.js new file mode 100644 index 00000000000000..ac240cb6eaf89e --- /dev/null +++ b/packages/material-ui-icons/src/BorderHorizontalRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderHorizontalRounded'); diff --git a/packages/material-ui-icons/src/BorderHorizontalSharp.js b/packages/material-ui-icons/src/BorderHorizontalSharp.js new file mode 100644 index 00000000000000..ee89e87a9cf9fe --- /dev/null +++ b/packages/material-ui-icons/src/BorderHorizontalSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderHorizontalSharp'); diff --git a/packages/material-ui-icons/src/BorderHorizontalTwoTone.js b/packages/material-ui-icons/src/BorderHorizontalTwoTone.js new file mode 100644 index 00000000000000..48dd874e799a64 --- /dev/null +++ b/packages/material-ui-icons/src/BorderHorizontalTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderHorizontalTwoTone'); diff --git a/packages/material-ui-icons/src/BorderInnerOutlined.js b/packages/material-ui-icons/src/BorderInnerOutlined.js new file mode 100644 index 00000000000000..adbd3a41da0cc7 --- /dev/null +++ b/packages/material-ui-icons/src/BorderInnerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderInnerOutlined'); diff --git a/packages/material-ui-icons/src/BorderInnerRounded.js b/packages/material-ui-icons/src/BorderInnerRounded.js new file mode 100644 index 00000000000000..84f64df7f2d43d --- /dev/null +++ b/packages/material-ui-icons/src/BorderInnerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderInnerRounded'); diff --git a/packages/material-ui-icons/src/BorderInnerSharp.js b/packages/material-ui-icons/src/BorderInnerSharp.js new file mode 100644 index 00000000000000..e6bdf828fa26dd --- /dev/null +++ b/packages/material-ui-icons/src/BorderInnerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderInnerSharp'); diff --git a/packages/material-ui-icons/src/BorderInnerTwoTone.js b/packages/material-ui-icons/src/BorderInnerTwoTone.js new file mode 100644 index 00000000000000..6019e39f5242c1 --- /dev/null +++ b/packages/material-ui-icons/src/BorderInnerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderInnerTwoTone'); diff --git a/packages/material-ui-icons/src/BorderLeftOutlined.js b/packages/material-ui-icons/src/BorderLeftOutlined.js new file mode 100644 index 00000000000000..aa560246a63ebc --- /dev/null +++ b/packages/material-ui-icons/src/BorderLeftOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderLeftOutlined'); diff --git a/packages/material-ui-icons/src/BorderLeftRounded.js b/packages/material-ui-icons/src/BorderLeftRounded.js new file mode 100644 index 00000000000000..abc0896a7d1c9a --- /dev/null +++ b/packages/material-ui-icons/src/BorderLeftRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderLeftRounded'); diff --git a/packages/material-ui-icons/src/BorderLeftSharp.js b/packages/material-ui-icons/src/BorderLeftSharp.js new file mode 100644 index 00000000000000..351ca538d51b6e --- /dev/null +++ b/packages/material-ui-icons/src/BorderLeftSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderLeftSharp'); diff --git a/packages/material-ui-icons/src/BorderLeftTwoTone.js b/packages/material-ui-icons/src/BorderLeftTwoTone.js new file mode 100644 index 00000000000000..cdc4075c783e48 --- /dev/null +++ b/packages/material-ui-icons/src/BorderLeftTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderLeftTwoTone'); diff --git a/packages/material-ui-icons/src/BorderOuterOutlined.js b/packages/material-ui-icons/src/BorderOuterOutlined.js new file mode 100644 index 00000000000000..44f941c88941d2 --- /dev/null +++ b/packages/material-ui-icons/src/BorderOuterOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderOuterOutlined'); diff --git a/packages/material-ui-icons/src/BorderOuterRounded.js b/packages/material-ui-icons/src/BorderOuterRounded.js new file mode 100644 index 00000000000000..c3f0729119aa3d --- /dev/null +++ b/packages/material-ui-icons/src/BorderOuterRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderOuterRounded'); diff --git a/packages/material-ui-icons/src/BorderOuterSharp.js b/packages/material-ui-icons/src/BorderOuterSharp.js new file mode 100644 index 00000000000000..2720b274364165 --- /dev/null +++ b/packages/material-ui-icons/src/BorderOuterSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderOuterSharp'); diff --git a/packages/material-ui-icons/src/BorderOuterTwoTone.js b/packages/material-ui-icons/src/BorderOuterTwoTone.js new file mode 100644 index 00000000000000..71a9437927f128 --- /dev/null +++ b/packages/material-ui-icons/src/BorderOuterTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderOuterTwoTone'); diff --git a/packages/material-ui-icons/src/BorderRightOutlined.js b/packages/material-ui-icons/src/BorderRightOutlined.js new file mode 100644 index 00000000000000..2a2d1ad146e3a1 --- /dev/null +++ b/packages/material-ui-icons/src/BorderRightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderRightOutlined'); diff --git a/packages/material-ui-icons/src/BorderRightRounded.js b/packages/material-ui-icons/src/BorderRightRounded.js new file mode 100644 index 00000000000000..c3c0a081f18de3 --- /dev/null +++ b/packages/material-ui-icons/src/BorderRightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderRightRounded'); diff --git a/packages/material-ui-icons/src/BorderRightSharp.js b/packages/material-ui-icons/src/BorderRightSharp.js new file mode 100644 index 00000000000000..a3df0d87625b0d --- /dev/null +++ b/packages/material-ui-icons/src/BorderRightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderRightSharp'); diff --git a/packages/material-ui-icons/src/BorderRightTwoTone.js b/packages/material-ui-icons/src/BorderRightTwoTone.js new file mode 100644 index 00000000000000..cb49d9e8a27936 --- /dev/null +++ b/packages/material-ui-icons/src/BorderRightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderRightTwoTone'); diff --git a/packages/material-ui-icons/src/BorderStyleOutlined.js b/packages/material-ui-icons/src/BorderStyleOutlined.js new file mode 100644 index 00000000000000..1dbec445d4b102 --- /dev/null +++ b/packages/material-ui-icons/src/BorderStyleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderStyleOutlined'); diff --git a/packages/material-ui-icons/src/BorderStyleRounded.js b/packages/material-ui-icons/src/BorderStyleRounded.js new file mode 100644 index 00000000000000..39994a3576158d --- /dev/null +++ b/packages/material-ui-icons/src/BorderStyleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderStyleRounded'); diff --git a/packages/material-ui-icons/src/BorderStyleSharp.js b/packages/material-ui-icons/src/BorderStyleSharp.js new file mode 100644 index 00000000000000..669e99e187dbbd --- /dev/null +++ b/packages/material-ui-icons/src/BorderStyleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderStyleSharp'); diff --git a/packages/material-ui-icons/src/BorderStyleTwoTone.js b/packages/material-ui-icons/src/BorderStyleTwoTone.js new file mode 100644 index 00000000000000..6bc3fc720c225b --- /dev/null +++ b/packages/material-ui-icons/src/BorderStyleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderStyleTwoTone'); diff --git a/packages/material-ui-icons/src/BorderTopOutlined.js b/packages/material-ui-icons/src/BorderTopOutlined.js new file mode 100644 index 00000000000000..01022336e1fc99 --- /dev/null +++ b/packages/material-ui-icons/src/BorderTopOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderTopOutlined'); diff --git a/packages/material-ui-icons/src/BorderTopRounded.js b/packages/material-ui-icons/src/BorderTopRounded.js new file mode 100644 index 00000000000000..70edb59e16a5bc --- /dev/null +++ b/packages/material-ui-icons/src/BorderTopRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderTopRounded'); diff --git a/packages/material-ui-icons/src/BorderTopSharp.js b/packages/material-ui-icons/src/BorderTopSharp.js new file mode 100644 index 00000000000000..7740067a22fc3b --- /dev/null +++ b/packages/material-ui-icons/src/BorderTopSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderTopSharp'); diff --git a/packages/material-ui-icons/src/BorderTopTwoTone.js b/packages/material-ui-icons/src/BorderTopTwoTone.js new file mode 100644 index 00000000000000..2811ce862ff53e --- /dev/null +++ b/packages/material-ui-icons/src/BorderTopTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderTopTwoTone'); diff --git a/packages/material-ui-icons/src/BorderVerticalOutlined.js b/packages/material-ui-icons/src/BorderVerticalOutlined.js new file mode 100644 index 00000000000000..3cc6f3e92f4e1a --- /dev/null +++ b/packages/material-ui-icons/src/BorderVerticalOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderVerticalOutlined'); diff --git a/packages/material-ui-icons/src/BorderVerticalRounded.js b/packages/material-ui-icons/src/BorderVerticalRounded.js new file mode 100644 index 00000000000000..8e0eb205aec89d --- /dev/null +++ b/packages/material-ui-icons/src/BorderVerticalRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderVerticalRounded'); diff --git a/packages/material-ui-icons/src/BorderVerticalSharp.js b/packages/material-ui-icons/src/BorderVerticalSharp.js new file mode 100644 index 00000000000000..6ae6f598a87f77 --- /dev/null +++ b/packages/material-ui-icons/src/BorderVerticalSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderVerticalSharp'); diff --git a/packages/material-ui-icons/src/BorderVerticalTwoTone.js b/packages/material-ui-icons/src/BorderVerticalTwoTone.js new file mode 100644 index 00000000000000..1173f72701722f --- /dev/null +++ b/packages/material-ui-icons/src/BorderVerticalTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BorderVerticalTwoTone'); diff --git a/packages/material-ui-icons/src/BrandingWatermarkOutlined.js b/packages/material-ui-icons/src/BrandingWatermarkOutlined.js new file mode 100644 index 00000000000000..30af3190b0c467 --- /dev/null +++ b/packages/material-ui-icons/src/BrandingWatermarkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrandingWatermarkOutlined'); diff --git a/packages/material-ui-icons/src/BrandingWatermarkRounded.js b/packages/material-ui-icons/src/BrandingWatermarkRounded.js new file mode 100644 index 00000000000000..8f5d2717a08934 --- /dev/null +++ b/packages/material-ui-icons/src/BrandingWatermarkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrandingWatermarkRounded'); diff --git a/packages/material-ui-icons/src/BrandingWatermarkSharp.js b/packages/material-ui-icons/src/BrandingWatermarkSharp.js new file mode 100644 index 00000000000000..9977cd33bfff8f --- /dev/null +++ b/packages/material-ui-icons/src/BrandingWatermarkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrandingWatermarkSharp'); diff --git a/packages/material-ui-icons/src/BrandingWatermarkTwoTone.js b/packages/material-ui-icons/src/BrandingWatermarkTwoTone.js new file mode 100644 index 00000000000000..b9b07762e0e0c1 --- /dev/null +++ b/packages/material-ui-icons/src/BrandingWatermarkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrandingWatermarkTwoTone'); diff --git a/packages/material-ui-icons/src/Brightness1Outlined.js b/packages/material-ui-icons/src/Brightness1Outlined.js new file mode 100644 index 00000000000000..3ad4a5c1ebf609 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness1Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness1Outlined'); diff --git a/packages/material-ui-icons/src/Brightness1Rounded.js b/packages/material-ui-icons/src/Brightness1Rounded.js new file mode 100644 index 00000000000000..693fa8ead71d92 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness1Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness1Rounded'); diff --git a/packages/material-ui-icons/src/Brightness1Sharp.js b/packages/material-ui-icons/src/Brightness1Sharp.js new file mode 100644 index 00000000000000..8810bb98dc1481 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness1Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness1Sharp'); diff --git a/packages/material-ui-icons/src/Brightness1TwoTone.js b/packages/material-ui-icons/src/Brightness1TwoTone.js new file mode 100644 index 00000000000000..808eb9e3e598ef --- /dev/null +++ b/packages/material-ui-icons/src/Brightness1TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness1TwoTone'); diff --git a/packages/material-ui-icons/src/Brightness2Outlined.js b/packages/material-ui-icons/src/Brightness2Outlined.js new file mode 100644 index 00000000000000..c94be44656c21f --- /dev/null +++ b/packages/material-ui-icons/src/Brightness2Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness2Outlined'); diff --git a/packages/material-ui-icons/src/Brightness2Rounded.js b/packages/material-ui-icons/src/Brightness2Rounded.js new file mode 100644 index 00000000000000..3cd1d5b0b704c1 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness2Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness2Rounded'); diff --git a/packages/material-ui-icons/src/Brightness2Sharp.js b/packages/material-ui-icons/src/Brightness2Sharp.js new file mode 100644 index 00000000000000..b0ebba58f5c243 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness2Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness2Sharp'); diff --git a/packages/material-ui-icons/src/Brightness2TwoTone.js b/packages/material-ui-icons/src/Brightness2TwoTone.js new file mode 100644 index 00000000000000..94352c2436e4b3 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness2TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness2TwoTone'); diff --git a/packages/material-ui-icons/src/Brightness3Outlined.js b/packages/material-ui-icons/src/Brightness3Outlined.js new file mode 100644 index 00000000000000..480b48b62e8c49 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness3Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness3Outlined'); diff --git a/packages/material-ui-icons/src/Brightness3Rounded.js b/packages/material-ui-icons/src/Brightness3Rounded.js new file mode 100644 index 00000000000000..467de0edd74b48 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness3Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness3Rounded'); diff --git a/packages/material-ui-icons/src/Brightness3Sharp.js b/packages/material-ui-icons/src/Brightness3Sharp.js new file mode 100644 index 00000000000000..234041f0775e30 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness3Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness3Sharp'); diff --git a/packages/material-ui-icons/src/Brightness3TwoTone.js b/packages/material-ui-icons/src/Brightness3TwoTone.js new file mode 100644 index 00000000000000..8818f7f88be75c --- /dev/null +++ b/packages/material-ui-icons/src/Brightness3TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness3TwoTone'); diff --git a/packages/material-ui-icons/src/Brightness4Outlined.js b/packages/material-ui-icons/src/Brightness4Outlined.js new file mode 100644 index 00000000000000..2cf4feda2e1371 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness4Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness4Outlined'); diff --git a/packages/material-ui-icons/src/Brightness4Rounded.js b/packages/material-ui-icons/src/Brightness4Rounded.js new file mode 100644 index 00000000000000..01e1b54e3fb5f8 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness4Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness4Rounded'); diff --git a/packages/material-ui-icons/src/Brightness4Sharp.js b/packages/material-ui-icons/src/Brightness4Sharp.js new file mode 100644 index 00000000000000..4c2da084a43d11 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness4Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness4Sharp'); diff --git a/packages/material-ui-icons/src/Brightness4TwoTone.js b/packages/material-ui-icons/src/Brightness4TwoTone.js new file mode 100644 index 00000000000000..0085029a42e314 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness4TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness4TwoTone'); diff --git a/packages/material-ui-icons/src/Brightness5Outlined.js b/packages/material-ui-icons/src/Brightness5Outlined.js new file mode 100644 index 00000000000000..899660da9f114f --- /dev/null +++ b/packages/material-ui-icons/src/Brightness5Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness5Outlined'); diff --git a/packages/material-ui-icons/src/Brightness5Rounded.js b/packages/material-ui-icons/src/Brightness5Rounded.js new file mode 100644 index 00000000000000..7c307faf7251da --- /dev/null +++ b/packages/material-ui-icons/src/Brightness5Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness5Rounded'); diff --git a/packages/material-ui-icons/src/Brightness5Sharp.js b/packages/material-ui-icons/src/Brightness5Sharp.js new file mode 100644 index 00000000000000..e6b933cf931964 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness5Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness5Sharp'); diff --git a/packages/material-ui-icons/src/Brightness5TwoTone.js b/packages/material-ui-icons/src/Brightness5TwoTone.js new file mode 100644 index 00000000000000..44ca240bd8704b --- /dev/null +++ b/packages/material-ui-icons/src/Brightness5TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness5TwoTone'); diff --git a/packages/material-ui-icons/src/Brightness6Outlined.js b/packages/material-ui-icons/src/Brightness6Outlined.js new file mode 100644 index 00000000000000..ac6e3e0491faa9 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness6Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness6Outlined'); diff --git a/packages/material-ui-icons/src/Brightness6Rounded.js b/packages/material-ui-icons/src/Brightness6Rounded.js new file mode 100644 index 00000000000000..9c353957942d29 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness6Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness6Rounded'); diff --git a/packages/material-ui-icons/src/Brightness6Sharp.js b/packages/material-ui-icons/src/Brightness6Sharp.js new file mode 100644 index 00000000000000..3c6d6e870b2abb --- /dev/null +++ b/packages/material-ui-icons/src/Brightness6Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness6Sharp'); diff --git a/packages/material-ui-icons/src/Brightness6TwoTone.js b/packages/material-ui-icons/src/Brightness6TwoTone.js new file mode 100644 index 00000000000000..4e6089eeca5ae6 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness6TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness6TwoTone'); diff --git a/packages/material-ui-icons/src/Brightness7Outlined.js b/packages/material-ui-icons/src/Brightness7Outlined.js new file mode 100644 index 00000000000000..6cb7a16df686e1 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness7Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness7Outlined'); diff --git a/packages/material-ui-icons/src/Brightness7Rounded.js b/packages/material-ui-icons/src/Brightness7Rounded.js new file mode 100644 index 00000000000000..01398cdeaa6d8b --- /dev/null +++ b/packages/material-ui-icons/src/Brightness7Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness7Rounded'); diff --git a/packages/material-ui-icons/src/Brightness7Sharp.js b/packages/material-ui-icons/src/Brightness7Sharp.js new file mode 100644 index 00000000000000..3afd04f92f84b2 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness7Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness7Sharp'); diff --git a/packages/material-ui-icons/src/Brightness7TwoTone.js b/packages/material-ui-icons/src/Brightness7TwoTone.js new file mode 100644 index 00000000000000..923682c81645e9 --- /dev/null +++ b/packages/material-ui-icons/src/Brightness7TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Brightness7TwoTone'); diff --git a/packages/material-ui-icons/src/BrightnessAutoOutlined.js b/packages/material-ui-icons/src/BrightnessAutoOutlined.js new file mode 100644 index 00000000000000..91b12c36c276e4 --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessAutoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessAutoOutlined'); diff --git a/packages/material-ui-icons/src/BrightnessAutoRounded.js b/packages/material-ui-icons/src/BrightnessAutoRounded.js new file mode 100644 index 00000000000000..064787a8846829 --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessAutoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessAutoRounded'); diff --git a/packages/material-ui-icons/src/BrightnessAutoSharp.js b/packages/material-ui-icons/src/BrightnessAutoSharp.js new file mode 100644 index 00000000000000..46dd90cbe8f43b --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessAutoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessAutoSharp'); diff --git a/packages/material-ui-icons/src/BrightnessAutoTwoTone.js b/packages/material-ui-icons/src/BrightnessAutoTwoTone.js new file mode 100644 index 00000000000000..9aea0e00580e2b --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessAutoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessAutoTwoTone'); diff --git a/packages/material-ui-icons/src/BrightnessHighOutlined.js b/packages/material-ui-icons/src/BrightnessHighOutlined.js new file mode 100644 index 00000000000000..ca9eeab43de75c --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessHighOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessHighOutlined'); diff --git a/packages/material-ui-icons/src/BrightnessHighRounded.js b/packages/material-ui-icons/src/BrightnessHighRounded.js new file mode 100644 index 00000000000000..40721ef23a75c1 --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessHighRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessHighRounded'); diff --git a/packages/material-ui-icons/src/BrightnessHighSharp.js b/packages/material-ui-icons/src/BrightnessHighSharp.js new file mode 100644 index 00000000000000..a330354628b3c0 --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessHighSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessHighSharp'); diff --git a/packages/material-ui-icons/src/BrightnessHighTwoTone.js b/packages/material-ui-icons/src/BrightnessHighTwoTone.js new file mode 100644 index 00000000000000..4e859e47eb0c29 --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessHighTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessHighTwoTone'); diff --git a/packages/material-ui-icons/src/BrightnessLowOutlined.js b/packages/material-ui-icons/src/BrightnessLowOutlined.js new file mode 100644 index 00000000000000..23d2cb0e742ede --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessLowOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessLowOutlined'); diff --git a/packages/material-ui-icons/src/BrightnessLowRounded.js b/packages/material-ui-icons/src/BrightnessLowRounded.js new file mode 100644 index 00000000000000..c6713a472d2c38 --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessLowRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessLowRounded'); diff --git a/packages/material-ui-icons/src/BrightnessLowSharp.js b/packages/material-ui-icons/src/BrightnessLowSharp.js new file mode 100644 index 00000000000000..47c126c2bf07ba --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessLowSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessLowSharp'); diff --git a/packages/material-ui-icons/src/BrightnessLowTwoTone.js b/packages/material-ui-icons/src/BrightnessLowTwoTone.js new file mode 100644 index 00000000000000..084e37ee4c5bc6 --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessLowTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessLowTwoTone'); diff --git a/packages/material-ui-icons/src/BrightnessMediumOutlined.js b/packages/material-ui-icons/src/BrightnessMediumOutlined.js new file mode 100644 index 00000000000000..b8e8f23d2f4949 --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessMediumOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessMediumOutlined'); diff --git a/packages/material-ui-icons/src/BrightnessMediumRounded.js b/packages/material-ui-icons/src/BrightnessMediumRounded.js new file mode 100644 index 00000000000000..15c77be79283a0 --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessMediumRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessMediumRounded'); diff --git a/packages/material-ui-icons/src/BrightnessMediumSharp.js b/packages/material-ui-icons/src/BrightnessMediumSharp.js new file mode 100644 index 00000000000000..9badb94c6dca6c --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessMediumSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessMediumSharp'); diff --git a/packages/material-ui-icons/src/BrightnessMediumTwoTone.js b/packages/material-ui-icons/src/BrightnessMediumTwoTone.js new file mode 100644 index 00000000000000..2efd9ec254cfe6 --- /dev/null +++ b/packages/material-ui-icons/src/BrightnessMediumTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrightnessMediumTwoTone'); diff --git a/packages/material-ui-icons/src/BrokenImageOutlined.js b/packages/material-ui-icons/src/BrokenImageOutlined.js new file mode 100644 index 00000000000000..49a554519f1cb7 --- /dev/null +++ b/packages/material-ui-icons/src/BrokenImageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrokenImageOutlined'); diff --git a/packages/material-ui-icons/src/BrokenImageRounded.js b/packages/material-ui-icons/src/BrokenImageRounded.js new file mode 100644 index 00000000000000..42c176bd894eb2 --- /dev/null +++ b/packages/material-ui-icons/src/BrokenImageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrokenImageRounded'); diff --git a/packages/material-ui-icons/src/BrokenImageSharp.js b/packages/material-ui-icons/src/BrokenImageSharp.js new file mode 100644 index 00000000000000..1d3201734253c3 --- /dev/null +++ b/packages/material-ui-icons/src/BrokenImageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrokenImageSharp'); diff --git a/packages/material-ui-icons/src/BrokenImageTwoTone.js b/packages/material-ui-icons/src/BrokenImageTwoTone.js new file mode 100644 index 00000000000000..00a3375726b7dc --- /dev/null +++ b/packages/material-ui-icons/src/BrokenImageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrokenImageTwoTone'); diff --git a/packages/material-ui-icons/src/Brush.js b/packages/material-ui-icons/src/Brush.js index fe4709cd188cbf..6becf7683de10e 100644 --- a/packages/material-ui-icons/src/Brush.js +++ b/packages/material-ui-icons/src/Brush.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Brush'); diff --git a/packages/material-ui-icons/src/BrushOutlined.js b/packages/material-ui-icons/src/BrushOutlined.js new file mode 100644 index 00000000000000..1e9a7c298fede3 --- /dev/null +++ b/packages/material-ui-icons/src/BrushOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrushOutlined'); diff --git a/packages/material-ui-icons/src/BrushRounded.js b/packages/material-ui-icons/src/BrushRounded.js new file mode 100644 index 00000000000000..10b10e05da1c18 --- /dev/null +++ b/packages/material-ui-icons/src/BrushRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrushRounded'); diff --git a/packages/material-ui-icons/src/BrushSharp.js b/packages/material-ui-icons/src/BrushSharp.js new file mode 100644 index 00000000000000..0012c56209d0e8 --- /dev/null +++ b/packages/material-ui-icons/src/BrushSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrushSharp'); diff --git a/packages/material-ui-icons/src/BrushTwoTone.js b/packages/material-ui-icons/src/BrushTwoTone.js new file mode 100644 index 00000000000000..dd2b0fd63468d6 --- /dev/null +++ b/packages/material-ui-icons/src/BrushTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BrushTwoTone'); diff --git a/packages/material-ui-icons/src/BubbleChartOutlined.js b/packages/material-ui-icons/src/BubbleChartOutlined.js new file mode 100644 index 00000000000000..555b5890398e82 --- /dev/null +++ b/packages/material-ui-icons/src/BubbleChartOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BubbleChartOutlined'); diff --git a/packages/material-ui-icons/src/BubbleChartRounded.js b/packages/material-ui-icons/src/BubbleChartRounded.js new file mode 100644 index 00000000000000..03703bbfd44ca9 --- /dev/null +++ b/packages/material-ui-icons/src/BubbleChartRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BubbleChartRounded'); diff --git a/packages/material-ui-icons/src/BubbleChartSharp.js b/packages/material-ui-icons/src/BubbleChartSharp.js new file mode 100644 index 00000000000000..245f15068a9776 --- /dev/null +++ b/packages/material-ui-icons/src/BubbleChartSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BubbleChartSharp'); diff --git a/packages/material-ui-icons/src/BubbleChartTwoTone.js b/packages/material-ui-icons/src/BubbleChartTwoTone.js new file mode 100644 index 00000000000000..f6ab62ebc1cf67 --- /dev/null +++ b/packages/material-ui-icons/src/BubbleChartTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BubbleChartTwoTone'); diff --git a/packages/material-ui-icons/src/BugReport.js b/packages/material-ui-icons/src/BugReport.js index 7fe829dd34ce24..d64afc96d94295 100644 --- a/packages/material-ui-icons/src/BugReport.js +++ b/packages/material-ui-icons/src/BugReport.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'BugReport'); diff --git a/packages/material-ui-icons/src/BugReportOutlined.js b/packages/material-ui-icons/src/BugReportOutlined.js new file mode 100644 index 00000000000000..4a3a40c6e6d289 --- /dev/null +++ b/packages/material-ui-icons/src/BugReportOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BugReportOutlined'); diff --git a/packages/material-ui-icons/src/BugReportRounded.js b/packages/material-ui-icons/src/BugReportRounded.js new file mode 100644 index 00000000000000..8362faca64a66f --- /dev/null +++ b/packages/material-ui-icons/src/BugReportRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BugReportRounded'); diff --git a/packages/material-ui-icons/src/BugReportSharp.js b/packages/material-ui-icons/src/BugReportSharp.js new file mode 100644 index 00000000000000..eb9adc182ed180 --- /dev/null +++ b/packages/material-ui-icons/src/BugReportSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BugReportSharp'); diff --git a/packages/material-ui-icons/src/BugReportTwoTone.js b/packages/material-ui-icons/src/BugReportTwoTone.js new file mode 100644 index 00000000000000..48a55c0fc3cbce --- /dev/null +++ b/packages/material-ui-icons/src/BugReportTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BugReportTwoTone'); diff --git a/packages/material-ui-icons/src/BuildOutlined.js b/packages/material-ui-icons/src/BuildOutlined.js new file mode 100644 index 00000000000000..0fc6026809152a --- /dev/null +++ b/packages/material-ui-icons/src/BuildOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BuildOutlined'); diff --git a/packages/material-ui-icons/src/BuildRounded.js b/packages/material-ui-icons/src/BuildRounded.js new file mode 100644 index 00000000000000..d0731145f25f65 --- /dev/null +++ b/packages/material-ui-icons/src/BuildRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BuildRounded'); diff --git a/packages/material-ui-icons/src/BuildSharp.js b/packages/material-ui-icons/src/BuildSharp.js new file mode 100644 index 00000000000000..0a3364e57972e6 --- /dev/null +++ b/packages/material-ui-icons/src/BuildSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BuildSharp'); diff --git a/packages/material-ui-icons/src/BuildTwoTone.js b/packages/material-ui-icons/src/BuildTwoTone.js new file mode 100644 index 00000000000000..efc6c1f6d5e463 --- /dev/null +++ b/packages/material-ui-icons/src/BuildTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BuildTwoTone'); diff --git a/packages/material-ui-icons/src/BurstModeOutlined.js b/packages/material-ui-icons/src/BurstModeOutlined.js new file mode 100644 index 00000000000000..95a635b5707f11 --- /dev/null +++ b/packages/material-ui-icons/src/BurstModeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BurstModeOutlined'); diff --git a/packages/material-ui-icons/src/BurstModeRounded.js b/packages/material-ui-icons/src/BurstModeRounded.js new file mode 100644 index 00000000000000..13d176ee7b425d --- /dev/null +++ b/packages/material-ui-icons/src/BurstModeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BurstModeRounded'); diff --git a/packages/material-ui-icons/src/BurstModeSharp.js b/packages/material-ui-icons/src/BurstModeSharp.js new file mode 100644 index 00000000000000..5e598710b310ed --- /dev/null +++ b/packages/material-ui-icons/src/BurstModeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BurstModeSharp'); diff --git a/packages/material-ui-icons/src/BurstModeTwoTone.js b/packages/material-ui-icons/src/BurstModeTwoTone.js new file mode 100644 index 00000000000000..cca587b44c68e3 --- /dev/null +++ b/packages/material-ui-icons/src/BurstModeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BurstModeTwoTone'); diff --git a/packages/material-ui-icons/src/BusinessCenterOutlined.js b/packages/material-ui-icons/src/BusinessCenterOutlined.js new file mode 100644 index 00000000000000..e305e3430dd8ff --- /dev/null +++ b/packages/material-ui-icons/src/BusinessCenterOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BusinessCenterOutlined'); diff --git a/packages/material-ui-icons/src/BusinessCenterRounded.js b/packages/material-ui-icons/src/BusinessCenterRounded.js new file mode 100644 index 00000000000000..7ae2e185eec187 --- /dev/null +++ b/packages/material-ui-icons/src/BusinessCenterRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BusinessCenterRounded'); diff --git a/packages/material-ui-icons/src/BusinessCenterSharp.js b/packages/material-ui-icons/src/BusinessCenterSharp.js new file mode 100644 index 00000000000000..4bfcb697d3ff32 --- /dev/null +++ b/packages/material-ui-icons/src/BusinessCenterSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BusinessCenterSharp'); diff --git a/packages/material-ui-icons/src/BusinessCenterTwoTone.js b/packages/material-ui-icons/src/BusinessCenterTwoTone.js new file mode 100644 index 00000000000000..739a8e1627514a --- /dev/null +++ b/packages/material-ui-icons/src/BusinessCenterTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BusinessCenterTwoTone'); diff --git a/packages/material-ui-icons/src/BusinessOutlined.js b/packages/material-ui-icons/src/BusinessOutlined.js new file mode 100644 index 00000000000000..3c01310406acfd --- /dev/null +++ b/packages/material-ui-icons/src/BusinessOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BusinessOutlined'); diff --git a/packages/material-ui-icons/src/BusinessRounded.js b/packages/material-ui-icons/src/BusinessRounded.js new file mode 100644 index 00000000000000..71c258cf0a7cf7 --- /dev/null +++ b/packages/material-ui-icons/src/BusinessRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BusinessRounded'); diff --git a/packages/material-ui-icons/src/BusinessSharp.js b/packages/material-ui-icons/src/BusinessSharp.js new file mode 100644 index 00000000000000..3a07403fb11590 --- /dev/null +++ b/packages/material-ui-icons/src/BusinessSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BusinessSharp'); diff --git a/packages/material-ui-icons/src/BusinessTwoTone.js b/packages/material-ui-icons/src/BusinessTwoTone.js new file mode 100644 index 00000000000000..12cacefbd52bd0 --- /dev/null +++ b/packages/material-ui-icons/src/BusinessTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'BusinessTwoTone'); diff --git a/packages/material-ui-icons/src/Cached.js b/packages/material-ui-icons/src/Cached.js index 2a6104f73473d0..98211be7c0d319 100644 --- a/packages/material-ui-icons/src/Cached.js +++ b/packages/material-ui-icons/src/Cached.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Cached'); diff --git a/packages/material-ui-icons/src/CachedOutlined.js b/packages/material-ui-icons/src/CachedOutlined.js new file mode 100644 index 00000000000000..a2189fda7f1f13 --- /dev/null +++ b/packages/material-ui-icons/src/CachedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CachedOutlined'); diff --git a/packages/material-ui-icons/src/CachedRounded.js b/packages/material-ui-icons/src/CachedRounded.js new file mode 100644 index 00000000000000..5d08586f32b861 --- /dev/null +++ b/packages/material-ui-icons/src/CachedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CachedRounded'); diff --git a/packages/material-ui-icons/src/CachedSharp.js b/packages/material-ui-icons/src/CachedSharp.js new file mode 100644 index 00000000000000..b4961f7901fd65 --- /dev/null +++ b/packages/material-ui-icons/src/CachedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CachedSharp'); diff --git a/packages/material-ui-icons/src/CachedTwoTone.js b/packages/material-ui-icons/src/CachedTwoTone.js new file mode 100644 index 00000000000000..5529a9f69c845b --- /dev/null +++ b/packages/material-ui-icons/src/CachedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CachedTwoTone'); diff --git a/packages/material-ui-icons/src/Cake.js b/packages/material-ui-icons/src/Cake.js index 829dcb1f36cbf3..bd96334a5f2971 100644 --- a/packages/material-ui-icons/src/Cake.js +++ b/packages/material-ui-icons/src/Cake.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Cake'); diff --git a/packages/material-ui-icons/src/CakeOutlined.js b/packages/material-ui-icons/src/CakeOutlined.js new file mode 100644 index 00000000000000..3ada1c4d25c95c --- /dev/null +++ b/packages/material-ui-icons/src/CakeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CakeOutlined'); diff --git a/packages/material-ui-icons/src/CakeRounded.js b/packages/material-ui-icons/src/CakeRounded.js new file mode 100644 index 00000000000000..3f6205c49de5fd --- /dev/null +++ b/packages/material-ui-icons/src/CakeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CakeRounded'); diff --git a/packages/material-ui-icons/src/CakeSharp.js b/packages/material-ui-icons/src/CakeSharp.js new file mode 100644 index 00000000000000..8ae0877755fed9 --- /dev/null +++ b/packages/material-ui-icons/src/CakeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CakeSharp'); diff --git a/packages/material-ui-icons/src/CakeTwoTone.js b/packages/material-ui-icons/src/CakeTwoTone.js new file mode 100644 index 00000000000000..0886eb404e058a --- /dev/null +++ b/packages/material-ui-icons/src/CakeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CakeTwoTone'); diff --git a/packages/material-ui-icons/src/CalendarToday.js b/packages/material-ui-icons/src/CalendarToday.js new file mode 100644 index 00000000000000..029614c4644adb --- /dev/null +++ b/packages/material-ui-icons/src/CalendarToday.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CalendarToday'); diff --git a/packages/material-ui-icons/src/CalendarTodayOutlined.js b/packages/material-ui-icons/src/CalendarTodayOutlined.js new file mode 100644 index 00000000000000..0ce8a63268b50d --- /dev/null +++ b/packages/material-ui-icons/src/CalendarTodayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CalendarTodayOutlined'); diff --git a/packages/material-ui-icons/src/CalendarTodayRounded.js b/packages/material-ui-icons/src/CalendarTodayRounded.js new file mode 100644 index 00000000000000..07f7a824e61c19 --- /dev/null +++ b/packages/material-ui-icons/src/CalendarTodayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CalendarTodayRounded'); diff --git a/packages/material-ui-icons/src/CalendarTodaySharp.js b/packages/material-ui-icons/src/CalendarTodaySharp.js new file mode 100644 index 00000000000000..3e74cfd220e4ef --- /dev/null +++ b/packages/material-ui-icons/src/CalendarTodaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CalendarTodaySharp'); diff --git a/packages/material-ui-icons/src/CalendarTodayTwoTone.js b/packages/material-ui-icons/src/CalendarTodayTwoTone.js new file mode 100644 index 00000000000000..5380da61ea0182 --- /dev/null +++ b/packages/material-ui-icons/src/CalendarTodayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CalendarTodayTwoTone'); diff --git a/packages/material-ui-icons/src/CalendarViewDay.js b/packages/material-ui-icons/src/CalendarViewDay.js new file mode 100644 index 00000000000000..7391bad2c7a6d7 --- /dev/null +++ b/packages/material-ui-icons/src/CalendarViewDay.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CalendarViewDay'); diff --git a/packages/material-ui-icons/src/CalendarViewDayOutlined.js b/packages/material-ui-icons/src/CalendarViewDayOutlined.js new file mode 100644 index 00000000000000..c9acd3c114a0c2 --- /dev/null +++ b/packages/material-ui-icons/src/CalendarViewDayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CalendarViewDayOutlined'); diff --git a/packages/material-ui-icons/src/CalendarViewDayRounded.js b/packages/material-ui-icons/src/CalendarViewDayRounded.js new file mode 100644 index 00000000000000..08206b397363aa --- /dev/null +++ b/packages/material-ui-icons/src/CalendarViewDayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CalendarViewDayRounded'); diff --git a/packages/material-ui-icons/src/CalendarViewDaySharp.js b/packages/material-ui-icons/src/CalendarViewDaySharp.js new file mode 100644 index 00000000000000..b3c856a1e009f1 --- /dev/null +++ b/packages/material-ui-icons/src/CalendarViewDaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CalendarViewDaySharp'); diff --git a/packages/material-ui-icons/src/CalendarViewDayTwoTone.js b/packages/material-ui-icons/src/CalendarViewDayTwoTone.js new file mode 100644 index 00000000000000..2e7f9fe361ab1b --- /dev/null +++ b/packages/material-ui-icons/src/CalendarViewDayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CalendarViewDayTwoTone'); diff --git a/packages/material-ui-icons/src/Call.js b/packages/material-ui-icons/src/Call.js index b1e920f33dcb55..b9eb11bf2cd9f7 100644 --- a/packages/material-ui-icons/src/Call.js +++ b/packages/material-ui-icons/src/Call.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Call'); diff --git a/packages/material-ui-icons/src/CallEnd.js b/packages/material-ui-icons/src/CallEnd.js index 08f0b97136e749..6ff5ce04132a40 100644 --- a/packages/material-ui-icons/src/CallEnd.js +++ b/packages/material-ui-icons/src/CallEnd.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CallEnd'); diff --git a/packages/material-ui-icons/src/CallEndOutlined.js b/packages/material-ui-icons/src/CallEndOutlined.js new file mode 100644 index 00000000000000..502e218399b963 --- /dev/null +++ b/packages/material-ui-icons/src/CallEndOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallEndOutlined'); diff --git a/packages/material-ui-icons/src/CallEndRounded.js b/packages/material-ui-icons/src/CallEndRounded.js new file mode 100644 index 00000000000000..0e271c50ff3977 --- /dev/null +++ b/packages/material-ui-icons/src/CallEndRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallEndRounded'); diff --git a/packages/material-ui-icons/src/CallEndSharp.js b/packages/material-ui-icons/src/CallEndSharp.js new file mode 100644 index 00000000000000..409eaac9ba2840 --- /dev/null +++ b/packages/material-ui-icons/src/CallEndSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallEndSharp'); diff --git a/packages/material-ui-icons/src/CallEndTwoTone.js b/packages/material-ui-icons/src/CallEndTwoTone.js new file mode 100644 index 00000000000000..95536395d8c9cd --- /dev/null +++ b/packages/material-ui-icons/src/CallEndTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallEndTwoTone'); diff --git a/packages/material-ui-icons/src/CallMadeOutlined.js b/packages/material-ui-icons/src/CallMadeOutlined.js new file mode 100644 index 00000000000000..cdf00fffead026 --- /dev/null +++ b/packages/material-ui-icons/src/CallMadeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMadeOutlined'); diff --git a/packages/material-ui-icons/src/CallMadeRounded.js b/packages/material-ui-icons/src/CallMadeRounded.js new file mode 100644 index 00000000000000..429427c35b4901 --- /dev/null +++ b/packages/material-ui-icons/src/CallMadeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMadeRounded'); diff --git a/packages/material-ui-icons/src/CallMadeSharp.js b/packages/material-ui-icons/src/CallMadeSharp.js new file mode 100644 index 00000000000000..9ad51580387241 --- /dev/null +++ b/packages/material-ui-icons/src/CallMadeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMadeSharp'); diff --git a/packages/material-ui-icons/src/CallMadeTwoTone.js b/packages/material-ui-icons/src/CallMadeTwoTone.js new file mode 100644 index 00000000000000..7508e02cd3e229 --- /dev/null +++ b/packages/material-ui-icons/src/CallMadeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMadeTwoTone'); diff --git a/packages/material-ui-icons/src/CallMergeOutlined.js b/packages/material-ui-icons/src/CallMergeOutlined.js new file mode 100644 index 00000000000000..1190f07f11c0bb --- /dev/null +++ b/packages/material-ui-icons/src/CallMergeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMergeOutlined'); diff --git a/packages/material-ui-icons/src/CallMergeRounded.js b/packages/material-ui-icons/src/CallMergeRounded.js new file mode 100644 index 00000000000000..7e06f88cdffcf7 --- /dev/null +++ b/packages/material-ui-icons/src/CallMergeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMergeRounded'); diff --git a/packages/material-ui-icons/src/CallMergeSharp.js b/packages/material-ui-icons/src/CallMergeSharp.js new file mode 100644 index 00000000000000..3e5633ab9ad77a --- /dev/null +++ b/packages/material-ui-icons/src/CallMergeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMergeSharp'); diff --git a/packages/material-ui-icons/src/CallMergeTwoTone.js b/packages/material-ui-icons/src/CallMergeTwoTone.js new file mode 100644 index 00000000000000..ff164bc5e097b8 --- /dev/null +++ b/packages/material-ui-icons/src/CallMergeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMergeTwoTone'); diff --git a/packages/material-ui-icons/src/CallMissedOutgoing.js b/packages/material-ui-icons/src/CallMissedOutgoing.js index 7fefebf7855daf..9b476bb2b61c4b 100644 --- a/packages/material-ui-icons/src/CallMissedOutgoing.js +++ b/packages/material-ui-icons/src/CallMissedOutgoing.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CallMissedOutgoing'); diff --git a/packages/material-ui-icons/src/CallMissedOutgoingOutlined.js b/packages/material-ui-icons/src/CallMissedOutgoingOutlined.js new file mode 100644 index 00000000000000..b0c9dd55e1b9a9 --- /dev/null +++ b/packages/material-ui-icons/src/CallMissedOutgoingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMissedOutgoingOutlined'); diff --git a/packages/material-ui-icons/src/CallMissedOutgoingRounded.js b/packages/material-ui-icons/src/CallMissedOutgoingRounded.js new file mode 100644 index 00000000000000..224d083bbb1c5d --- /dev/null +++ b/packages/material-ui-icons/src/CallMissedOutgoingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMissedOutgoingRounded'); diff --git a/packages/material-ui-icons/src/CallMissedOutgoingSharp.js b/packages/material-ui-icons/src/CallMissedOutgoingSharp.js new file mode 100644 index 00000000000000..3d1737a6f5dbc8 --- /dev/null +++ b/packages/material-ui-icons/src/CallMissedOutgoingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMissedOutgoingSharp'); diff --git a/packages/material-ui-icons/src/CallMissedOutgoingTwoTone.js b/packages/material-ui-icons/src/CallMissedOutgoingTwoTone.js new file mode 100644 index 00000000000000..61b7d1f64e909d --- /dev/null +++ b/packages/material-ui-icons/src/CallMissedOutgoingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMissedOutgoingTwoTone'); diff --git a/packages/material-ui-icons/src/CallMissedOutlined.js b/packages/material-ui-icons/src/CallMissedOutlined.js new file mode 100644 index 00000000000000..2f4444c3d96193 --- /dev/null +++ b/packages/material-ui-icons/src/CallMissedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMissedOutlined'); diff --git a/packages/material-ui-icons/src/CallMissedRounded.js b/packages/material-ui-icons/src/CallMissedRounded.js new file mode 100644 index 00000000000000..cba338a65d2157 --- /dev/null +++ b/packages/material-ui-icons/src/CallMissedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMissedRounded'); diff --git a/packages/material-ui-icons/src/CallMissedSharp.js b/packages/material-ui-icons/src/CallMissedSharp.js new file mode 100644 index 00000000000000..a7bf035b776fb7 --- /dev/null +++ b/packages/material-ui-icons/src/CallMissedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMissedSharp'); diff --git a/packages/material-ui-icons/src/CallMissedTwoTone.js b/packages/material-ui-icons/src/CallMissedTwoTone.js new file mode 100644 index 00000000000000..76505a9e09c07f --- /dev/null +++ b/packages/material-ui-icons/src/CallMissedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallMissedTwoTone'); diff --git a/packages/material-ui-icons/src/CallOutlined.js b/packages/material-ui-icons/src/CallOutlined.js new file mode 100644 index 00000000000000..a57842f7a31c82 --- /dev/null +++ b/packages/material-ui-icons/src/CallOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallOutlined'); diff --git a/packages/material-ui-icons/src/CallReceivedOutlined.js b/packages/material-ui-icons/src/CallReceivedOutlined.js new file mode 100644 index 00000000000000..4c42006b8c79b8 --- /dev/null +++ b/packages/material-ui-icons/src/CallReceivedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallReceivedOutlined'); diff --git a/packages/material-ui-icons/src/CallReceivedRounded.js b/packages/material-ui-icons/src/CallReceivedRounded.js new file mode 100644 index 00000000000000..b30846df5b4b4c --- /dev/null +++ b/packages/material-ui-icons/src/CallReceivedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallReceivedRounded'); diff --git a/packages/material-ui-icons/src/CallReceivedSharp.js b/packages/material-ui-icons/src/CallReceivedSharp.js new file mode 100644 index 00000000000000..8af042b3e766c1 --- /dev/null +++ b/packages/material-ui-icons/src/CallReceivedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallReceivedSharp'); diff --git a/packages/material-ui-icons/src/CallReceivedTwoTone.js b/packages/material-ui-icons/src/CallReceivedTwoTone.js new file mode 100644 index 00000000000000..07937e8b6ebef4 --- /dev/null +++ b/packages/material-ui-icons/src/CallReceivedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallReceivedTwoTone'); diff --git a/packages/material-ui-icons/src/CallRounded.js b/packages/material-ui-icons/src/CallRounded.js new file mode 100644 index 00000000000000..26a229716b8dc2 --- /dev/null +++ b/packages/material-ui-icons/src/CallRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallRounded'); diff --git a/packages/material-ui-icons/src/CallSharp.js b/packages/material-ui-icons/src/CallSharp.js new file mode 100644 index 00000000000000..2302bda855c468 --- /dev/null +++ b/packages/material-ui-icons/src/CallSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallSharp'); diff --git a/packages/material-ui-icons/src/CallSplitOutlined.js b/packages/material-ui-icons/src/CallSplitOutlined.js new file mode 100644 index 00000000000000..6124715e871630 --- /dev/null +++ b/packages/material-ui-icons/src/CallSplitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallSplitOutlined'); diff --git a/packages/material-ui-icons/src/CallSplitRounded.js b/packages/material-ui-icons/src/CallSplitRounded.js new file mode 100644 index 00000000000000..e81e840650d380 --- /dev/null +++ b/packages/material-ui-icons/src/CallSplitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallSplitRounded'); diff --git a/packages/material-ui-icons/src/CallSplitSharp.js b/packages/material-ui-icons/src/CallSplitSharp.js new file mode 100644 index 00000000000000..a356b736803f28 --- /dev/null +++ b/packages/material-ui-icons/src/CallSplitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallSplitSharp'); diff --git a/packages/material-ui-icons/src/CallSplitTwoTone.js b/packages/material-ui-icons/src/CallSplitTwoTone.js new file mode 100644 index 00000000000000..473022451d9c32 --- /dev/null +++ b/packages/material-ui-icons/src/CallSplitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallSplitTwoTone'); diff --git a/packages/material-ui-icons/src/CallToActionOutlined.js b/packages/material-ui-icons/src/CallToActionOutlined.js new file mode 100644 index 00000000000000..a48ebb24fbc3c8 --- /dev/null +++ b/packages/material-ui-icons/src/CallToActionOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallToActionOutlined'); diff --git a/packages/material-ui-icons/src/CallToActionRounded.js b/packages/material-ui-icons/src/CallToActionRounded.js new file mode 100644 index 00000000000000..5226a98fc898af --- /dev/null +++ b/packages/material-ui-icons/src/CallToActionRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallToActionRounded'); diff --git a/packages/material-ui-icons/src/CallToActionSharp.js b/packages/material-ui-icons/src/CallToActionSharp.js new file mode 100644 index 00000000000000..4fa9e3dfbbac48 --- /dev/null +++ b/packages/material-ui-icons/src/CallToActionSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallToActionSharp'); diff --git a/packages/material-ui-icons/src/CallToActionTwoTone.js b/packages/material-ui-icons/src/CallToActionTwoTone.js new file mode 100644 index 00000000000000..eada86ce79e666 --- /dev/null +++ b/packages/material-ui-icons/src/CallToActionTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallToActionTwoTone'); diff --git a/packages/material-ui-icons/src/CallTwoTone.js b/packages/material-ui-icons/src/CallTwoTone.js new file mode 100644 index 00000000000000..67188d9c44379e --- /dev/null +++ b/packages/material-ui-icons/src/CallTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CallTwoTone'); diff --git a/packages/material-ui-icons/src/Camera.js b/packages/material-ui-icons/src/Camera.js index d3e717e40f7b4c..c611673c0d1db0 100644 --- a/packages/material-ui-icons/src/Camera.js +++ b/packages/material-ui-icons/src/Camera.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Camera'); diff --git a/packages/material-ui-icons/src/CameraAltOutlined.js b/packages/material-ui-icons/src/CameraAltOutlined.js new file mode 100644 index 00000000000000..17e5908b08ce5e --- /dev/null +++ b/packages/material-ui-icons/src/CameraAltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraAltOutlined'); diff --git a/packages/material-ui-icons/src/CameraAltRounded.js b/packages/material-ui-icons/src/CameraAltRounded.js new file mode 100644 index 00000000000000..b882f0bf7b33c9 --- /dev/null +++ b/packages/material-ui-icons/src/CameraAltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraAltRounded'); diff --git a/packages/material-ui-icons/src/CameraAltSharp.js b/packages/material-ui-icons/src/CameraAltSharp.js new file mode 100644 index 00000000000000..df079024f383ac --- /dev/null +++ b/packages/material-ui-icons/src/CameraAltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraAltSharp'); diff --git a/packages/material-ui-icons/src/CameraAltTwoTone.js b/packages/material-ui-icons/src/CameraAltTwoTone.js new file mode 100644 index 00000000000000..dd5c1e8ab3fd0b --- /dev/null +++ b/packages/material-ui-icons/src/CameraAltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraAltTwoTone'); diff --git a/packages/material-ui-icons/src/CameraEnhance.js b/packages/material-ui-icons/src/CameraEnhance.js index 139ff78097d1f8..db816b25ee4e05 100644 --- a/packages/material-ui-icons/src/CameraEnhance.js +++ b/packages/material-ui-icons/src/CameraEnhance.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CameraEnhance'); diff --git a/packages/material-ui-icons/src/CameraEnhanceOutlined.js b/packages/material-ui-icons/src/CameraEnhanceOutlined.js new file mode 100644 index 00000000000000..97535cdb7a894e --- /dev/null +++ b/packages/material-ui-icons/src/CameraEnhanceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraEnhanceOutlined'); diff --git a/packages/material-ui-icons/src/CameraEnhanceRounded.js b/packages/material-ui-icons/src/CameraEnhanceRounded.js new file mode 100644 index 00000000000000..ce7925d35c070f --- /dev/null +++ b/packages/material-ui-icons/src/CameraEnhanceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraEnhanceRounded'); diff --git a/packages/material-ui-icons/src/CameraEnhanceSharp.js b/packages/material-ui-icons/src/CameraEnhanceSharp.js new file mode 100644 index 00000000000000..7e35ba7b90f33b --- /dev/null +++ b/packages/material-ui-icons/src/CameraEnhanceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraEnhanceSharp'); diff --git a/packages/material-ui-icons/src/CameraEnhanceTwoTone.js b/packages/material-ui-icons/src/CameraEnhanceTwoTone.js new file mode 100644 index 00000000000000..15607c5742c490 --- /dev/null +++ b/packages/material-ui-icons/src/CameraEnhanceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraEnhanceTwoTone'); diff --git a/packages/material-ui-icons/src/CameraFrontOutlined.js b/packages/material-ui-icons/src/CameraFrontOutlined.js new file mode 100644 index 00000000000000..530f73a1c8f674 --- /dev/null +++ b/packages/material-ui-icons/src/CameraFrontOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraFrontOutlined'); diff --git a/packages/material-ui-icons/src/CameraFrontRounded.js b/packages/material-ui-icons/src/CameraFrontRounded.js new file mode 100644 index 00000000000000..725a6fd855dca7 --- /dev/null +++ b/packages/material-ui-icons/src/CameraFrontRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraFrontRounded'); diff --git a/packages/material-ui-icons/src/CameraFrontSharp.js b/packages/material-ui-icons/src/CameraFrontSharp.js new file mode 100644 index 00000000000000..10f18756ebc256 --- /dev/null +++ b/packages/material-ui-icons/src/CameraFrontSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraFrontSharp'); diff --git a/packages/material-ui-icons/src/CameraFrontTwoTone.js b/packages/material-ui-icons/src/CameraFrontTwoTone.js new file mode 100644 index 00000000000000..15424a54207a79 --- /dev/null +++ b/packages/material-ui-icons/src/CameraFrontTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraFrontTwoTone'); diff --git a/packages/material-ui-icons/src/CameraOutlined.js b/packages/material-ui-icons/src/CameraOutlined.js new file mode 100644 index 00000000000000..fea22858e937ec --- /dev/null +++ b/packages/material-ui-icons/src/CameraOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraOutlined'); diff --git a/packages/material-ui-icons/src/CameraRearOutlined.js b/packages/material-ui-icons/src/CameraRearOutlined.js new file mode 100644 index 00000000000000..1f1a59fd7f0e93 --- /dev/null +++ b/packages/material-ui-icons/src/CameraRearOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraRearOutlined'); diff --git a/packages/material-ui-icons/src/CameraRearRounded.js b/packages/material-ui-icons/src/CameraRearRounded.js new file mode 100644 index 00000000000000..0af13cee4b5513 --- /dev/null +++ b/packages/material-ui-icons/src/CameraRearRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraRearRounded'); diff --git a/packages/material-ui-icons/src/CameraRearSharp.js b/packages/material-ui-icons/src/CameraRearSharp.js new file mode 100644 index 00000000000000..8d9a57d2e3202a --- /dev/null +++ b/packages/material-ui-icons/src/CameraRearSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraRearSharp'); diff --git a/packages/material-ui-icons/src/CameraRearTwoTone.js b/packages/material-ui-icons/src/CameraRearTwoTone.js new file mode 100644 index 00000000000000..dc2d4e9960f08f --- /dev/null +++ b/packages/material-ui-icons/src/CameraRearTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraRearTwoTone'); diff --git a/packages/material-ui-icons/src/CameraRollOutlined.js b/packages/material-ui-icons/src/CameraRollOutlined.js new file mode 100644 index 00000000000000..88920766c9983c --- /dev/null +++ b/packages/material-ui-icons/src/CameraRollOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraRollOutlined'); diff --git a/packages/material-ui-icons/src/CameraRollRounded.js b/packages/material-ui-icons/src/CameraRollRounded.js new file mode 100644 index 00000000000000..979d5a01ff0107 --- /dev/null +++ b/packages/material-ui-icons/src/CameraRollRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraRollRounded'); diff --git a/packages/material-ui-icons/src/CameraRollSharp.js b/packages/material-ui-icons/src/CameraRollSharp.js new file mode 100644 index 00000000000000..51d888bd3100c9 --- /dev/null +++ b/packages/material-ui-icons/src/CameraRollSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraRollSharp'); diff --git a/packages/material-ui-icons/src/CameraRollTwoTone.js b/packages/material-ui-icons/src/CameraRollTwoTone.js new file mode 100644 index 00000000000000..3e24f5026224ca --- /dev/null +++ b/packages/material-ui-icons/src/CameraRollTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraRollTwoTone'); diff --git a/packages/material-ui-icons/src/CameraRounded.js b/packages/material-ui-icons/src/CameraRounded.js new file mode 100644 index 00000000000000..b596f246bf0ed0 --- /dev/null +++ b/packages/material-ui-icons/src/CameraRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraRounded'); diff --git a/packages/material-ui-icons/src/CameraSharp.js b/packages/material-ui-icons/src/CameraSharp.js new file mode 100644 index 00000000000000..f29932a528dfcd --- /dev/null +++ b/packages/material-ui-icons/src/CameraSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraSharp'); diff --git a/packages/material-ui-icons/src/CameraTwoTone.js b/packages/material-ui-icons/src/CameraTwoTone.js new file mode 100644 index 00000000000000..01eed52062f33f --- /dev/null +++ b/packages/material-ui-icons/src/CameraTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CameraTwoTone'); diff --git a/packages/material-ui-icons/src/CancelOutlined.js b/packages/material-ui-icons/src/CancelOutlined.js new file mode 100644 index 00000000000000..132d138b2030f9 --- /dev/null +++ b/packages/material-ui-icons/src/CancelOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CancelOutlined'); diff --git a/packages/material-ui-icons/src/CancelPresentation.js b/packages/material-ui-icons/src/CancelPresentation.js new file mode 100644 index 00000000000000..dcfe2123bcad09 --- /dev/null +++ b/packages/material-ui-icons/src/CancelPresentation.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CancelPresentation'); diff --git a/packages/material-ui-icons/src/CancelPresentationOutlined.js b/packages/material-ui-icons/src/CancelPresentationOutlined.js new file mode 100644 index 00000000000000..31e6f895ce71a2 --- /dev/null +++ b/packages/material-ui-icons/src/CancelPresentationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CancelPresentationOutlined'); diff --git a/packages/material-ui-icons/src/CancelPresentationRounded.js b/packages/material-ui-icons/src/CancelPresentationRounded.js new file mode 100644 index 00000000000000..bddc7df38e2025 --- /dev/null +++ b/packages/material-ui-icons/src/CancelPresentationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CancelPresentationRounded'); diff --git a/packages/material-ui-icons/src/CancelPresentationSharp.js b/packages/material-ui-icons/src/CancelPresentationSharp.js new file mode 100644 index 00000000000000..bfd11420e8f1bb --- /dev/null +++ b/packages/material-ui-icons/src/CancelPresentationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CancelPresentationSharp'); diff --git a/packages/material-ui-icons/src/CancelPresentationTwoTone.js b/packages/material-ui-icons/src/CancelPresentationTwoTone.js new file mode 100644 index 00000000000000..0f5ad57013388a --- /dev/null +++ b/packages/material-ui-icons/src/CancelPresentationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CancelPresentationTwoTone'); diff --git a/packages/material-ui-icons/src/CancelRounded.js b/packages/material-ui-icons/src/CancelRounded.js new file mode 100644 index 00000000000000..aefd6055c100c7 --- /dev/null +++ b/packages/material-ui-icons/src/CancelRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CancelRounded'); diff --git a/packages/material-ui-icons/src/CancelSharp.js b/packages/material-ui-icons/src/CancelSharp.js new file mode 100644 index 00000000000000..a72e6c4d43a218 --- /dev/null +++ b/packages/material-ui-icons/src/CancelSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CancelSharp'); diff --git a/packages/material-ui-icons/src/CancelTwoTone.js b/packages/material-ui-icons/src/CancelTwoTone.js new file mode 100644 index 00000000000000..19bd6e11efa533 --- /dev/null +++ b/packages/material-ui-icons/src/CancelTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CancelTwoTone'); diff --git a/packages/material-ui-icons/src/CardGiftcard.js b/packages/material-ui-icons/src/CardGiftcard.js index ad7c8fbcdea0e7..6239919651c667 100644 --- a/packages/material-ui-icons/src/CardGiftcard.js +++ b/packages/material-ui-icons/src/CardGiftcard.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CardGiftcard'); diff --git a/packages/material-ui-icons/src/CardGiftcardOutlined.js b/packages/material-ui-icons/src/CardGiftcardOutlined.js new file mode 100644 index 00000000000000..e5097ca243451a --- /dev/null +++ b/packages/material-ui-icons/src/CardGiftcardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardGiftcardOutlined'); diff --git a/packages/material-ui-icons/src/CardGiftcardRounded.js b/packages/material-ui-icons/src/CardGiftcardRounded.js new file mode 100644 index 00000000000000..ea0020388d1b8e --- /dev/null +++ b/packages/material-ui-icons/src/CardGiftcardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardGiftcardRounded'); diff --git a/packages/material-ui-icons/src/CardGiftcardSharp.js b/packages/material-ui-icons/src/CardGiftcardSharp.js new file mode 100644 index 00000000000000..aac61698fc375f --- /dev/null +++ b/packages/material-ui-icons/src/CardGiftcardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardGiftcardSharp'); diff --git a/packages/material-ui-icons/src/CardGiftcardTwoTone.js b/packages/material-ui-icons/src/CardGiftcardTwoTone.js new file mode 100644 index 00000000000000..3e790cb64bed2a --- /dev/null +++ b/packages/material-ui-icons/src/CardGiftcardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardGiftcardTwoTone'); diff --git a/packages/material-ui-icons/src/CardMembershipOutlined.js b/packages/material-ui-icons/src/CardMembershipOutlined.js new file mode 100644 index 00000000000000..38e02ef9207213 --- /dev/null +++ b/packages/material-ui-icons/src/CardMembershipOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardMembershipOutlined'); diff --git a/packages/material-ui-icons/src/CardMembershipRounded.js b/packages/material-ui-icons/src/CardMembershipRounded.js new file mode 100644 index 00000000000000..031046bd9757b9 --- /dev/null +++ b/packages/material-ui-icons/src/CardMembershipRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardMembershipRounded'); diff --git a/packages/material-ui-icons/src/CardMembershipSharp.js b/packages/material-ui-icons/src/CardMembershipSharp.js new file mode 100644 index 00000000000000..71073e1eb22e6f --- /dev/null +++ b/packages/material-ui-icons/src/CardMembershipSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardMembershipSharp'); diff --git a/packages/material-ui-icons/src/CardMembershipTwoTone.js b/packages/material-ui-icons/src/CardMembershipTwoTone.js new file mode 100644 index 00000000000000..d192f87d93619b --- /dev/null +++ b/packages/material-ui-icons/src/CardMembershipTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardMembershipTwoTone'); diff --git a/packages/material-ui-icons/src/CardTravelOutlined.js b/packages/material-ui-icons/src/CardTravelOutlined.js new file mode 100644 index 00000000000000..e2cc124aed9a8c --- /dev/null +++ b/packages/material-ui-icons/src/CardTravelOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardTravelOutlined'); diff --git a/packages/material-ui-icons/src/CardTravelRounded.js b/packages/material-ui-icons/src/CardTravelRounded.js new file mode 100644 index 00000000000000..aa28ce67d77389 --- /dev/null +++ b/packages/material-ui-icons/src/CardTravelRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardTravelRounded'); diff --git a/packages/material-ui-icons/src/CardTravelSharp.js b/packages/material-ui-icons/src/CardTravelSharp.js new file mode 100644 index 00000000000000..a2d3cc0c73e9d6 --- /dev/null +++ b/packages/material-ui-icons/src/CardTravelSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardTravelSharp'); diff --git a/packages/material-ui-icons/src/CardTravelTwoTone.js b/packages/material-ui-icons/src/CardTravelTwoTone.js new file mode 100644 index 00000000000000..3155253fc32b1d --- /dev/null +++ b/packages/material-ui-icons/src/CardTravelTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CardTravelTwoTone'); diff --git a/packages/material-ui-icons/src/CasinoOutlined.js b/packages/material-ui-icons/src/CasinoOutlined.js new file mode 100644 index 00000000000000..7afe031b2b9d00 --- /dev/null +++ b/packages/material-ui-icons/src/CasinoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CasinoOutlined'); diff --git a/packages/material-ui-icons/src/CasinoRounded.js b/packages/material-ui-icons/src/CasinoRounded.js new file mode 100644 index 00000000000000..520d48fc3c6d86 --- /dev/null +++ b/packages/material-ui-icons/src/CasinoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CasinoRounded'); diff --git a/packages/material-ui-icons/src/CasinoSharp.js b/packages/material-ui-icons/src/CasinoSharp.js new file mode 100644 index 00000000000000..4c773c7e95b3ce --- /dev/null +++ b/packages/material-ui-icons/src/CasinoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CasinoSharp'); diff --git a/packages/material-ui-icons/src/CasinoTwoTone.js b/packages/material-ui-icons/src/CasinoTwoTone.js new file mode 100644 index 00000000000000..aa20cc949c4da0 --- /dev/null +++ b/packages/material-ui-icons/src/CasinoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CasinoTwoTone'); diff --git a/packages/material-ui-icons/src/Cast.js b/packages/material-ui-icons/src/Cast.js index d069bc6569ef23..924c045eab8894 100644 --- a/packages/material-ui-icons/src/Cast.js +++ b/packages/material-ui-icons/src/Cast.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Cast'); diff --git a/packages/material-ui-icons/src/CastConnected.js b/packages/material-ui-icons/src/CastConnected.js index 172a623d26faf7..d68b56db54a2d0 100644 --- a/packages/material-ui-icons/src/CastConnected.js +++ b/packages/material-ui-icons/src/CastConnected.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CastConnected'); diff --git a/packages/material-ui-icons/src/CastConnectedOutlined.js b/packages/material-ui-icons/src/CastConnectedOutlined.js new file mode 100644 index 00000000000000..b9066b8976854d --- /dev/null +++ b/packages/material-ui-icons/src/CastConnectedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastConnectedOutlined'); diff --git a/packages/material-ui-icons/src/CastConnectedRounded.js b/packages/material-ui-icons/src/CastConnectedRounded.js new file mode 100644 index 00000000000000..e8ab95ef5a33a3 --- /dev/null +++ b/packages/material-ui-icons/src/CastConnectedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastConnectedRounded'); diff --git a/packages/material-ui-icons/src/CastConnectedSharp.js b/packages/material-ui-icons/src/CastConnectedSharp.js new file mode 100644 index 00000000000000..e6520ed5025e0e --- /dev/null +++ b/packages/material-ui-icons/src/CastConnectedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastConnectedSharp'); diff --git a/packages/material-ui-icons/src/CastConnectedTwoTone.js b/packages/material-ui-icons/src/CastConnectedTwoTone.js new file mode 100644 index 00000000000000..271740d5012bfc --- /dev/null +++ b/packages/material-ui-icons/src/CastConnectedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastConnectedTwoTone'); diff --git a/packages/material-ui-icons/src/CastForEducationOutlined.js b/packages/material-ui-icons/src/CastForEducationOutlined.js new file mode 100644 index 00000000000000..245af22c39aca3 --- /dev/null +++ b/packages/material-ui-icons/src/CastForEducationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastForEducationOutlined'); diff --git a/packages/material-ui-icons/src/CastForEducationRounded.js b/packages/material-ui-icons/src/CastForEducationRounded.js new file mode 100644 index 00000000000000..d747e75451de89 --- /dev/null +++ b/packages/material-ui-icons/src/CastForEducationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastForEducationRounded'); diff --git a/packages/material-ui-icons/src/CastForEducationSharp.js b/packages/material-ui-icons/src/CastForEducationSharp.js new file mode 100644 index 00000000000000..1f57cd7ca5f789 --- /dev/null +++ b/packages/material-ui-icons/src/CastForEducationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastForEducationSharp'); diff --git a/packages/material-ui-icons/src/CastForEducationTwoTone.js b/packages/material-ui-icons/src/CastForEducationTwoTone.js new file mode 100644 index 00000000000000..e7356d655b0d1f --- /dev/null +++ b/packages/material-ui-icons/src/CastForEducationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastForEducationTwoTone'); diff --git a/packages/material-ui-icons/src/CastOutlined.js b/packages/material-ui-icons/src/CastOutlined.js new file mode 100644 index 00000000000000..9218af4bc7bfdf --- /dev/null +++ b/packages/material-ui-icons/src/CastOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastOutlined'); diff --git a/packages/material-ui-icons/src/CastRounded.js b/packages/material-ui-icons/src/CastRounded.js new file mode 100644 index 00000000000000..481879bbee91e9 --- /dev/null +++ b/packages/material-ui-icons/src/CastRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastRounded'); diff --git a/packages/material-ui-icons/src/CastSharp.js b/packages/material-ui-icons/src/CastSharp.js new file mode 100644 index 00000000000000..779e1e57226c3d --- /dev/null +++ b/packages/material-ui-icons/src/CastSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastSharp'); diff --git a/packages/material-ui-icons/src/CastTwoTone.js b/packages/material-ui-icons/src/CastTwoTone.js new file mode 100644 index 00000000000000..c72d4d3b7088f5 --- /dev/null +++ b/packages/material-ui-icons/src/CastTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CastTwoTone'); diff --git a/packages/material-ui-icons/src/Category.js b/packages/material-ui-icons/src/Category.js new file mode 100644 index 00000000000000..5612ac4b60223e --- /dev/null +++ b/packages/material-ui-icons/src/Category.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Category'); diff --git a/packages/material-ui-icons/src/CategoryOutlined.js b/packages/material-ui-icons/src/CategoryOutlined.js new file mode 100644 index 00000000000000..d513748c9d576d --- /dev/null +++ b/packages/material-ui-icons/src/CategoryOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CategoryOutlined'); diff --git a/packages/material-ui-icons/src/CategoryRounded.js b/packages/material-ui-icons/src/CategoryRounded.js new file mode 100644 index 00000000000000..c2e590df81d3eb --- /dev/null +++ b/packages/material-ui-icons/src/CategoryRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CategoryRounded'); diff --git a/packages/material-ui-icons/src/CategorySharp.js b/packages/material-ui-icons/src/CategorySharp.js new file mode 100644 index 00000000000000..57a8a2950da5b9 --- /dev/null +++ b/packages/material-ui-icons/src/CategorySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CategorySharp'); diff --git a/packages/material-ui-icons/src/CategoryTwoTone.js b/packages/material-ui-icons/src/CategoryTwoTone.js new file mode 100644 index 00000000000000..b7c12f54e376f5 --- /dev/null +++ b/packages/material-ui-icons/src/CategoryTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CategoryTwoTone'); diff --git a/packages/material-ui-icons/src/CellWifi.js b/packages/material-ui-icons/src/CellWifi.js new file mode 100644 index 00000000000000..a2f1c0a1d41cdc --- /dev/null +++ b/packages/material-ui-icons/src/CellWifi.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CellWifi'); diff --git a/packages/material-ui-icons/src/CellWifiOutlined.js b/packages/material-ui-icons/src/CellWifiOutlined.js new file mode 100644 index 00000000000000..85308347d94672 --- /dev/null +++ b/packages/material-ui-icons/src/CellWifiOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CellWifiOutlined'); diff --git a/packages/material-ui-icons/src/CellWifiRounded.js b/packages/material-ui-icons/src/CellWifiRounded.js new file mode 100644 index 00000000000000..4bbcd3326bbb66 --- /dev/null +++ b/packages/material-ui-icons/src/CellWifiRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CellWifiRounded'); diff --git a/packages/material-ui-icons/src/CellWifiSharp.js b/packages/material-ui-icons/src/CellWifiSharp.js new file mode 100644 index 00000000000000..70dff5e7b69cf4 --- /dev/null +++ b/packages/material-ui-icons/src/CellWifiSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CellWifiSharp'); diff --git a/packages/material-ui-icons/src/CellWifiTwoTone.js b/packages/material-ui-icons/src/CellWifiTwoTone.js new file mode 100644 index 00000000000000..638b1b100d9679 --- /dev/null +++ b/packages/material-ui-icons/src/CellWifiTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CellWifiTwoTone'); diff --git a/packages/material-ui-icons/src/CenterFocusStrongOutlined.js b/packages/material-ui-icons/src/CenterFocusStrongOutlined.js new file mode 100644 index 00000000000000..315047ea60cc88 --- /dev/null +++ b/packages/material-ui-icons/src/CenterFocusStrongOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CenterFocusStrongOutlined'); diff --git a/packages/material-ui-icons/src/CenterFocusStrongRounded.js b/packages/material-ui-icons/src/CenterFocusStrongRounded.js new file mode 100644 index 00000000000000..108785fa900467 --- /dev/null +++ b/packages/material-ui-icons/src/CenterFocusStrongRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CenterFocusStrongRounded'); diff --git a/packages/material-ui-icons/src/CenterFocusStrongSharp.js b/packages/material-ui-icons/src/CenterFocusStrongSharp.js new file mode 100644 index 00000000000000..a7069201193191 --- /dev/null +++ b/packages/material-ui-icons/src/CenterFocusStrongSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CenterFocusStrongSharp'); diff --git a/packages/material-ui-icons/src/CenterFocusStrongTwoTone.js b/packages/material-ui-icons/src/CenterFocusStrongTwoTone.js new file mode 100644 index 00000000000000..375aa34b6ecaac --- /dev/null +++ b/packages/material-ui-icons/src/CenterFocusStrongTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CenterFocusStrongTwoTone'); diff --git a/packages/material-ui-icons/src/CenterFocusWeakOutlined.js b/packages/material-ui-icons/src/CenterFocusWeakOutlined.js new file mode 100644 index 00000000000000..be7727544476c3 --- /dev/null +++ b/packages/material-ui-icons/src/CenterFocusWeakOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CenterFocusWeakOutlined'); diff --git a/packages/material-ui-icons/src/CenterFocusWeakRounded.js b/packages/material-ui-icons/src/CenterFocusWeakRounded.js new file mode 100644 index 00000000000000..b6d4ddddfc44f4 --- /dev/null +++ b/packages/material-ui-icons/src/CenterFocusWeakRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CenterFocusWeakRounded'); diff --git a/packages/material-ui-icons/src/CenterFocusWeakSharp.js b/packages/material-ui-icons/src/CenterFocusWeakSharp.js new file mode 100644 index 00000000000000..2565239287a20c --- /dev/null +++ b/packages/material-ui-icons/src/CenterFocusWeakSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CenterFocusWeakSharp'); diff --git a/packages/material-ui-icons/src/CenterFocusWeakTwoTone.js b/packages/material-ui-icons/src/CenterFocusWeakTwoTone.js new file mode 100644 index 00000000000000..a160ae4af1ff18 --- /dev/null +++ b/packages/material-ui-icons/src/CenterFocusWeakTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CenterFocusWeakTwoTone'); diff --git a/packages/material-ui-icons/src/ChangeHistoryOutlined.js b/packages/material-ui-icons/src/ChangeHistoryOutlined.js new file mode 100644 index 00000000000000..4a95919a88b485 --- /dev/null +++ b/packages/material-ui-icons/src/ChangeHistoryOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChangeHistoryOutlined'); diff --git a/packages/material-ui-icons/src/ChangeHistoryRounded.js b/packages/material-ui-icons/src/ChangeHistoryRounded.js new file mode 100644 index 00000000000000..98b38d983031be --- /dev/null +++ b/packages/material-ui-icons/src/ChangeHistoryRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChangeHistoryRounded'); diff --git a/packages/material-ui-icons/src/ChangeHistorySharp.js b/packages/material-ui-icons/src/ChangeHistorySharp.js new file mode 100644 index 00000000000000..26a03bc19baddc --- /dev/null +++ b/packages/material-ui-icons/src/ChangeHistorySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChangeHistorySharp'); diff --git a/packages/material-ui-icons/src/ChangeHistoryTwoTone.js b/packages/material-ui-icons/src/ChangeHistoryTwoTone.js new file mode 100644 index 00000000000000..ea3b3aba97881c --- /dev/null +++ b/packages/material-ui-icons/src/ChangeHistoryTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChangeHistoryTwoTone'); diff --git a/packages/material-ui-icons/src/ChatBubbleOutlineOutlined.js b/packages/material-ui-icons/src/ChatBubbleOutlineOutlined.js new file mode 100644 index 00000000000000..01079b2b89875c --- /dev/null +++ b/packages/material-ui-icons/src/ChatBubbleOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatBubbleOutlineOutlined'); diff --git a/packages/material-ui-icons/src/ChatBubbleOutlineRounded.js b/packages/material-ui-icons/src/ChatBubbleOutlineRounded.js new file mode 100644 index 00000000000000..7e1e762005e3cf --- /dev/null +++ b/packages/material-ui-icons/src/ChatBubbleOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatBubbleOutlineRounded'); diff --git a/packages/material-ui-icons/src/ChatBubbleOutlineSharp.js b/packages/material-ui-icons/src/ChatBubbleOutlineSharp.js new file mode 100644 index 00000000000000..6c7e96bda3f23e --- /dev/null +++ b/packages/material-ui-icons/src/ChatBubbleOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatBubbleOutlineSharp'); diff --git a/packages/material-ui-icons/src/ChatBubbleOutlineTwoTone.js b/packages/material-ui-icons/src/ChatBubbleOutlineTwoTone.js new file mode 100644 index 00000000000000..964aa9a92d1f95 --- /dev/null +++ b/packages/material-ui-icons/src/ChatBubbleOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatBubbleOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/ChatBubbleOutlined.js b/packages/material-ui-icons/src/ChatBubbleOutlined.js new file mode 100644 index 00000000000000..9a76ba460bd373 --- /dev/null +++ b/packages/material-ui-icons/src/ChatBubbleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatBubbleOutlined'); diff --git a/packages/material-ui-icons/src/ChatBubbleRounded.js b/packages/material-ui-icons/src/ChatBubbleRounded.js new file mode 100644 index 00000000000000..25439e067d9e09 --- /dev/null +++ b/packages/material-ui-icons/src/ChatBubbleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatBubbleRounded'); diff --git a/packages/material-ui-icons/src/ChatBubbleSharp.js b/packages/material-ui-icons/src/ChatBubbleSharp.js new file mode 100644 index 00000000000000..eb6ddd470d9adf --- /dev/null +++ b/packages/material-ui-icons/src/ChatBubbleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatBubbleSharp'); diff --git a/packages/material-ui-icons/src/ChatBubbleTwoTone.js b/packages/material-ui-icons/src/ChatBubbleTwoTone.js new file mode 100644 index 00000000000000..ca1698f5bc754c --- /dev/null +++ b/packages/material-ui-icons/src/ChatBubbleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatBubbleTwoTone'); diff --git a/packages/material-ui-icons/src/ChatOutlined.js b/packages/material-ui-icons/src/ChatOutlined.js new file mode 100644 index 00000000000000..9c360932ed090e --- /dev/null +++ b/packages/material-ui-icons/src/ChatOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatOutlined'); diff --git a/packages/material-ui-icons/src/ChatRounded.js b/packages/material-ui-icons/src/ChatRounded.js new file mode 100644 index 00000000000000..dbb398ee991d3a --- /dev/null +++ b/packages/material-ui-icons/src/ChatRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatRounded'); diff --git a/packages/material-ui-icons/src/ChatSharp.js b/packages/material-ui-icons/src/ChatSharp.js new file mode 100644 index 00000000000000..6120643449a0f9 --- /dev/null +++ b/packages/material-ui-icons/src/ChatSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatSharp'); diff --git a/packages/material-ui-icons/src/ChatTwoTone.js b/packages/material-ui-icons/src/ChatTwoTone.js new file mode 100644 index 00000000000000..1c0b05d8bfcb1a --- /dev/null +++ b/packages/material-ui-icons/src/ChatTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChatTwoTone'); diff --git a/packages/material-ui-icons/src/CheckBox.js b/packages/material-ui-icons/src/CheckBox.js index cb2b8ce1a95803..7c0c06e1fc451f 100644 --- a/packages/material-ui-icons/src/CheckBox.js +++ b/packages/material-ui-icons/src/CheckBox.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CheckBox'); diff --git a/packages/material-ui-icons/src/CheckBoxOutlineBlankOutlined.js b/packages/material-ui-icons/src/CheckBoxOutlineBlankOutlined.js new file mode 100644 index 00000000000000..c9819b48f1b0c4 --- /dev/null +++ b/packages/material-ui-icons/src/CheckBoxOutlineBlankOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckBoxOutlineBlankOutlined'); diff --git a/packages/material-ui-icons/src/CheckBoxOutlineBlankRounded.js b/packages/material-ui-icons/src/CheckBoxOutlineBlankRounded.js new file mode 100644 index 00000000000000..222064f8736090 --- /dev/null +++ b/packages/material-ui-icons/src/CheckBoxOutlineBlankRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckBoxOutlineBlankRounded'); diff --git a/packages/material-ui-icons/src/CheckBoxOutlineBlankSharp.js b/packages/material-ui-icons/src/CheckBoxOutlineBlankSharp.js new file mode 100644 index 00000000000000..1d9aa965ab118f --- /dev/null +++ b/packages/material-ui-icons/src/CheckBoxOutlineBlankSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckBoxOutlineBlankSharp'); diff --git a/packages/material-ui-icons/src/CheckBoxOutlineBlankTwoTone.js b/packages/material-ui-icons/src/CheckBoxOutlineBlankTwoTone.js new file mode 100644 index 00000000000000..507959f01c25a6 --- /dev/null +++ b/packages/material-ui-icons/src/CheckBoxOutlineBlankTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckBoxOutlineBlankTwoTone'); diff --git a/packages/material-ui-icons/src/CheckBoxOutlined.js b/packages/material-ui-icons/src/CheckBoxOutlined.js new file mode 100644 index 00000000000000..c3e49e5567e821 --- /dev/null +++ b/packages/material-ui-icons/src/CheckBoxOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckBoxOutlined'); diff --git a/packages/material-ui-icons/src/CheckBoxRounded.js b/packages/material-ui-icons/src/CheckBoxRounded.js new file mode 100644 index 00000000000000..88f3e3d4448d61 --- /dev/null +++ b/packages/material-ui-icons/src/CheckBoxRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckBoxRounded'); diff --git a/packages/material-ui-icons/src/CheckBoxSharp.js b/packages/material-ui-icons/src/CheckBoxSharp.js new file mode 100644 index 00000000000000..1dbd7340131db0 --- /dev/null +++ b/packages/material-ui-icons/src/CheckBoxSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckBoxSharp'); diff --git a/packages/material-ui-icons/src/CheckBoxTwoTone.js b/packages/material-ui-icons/src/CheckBoxTwoTone.js new file mode 100644 index 00000000000000..5ff6159b7b8c9d --- /dev/null +++ b/packages/material-ui-icons/src/CheckBoxTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckBoxTwoTone'); diff --git a/packages/material-ui-icons/src/CheckCircleOutline.js b/packages/material-ui-icons/src/CheckCircleOutline.js new file mode 100644 index 00000000000000..cc22942b78c070 --- /dev/null +++ b/packages/material-ui-icons/src/CheckCircleOutline.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckCircleOutline'); diff --git a/packages/material-ui-icons/src/CheckCircleOutlineOutlined.js b/packages/material-ui-icons/src/CheckCircleOutlineOutlined.js new file mode 100644 index 00000000000000..4ca697861ef467 --- /dev/null +++ b/packages/material-ui-icons/src/CheckCircleOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckCircleOutlineOutlined'); diff --git a/packages/material-ui-icons/src/CheckCircleOutlineRounded.js b/packages/material-ui-icons/src/CheckCircleOutlineRounded.js new file mode 100644 index 00000000000000..76c57ff2cfe94a --- /dev/null +++ b/packages/material-ui-icons/src/CheckCircleOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckCircleOutlineRounded'); diff --git a/packages/material-ui-icons/src/CheckCircleOutlineSharp.js b/packages/material-ui-icons/src/CheckCircleOutlineSharp.js new file mode 100644 index 00000000000000..a14da57807de7a --- /dev/null +++ b/packages/material-ui-icons/src/CheckCircleOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckCircleOutlineSharp'); diff --git a/packages/material-ui-icons/src/CheckCircleOutlineTwoTone.js b/packages/material-ui-icons/src/CheckCircleOutlineTwoTone.js new file mode 100644 index 00000000000000..7fd681189b32ff --- /dev/null +++ b/packages/material-ui-icons/src/CheckCircleOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckCircleOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/CheckCircleOutlined.js b/packages/material-ui-icons/src/CheckCircleOutlined.js new file mode 100644 index 00000000000000..e238e6cf526935 --- /dev/null +++ b/packages/material-ui-icons/src/CheckCircleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckCircleOutlined'); diff --git a/packages/material-ui-icons/src/CheckCircleRounded.js b/packages/material-ui-icons/src/CheckCircleRounded.js new file mode 100644 index 00000000000000..4806bd904755b1 --- /dev/null +++ b/packages/material-ui-icons/src/CheckCircleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckCircleRounded'); diff --git a/packages/material-ui-icons/src/CheckCircleSharp.js b/packages/material-ui-icons/src/CheckCircleSharp.js new file mode 100644 index 00000000000000..c8818abfeaf852 --- /dev/null +++ b/packages/material-ui-icons/src/CheckCircleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckCircleSharp'); diff --git a/packages/material-ui-icons/src/CheckCircleTwoTone.js b/packages/material-ui-icons/src/CheckCircleTwoTone.js new file mode 100644 index 00000000000000..1a1936287a1f92 --- /dev/null +++ b/packages/material-ui-icons/src/CheckCircleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckCircleTwoTone'); diff --git a/packages/material-ui-icons/src/CheckOutlined.js b/packages/material-ui-icons/src/CheckOutlined.js new file mode 100644 index 00000000000000..139f67c0168a96 --- /dev/null +++ b/packages/material-ui-icons/src/CheckOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckOutlined'); diff --git a/packages/material-ui-icons/src/CheckRounded.js b/packages/material-ui-icons/src/CheckRounded.js new file mode 100644 index 00000000000000..a877836a02b8a0 --- /dev/null +++ b/packages/material-ui-icons/src/CheckRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckRounded'); diff --git a/packages/material-ui-icons/src/CheckSharp.js b/packages/material-ui-icons/src/CheckSharp.js new file mode 100644 index 00000000000000..9c72ba4f8b954e --- /dev/null +++ b/packages/material-ui-icons/src/CheckSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckSharp'); diff --git a/packages/material-ui-icons/src/CheckTwoTone.js b/packages/material-ui-icons/src/CheckTwoTone.js new file mode 100644 index 00000000000000..03510bb19cf1af --- /dev/null +++ b/packages/material-ui-icons/src/CheckTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CheckTwoTone'); diff --git a/packages/material-ui-icons/src/ChevronLeftOutlined.js b/packages/material-ui-icons/src/ChevronLeftOutlined.js new file mode 100644 index 00000000000000..fcc63ce3933335 --- /dev/null +++ b/packages/material-ui-icons/src/ChevronLeftOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChevronLeftOutlined'); diff --git a/packages/material-ui-icons/src/ChevronLeftRounded.js b/packages/material-ui-icons/src/ChevronLeftRounded.js new file mode 100644 index 00000000000000..c24a86d9d90eba --- /dev/null +++ b/packages/material-ui-icons/src/ChevronLeftRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChevronLeftRounded'); diff --git a/packages/material-ui-icons/src/ChevronLeftSharp.js b/packages/material-ui-icons/src/ChevronLeftSharp.js new file mode 100644 index 00000000000000..ae0656a75feff3 --- /dev/null +++ b/packages/material-ui-icons/src/ChevronLeftSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChevronLeftSharp'); diff --git a/packages/material-ui-icons/src/ChevronLeftTwoTone.js b/packages/material-ui-icons/src/ChevronLeftTwoTone.js new file mode 100644 index 00000000000000..a56f410b697792 --- /dev/null +++ b/packages/material-ui-icons/src/ChevronLeftTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChevronLeftTwoTone'); diff --git a/packages/material-ui-icons/src/ChevronRightOutlined.js b/packages/material-ui-icons/src/ChevronRightOutlined.js new file mode 100644 index 00000000000000..76c0255e529f39 --- /dev/null +++ b/packages/material-ui-icons/src/ChevronRightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChevronRightOutlined'); diff --git a/packages/material-ui-icons/src/ChevronRightRounded.js b/packages/material-ui-icons/src/ChevronRightRounded.js new file mode 100644 index 00000000000000..a010a66b978416 --- /dev/null +++ b/packages/material-ui-icons/src/ChevronRightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChevronRightRounded'); diff --git a/packages/material-ui-icons/src/ChevronRightSharp.js b/packages/material-ui-icons/src/ChevronRightSharp.js new file mode 100644 index 00000000000000..ace5de2d620962 --- /dev/null +++ b/packages/material-ui-icons/src/ChevronRightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChevronRightSharp'); diff --git a/packages/material-ui-icons/src/ChevronRightTwoTone.js b/packages/material-ui-icons/src/ChevronRightTwoTone.js new file mode 100644 index 00000000000000..a6740847c5a01e --- /dev/null +++ b/packages/material-ui-icons/src/ChevronRightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChevronRightTwoTone'); diff --git a/packages/material-ui-icons/src/ChildCare.js b/packages/material-ui-icons/src/ChildCare.js index 7066ae4a0696e7..3bffea77d2e3c1 100644 --- a/packages/material-ui-icons/src/ChildCare.js +++ b/packages/material-ui-icons/src/ChildCare.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ChildCare'); diff --git a/packages/material-ui-icons/src/ChildCareOutlined.js b/packages/material-ui-icons/src/ChildCareOutlined.js new file mode 100644 index 00000000000000..1e110e70568a00 --- /dev/null +++ b/packages/material-ui-icons/src/ChildCareOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChildCareOutlined'); diff --git a/packages/material-ui-icons/src/ChildCareRounded.js b/packages/material-ui-icons/src/ChildCareRounded.js new file mode 100644 index 00000000000000..1552b9fd2bb27e --- /dev/null +++ b/packages/material-ui-icons/src/ChildCareRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChildCareRounded'); diff --git a/packages/material-ui-icons/src/ChildCareSharp.js b/packages/material-ui-icons/src/ChildCareSharp.js new file mode 100644 index 00000000000000..0fb4bcf7ad7730 --- /dev/null +++ b/packages/material-ui-icons/src/ChildCareSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChildCareSharp'); diff --git a/packages/material-ui-icons/src/ChildCareTwoTone.js b/packages/material-ui-icons/src/ChildCareTwoTone.js new file mode 100644 index 00000000000000..f1fe7d04bd373a --- /dev/null +++ b/packages/material-ui-icons/src/ChildCareTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChildCareTwoTone'); diff --git a/packages/material-ui-icons/src/ChildFriendly.js b/packages/material-ui-icons/src/ChildFriendly.js index 9ccd558705b269..b4ef882579f0f0 100644 --- a/packages/material-ui-icons/src/ChildFriendly.js +++ b/packages/material-ui-icons/src/ChildFriendly.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ChildFriendly'); diff --git a/packages/material-ui-icons/src/ChildFriendlyOutlined.js b/packages/material-ui-icons/src/ChildFriendlyOutlined.js new file mode 100644 index 00000000000000..2a3c32f2f54641 --- /dev/null +++ b/packages/material-ui-icons/src/ChildFriendlyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChildFriendlyOutlined'); diff --git a/packages/material-ui-icons/src/ChildFriendlyRounded.js b/packages/material-ui-icons/src/ChildFriendlyRounded.js new file mode 100644 index 00000000000000..2d509c01f8face --- /dev/null +++ b/packages/material-ui-icons/src/ChildFriendlyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChildFriendlyRounded'); diff --git a/packages/material-ui-icons/src/ChildFriendlySharp.js b/packages/material-ui-icons/src/ChildFriendlySharp.js new file mode 100644 index 00000000000000..9077eca331359e --- /dev/null +++ b/packages/material-ui-icons/src/ChildFriendlySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChildFriendlySharp'); diff --git a/packages/material-ui-icons/src/ChildFriendlyTwoTone.js b/packages/material-ui-icons/src/ChildFriendlyTwoTone.js new file mode 100644 index 00000000000000..7f295b056c9248 --- /dev/null +++ b/packages/material-ui-icons/src/ChildFriendlyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChildFriendlyTwoTone'); diff --git a/packages/material-ui-icons/src/ChromeReaderModeOutlined.js b/packages/material-ui-icons/src/ChromeReaderModeOutlined.js new file mode 100644 index 00000000000000..e8244e9f4cabd7 --- /dev/null +++ b/packages/material-ui-icons/src/ChromeReaderModeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChromeReaderModeOutlined'); diff --git a/packages/material-ui-icons/src/ChromeReaderModeRounded.js b/packages/material-ui-icons/src/ChromeReaderModeRounded.js new file mode 100644 index 00000000000000..bdd023325dadc8 --- /dev/null +++ b/packages/material-ui-icons/src/ChromeReaderModeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChromeReaderModeRounded'); diff --git a/packages/material-ui-icons/src/ChromeReaderModeSharp.js b/packages/material-ui-icons/src/ChromeReaderModeSharp.js new file mode 100644 index 00000000000000..b05aee9ab3a09c --- /dev/null +++ b/packages/material-ui-icons/src/ChromeReaderModeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChromeReaderModeSharp'); diff --git a/packages/material-ui-icons/src/ChromeReaderModeTwoTone.js b/packages/material-ui-icons/src/ChromeReaderModeTwoTone.js new file mode 100644 index 00000000000000..10738cf6a17add --- /dev/null +++ b/packages/material-ui-icons/src/ChromeReaderModeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ChromeReaderModeTwoTone'); diff --git a/packages/material-ui-icons/src/ClassOutlined.js b/packages/material-ui-icons/src/ClassOutlined.js new file mode 100644 index 00000000000000..747adddfceedbf --- /dev/null +++ b/packages/material-ui-icons/src/ClassOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClassOutlined'); diff --git a/packages/material-ui-icons/src/ClassRounded.js b/packages/material-ui-icons/src/ClassRounded.js new file mode 100644 index 00000000000000..0ef09caf9b8c67 --- /dev/null +++ b/packages/material-ui-icons/src/ClassRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClassRounded'); diff --git a/packages/material-ui-icons/src/ClassSharp.js b/packages/material-ui-icons/src/ClassSharp.js new file mode 100644 index 00000000000000..8eaa51126826c0 --- /dev/null +++ b/packages/material-ui-icons/src/ClassSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClassSharp'); diff --git a/packages/material-ui-icons/src/ClassTwoTone.js b/packages/material-ui-icons/src/ClassTwoTone.js new file mode 100644 index 00000000000000..eb27e03673eb72 --- /dev/null +++ b/packages/material-ui-icons/src/ClassTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClassTwoTone'); diff --git a/packages/material-ui-icons/src/ClearAllOutlined.js b/packages/material-ui-icons/src/ClearAllOutlined.js new file mode 100644 index 00000000000000..84ed5a0bca28ca --- /dev/null +++ b/packages/material-ui-icons/src/ClearAllOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClearAllOutlined'); diff --git a/packages/material-ui-icons/src/ClearAllRounded.js b/packages/material-ui-icons/src/ClearAllRounded.js new file mode 100644 index 00000000000000..451c9201458b7a --- /dev/null +++ b/packages/material-ui-icons/src/ClearAllRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClearAllRounded'); diff --git a/packages/material-ui-icons/src/ClearAllSharp.js b/packages/material-ui-icons/src/ClearAllSharp.js new file mode 100644 index 00000000000000..49e7f8d676140b --- /dev/null +++ b/packages/material-ui-icons/src/ClearAllSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClearAllSharp'); diff --git a/packages/material-ui-icons/src/ClearAllTwoTone.js b/packages/material-ui-icons/src/ClearAllTwoTone.js new file mode 100644 index 00000000000000..18e57e363075a7 --- /dev/null +++ b/packages/material-ui-icons/src/ClearAllTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClearAllTwoTone'); diff --git a/packages/material-ui-icons/src/ClearOutlined.js b/packages/material-ui-icons/src/ClearOutlined.js new file mode 100644 index 00000000000000..60fd5a46a055be --- /dev/null +++ b/packages/material-ui-icons/src/ClearOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClearOutlined'); diff --git a/packages/material-ui-icons/src/ClearRounded.js b/packages/material-ui-icons/src/ClearRounded.js new file mode 100644 index 00000000000000..7a3bc47dc4e2ba --- /dev/null +++ b/packages/material-ui-icons/src/ClearRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClearRounded'); diff --git a/packages/material-ui-icons/src/ClearSharp.js b/packages/material-ui-icons/src/ClearSharp.js new file mode 100644 index 00000000000000..2f1fdf723a1276 --- /dev/null +++ b/packages/material-ui-icons/src/ClearSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClearSharp'); diff --git a/packages/material-ui-icons/src/ClearTwoTone.js b/packages/material-ui-icons/src/ClearTwoTone.js new file mode 100644 index 00000000000000..2668c34d0f81f4 --- /dev/null +++ b/packages/material-ui-icons/src/ClearTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClearTwoTone'); diff --git a/packages/material-ui-icons/src/CloseOutlined.js b/packages/material-ui-icons/src/CloseOutlined.js new file mode 100644 index 00000000000000..6c158797ec6916 --- /dev/null +++ b/packages/material-ui-icons/src/CloseOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloseOutlined'); diff --git a/packages/material-ui-icons/src/CloseRounded.js b/packages/material-ui-icons/src/CloseRounded.js new file mode 100644 index 00000000000000..4cf7b34e7c2ed9 --- /dev/null +++ b/packages/material-ui-icons/src/CloseRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloseRounded'); diff --git a/packages/material-ui-icons/src/CloseSharp.js b/packages/material-ui-icons/src/CloseSharp.js new file mode 100644 index 00000000000000..37e403f2d00077 --- /dev/null +++ b/packages/material-ui-icons/src/CloseSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloseSharp'); diff --git a/packages/material-ui-icons/src/CloseTwoTone.js b/packages/material-ui-icons/src/CloseTwoTone.js new file mode 100644 index 00000000000000..1c4ee4e81e2cd7 --- /dev/null +++ b/packages/material-ui-icons/src/CloseTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloseTwoTone'); diff --git a/packages/material-ui-icons/src/ClosedCaption.js b/packages/material-ui-icons/src/ClosedCaption.js index 767a52f9764708..04affa78ab70a1 100644 --- a/packages/material-ui-icons/src/ClosedCaption.js +++ b/packages/material-ui-icons/src/ClosedCaption.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ClosedCaption'); diff --git a/packages/material-ui-icons/src/ClosedCaptionOutlined.js b/packages/material-ui-icons/src/ClosedCaptionOutlined.js new file mode 100644 index 00000000000000..cc834f9fbcade4 --- /dev/null +++ b/packages/material-ui-icons/src/ClosedCaptionOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClosedCaptionOutlined'); diff --git a/packages/material-ui-icons/src/ClosedCaptionRounded.js b/packages/material-ui-icons/src/ClosedCaptionRounded.js new file mode 100644 index 00000000000000..b3903b29102c98 --- /dev/null +++ b/packages/material-ui-icons/src/ClosedCaptionRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClosedCaptionRounded'); diff --git a/packages/material-ui-icons/src/ClosedCaptionSharp.js b/packages/material-ui-icons/src/ClosedCaptionSharp.js new file mode 100644 index 00000000000000..2dd04ca4efc407 --- /dev/null +++ b/packages/material-ui-icons/src/ClosedCaptionSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClosedCaptionSharp'); diff --git a/packages/material-ui-icons/src/ClosedCaptionTwoTone.js b/packages/material-ui-icons/src/ClosedCaptionTwoTone.js new file mode 100644 index 00000000000000..9c4cd6d6e6ffe1 --- /dev/null +++ b/packages/material-ui-icons/src/ClosedCaptionTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ClosedCaptionTwoTone'); diff --git a/packages/material-ui-icons/src/Cloud.js b/packages/material-ui-icons/src/Cloud.js index 5b64c6ef73e123..23998b81bbfd47 100644 --- a/packages/material-ui-icons/src/Cloud.js +++ b/packages/material-ui-icons/src/Cloud.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Cloud'); diff --git a/packages/material-ui-icons/src/CloudCircle.js b/packages/material-ui-icons/src/CloudCircle.js index 1e459a3293a4c6..70235aabb34eea 100644 --- a/packages/material-ui-icons/src/CloudCircle.js +++ b/packages/material-ui-icons/src/CloudCircle.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CloudCircle'); diff --git a/packages/material-ui-icons/src/CloudCircleOutlined.js b/packages/material-ui-icons/src/CloudCircleOutlined.js new file mode 100644 index 00000000000000..025b00761026c1 --- /dev/null +++ b/packages/material-ui-icons/src/CloudCircleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudCircleOutlined'); diff --git a/packages/material-ui-icons/src/CloudCircleRounded.js b/packages/material-ui-icons/src/CloudCircleRounded.js new file mode 100644 index 00000000000000..db1ea2df355d36 --- /dev/null +++ b/packages/material-ui-icons/src/CloudCircleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudCircleRounded'); diff --git a/packages/material-ui-icons/src/CloudCircleSharp.js b/packages/material-ui-icons/src/CloudCircleSharp.js new file mode 100644 index 00000000000000..f877380ddc6e70 --- /dev/null +++ b/packages/material-ui-icons/src/CloudCircleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudCircleSharp'); diff --git a/packages/material-ui-icons/src/CloudCircleTwoTone.js b/packages/material-ui-icons/src/CloudCircleTwoTone.js new file mode 100644 index 00000000000000..7370c93e154be9 --- /dev/null +++ b/packages/material-ui-icons/src/CloudCircleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudCircleTwoTone'); diff --git a/packages/material-ui-icons/src/CloudDone.js b/packages/material-ui-icons/src/CloudDone.js index 89c5323185d0ee..8b3c06508ca9e7 100644 --- a/packages/material-ui-icons/src/CloudDone.js +++ b/packages/material-ui-icons/src/CloudDone.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CloudDone'); diff --git a/packages/material-ui-icons/src/CloudDoneOutlined.js b/packages/material-ui-icons/src/CloudDoneOutlined.js new file mode 100644 index 00000000000000..f40ccf5f2af6e9 --- /dev/null +++ b/packages/material-ui-icons/src/CloudDoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudDoneOutlined'); diff --git a/packages/material-ui-icons/src/CloudDoneRounded.js b/packages/material-ui-icons/src/CloudDoneRounded.js new file mode 100644 index 00000000000000..b15008dff6a837 --- /dev/null +++ b/packages/material-ui-icons/src/CloudDoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudDoneRounded'); diff --git a/packages/material-ui-icons/src/CloudDoneSharp.js b/packages/material-ui-icons/src/CloudDoneSharp.js new file mode 100644 index 00000000000000..6cf68ed1a818eb --- /dev/null +++ b/packages/material-ui-icons/src/CloudDoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudDoneSharp'); diff --git a/packages/material-ui-icons/src/CloudDoneTwoTone.js b/packages/material-ui-icons/src/CloudDoneTwoTone.js new file mode 100644 index 00000000000000..12396687e19f32 --- /dev/null +++ b/packages/material-ui-icons/src/CloudDoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudDoneTwoTone'); diff --git a/packages/material-ui-icons/src/CloudDownload.js b/packages/material-ui-icons/src/CloudDownload.js index cad341214a00ba..c97048edfb2eeb 100644 --- a/packages/material-ui-icons/src/CloudDownload.js +++ b/packages/material-ui-icons/src/CloudDownload.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CloudDownload'); diff --git a/packages/material-ui-icons/src/CloudDownloadOutlined.js b/packages/material-ui-icons/src/CloudDownloadOutlined.js new file mode 100644 index 00000000000000..b8a8d75b4da1c9 --- /dev/null +++ b/packages/material-ui-icons/src/CloudDownloadOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudDownloadOutlined'); diff --git a/packages/material-ui-icons/src/CloudDownloadRounded.js b/packages/material-ui-icons/src/CloudDownloadRounded.js new file mode 100644 index 00000000000000..29578e66dbd1a9 --- /dev/null +++ b/packages/material-ui-icons/src/CloudDownloadRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudDownloadRounded'); diff --git a/packages/material-ui-icons/src/CloudDownloadSharp.js b/packages/material-ui-icons/src/CloudDownloadSharp.js new file mode 100644 index 00000000000000..049e90a1fbbf79 --- /dev/null +++ b/packages/material-ui-icons/src/CloudDownloadSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudDownloadSharp'); diff --git a/packages/material-ui-icons/src/CloudDownloadTwoTone.js b/packages/material-ui-icons/src/CloudDownloadTwoTone.js new file mode 100644 index 00000000000000..8c5b7c7a610883 --- /dev/null +++ b/packages/material-ui-icons/src/CloudDownloadTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudDownloadTwoTone'); diff --git a/packages/material-ui-icons/src/CloudOff.js b/packages/material-ui-icons/src/CloudOff.js index 804faa8506fc9a..7cdb349fac47bf 100644 --- a/packages/material-ui-icons/src/CloudOff.js +++ b/packages/material-ui-icons/src/CloudOff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CloudOff'); diff --git a/packages/material-ui-icons/src/CloudOffOutlined.js b/packages/material-ui-icons/src/CloudOffOutlined.js new file mode 100644 index 00000000000000..88e86c788ce23b --- /dev/null +++ b/packages/material-ui-icons/src/CloudOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudOffOutlined'); diff --git a/packages/material-ui-icons/src/CloudOffRounded.js b/packages/material-ui-icons/src/CloudOffRounded.js new file mode 100644 index 00000000000000..31129b211e386a --- /dev/null +++ b/packages/material-ui-icons/src/CloudOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudOffRounded'); diff --git a/packages/material-ui-icons/src/CloudOffSharp.js b/packages/material-ui-icons/src/CloudOffSharp.js new file mode 100644 index 00000000000000..2ec29d87b595d1 --- /dev/null +++ b/packages/material-ui-icons/src/CloudOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudOffSharp'); diff --git a/packages/material-ui-icons/src/CloudOffTwoTone.js b/packages/material-ui-icons/src/CloudOffTwoTone.js new file mode 100644 index 00000000000000..14b2d8ffca13c1 --- /dev/null +++ b/packages/material-ui-icons/src/CloudOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudOffTwoTone'); diff --git a/packages/material-ui-icons/src/CloudOutlined.js b/packages/material-ui-icons/src/CloudOutlined.js new file mode 100644 index 00000000000000..6c874ebf7048f4 --- /dev/null +++ b/packages/material-ui-icons/src/CloudOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudOutlined'); diff --git a/packages/material-ui-icons/src/CloudQueue.js b/packages/material-ui-icons/src/CloudQueue.js index 40704beac3ce89..abdba7e7175830 100644 --- a/packages/material-ui-icons/src/CloudQueue.js +++ b/packages/material-ui-icons/src/CloudQueue.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CloudQueue'); diff --git a/packages/material-ui-icons/src/CloudQueueOutlined.js b/packages/material-ui-icons/src/CloudQueueOutlined.js new file mode 100644 index 00000000000000..e43866c702eead --- /dev/null +++ b/packages/material-ui-icons/src/CloudQueueOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudQueueOutlined'); diff --git a/packages/material-ui-icons/src/CloudQueueRounded.js b/packages/material-ui-icons/src/CloudQueueRounded.js new file mode 100644 index 00000000000000..148f831a64291f --- /dev/null +++ b/packages/material-ui-icons/src/CloudQueueRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudQueueRounded'); diff --git a/packages/material-ui-icons/src/CloudQueueSharp.js b/packages/material-ui-icons/src/CloudQueueSharp.js new file mode 100644 index 00000000000000..4eead3f57dcd2c --- /dev/null +++ b/packages/material-ui-icons/src/CloudQueueSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudQueueSharp'); diff --git a/packages/material-ui-icons/src/CloudQueueTwoTone.js b/packages/material-ui-icons/src/CloudQueueTwoTone.js new file mode 100644 index 00000000000000..416751a9076ba6 --- /dev/null +++ b/packages/material-ui-icons/src/CloudQueueTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudQueueTwoTone'); diff --git a/packages/material-ui-icons/src/CloudRounded.js b/packages/material-ui-icons/src/CloudRounded.js new file mode 100644 index 00000000000000..152f1b233e0df6 --- /dev/null +++ b/packages/material-ui-icons/src/CloudRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudRounded'); diff --git a/packages/material-ui-icons/src/CloudSharp.js b/packages/material-ui-icons/src/CloudSharp.js new file mode 100644 index 00000000000000..49060c914c8726 --- /dev/null +++ b/packages/material-ui-icons/src/CloudSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudSharp'); diff --git a/packages/material-ui-icons/src/CloudTwoTone.js b/packages/material-ui-icons/src/CloudTwoTone.js new file mode 100644 index 00000000000000..9edeed0b265981 --- /dev/null +++ b/packages/material-ui-icons/src/CloudTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudTwoTone'); diff --git a/packages/material-ui-icons/src/CloudUpload.js b/packages/material-ui-icons/src/CloudUpload.js index 1bb6810c48285e..ab22f9a08c0721 100644 --- a/packages/material-ui-icons/src/CloudUpload.js +++ b/packages/material-ui-icons/src/CloudUpload.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CloudUpload'); diff --git a/packages/material-ui-icons/src/CloudUploadOutlined.js b/packages/material-ui-icons/src/CloudUploadOutlined.js new file mode 100644 index 00000000000000..5ed3457168ee71 --- /dev/null +++ b/packages/material-ui-icons/src/CloudUploadOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudUploadOutlined'); diff --git a/packages/material-ui-icons/src/CloudUploadRounded.js b/packages/material-ui-icons/src/CloudUploadRounded.js new file mode 100644 index 00000000000000..4f83c1b664cf30 --- /dev/null +++ b/packages/material-ui-icons/src/CloudUploadRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudUploadRounded'); diff --git a/packages/material-ui-icons/src/CloudUploadSharp.js b/packages/material-ui-icons/src/CloudUploadSharp.js new file mode 100644 index 00000000000000..702b4be0abdded --- /dev/null +++ b/packages/material-ui-icons/src/CloudUploadSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudUploadSharp'); diff --git a/packages/material-ui-icons/src/CloudUploadTwoTone.js b/packages/material-ui-icons/src/CloudUploadTwoTone.js new file mode 100644 index 00000000000000..44f46587a7717e --- /dev/null +++ b/packages/material-ui-icons/src/CloudUploadTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CloudUploadTwoTone'); diff --git a/packages/material-ui-icons/src/CodeOutlined.js b/packages/material-ui-icons/src/CodeOutlined.js new file mode 100644 index 00000000000000..60c32f8fcf828f --- /dev/null +++ b/packages/material-ui-icons/src/CodeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CodeOutlined'); diff --git a/packages/material-ui-icons/src/CodeRounded.js b/packages/material-ui-icons/src/CodeRounded.js new file mode 100644 index 00000000000000..75e351fc0f9fa5 --- /dev/null +++ b/packages/material-ui-icons/src/CodeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CodeRounded'); diff --git a/packages/material-ui-icons/src/CodeSharp.js b/packages/material-ui-icons/src/CodeSharp.js new file mode 100644 index 00000000000000..a4b1386532b770 --- /dev/null +++ b/packages/material-ui-icons/src/CodeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CodeSharp'); diff --git a/packages/material-ui-icons/src/CodeTwoTone.js b/packages/material-ui-icons/src/CodeTwoTone.js new file mode 100644 index 00000000000000..d1181904ae97ca --- /dev/null +++ b/packages/material-ui-icons/src/CodeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CodeTwoTone'); diff --git a/packages/material-ui-icons/src/CollectionsBookmark.js b/packages/material-ui-icons/src/CollectionsBookmark.js index 09c2278936e0a2..88aa9bf453d9fe 100644 --- a/packages/material-ui-icons/src/CollectionsBookmark.js +++ b/packages/material-ui-icons/src/CollectionsBookmark.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CollectionsBookmark'); diff --git a/packages/material-ui-icons/src/CollectionsBookmarkOutlined.js b/packages/material-ui-icons/src/CollectionsBookmarkOutlined.js new file mode 100644 index 00000000000000..014dbdb8c66cb2 --- /dev/null +++ b/packages/material-ui-icons/src/CollectionsBookmarkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CollectionsBookmarkOutlined'); diff --git a/packages/material-ui-icons/src/CollectionsBookmarkRounded.js b/packages/material-ui-icons/src/CollectionsBookmarkRounded.js new file mode 100644 index 00000000000000..b08502bc0c8e0d --- /dev/null +++ b/packages/material-ui-icons/src/CollectionsBookmarkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CollectionsBookmarkRounded'); diff --git a/packages/material-ui-icons/src/CollectionsBookmarkSharp.js b/packages/material-ui-icons/src/CollectionsBookmarkSharp.js new file mode 100644 index 00000000000000..3939b14548629f --- /dev/null +++ b/packages/material-ui-icons/src/CollectionsBookmarkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CollectionsBookmarkSharp'); diff --git a/packages/material-ui-icons/src/CollectionsBookmarkTwoTone.js b/packages/material-ui-icons/src/CollectionsBookmarkTwoTone.js new file mode 100644 index 00000000000000..0e773cea8b9ffc --- /dev/null +++ b/packages/material-ui-icons/src/CollectionsBookmarkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CollectionsBookmarkTwoTone'); diff --git a/packages/material-ui-icons/src/CollectionsOutlined.js b/packages/material-ui-icons/src/CollectionsOutlined.js new file mode 100644 index 00000000000000..45c2e8bee3dfb7 --- /dev/null +++ b/packages/material-ui-icons/src/CollectionsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CollectionsOutlined'); diff --git a/packages/material-ui-icons/src/CollectionsRounded.js b/packages/material-ui-icons/src/CollectionsRounded.js new file mode 100644 index 00000000000000..8f8cad240cfaf2 --- /dev/null +++ b/packages/material-ui-icons/src/CollectionsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CollectionsRounded'); diff --git a/packages/material-ui-icons/src/CollectionsSharp.js b/packages/material-ui-icons/src/CollectionsSharp.js new file mode 100644 index 00000000000000..7ddf3b8e9fc2ca --- /dev/null +++ b/packages/material-ui-icons/src/CollectionsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CollectionsSharp'); diff --git a/packages/material-ui-icons/src/CollectionsTwoTone.js b/packages/material-ui-icons/src/CollectionsTwoTone.js new file mode 100644 index 00000000000000..3e3c5b38638eaf --- /dev/null +++ b/packages/material-ui-icons/src/CollectionsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CollectionsTwoTone'); diff --git a/packages/material-ui-icons/src/ColorLens.js b/packages/material-ui-icons/src/ColorLens.js index abc74b64c5fc8f..c780c95e8c1d1d 100644 --- a/packages/material-ui-icons/src/ColorLens.js +++ b/packages/material-ui-icons/src/ColorLens.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ColorLens'); diff --git a/packages/material-ui-icons/src/ColorLensOutlined.js b/packages/material-ui-icons/src/ColorLensOutlined.js new file mode 100644 index 00000000000000..8790f85ddab311 --- /dev/null +++ b/packages/material-ui-icons/src/ColorLensOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ColorLensOutlined'); diff --git a/packages/material-ui-icons/src/ColorLensRounded.js b/packages/material-ui-icons/src/ColorLensRounded.js new file mode 100644 index 00000000000000..0f0bf5d424610d --- /dev/null +++ b/packages/material-ui-icons/src/ColorLensRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ColorLensRounded'); diff --git a/packages/material-ui-icons/src/ColorLensSharp.js b/packages/material-ui-icons/src/ColorLensSharp.js new file mode 100644 index 00000000000000..8941123a1a63f1 --- /dev/null +++ b/packages/material-ui-icons/src/ColorLensSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ColorLensSharp'); diff --git a/packages/material-ui-icons/src/ColorLensTwoTone.js b/packages/material-ui-icons/src/ColorLensTwoTone.js new file mode 100644 index 00000000000000..15e130007aebb5 --- /dev/null +++ b/packages/material-ui-icons/src/ColorLensTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ColorLensTwoTone'); diff --git a/packages/material-ui-icons/src/Colorize.js b/packages/material-ui-icons/src/Colorize.js index 9ef554970b8299..5454c688917290 100644 --- a/packages/material-ui-icons/src/Colorize.js +++ b/packages/material-ui-icons/src/Colorize.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Colorize'); diff --git a/packages/material-ui-icons/src/ColorizeOutlined.js b/packages/material-ui-icons/src/ColorizeOutlined.js new file mode 100644 index 00000000000000..f9365aa7b68e76 --- /dev/null +++ b/packages/material-ui-icons/src/ColorizeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ColorizeOutlined'); diff --git a/packages/material-ui-icons/src/ColorizeRounded.js b/packages/material-ui-icons/src/ColorizeRounded.js new file mode 100644 index 00000000000000..df9be469880273 --- /dev/null +++ b/packages/material-ui-icons/src/ColorizeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ColorizeRounded'); diff --git a/packages/material-ui-icons/src/ColorizeSharp.js b/packages/material-ui-icons/src/ColorizeSharp.js new file mode 100644 index 00000000000000..5db30dc3495a71 --- /dev/null +++ b/packages/material-ui-icons/src/ColorizeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ColorizeSharp'); diff --git a/packages/material-ui-icons/src/ColorizeTwoTone.js b/packages/material-ui-icons/src/ColorizeTwoTone.js new file mode 100644 index 00000000000000..e7b9eb578532a4 --- /dev/null +++ b/packages/material-ui-icons/src/ColorizeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ColorizeTwoTone'); diff --git a/packages/material-ui-icons/src/CommentOutlined.js b/packages/material-ui-icons/src/CommentOutlined.js new file mode 100644 index 00000000000000..dd84a728923c99 --- /dev/null +++ b/packages/material-ui-icons/src/CommentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CommentOutlined'); diff --git a/packages/material-ui-icons/src/CommentRounded.js b/packages/material-ui-icons/src/CommentRounded.js new file mode 100644 index 00000000000000..df5994b2afe0dd --- /dev/null +++ b/packages/material-ui-icons/src/CommentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CommentRounded'); diff --git a/packages/material-ui-icons/src/CommentSharp.js b/packages/material-ui-icons/src/CommentSharp.js new file mode 100644 index 00000000000000..e48a69e0108d67 --- /dev/null +++ b/packages/material-ui-icons/src/CommentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CommentSharp'); diff --git a/packages/material-ui-icons/src/CommentTwoTone.js b/packages/material-ui-icons/src/CommentTwoTone.js new file mode 100644 index 00000000000000..bc12f653bd2450 --- /dev/null +++ b/packages/material-ui-icons/src/CommentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CommentTwoTone'); diff --git a/packages/material-ui-icons/src/Commute.js b/packages/material-ui-icons/src/Commute.js new file mode 100644 index 00000000000000..5eb5544af13680 --- /dev/null +++ b/packages/material-ui-icons/src/Commute.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Commute'); diff --git a/packages/material-ui-icons/src/CommuteOutlined.js b/packages/material-ui-icons/src/CommuteOutlined.js new file mode 100644 index 00000000000000..3dba4a29410691 --- /dev/null +++ b/packages/material-ui-icons/src/CommuteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CommuteOutlined'); diff --git a/packages/material-ui-icons/src/CommuteRounded.js b/packages/material-ui-icons/src/CommuteRounded.js new file mode 100644 index 00000000000000..90edb71886a1cd --- /dev/null +++ b/packages/material-ui-icons/src/CommuteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CommuteRounded'); diff --git a/packages/material-ui-icons/src/CommuteSharp.js b/packages/material-ui-icons/src/CommuteSharp.js new file mode 100644 index 00000000000000..68574283d621c9 --- /dev/null +++ b/packages/material-ui-icons/src/CommuteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CommuteSharp'); diff --git a/packages/material-ui-icons/src/CommuteTwoTone.js b/packages/material-ui-icons/src/CommuteTwoTone.js new file mode 100644 index 00000000000000..7b3363ee6ab0fd --- /dev/null +++ b/packages/material-ui-icons/src/CommuteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CommuteTwoTone'); diff --git a/packages/material-ui-icons/src/CompareArrows.js b/packages/material-ui-icons/src/CompareArrows.js index 13d847515ac36b..0f647749f450b3 100644 --- a/packages/material-ui-icons/src/CompareArrows.js +++ b/packages/material-ui-icons/src/CompareArrows.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CompareArrows'); diff --git a/packages/material-ui-icons/src/CompareArrowsOutlined.js b/packages/material-ui-icons/src/CompareArrowsOutlined.js new file mode 100644 index 00000000000000..2c5a46914a8991 --- /dev/null +++ b/packages/material-ui-icons/src/CompareArrowsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompareArrowsOutlined'); diff --git a/packages/material-ui-icons/src/CompareArrowsRounded.js b/packages/material-ui-icons/src/CompareArrowsRounded.js new file mode 100644 index 00000000000000..1debbd100b6413 --- /dev/null +++ b/packages/material-ui-icons/src/CompareArrowsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompareArrowsRounded'); diff --git a/packages/material-ui-icons/src/CompareArrowsSharp.js b/packages/material-ui-icons/src/CompareArrowsSharp.js new file mode 100644 index 00000000000000..123e304971ab49 --- /dev/null +++ b/packages/material-ui-icons/src/CompareArrowsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompareArrowsSharp'); diff --git a/packages/material-ui-icons/src/CompareArrowsTwoTone.js b/packages/material-ui-icons/src/CompareArrowsTwoTone.js new file mode 100644 index 00000000000000..e1ddbadc0a974c --- /dev/null +++ b/packages/material-ui-icons/src/CompareArrowsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompareArrowsTwoTone'); diff --git a/packages/material-ui-icons/src/CompareOutlined.js b/packages/material-ui-icons/src/CompareOutlined.js new file mode 100644 index 00000000000000..5f9bbb75d1460c --- /dev/null +++ b/packages/material-ui-icons/src/CompareOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompareOutlined'); diff --git a/packages/material-ui-icons/src/CompareRounded.js b/packages/material-ui-icons/src/CompareRounded.js new file mode 100644 index 00000000000000..5b266f6c18e5e8 --- /dev/null +++ b/packages/material-ui-icons/src/CompareRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompareRounded'); diff --git a/packages/material-ui-icons/src/CompareSharp.js b/packages/material-ui-icons/src/CompareSharp.js new file mode 100644 index 00000000000000..0bc87e35e5b84f --- /dev/null +++ b/packages/material-ui-icons/src/CompareSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompareSharp'); diff --git a/packages/material-ui-icons/src/CompareTwoTone.js b/packages/material-ui-icons/src/CompareTwoTone.js new file mode 100644 index 00000000000000..2ebb2864b7cce3 --- /dev/null +++ b/packages/material-ui-icons/src/CompareTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompareTwoTone'); diff --git a/packages/material-ui-icons/src/CompassCalibration.js b/packages/material-ui-icons/src/CompassCalibration.js new file mode 100644 index 00000000000000..4fa06aa3738ef3 --- /dev/null +++ b/packages/material-ui-icons/src/CompassCalibration.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompassCalibration'); diff --git a/packages/material-ui-icons/src/CompassCalibrationOutlined.js b/packages/material-ui-icons/src/CompassCalibrationOutlined.js new file mode 100644 index 00000000000000..08a4aa2ff504fc --- /dev/null +++ b/packages/material-ui-icons/src/CompassCalibrationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompassCalibrationOutlined'); diff --git a/packages/material-ui-icons/src/CompassCalibrationRounded.js b/packages/material-ui-icons/src/CompassCalibrationRounded.js new file mode 100644 index 00000000000000..090f86dbb2bc8f --- /dev/null +++ b/packages/material-ui-icons/src/CompassCalibrationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompassCalibrationRounded'); diff --git a/packages/material-ui-icons/src/CompassCalibrationSharp.js b/packages/material-ui-icons/src/CompassCalibrationSharp.js new file mode 100644 index 00000000000000..da5ce003fc48e2 --- /dev/null +++ b/packages/material-ui-icons/src/CompassCalibrationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompassCalibrationSharp'); diff --git a/packages/material-ui-icons/src/CompassCalibrationTwoTone.js b/packages/material-ui-icons/src/CompassCalibrationTwoTone.js new file mode 100644 index 00000000000000..885c84026947aa --- /dev/null +++ b/packages/material-ui-icons/src/CompassCalibrationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CompassCalibrationTwoTone'); diff --git a/packages/material-ui-icons/src/ComputerOutlined.js b/packages/material-ui-icons/src/ComputerOutlined.js new file mode 100644 index 00000000000000..2ba6d4d6af9fdc --- /dev/null +++ b/packages/material-ui-icons/src/ComputerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ComputerOutlined'); diff --git a/packages/material-ui-icons/src/ComputerRounded.js b/packages/material-ui-icons/src/ComputerRounded.js new file mode 100644 index 00000000000000..958841d24cf14d --- /dev/null +++ b/packages/material-ui-icons/src/ComputerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ComputerRounded'); diff --git a/packages/material-ui-icons/src/ComputerSharp.js b/packages/material-ui-icons/src/ComputerSharp.js new file mode 100644 index 00000000000000..93ced3c57c26e4 --- /dev/null +++ b/packages/material-ui-icons/src/ComputerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ComputerSharp'); diff --git a/packages/material-ui-icons/src/ComputerTwoTone.js b/packages/material-ui-icons/src/ComputerTwoTone.js new file mode 100644 index 00000000000000..2c9c4a38c8cda3 --- /dev/null +++ b/packages/material-ui-icons/src/ComputerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ComputerTwoTone'); diff --git a/packages/material-ui-icons/src/ConfirmationNumber.js b/packages/material-ui-icons/src/ConfirmationNumber.js index 47c41a04d46480..be54e4c5dbf070 100644 --- a/packages/material-ui-icons/src/ConfirmationNumber.js +++ b/packages/material-ui-icons/src/ConfirmationNumber.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ConfirmationNumber'); diff --git a/packages/material-ui-icons/src/ConfirmationNumberOutlined.js b/packages/material-ui-icons/src/ConfirmationNumberOutlined.js new file mode 100644 index 00000000000000..8705ba5d1f674a --- /dev/null +++ b/packages/material-ui-icons/src/ConfirmationNumberOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ConfirmationNumberOutlined'); diff --git a/packages/material-ui-icons/src/ConfirmationNumberRounded.js b/packages/material-ui-icons/src/ConfirmationNumberRounded.js new file mode 100644 index 00000000000000..8820c659190467 --- /dev/null +++ b/packages/material-ui-icons/src/ConfirmationNumberRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ConfirmationNumberRounded'); diff --git a/packages/material-ui-icons/src/ConfirmationNumberSharp.js b/packages/material-ui-icons/src/ConfirmationNumberSharp.js new file mode 100644 index 00000000000000..ab296ec81e57b4 --- /dev/null +++ b/packages/material-ui-icons/src/ConfirmationNumberSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ConfirmationNumberSharp'); diff --git a/packages/material-ui-icons/src/ConfirmationNumberTwoTone.js b/packages/material-ui-icons/src/ConfirmationNumberTwoTone.js new file mode 100644 index 00000000000000..d9ece73328f75e --- /dev/null +++ b/packages/material-ui-icons/src/ConfirmationNumberTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ConfirmationNumberTwoTone'); diff --git a/packages/material-ui-icons/src/ContactMailOutlined.js b/packages/material-ui-icons/src/ContactMailOutlined.js new file mode 100644 index 00000000000000..bb42c6b1b77f95 --- /dev/null +++ b/packages/material-ui-icons/src/ContactMailOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactMailOutlined'); diff --git a/packages/material-ui-icons/src/ContactMailRounded.js b/packages/material-ui-icons/src/ContactMailRounded.js new file mode 100644 index 00000000000000..44413ac210451b --- /dev/null +++ b/packages/material-ui-icons/src/ContactMailRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactMailRounded'); diff --git a/packages/material-ui-icons/src/ContactMailSharp.js b/packages/material-ui-icons/src/ContactMailSharp.js new file mode 100644 index 00000000000000..d450815bbeb0f2 --- /dev/null +++ b/packages/material-ui-icons/src/ContactMailSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactMailSharp'); diff --git a/packages/material-ui-icons/src/ContactMailTwoTone.js b/packages/material-ui-icons/src/ContactMailTwoTone.js new file mode 100644 index 00000000000000..c58a31eddf2cad --- /dev/null +++ b/packages/material-ui-icons/src/ContactMailTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactMailTwoTone'); diff --git a/packages/material-ui-icons/src/ContactPhone.js b/packages/material-ui-icons/src/ContactPhone.js index d5408a9bd7fc8c..efc0347f7e26ef 100644 --- a/packages/material-ui-icons/src/ContactPhone.js +++ b/packages/material-ui-icons/src/ContactPhone.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ContactPhone'); diff --git a/packages/material-ui-icons/src/ContactPhoneOutlined.js b/packages/material-ui-icons/src/ContactPhoneOutlined.js new file mode 100644 index 00000000000000..c86be1fb48705e --- /dev/null +++ b/packages/material-ui-icons/src/ContactPhoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactPhoneOutlined'); diff --git a/packages/material-ui-icons/src/ContactPhoneRounded.js b/packages/material-ui-icons/src/ContactPhoneRounded.js new file mode 100644 index 00000000000000..a1c504b897e315 --- /dev/null +++ b/packages/material-ui-icons/src/ContactPhoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactPhoneRounded'); diff --git a/packages/material-ui-icons/src/ContactPhoneSharp.js b/packages/material-ui-icons/src/ContactPhoneSharp.js new file mode 100644 index 00000000000000..d9f7c4c333d6f7 --- /dev/null +++ b/packages/material-ui-icons/src/ContactPhoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactPhoneSharp'); diff --git a/packages/material-ui-icons/src/ContactPhoneTwoTone.js b/packages/material-ui-icons/src/ContactPhoneTwoTone.js new file mode 100644 index 00000000000000..37cff5fd5c57d7 --- /dev/null +++ b/packages/material-ui-icons/src/ContactPhoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactPhoneTwoTone'); diff --git a/packages/material-ui-icons/src/ContactSupport.js b/packages/material-ui-icons/src/ContactSupport.js new file mode 100644 index 00000000000000..775fb0f62be692 --- /dev/null +++ b/packages/material-ui-icons/src/ContactSupport.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactSupport'); diff --git a/packages/material-ui-icons/src/ContactSupportOutlined.js b/packages/material-ui-icons/src/ContactSupportOutlined.js new file mode 100644 index 00000000000000..45cf9bd2b8a8da --- /dev/null +++ b/packages/material-ui-icons/src/ContactSupportOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactSupportOutlined'); diff --git a/packages/material-ui-icons/src/ContactSupportRounded.js b/packages/material-ui-icons/src/ContactSupportRounded.js new file mode 100644 index 00000000000000..fb1d4a7fc8656b --- /dev/null +++ b/packages/material-ui-icons/src/ContactSupportRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactSupportRounded'); diff --git a/packages/material-ui-icons/src/ContactSupportSharp.js b/packages/material-ui-icons/src/ContactSupportSharp.js new file mode 100644 index 00000000000000..5b52344fc381a9 --- /dev/null +++ b/packages/material-ui-icons/src/ContactSupportSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactSupportSharp'); diff --git a/packages/material-ui-icons/src/ContactSupportTwoTone.js b/packages/material-ui-icons/src/ContactSupportTwoTone.js new file mode 100644 index 00000000000000..95ae61f76a2387 --- /dev/null +++ b/packages/material-ui-icons/src/ContactSupportTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactSupportTwoTone'); diff --git a/packages/material-ui-icons/src/ContactsOutlined.js b/packages/material-ui-icons/src/ContactsOutlined.js new file mode 100644 index 00000000000000..98a7b47ea1551e --- /dev/null +++ b/packages/material-ui-icons/src/ContactsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactsOutlined'); diff --git a/packages/material-ui-icons/src/ContactsRounded.js b/packages/material-ui-icons/src/ContactsRounded.js new file mode 100644 index 00000000000000..76017ca79a02ca --- /dev/null +++ b/packages/material-ui-icons/src/ContactsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactsRounded'); diff --git a/packages/material-ui-icons/src/ContactsSharp.js b/packages/material-ui-icons/src/ContactsSharp.js new file mode 100644 index 00000000000000..2900235d33971a --- /dev/null +++ b/packages/material-ui-icons/src/ContactsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactsSharp'); diff --git a/packages/material-ui-icons/src/ContactsTwoTone.js b/packages/material-ui-icons/src/ContactsTwoTone.js new file mode 100644 index 00000000000000..6f4eea2f46cfa5 --- /dev/null +++ b/packages/material-ui-icons/src/ContactsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ContactsTwoTone'); diff --git a/packages/material-ui-icons/src/ContentCopy.js b/packages/material-ui-icons/src/ContentCopy.js deleted file mode 100644 index 55caa1a2711299..00000000000000 --- a/packages/material-ui-icons/src/ContentCopy.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'ContentCopy'); diff --git a/packages/material-ui-icons/src/ContentCut.js b/packages/material-ui-icons/src/ContentCut.js deleted file mode 100644 index 344e83b5116abf..00000000000000 --- a/packages/material-ui-icons/src/ContentCut.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'ContentCut'); diff --git a/packages/material-ui-icons/src/ContentPaste.js b/packages/material-ui-icons/src/ContentPaste.js deleted file mode 100644 index 7677afeed58595..00000000000000 --- a/packages/material-ui-icons/src/ContentPaste.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'ContentPaste'); diff --git a/packages/material-ui-icons/src/ControlCamera.js b/packages/material-ui-icons/src/ControlCamera.js new file mode 100644 index 00000000000000..844f1dd3b3ba35 --- /dev/null +++ b/packages/material-ui-icons/src/ControlCamera.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlCamera'); diff --git a/packages/material-ui-icons/src/ControlCameraOutlined.js b/packages/material-ui-icons/src/ControlCameraOutlined.js new file mode 100644 index 00000000000000..d507c38b5d8bec --- /dev/null +++ b/packages/material-ui-icons/src/ControlCameraOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlCameraOutlined'); diff --git a/packages/material-ui-icons/src/ControlCameraRounded.js b/packages/material-ui-icons/src/ControlCameraRounded.js new file mode 100644 index 00000000000000..0171f00046f512 --- /dev/null +++ b/packages/material-ui-icons/src/ControlCameraRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlCameraRounded'); diff --git a/packages/material-ui-icons/src/ControlCameraSharp.js b/packages/material-ui-icons/src/ControlCameraSharp.js new file mode 100644 index 00000000000000..3e1bc605a5acd5 --- /dev/null +++ b/packages/material-ui-icons/src/ControlCameraSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlCameraSharp'); diff --git a/packages/material-ui-icons/src/ControlCameraTwoTone.js b/packages/material-ui-icons/src/ControlCameraTwoTone.js new file mode 100644 index 00000000000000..9e18da3b65f5e4 --- /dev/null +++ b/packages/material-ui-icons/src/ControlCameraTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlCameraTwoTone'); diff --git a/packages/material-ui-icons/src/ControlPointDuplicate.js b/packages/material-ui-icons/src/ControlPointDuplicate.js index 4b52f532e4db45..ca2b8e60cd7bcf 100644 --- a/packages/material-ui-icons/src/ControlPointDuplicate.js +++ b/packages/material-ui-icons/src/ControlPointDuplicate.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ControlPointDuplicate'); diff --git a/packages/material-ui-icons/src/ControlPointDuplicateOutlined.js b/packages/material-ui-icons/src/ControlPointDuplicateOutlined.js new file mode 100644 index 00000000000000..dfb7c6bedb917e --- /dev/null +++ b/packages/material-ui-icons/src/ControlPointDuplicateOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlPointDuplicateOutlined'); diff --git a/packages/material-ui-icons/src/ControlPointDuplicateRounded.js b/packages/material-ui-icons/src/ControlPointDuplicateRounded.js new file mode 100644 index 00000000000000..7bea87b22b6f79 --- /dev/null +++ b/packages/material-ui-icons/src/ControlPointDuplicateRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlPointDuplicateRounded'); diff --git a/packages/material-ui-icons/src/ControlPointDuplicateSharp.js b/packages/material-ui-icons/src/ControlPointDuplicateSharp.js new file mode 100644 index 00000000000000..7dc61309d48140 --- /dev/null +++ b/packages/material-ui-icons/src/ControlPointDuplicateSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlPointDuplicateSharp'); diff --git a/packages/material-ui-icons/src/ControlPointDuplicateTwoTone.js b/packages/material-ui-icons/src/ControlPointDuplicateTwoTone.js new file mode 100644 index 00000000000000..46a218cd76ef31 --- /dev/null +++ b/packages/material-ui-icons/src/ControlPointDuplicateTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlPointDuplicateTwoTone'); diff --git a/packages/material-ui-icons/src/ControlPointOutlined.js b/packages/material-ui-icons/src/ControlPointOutlined.js new file mode 100644 index 00000000000000..9c256c0d3cecb9 --- /dev/null +++ b/packages/material-ui-icons/src/ControlPointOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlPointOutlined'); diff --git a/packages/material-ui-icons/src/ControlPointRounded.js b/packages/material-ui-icons/src/ControlPointRounded.js new file mode 100644 index 00000000000000..2fdf5d2793af20 --- /dev/null +++ b/packages/material-ui-icons/src/ControlPointRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlPointRounded'); diff --git a/packages/material-ui-icons/src/ControlPointSharp.js b/packages/material-ui-icons/src/ControlPointSharp.js new file mode 100644 index 00000000000000..0df0b3441a9827 --- /dev/null +++ b/packages/material-ui-icons/src/ControlPointSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlPointSharp'); diff --git a/packages/material-ui-icons/src/ControlPointTwoTone.js b/packages/material-ui-icons/src/ControlPointTwoTone.js new file mode 100644 index 00000000000000..ecd4b80bc0e869 --- /dev/null +++ b/packages/material-ui-icons/src/ControlPointTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ControlPointTwoTone'); diff --git a/packages/material-ui-icons/src/Copyright.js b/packages/material-ui-icons/src/Copyright.js index 2a7856dfe7662b..8cf6bef089d2cc 100644 --- a/packages/material-ui-icons/src/Copyright.js +++ b/packages/material-ui-icons/src/Copyright.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Copyright'); diff --git a/packages/material-ui-icons/src/CopyrightOutlined.js b/packages/material-ui-icons/src/CopyrightOutlined.js new file mode 100644 index 00000000000000..426ba243ea1956 --- /dev/null +++ b/packages/material-ui-icons/src/CopyrightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CopyrightOutlined'); diff --git a/packages/material-ui-icons/src/CopyrightRounded.js b/packages/material-ui-icons/src/CopyrightRounded.js new file mode 100644 index 00000000000000..54134489d81e6e --- /dev/null +++ b/packages/material-ui-icons/src/CopyrightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CopyrightRounded'); diff --git a/packages/material-ui-icons/src/CopyrightSharp.js b/packages/material-ui-icons/src/CopyrightSharp.js new file mode 100644 index 00000000000000..d8d51684da63b0 --- /dev/null +++ b/packages/material-ui-icons/src/CopyrightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CopyrightSharp'); diff --git a/packages/material-ui-icons/src/CopyrightTwoTone.js b/packages/material-ui-icons/src/CopyrightTwoTone.js new file mode 100644 index 00000000000000..f8ee27eb1b2a10 --- /dev/null +++ b/packages/material-ui-icons/src/CopyrightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CopyrightTwoTone'); diff --git a/packages/material-ui-icons/src/Create.js b/packages/material-ui-icons/src/Create.js index 55446c0a2d9d5f..24864321fe74f0 100644 --- a/packages/material-ui-icons/src/Create.js +++ b/packages/material-ui-icons/src/Create.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Create'); diff --git a/packages/material-ui-icons/src/CreateNewFolderOutlined.js b/packages/material-ui-icons/src/CreateNewFolderOutlined.js new file mode 100644 index 00000000000000..98b577b0ca1bd8 --- /dev/null +++ b/packages/material-ui-icons/src/CreateNewFolderOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreateNewFolderOutlined'); diff --git a/packages/material-ui-icons/src/CreateNewFolderRounded.js b/packages/material-ui-icons/src/CreateNewFolderRounded.js new file mode 100644 index 00000000000000..d5b30b5e84fd4a --- /dev/null +++ b/packages/material-ui-icons/src/CreateNewFolderRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreateNewFolderRounded'); diff --git a/packages/material-ui-icons/src/CreateNewFolderSharp.js b/packages/material-ui-icons/src/CreateNewFolderSharp.js new file mode 100644 index 00000000000000..e831878bfc8b28 --- /dev/null +++ b/packages/material-ui-icons/src/CreateNewFolderSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreateNewFolderSharp'); diff --git a/packages/material-ui-icons/src/CreateNewFolderTwoTone.js b/packages/material-ui-icons/src/CreateNewFolderTwoTone.js new file mode 100644 index 00000000000000..3d6ca8260b5ccc --- /dev/null +++ b/packages/material-ui-icons/src/CreateNewFolderTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreateNewFolderTwoTone'); diff --git a/packages/material-ui-icons/src/CreateOutlined.js b/packages/material-ui-icons/src/CreateOutlined.js new file mode 100644 index 00000000000000..7d82b2ecf706ef --- /dev/null +++ b/packages/material-ui-icons/src/CreateOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreateOutlined'); diff --git a/packages/material-ui-icons/src/CreateRounded.js b/packages/material-ui-icons/src/CreateRounded.js new file mode 100644 index 00000000000000..4060ba8c612b69 --- /dev/null +++ b/packages/material-ui-icons/src/CreateRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreateRounded'); diff --git a/packages/material-ui-icons/src/CreateSharp.js b/packages/material-ui-icons/src/CreateSharp.js new file mode 100644 index 00000000000000..f04c3123d72a16 --- /dev/null +++ b/packages/material-ui-icons/src/CreateSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreateSharp'); diff --git a/packages/material-ui-icons/src/CreateTwoTone.js b/packages/material-ui-icons/src/CreateTwoTone.js new file mode 100644 index 00000000000000..8e218d9c1814b2 --- /dev/null +++ b/packages/material-ui-icons/src/CreateTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreateTwoTone'); diff --git a/packages/material-ui-icons/src/CreditCardOutlined.js b/packages/material-ui-icons/src/CreditCardOutlined.js new file mode 100644 index 00000000000000..527fe15ba4f4fd --- /dev/null +++ b/packages/material-ui-icons/src/CreditCardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreditCardOutlined'); diff --git a/packages/material-ui-icons/src/CreditCardRounded.js b/packages/material-ui-icons/src/CreditCardRounded.js new file mode 100644 index 00000000000000..cce34d8dba3590 --- /dev/null +++ b/packages/material-ui-icons/src/CreditCardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreditCardRounded'); diff --git a/packages/material-ui-icons/src/CreditCardSharp.js b/packages/material-ui-icons/src/CreditCardSharp.js new file mode 100644 index 00000000000000..9af699ec8c3a57 --- /dev/null +++ b/packages/material-ui-icons/src/CreditCardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreditCardSharp'); diff --git a/packages/material-ui-icons/src/CreditCardTwoTone.js b/packages/material-ui-icons/src/CreditCardTwoTone.js new file mode 100644 index 00000000000000..787d213acd7009 --- /dev/null +++ b/packages/material-ui-icons/src/CreditCardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CreditCardTwoTone'); diff --git a/packages/material-ui-icons/src/Crop169Outlined.js b/packages/material-ui-icons/src/Crop169Outlined.js new file mode 100644 index 00000000000000..3c2beb4559aeb4 --- /dev/null +++ b/packages/material-ui-icons/src/Crop169Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop169Outlined'); diff --git a/packages/material-ui-icons/src/Crop169Rounded.js b/packages/material-ui-icons/src/Crop169Rounded.js new file mode 100644 index 00000000000000..329071c8fdff7c --- /dev/null +++ b/packages/material-ui-icons/src/Crop169Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop169Rounded'); diff --git a/packages/material-ui-icons/src/Crop169Sharp.js b/packages/material-ui-icons/src/Crop169Sharp.js new file mode 100644 index 00000000000000..773b269bca9b58 --- /dev/null +++ b/packages/material-ui-icons/src/Crop169Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop169Sharp'); diff --git a/packages/material-ui-icons/src/Crop169TwoTone.js b/packages/material-ui-icons/src/Crop169TwoTone.js new file mode 100644 index 00000000000000..340eb10bf0d591 --- /dev/null +++ b/packages/material-ui-icons/src/Crop169TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop169TwoTone'); diff --git a/packages/material-ui-icons/src/Crop32Outlined.js b/packages/material-ui-icons/src/Crop32Outlined.js new file mode 100644 index 00000000000000..3de66c490f6fdd --- /dev/null +++ b/packages/material-ui-icons/src/Crop32Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop32Outlined'); diff --git a/packages/material-ui-icons/src/Crop32Rounded.js b/packages/material-ui-icons/src/Crop32Rounded.js new file mode 100644 index 00000000000000..415090d4117212 --- /dev/null +++ b/packages/material-ui-icons/src/Crop32Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop32Rounded'); diff --git a/packages/material-ui-icons/src/Crop32Sharp.js b/packages/material-ui-icons/src/Crop32Sharp.js new file mode 100644 index 00000000000000..c1dde48fd6a1c4 --- /dev/null +++ b/packages/material-ui-icons/src/Crop32Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop32Sharp'); diff --git a/packages/material-ui-icons/src/Crop32TwoTone.js b/packages/material-ui-icons/src/Crop32TwoTone.js new file mode 100644 index 00000000000000..cb1a9bb017d275 --- /dev/null +++ b/packages/material-ui-icons/src/Crop32TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop32TwoTone'); diff --git a/packages/material-ui-icons/src/Crop54Outlined.js b/packages/material-ui-icons/src/Crop54Outlined.js new file mode 100644 index 00000000000000..8c2524bbe6b9f8 --- /dev/null +++ b/packages/material-ui-icons/src/Crop54Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop54Outlined'); diff --git a/packages/material-ui-icons/src/Crop54Rounded.js b/packages/material-ui-icons/src/Crop54Rounded.js new file mode 100644 index 00000000000000..e1c1817890e5e4 --- /dev/null +++ b/packages/material-ui-icons/src/Crop54Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop54Rounded'); diff --git a/packages/material-ui-icons/src/Crop54Sharp.js b/packages/material-ui-icons/src/Crop54Sharp.js new file mode 100644 index 00000000000000..1f4c70caefb0c6 --- /dev/null +++ b/packages/material-ui-icons/src/Crop54Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop54Sharp'); diff --git a/packages/material-ui-icons/src/Crop54TwoTone.js b/packages/material-ui-icons/src/Crop54TwoTone.js new file mode 100644 index 00000000000000..b95d7dfdd5b3bd --- /dev/null +++ b/packages/material-ui-icons/src/Crop54TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop54TwoTone'); diff --git a/packages/material-ui-icons/src/Crop75Outlined.js b/packages/material-ui-icons/src/Crop75Outlined.js new file mode 100644 index 00000000000000..5b303dac5ea81f --- /dev/null +++ b/packages/material-ui-icons/src/Crop75Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop75Outlined'); diff --git a/packages/material-ui-icons/src/Crop75Rounded.js b/packages/material-ui-icons/src/Crop75Rounded.js new file mode 100644 index 00000000000000..8fb9155f7c7f29 --- /dev/null +++ b/packages/material-ui-icons/src/Crop75Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop75Rounded'); diff --git a/packages/material-ui-icons/src/Crop75Sharp.js b/packages/material-ui-icons/src/Crop75Sharp.js new file mode 100644 index 00000000000000..691778839827b9 --- /dev/null +++ b/packages/material-ui-icons/src/Crop75Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop75Sharp'); diff --git a/packages/material-ui-icons/src/Crop75TwoTone.js b/packages/material-ui-icons/src/Crop75TwoTone.js new file mode 100644 index 00000000000000..f39dbe7dd57c6d --- /dev/null +++ b/packages/material-ui-icons/src/Crop75TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Crop75TwoTone'); diff --git a/packages/material-ui-icons/src/CropDinOutlined.js b/packages/material-ui-icons/src/CropDinOutlined.js new file mode 100644 index 00000000000000..b91932eefea6ff --- /dev/null +++ b/packages/material-ui-icons/src/CropDinOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropDinOutlined'); diff --git a/packages/material-ui-icons/src/CropDinRounded.js b/packages/material-ui-icons/src/CropDinRounded.js new file mode 100644 index 00000000000000..a7651b5fcc5f4a --- /dev/null +++ b/packages/material-ui-icons/src/CropDinRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropDinRounded'); diff --git a/packages/material-ui-icons/src/CropDinSharp.js b/packages/material-ui-icons/src/CropDinSharp.js new file mode 100644 index 00000000000000..b338e28652da43 --- /dev/null +++ b/packages/material-ui-icons/src/CropDinSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropDinSharp'); diff --git a/packages/material-ui-icons/src/CropDinTwoTone.js b/packages/material-ui-icons/src/CropDinTwoTone.js new file mode 100644 index 00000000000000..1b640237ad3302 --- /dev/null +++ b/packages/material-ui-icons/src/CropDinTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropDinTwoTone'); diff --git a/packages/material-ui-icons/src/CropFreeOutlined.js b/packages/material-ui-icons/src/CropFreeOutlined.js new file mode 100644 index 00000000000000..cffd77542a411f --- /dev/null +++ b/packages/material-ui-icons/src/CropFreeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropFreeOutlined'); diff --git a/packages/material-ui-icons/src/CropFreeRounded.js b/packages/material-ui-icons/src/CropFreeRounded.js new file mode 100644 index 00000000000000..1667b4c616b1f9 --- /dev/null +++ b/packages/material-ui-icons/src/CropFreeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropFreeRounded'); diff --git a/packages/material-ui-icons/src/CropFreeSharp.js b/packages/material-ui-icons/src/CropFreeSharp.js new file mode 100644 index 00000000000000..beca7140de2519 --- /dev/null +++ b/packages/material-ui-icons/src/CropFreeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropFreeSharp'); diff --git a/packages/material-ui-icons/src/CropFreeTwoTone.js b/packages/material-ui-icons/src/CropFreeTwoTone.js new file mode 100644 index 00000000000000..973ca36734d5e5 --- /dev/null +++ b/packages/material-ui-icons/src/CropFreeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropFreeTwoTone'); diff --git a/packages/material-ui-icons/src/CropLandscapeOutlined.js b/packages/material-ui-icons/src/CropLandscapeOutlined.js new file mode 100644 index 00000000000000..daa2ec06248165 --- /dev/null +++ b/packages/material-ui-icons/src/CropLandscapeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropLandscapeOutlined'); diff --git a/packages/material-ui-icons/src/CropLandscapeRounded.js b/packages/material-ui-icons/src/CropLandscapeRounded.js new file mode 100644 index 00000000000000..a106cb7961ce36 --- /dev/null +++ b/packages/material-ui-icons/src/CropLandscapeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropLandscapeRounded'); diff --git a/packages/material-ui-icons/src/CropLandscapeSharp.js b/packages/material-ui-icons/src/CropLandscapeSharp.js new file mode 100644 index 00000000000000..846f0e67a8d649 --- /dev/null +++ b/packages/material-ui-icons/src/CropLandscapeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropLandscapeSharp'); diff --git a/packages/material-ui-icons/src/CropLandscapeTwoTone.js b/packages/material-ui-icons/src/CropLandscapeTwoTone.js new file mode 100644 index 00000000000000..034f332bfa3328 --- /dev/null +++ b/packages/material-ui-icons/src/CropLandscapeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropLandscapeTwoTone'); diff --git a/packages/material-ui-icons/src/CropOriginalOutlined.js b/packages/material-ui-icons/src/CropOriginalOutlined.js new file mode 100644 index 00000000000000..5f25b2b7f82ada --- /dev/null +++ b/packages/material-ui-icons/src/CropOriginalOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropOriginalOutlined'); diff --git a/packages/material-ui-icons/src/CropOriginalRounded.js b/packages/material-ui-icons/src/CropOriginalRounded.js new file mode 100644 index 00000000000000..e8f86ede651ba7 --- /dev/null +++ b/packages/material-ui-icons/src/CropOriginalRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropOriginalRounded'); diff --git a/packages/material-ui-icons/src/CropOriginalSharp.js b/packages/material-ui-icons/src/CropOriginalSharp.js new file mode 100644 index 00000000000000..66d98b38f84116 --- /dev/null +++ b/packages/material-ui-icons/src/CropOriginalSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropOriginalSharp'); diff --git a/packages/material-ui-icons/src/CropOriginalTwoTone.js b/packages/material-ui-icons/src/CropOriginalTwoTone.js new file mode 100644 index 00000000000000..56d37cc30d6b86 --- /dev/null +++ b/packages/material-ui-icons/src/CropOriginalTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropOriginalTwoTone'); diff --git a/packages/material-ui-icons/src/CropOutlined.js b/packages/material-ui-icons/src/CropOutlined.js new file mode 100644 index 00000000000000..39897f637be171 --- /dev/null +++ b/packages/material-ui-icons/src/CropOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropOutlined'); diff --git a/packages/material-ui-icons/src/CropPortraitOutlined.js b/packages/material-ui-icons/src/CropPortraitOutlined.js new file mode 100644 index 00000000000000..a44de8c8892332 --- /dev/null +++ b/packages/material-ui-icons/src/CropPortraitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropPortraitOutlined'); diff --git a/packages/material-ui-icons/src/CropPortraitRounded.js b/packages/material-ui-icons/src/CropPortraitRounded.js new file mode 100644 index 00000000000000..6f6541c6535539 --- /dev/null +++ b/packages/material-ui-icons/src/CropPortraitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropPortraitRounded'); diff --git a/packages/material-ui-icons/src/CropPortraitSharp.js b/packages/material-ui-icons/src/CropPortraitSharp.js new file mode 100644 index 00000000000000..92c65873587fca --- /dev/null +++ b/packages/material-ui-icons/src/CropPortraitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropPortraitSharp'); diff --git a/packages/material-ui-icons/src/CropPortraitTwoTone.js b/packages/material-ui-icons/src/CropPortraitTwoTone.js new file mode 100644 index 00000000000000..4d006e033529d7 --- /dev/null +++ b/packages/material-ui-icons/src/CropPortraitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropPortraitTwoTone'); diff --git a/packages/material-ui-icons/src/CropRotate.js b/packages/material-ui-icons/src/CropRotate.js index aeeca94a123e7b..ad2bf463c41045 100644 --- a/packages/material-ui-icons/src/CropRotate.js +++ b/packages/material-ui-icons/src/CropRotate.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'CropRotate'); diff --git a/packages/material-ui-icons/src/CropRotateOutlined.js b/packages/material-ui-icons/src/CropRotateOutlined.js new file mode 100644 index 00000000000000..7e0f9822af5d3d --- /dev/null +++ b/packages/material-ui-icons/src/CropRotateOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropRotateOutlined'); diff --git a/packages/material-ui-icons/src/CropRotateRounded.js b/packages/material-ui-icons/src/CropRotateRounded.js new file mode 100644 index 00000000000000..7bbf9b419e8d64 --- /dev/null +++ b/packages/material-ui-icons/src/CropRotateRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropRotateRounded'); diff --git a/packages/material-ui-icons/src/CropRotateSharp.js b/packages/material-ui-icons/src/CropRotateSharp.js new file mode 100644 index 00000000000000..2e776a676d1339 --- /dev/null +++ b/packages/material-ui-icons/src/CropRotateSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropRotateSharp'); diff --git a/packages/material-ui-icons/src/CropRotateTwoTone.js b/packages/material-ui-icons/src/CropRotateTwoTone.js new file mode 100644 index 00000000000000..baab659d5b5d88 --- /dev/null +++ b/packages/material-ui-icons/src/CropRotateTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropRotateTwoTone'); diff --git a/packages/material-ui-icons/src/CropRounded.js b/packages/material-ui-icons/src/CropRounded.js new file mode 100644 index 00000000000000..dbe12fa97ed1a6 --- /dev/null +++ b/packages/material-ui-icons/src/CropRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropRounded'); diff --git a/packages/material-ui-icons/src/CropSharp.js b/packages/material-ui-icons/src/CropSharp.js new file mode 100644 index 00000000000000..0f156f26dcfc77 --- /dev/null +++ b/packages/material-ui-icons/src/CropSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropSharp'); diff --git a/packages/material-ui-icons/src/CropSquareOutlined.js b/packages/material-ui-icons/src/CropSquareOutlined.js new file mode 100644 index 00000000000000..325be1601a8b2e --- /dev/null +++ b/packages/material-ui-icons/src/CropSquareOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropSquareOutlined'); diff --git a/packages/material-ui-icons/src/CropSquareRounded.js b/packages/material-ui-icons/src/CropSquareRounded.js new file mode 100644 index 00000000000000..2b5b561b8b6c17 --- /dev/null +++ b/packages/material-ui-icons/src/CropSquareRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropSquareRounded'); diff --git a/packages/material-ui-icons/src/CropSquareSharp.js b/packages/material-ui-icons/src/CropSquareSharp.js new file mode 100644 index 00000000000000..0654a9b692ab15 --- /dev/null +++ b/packages/material-ui-icons/src/CropSquareSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropSquareSharp'); diff --git a/packages/material-ui-icons/src/CropSquareTwoTone.js b/packages/material-ui-icons/src/CropSquareTwoTone.js new file mode 100644 index 00000000000000..96dd44aa00a3aa --- /dev/null +++ b/packages/material-ui-icons/src/CropSquareTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropSquareTwoTone'); diff --git a/packages/material-ui-icons/src/CropTwoTone.js b/packages/material-ui-icons/src/CropTwoTone.js new file mode 100644 index 00000000000000..0c7e7530067e68 --- /dev/null +++ b/packages/material-ui-icons/src/CropTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'CropTwoTone'); diff --git a/packages/material-ui-icons/src/DashboardOutlined.js b/packages/material-ui-icons/src/DashboardOutlined.js new file mode 100644 index 00000000000000..f3a3efce8bcc2a --- /dev/null +++ b/packages/material-ui-icons/src/DashboardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DashboardOutlined'); diff --git a/packages/material-ui-icons/src/DashboardRounded.js b/packages/material-ui-icons/src/DashboardRounded.js new file mode 100644 index 00000000000000..9958d9cf5a71e3 --- /dev/null +++ b/packages/material-ui-icons/src/DashboardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DashboardRounded'); diff --git a/packages/material-ui-icons/src/DashboardSharp.js b/packages/material-ui-icons/src/DashboardSharp.js new file mode 100644 index 00000000000000..452823e713b32a --- /dev/null +++ b/packages/material-ui-icons/src/DashboardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DashboardSharp'); diff --git a/packages/material-ui-icons/src/DashboardTwoTone.js b/packages/material-ui-icons/src/DashboardTwoTone.js new file mode 100644 index 00000000000000..4ede5ed8ff4a59 --- /dev/null +++ b/packages/material-ui-icons/src/DashboardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DashboardTwoTone'); diff --git a/packages/material-ui-icons/src/DataUsage.js b/packages/material-ui-icons/src/DataUsage.js index 4ea30337486c29..bb76ffb48345ad 100644 --- a/packages/material-ui-icons/src/DataUsage.js +++ b/packages/material-ui-icons/src/DataUsage.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'DataUsage'); diff --git a/packages/material-ui-icons/src/DataUsageOutlined.js b/packages/material-ui-icons/src/DataUsageOutlined.js new file mode 100644 index 00000000000000..18e7802a97906d --- /dev/null +++ b/packages/material-ui-icons/src/DataUsageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DataUsageOutlined'); diff --git a/packages/material-ui-icons/src/DataUsageRounded.js b/packages/material-ui-icons/src/DataUsageRounded.js new file mode 100644 index 00000000000000..7bed2811c2b096 --- /dev/null +++ b/packages/material-ui-icons/src/DataUsageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DataUsageRounded'); diff --git a/packages/material-ui-icons/src/DataUsageSharp.js b/packages/material-ui-icons/src/DataUsageSharp.js new file mode 100644 index 00000000000000..390ab1c76ee189 --- /dev/null +++ b/packages/material-ui-icons/src/DataUsageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DataUsageSharp'); diff --git a/packages/material-ui-icons/src/DataUsageTwoTone.js b/packages/material-ui-icons/src/DataUsageTwoTone.js new file mode 100644 index 00000000000000..58b316a9fa00e5 --- /dev/null +++ b/packages/material-ui-icons/src/DataUsageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DataUsageTwoTone'); diff --git a/packages/material-ui-icons/src/DateRange.js b/packages/material-ui-icons/src/DateRange.js index 776e0c444403d4..108373eec62238 100644 --- a/packages/material-ui-icons/src/DateRange.js +++ b/packages/material-ui-icons/src/DateRange.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'DateRange'); diff --git a/packages/material-ui-icons/src/DateRangeOutlined.js b/packages/material-ui-icons/src/DateRangeOutlined.js new file mode 100644 index 00000000000000..62c72bf53a98e4 --- /dev/null +++ b/packages/material-ui-icons/src/DateRangeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DateRangeOutlined'); diff --git a/packages/material-ui-icons/src/DateRangeRounded.js b/packages/material-ui-icons/src/DateRangeRounded.js new file mode 100644 index 00000000000000..f9707e5af757dd --- /dev/null +++ b/packages/material-ui-icons/src/DateRangeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DateRangeRounded'); diff --git a/packages/material-ui-icons/src/DateRangeSharp.js b/packages/material-ui-icons/src/DateRangeSharp.js new file mode 100644 index 00000000000000..57110f2791a902 --- /dev/null +++ b/packages/material-ui-icons/src/DateRangeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DateRangeSharp'); diff --git a/packages/material-ui-icons/src/DateRangeTwoTone.js b/packages/material-ui-icons/src/DateRangeTwoTone.js new file mode 100644 index 00000000000000..60dfb81791d255 --- /dev/null +++ b/packages/material-ui-icons/src/DateRangeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DateRangeTwoTone'); diff --git a/packages/material-ui-icons/src/DehazeOutlined.js b/packages/material-ui-icons/src/DehazeOutlined.js new file mode 100644 index 00000000000000..09d839be3b3ddc --- /dev/null +++ b/packages/material-ui-icons/src/DehazeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DehazeOutlined'); diff --git a/packages/material-ui-icons/src/DehazeRounded.js b/packages/material-ui-icons/src/DehazeRounded.js new file mode 100644 index 00000000000000..8fa8c786d714a6 --- /dev/null +++ b/packages/material-ui-icons/src/DehazeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DehazeRounded'); diff --git a/packages/material-ui-icons/src/DehazeSharp.js b/packages/material-ui-icons/src/DehazeSharp.js new file mode 100644 index 00000000000000..c3e8a608431ba1 --- /dev/null +++ b/packages/material-ui-icons/src/DehazeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DehazeSharp'); diff --git a/packages/material-ui-icons/src/DehazeTwoTone.js b/packages/material-ui-icons/src/DehazeTwoTone.js new file mode 100644 index 00000000000000..732092e73236b4 --- /dev/null +++ b/packages/material-ui-icons/src/DehazeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DehazeTwoTone'); diff --git a/packages/material-ui-icons/src/DeleteForeverOutlined.js b/packages/material-ui-icons/src/DeleteForeverOutlined.js new file mode 100644 index 00000000000000..687d5593cf341d --- /dev/null +++ b/packages/material-ui-icons/src/DeleteForeverOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteForeverOutlined'); diff --git a/packages/material-ui-icons/src/DeleteForeverRounded.js b/packages/material-ui-icons/src/DeleteForeverRounded.js new file mode 100644 index 00000000000000..48986faff9d483 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteForeverRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteForeverRounded'); diff --git a/packages/material-ui-icons/src/DeleteForeverSharp.js b/packages/material-ui-icons/src/DeleteForeverSharp.js new file mode 100644 index 00000000000000..6360dd513a3531 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteForeverSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteForeverSharp'); diff --git a/packages/material-ui-icons/src/DeleteForeverTwoTone.js b/packages/material-ui-icons/src/DeleteForeverTwoTone.js new file mode 100644 index 00000000000000..88e34963781b52 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteForeverTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteForeverTwoTone'); diff --git a/packages/material-ui-icons/src/DeleteOutline.js b/packages/material-ui-icons/src/DeleteOutline.js new file mode 100644 index 00000000000000..8dc4bbfddaea41 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteOutline.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteOutline'); diff --git a/packages/material-ui-icons/src/DeleteOutlineOutlined.js b/packages/material-ui-icons/src/DeleteOutlineOutlined.js new file mode 100644 index 00000000000000..eb237bc770c4dc --- /dev/null +++ b/packages/material-ui-icons/src/DeleteOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteOutlineOutlined'); diff --git a/packages/material-ui-icons/src/DeleteOutlineRounded.js b/packages/material-ui-icons/src/DeleteOutlineRounded.js new file mode 100644 index 00000000000000..0b394c7d10bdab --- /dev/null +++ b/packages/material-ui-icons/src/DeleteOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteOutlineRounded'); diff --git a/packages/material-ui-icons/src/DeleteOutlineSharp.js b/packages/material-ui-icons/src/DeleteOutlineSharp.js new file mode 100644 index 00000000000000..b0db8d70be5eb2 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteOutlineSharp'); diff --git a/packages/material-ui-icons/src/DeleteOutlineTwoTone.js b/packages/material-ui-icons/src/DeleteOutlineTwoTone.js new file mode 100644 index 00000000000000..7ecfb268e12f49 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/DeleteOutlined.js b/packages/material-ui-icons/src/DeleteOutlined.js new file mode 100644 index 00000000000000..403d51f2865205 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteOutlined'); diff --git a/packages/material-ui-icons/src/DeleteRounded.js b/packages/material-ui-icons/src/DeleteRounded.js new file mode 100644 index 00000000000000..fb367c83c0c414 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteRounded'); diff --git a/packages/material-ui-icons/src/DeleteSharp.js b/packages/material-ui-icons/src/DeleteSharp.js new file mode 100644 index 00000000000000..6e2da35f7e3f22 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteSharp'); diff --git a/packages/material-ui-icons/src/DeleteSweepOutlined.js b/packages/material-ui-icons/src/DeleteSweepOutlined.js new file mode 100644 index 00000000000000..713d51ef0bc1d5 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteSweepOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteSweepOutlined'); diff --git a/packages/material-ui-icons/src/DeleteSweepRounded.js b/packages/material-ui-icons/src/DeleteSweepRounded.js new file mode 100644 index 00000000000000..c6a9fdec7c5f62 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteSweepRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteSweepRounded'); diff --git a/packages/material-ui-icons/src/DeleteSweepSharp.js b/packages/material-ui-icons/src/DeleteSweepSharp.js new file mode 100644 index 00000000000000..9a20fedf7e7789 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteSweepSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteSweepSharp'); diff --git a/packages/material-ui-icons/src/DeleteSweepTwoTone.js b/packages/material-ui-icons/src/DeleteSweepTwoTone.js new file mode 100644 index 00000000000000..1737aae3e57cd6 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteSweepTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteSweepTwoTone'); diff --git a/packages/material-ui-icons/src/DeleteTwoTone.js b/packages/material-ui-icons/src/DeleteTwoTone.js new file mode 100644 index 00000000000000..bca1d54b225cf1 --- /dev/null +++ b/packages/material-ui-icons/src/DeleteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeleteTwoTone'); diff --git a/packages/material-ui-icons/src/DepartureBoard.js b/packages/material-ui-icons/src/DepartureBoard.js new file mode 100644 index 00000000000000..fd08ea2559ab59 --- /dev/null +++ b/packages/material-ui-icons/src/DepartureBoard.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DepartureBoard'); diff --git a/packages/material-ui-icons/src/DepartureBoardOutlined.js b/packages/material-ui-icons/src/DepartureBoardOutlined.js new file mode 100644 index 00000000000000..881d01380fe3c9 --- /dev/null +++ b/packages/material-ui-icons/src/DepartureBoardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DepartureBoardOutlined'); diff --git a/packages/material-ui-icons/src/DepartureBoardRounded.js b/packages/material-ui-icons/src/DepartureBoardRounded.js new file mode 100644 index 00000000000000..e66e6b0d7eb0e6 --- /dev/null +++ b/packages/material-ui-icons/src/DepartureBoardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DepartureBoardRounded'); diff --git a/packages/material-ui-icons/src/DepartureBoardSharp.js b/packages/material-ui-icons/src/DepartureBoardSharp.js new file mode 100644 index 00000000000000..bdc51d7e66abfa --- /dev/null +++ b/packages/material-ui-icons/src/DepartureBoardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DepartureBoardSharp'); diff --git a/packages/material-ui-icons/src/DepartureBoardTwoTone.js b/packages/material-ui-icons/src/DepartureBoardTwoTone.js new file mode 100644 index 00000000000000..22f2dd29d2fa69 --- /dev/null +++ b/packages/material-ui-icons/src/DepartureBoardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DepartureBoardTwoTone'); diff --git a/packages/material-ui-icons/src/DescriptionOutlined.js b/packages/material-ui-icons/src/DescriptionOutlined.js new file mode 100644 index 00000000000000..0adfafca9f93db --- /dev/null +++ b/packages/material-ui-icons/src/DescriptionOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DescriptionOutlined'); diff --git a/packages/material-ui-icons/src/DescriptionRounded.js b/packages/material-ui-icons/src/DescriptionRounded.js new file mode 100644 index 00000000000000..0bf0dd49647073 --- /dev/null +++ b/packages/material-ui-icons/src/DescriptionRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DescriptionRounded'); diff --git a/packages/material-ui-icons/src/DescriptionSharp.js b/packages/material-ui-icons/src/DescriptionSharp.js new file mode 100644 index 00000000000000..0422593539b18c --- /dev/null +++ b/packages/material-ui-icons/src/DescriptionSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DescriptionSharp'); diff --git a/packages/material-ui-icons/src/DescriptionTwoTone.js b/packages/material-ui-icons/src/DescriptionTwoTone.js new file mode 100644 index 00000000000000..da813604667faa --- /dev/null +++ b/packages/material-ui-icons/src/DescriptionTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DescriptionTwoTone'); diff --git a/packages/material-ui-icons/src/DesktopAccessDisabled.js b/packages/material-ui-icons/src/DesktopAccessDisabled.js new file mode 100644 index 00000000000000..190b9d71c98499 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopAccessDisabled.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopAccessDisabled'); diff --git a/packages/material-ui-icons/src/DesktopAccessDisabledOutlined.js b/packages/material-ui-icons/src/DesktopAccessDisabledOutlined.js new file mode 100644 index 00000000000000..d609d201c82421 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopAccessDisabledOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopAccessDisabledOutlined'); diff --git a/packages/material-ui-icons/src/DesktopAccessDisabledRounded.js b/packages/material-ui-icons/src/DesktopAccessDisabledRounded.js new file mode 100644 index 00000000000000..9b5abaf7209247 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopAccessDisabledRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopAccessDisabledRounded'); diff --git a/packages/material-ui-icons/src/DesktopAccessDisabledSharp.js b/packages/material-ui-icons/src/DesktopAccessDisabledSharp.js new file mode 100644 index 00000000000000..791a2de011d943 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopAccessDisabledSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopAccessDisabledSharp'); diff --git a/packages/material-ui-icons/src/DesktopAccessDisabledTwoTone.js b/packages/material-ui-icons/src/DesktopAccessDisabledTwoTone.js new file mode 100644 index 00000000000000..f14d1b20fcf986 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopAccessDisabledTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopAccessDisabledTwoTone'); diff --git a/packages/material-ui-icons/src/DesktopMacOutlined.js b/packages/material-ui-icons/src/DesktopMacOutlined.js new file mode 100644 index 00000000000000..6513397184d526 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopMacOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopMacOutlined'); diff --git a/packages/material-ui-icons/src/DesktopMacRounded.js b/packages/material-ui-icons/src/DesktopMacRounded.js new file mode 100644 index 00000000000000..07685b90cc2794 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopMacRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopMacRounded'); diff --git a/packages/material-ui-icons/src/DesktopMacSharp.js b/packages/material-ui-icons/src/DesktopMacSharp.js new file mode 100644 index 00000000000000..0979dfc862a1b3 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopMacSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopMacSharp'); diff --git a/packages/material-ui-icons/src/DesktopMacTwoTone.js b/packages/material-ui-icons/src/DesktopMacTwoTone.js new file mode 100644 index 00000000000000..11d59a0b8f2953 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopMacTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopMacTwoTone'); diff --git a/packages/material-ui-icons/src/DesktopWindowsOutlined.js b/packages/material-ui-icons/src/DesktopWindowsOutlined.js new file mode 100644 index 00000000000000..4686ca9f41705f --- /dev/null +++ b/packages/material-ui-icons/src/DesktopWindowsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopWindowsOutlined'); diff --git a/packages/material-ui-icons/src/DesktopWindowsRounded.js b/packages/material-ui-icons/src/DesktopWindowsRounded.js new file mode 100644 index 00000000000000..5d9beb69fa9712 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopWindowsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopWindowsRounded'); diff --git a/packages/material-ui-icons/src/DesktopWindowsSharp.js b/packages/material-ui-icons/src/DesktopWindowsSharp.js new file mode 100644 index 00000000000000..7b937d74725b57 --- /dev/null +++ b/packages/material-ui-icons/src/DesktopWindowsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopWindowsSharp'); diff --git a/packages/material-ui-icons/src/DesktopWindowsTwoTone.js b/packages/material-ui-icons/src/DesktopWindowsTwoTone.js new file mode 100644 index 00000000000000..298ed9a5face5e --- /dev/null +++ b/packages/material-ui-icons/src/DesktopWindowsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DesktopWindowsTwoTone'); diff --git a/packages/material-ui-icons/src/DetailsOutlined.js b/packages/material-ui-icons/src/DetailsOutlined.js new file mode 100644 index 00000000000000..e949900bfbf3f2 --- /dev/null +++ b/packages/material-ui-icons/src/DetailsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DetailsOutlined'); diff --git a/packages/material-ui-icons/src/DetailsRounded.js b/packages/material-ui-icons/src/DetailsRounded.js new file mode 100644 index 00000000000000..21c047a6dcbe07 --- /dev/null +++ b/packages/material-ui-icons/src/DetailsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DetailsRounded'); diff --git a/packages/material-ui-icons/src/DetailsSharp.js b/packages/material-ui-icons/src/DetailsSharp.js new file mode 100644 index 00000000000000..3e99545387faa1 --- /dev/null +++ b/packages/material-ui-icons/src/DetailsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DetailsSharp'); diff --git a/packages/material-ui-icons/src/DetailsTwoTone.js b/packages/material-ui-icons/src/DetailsTwoTone.js new file mode 100644 index 00000000000000..2a3dad9b8c7ade --- /dev/null +++ b/packages/material-ui-icons/src/DetailsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DetailsTwoTone'); diff --git a/packages/material-ui-icons/src/DeveloperBoardOutlined.js b/packages/material-ui-icons/src/DeveloperBoardOutlined.js new file mode 100644 index 00000000000000..0db5407e2e306d --- /dev/null +++ b/packages/material-ui-icons/src/DeveloperBoardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeveloperBoardOutlined'); diff --git a/packages/material-ui-icons/src/DeveloperBoardRounded.js b/packages/material-ui-icons/src/DeveloperBoardRounded.js new file mode 100644 index 00000000000000..de1e3952ba5ef3 --- /dev/null +++ b/packages/material-ui-icons/src/DeveloperBoardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeveloperBoardRounded'); diff --git a/packages/material-ui-icons/src/DeveloperBoardSharp.js b/packages/material-ui-icons/src/DeveloperBoardSharp.js new file mode 100644 index 00000000000000..640e5c97bc568a --- /dev/null +++ b/packages/material-ui-icons/src/DeveloperBoardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeveloperBoardSharp'); diff --git a/packages/material-ui-icons/src/DeveloperBoardTwoTone.js b/packages/material-ui-icons/src/DeveloperBoardTwoTone.js new file mode 100644 index 00000000000000..cb912475e65d46 --- /dev/null +++ b/packages/material-ui-icons/src/DeveloperBoardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeveloperBoardTwoTone'); diff --git a/packages/material-ui-icons/src/DeveloperModeOutlined.js b/packages/material-ui-icons/src/DeveloperModeOutlined.js new file mode 100644 index 00000000000000..3918b62f7b0eb9 --- /dev/null +++ b/packages/material-ui-icons/src/DeveloperModeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeveloperModeOutlined'); diff --git a/packages/material-ui-icons/src/DeveloperModeRounded.js b/packages/material-ui-icons/src/DeveloperModeRounded.js new file mode 100644 index 00000000000000..2005511b98f12a --- /dev/null +++ b/packages/material-ui-icons/src/DeveloperModeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeveloperModeRounded'); diff --git a/packages/material-ui-icons/src/DeveloperModeSharp.js b/packages/material-ui-icons/src/DeveloperModeSharp.js new file mode 100644 index 00000000000000..872aedeb2faa13 --- /dev/null +++ b/packages/material-ui-icons/src/DeveloperModeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeveloperModeSharp'); diff --git a/packages/material-ui-icons/src/DeveloperModeTwoTone.js b/packages/material-ui-icons/src/DeveloperModeTwoTone.js new file mode 100644 index 00000000000000..0f924fef29c1b5 --- /dev/null +++ b/packages/material-ui-icons/src/DeveloperModeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeveloperModeTwoTone'); diff --git a/packages/material-ui-icons/src/DeviceHubOutlined.js b/packages/material-ui-icons/src/DeviceHubOutlined.js new file mode 100644 index 00000000000000..bf970c2df34c85 --- /dev/null +++ b/packages/material-ui-icons/src/DeviceHubOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeviceHubOutlined'); diff --git a/packages/material-ui-icons/src/DeviceHubRounded.js b/packages/material-ui-icons/src/DeviceHubRounded.js new file mode 100644 index 00000000000000..b18eabb7dd52f8 --- /dev/null +++ b/packages/material-ui-icons/src/DeviceHubRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeviceHubRounded'); diff --git a/packages/material-ui-icons/src/DeviceHubSharp.js b/packages/material-ui-icons/src/DeviceHubSharp.js new file mode 100644 index 00000000000000..677ba75c52a11d --- /dev/null +++ b/packages/material-ui-icons/src/DeviceHubSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeviceHubSharp'); diff --git a/packages/material-ui-icons/src/DeviceHubTwoTone.js b/packages/material-ui-icons/src/DeviceHubTwoTone.js new file mode 100644 index 00000000000000..5bb6d60624b182 --- /dev/null +++ b/packages/material-ui-icons/src/DeviceHubTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeviceHubTwoTone'); diff --git a/packages/material-ui-icons/src/DeviceUnknown.js b/packages/material-ui-icons/src/DeviceUnknown.js new file mode 100644 index 00000000000000..bf15228949ebca --- /dev/null +++ b/packages/material-ui-icons/src/DeviceUnknown.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeviceUnknown'); diff --git a/packages/material-ui-icons/src/DeviceUnknownOutlined.js b/packages/material-ui-icons/src/DeviceUnknownOutlined.js new file mode 100644 index 00000000000000..0e2e2168a967e3 --- /dev/null +++ b/packages/material-ui-icons/src/DeviceUnknownOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeviceUnknownOutlined'); diff --git a/packages/material-ui-icons/src/DeviceUnknownRounded.js b/packages/material-ui-icons/src/DeviceUnknownRounded.js new file mode 100644 index 00000000000000..8b07fdb8612ade --- /dev/null +++ b/packages/material-ui-icons/src/DeviceUnknownRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeviceUnknownRounded'); diff --git a/packages/material-ui-icons/src/DeviceUnknownSharp.js b/packages/material-ui-icons/src/DeviceUnknownSharp.js new file mode 100644 index 00000000000000..8591f3cf8e1de1 --- /dev/null +++ b/packages/material-ui-icons/src/DeviceUnknownSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeviceUnknownSharp'); diff --git a/packages/material-ui-icons/src/DeviceUnknownTwoTone.js b/packages/material-ui-icons/src/DeviceUnknownTwoTone.js new file mode 100644 index 00000000000000..90ddf983e38762 --- /dev/null +++ b/packages/material-ui-icons/src/DeviceUnknownTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DeviceUnknownTwoTone'); diff --git a/packages/material-ui-icons/src/DevicesOtherOutlined.js b/packages/material-ui-icons/src/DevicesOtherOutlined.js new file mode 100644 index 00000000000000..7b5fffcd7c77b5 --- /dev/null +++ b/packages/material-ui-icons/src/DevicesOtherOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DevicesOtherOutlined'); diff --git a/packages/material-ui-icons/src/DevicesOtherRounded.js b/packages/material-ui-icons/src/DevicesOtherRounded.js new file mode 100644 index 00000000000000..c5a17c34e3141d --- /dev/null +++ b/packages/material-ui-icons/src/DevicesOtherRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DevicesOtherRounded'); diff --git a/packages/material-ui-icons/src/DevicesOtherSharp.js b/packages/material-ui-icons/src/DevicesOtherSharp.js new file mode 100644 index 00000000000000..e176248714db90 --- /dev/null +++ b/packages/material-ui-icons/src/DevicesOtherSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DevicesOtherSharp'); diff --git a/packages/material-ui-icons/src/DevicesOtherTwoTone.js b/packages/material-ui-icons/src/DevicesOtherTwoTone.js new file mode 100644 index 00000000000000..26d35ec6df83e0 --- /dev/null +++ b/packages/material-ui-icons/src/DevicesOtherTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DevicesOtherTwoTone'); diff --git a/packages/material-ui-icons/src/DevicesOutlined.js b/packages/material-ui-icons/src/DevicesOutlined.js new file mode 100644 index 00000000000000..1814294b28d6c1 --- /dev/null +++ b/packages/material-ui-icons/src/DevicesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DevicesOutlined'); diff --git a/packages/material-ui-icons/src/DevicesRounded.js b/packages/material-ui-icons/src/DevicesRounded.js new file mode 100644 index 00000000000000..8b8e20984688df --- /dev/null +++ b/packages/material-ui-icons/src/DevicesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DevicesRounded'); diff --git a/packages/material-ui-icons/src/DevicesSharp.js b/packages/material-ui-icons/src/DevicesSharp.js new file mode 100644 index 00000000000000..ba294b5658efb1 --- /dev/null +++ b/packages/material-ui-icons/src/DevicesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DevicesSharp'); diff --git a/packages/material-ui-icons/src/DevicesTwoTone.js b/packages/material-ui-icons/src/DevicesTwoTone.js new file mode 100644 index 00000000000000..7ceaf49c8fc7d7 --- /dev/null +++ b/packages/material-ui-icons/src/DevicesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DevicesTwoTone'); diff --git a/packages/material-ui-icons/src/DialerSip.js b/packages/material-ui-icons/src/DialerSip.js index 92dbb0c8c4267a..fd7d10b9ad63d7 100644 --- a/packages/material-ui-icons/src/DialerSip.js +++ b/packages/material-ui-icons/src/DialerSip.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'DialerSip'); diff --git a/packages/material-ui-icons/src/DialerSipOutlined.js b/packages/material-ui-icons/src/DialerSipOutlined.js new file mode 100644 index 00000000000000..e709920682c463 --- /dev/null +++ b/packages/material-ui-icons/src/DialerSipOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DialerSipOutlined'); diff --git a/packages/material-ui-icons/src/DialerSipRounded.js b/packages/material-ui-icons/src/DialerSipRounded.js new file mode 100644 index 00000000000000..4c593ab636f154 --- /dev/null +++ b/packages/material-ui-icons/src/DialerSipRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DialerSipRounded'); diff --git a/packages/material-ui-icons/src/DialerSipSharp.js b/packages/material-ui-icons/src/DialerSipSharp.js new file mode 100644 index 00000000000000..26cef39051a4e9 --- /dev/null +++ b/packages/material-ui-icons/src/DialerSipSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DialerSipSharp'); diff --git a/packages/material-ui-icons/src/DialerSipTwoTone.js b/packages/material-ui-icons/src/DialerSipTwoTone.js new file mode 100644 index 00000000000000..8cf8fd8735a40e --- /dev/null +++ b/packages/material-ui-icons/src/DialerSipTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DialerSipTwoTone'); diff --git a/packages/material-ui-icons/src/DialpadOutlined.js b/packages/material-ui-icons/src/DialpadOutlined.js new file mode 100644 index 00000000000000..6563f6c0c20de5 --- /dev/null +++ b/packages/material-ui-icons/src/DialpadOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DialpadOutlined'); diff --git a/packages/material-ui-icons/src/DialpadRounded.js b/packages/material-ui-icons/src/DialpadRounded.js new file mode 100644 index 00000000000000..8d4161ba67f2fe --- /dev/null +++ b/packages/material-ui-icons/src/DialpadRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DialpadRounded'); diff --git a/packages/material-ui-icons/src/DialpadSharp.js b/packages/material-ui-icons/src/DialpadSharp.js new file mode 100644 index 00000000000000..fded87a1826a32 --- /dev/null +++ b/packages/material-ui-icons/src/DialpadSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DialpadSharp'); diff --git a/packages/material-ui-icons/src/DialpadTwoTone.js b/packages/material-ui-icons/src/DialpadTwoTone.js new file mode 100644 index 00000000000000..aec287a5508997 --- /dev/null +++ b/packages/material-ui-icons/src/DialpadTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DialpadTwoTone'); diff --git a/packages/material-ui-icons/src/Directions.js b/packages/material-ui-icons/src/Directions.js index 97e169e73cae3a..4647013acff00f 100644 --- a/packages/material-ui-icons/src/Directions.js +++ b/packages/material-ui-icons/src/Directions.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Directions'); diff --git a/packages/material-ui-icons/src/DirectionsBikeOutlined.js b/packages/material-ui-icons/src/DirectionsBikeOutlined.js new file mode 100644 index 00000000000000..2bea2e8f60cc0a --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBikeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBikeOutlined'); diff --git a/packages/material-ui-icons/src/DirectionsBikeRounded.js b/packages/material-ui-icons/src/DirectionsBikeRounded.js new file mode 100644 index 00000000000000..9686dc0c7f78bc --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBikeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBikeRounded'); diff --git a/packages/material-ui-icons/src/DirectionsBikeSharp.js b/packages/material-ui-icons/src/DirectionsBikeSharp.js new file mode 100644 index 00000000000000..cf9e0a47a29496 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBikeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBikeSharp'); diff --git a/packages/material-ui-icons/src/DirectionsBikeTwoTone.js b/packages/material-ui-icons/src/DirectionsBikeTwoTone.js new file mode 100644 index 00000000000000..7be4f17c9de805 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBikeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBikeTwoTone'); diff --git a/packages/material-ui-icons/src/DirectionsBoat.js b/packages/material-ui-icons/src/DirectionsBoat.js index 2ec9c8d0cd8055..0c4aabdb78c550 100644 --- a/packages/material-ui-icons/src/DirectionsBoat.js +++ b/packages/material-ui-icons/src/DirectionsBoat.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'DirectionsBoat'); diff --git a/packages/material-ui-icons/src/DirectionsBoatOutlined.js b/packages/material-ui-icons/src/DirectionsBoatOutlined.js new file mode 100644 index 00000000000000..4aad433d268b59 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBoatOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBoatOutlined'); diff --git a/packages/material-ui-icons/src/DirectionsBoatRounded.js b/packages/material-ui-icons/src/DirectionsBoatRounded.js new file mode 100644 index 00000000000000..2cf602101ca40b --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBoatRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBoatRounded'); diff --git a/packages/material-ui-icons/src/DirectionsBoatSharp.js b/packages/material-ui-icons/src/DirectionsBoatSharp.js new file mode 100644 index 00000000000000..f9d3235d03449c --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBoatSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBoatSharp'); diff --git a/packages/material-ui-icons/src/DirectionsBoatTwoTone.js b/packages/material-ui-icons/src/DirectionsBoatTwoTone.js new file mode 100644 index 00000000000000..fb1cdbf4aa1385 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBoatTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBoatTwoTone'); diff --git a/packages/material-ui-icons/src/DirectionsBusOutlined.js b/packages/material-ui-icons/src/DirectionsBusOutlined.js new file mode 100644 index 00000000000000..c2852819f59fce --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBusOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBusOutlined'); diff --git a/packages/material-ui-icons/src/DirectionsBusRounded.js b/packages/material-ui-icons/src/DirectionsBusRounded.js new file mode 100644 index 00000000000000..aa29ea3d1d292f --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBusRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBusRounded'); diff --git a/packages/material-ui-icons/src/DirectionsBusSharp.js b/packages/material-ui-icons/src/DirectionsBusSharp.js new file mode 100644 index 00000000000000..7c8283145de613 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBusSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBusSharp'); diff --git a/packages/material-ui-icons/src/DirectionsBusTwoTone.js b/packages/material-ui-icons/src/DirectionsBusTwoTone.js new file mode 100644 index 00000000000000..b35e73ac137253 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsBusTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsBusTwoTone'); diff --git a/packages/material-ui-icons/src/DirectionsCarOutlined.js b/packages/material-ui-icons/src/DirectionsCarOutlined.js new file mode 100644 index 00000000000000..c7454bc6e730f7 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsCarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsCarOutlined'); diff --git a/packages/material-ui-icons/src/DirectionsCarRounded.js b/packages/material-ui-icons/src/DirectionsCarRounded.js new file mode 100644 index 00000000000000..096b424a86897c --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsCarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsCarRounded'); diff --git a/packages/material-ui-icons/src/DirectionsCarSharp.js b/packages/material-ui-icons/src/DirectionsCarSharp.js new file mode 100644 index 00000000000000..a6c62289e9e50e --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsCarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsCarSharp'); diff --git a/packages/material-ui-icons/src/DirectionsCarTwoTone.js b/packages/material-ui-icons/src/DirectionsCarTwoTone.js new file mode 100644 index 00000000000000..5543efa703ac68 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsCarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsCarTwoTone'); diff --git a/packages/material-ui-icons/src/DirectionsOutlined.js b/packages/material-ui-icons/src/DirectionsOutlined.js new file mode 100644 index 00000000000000..d81eb7ed8e0234 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsOutlined'); diff --git a/packages/material-ui-icons/src/DirectionsRailwayOutlined.js b/packages/material-ui-icons/src/DirectionsRailwayOutlined.js new file mode 100644 index 00000000000000..b8249eaa459a41 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsRailwayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsRailwayOutlined'); diff --git a/packages/material-ui-icons/src/DirectionsRailwayRounded.js b/packages/material-ui-icons/src/DirectionsRailwayRounded.js new file mode 100644 index 00000000000000..51b535663837f2 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsRailwayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsRailwayRounded'); diff --git a/packages/material-ui-icons/src/DirectionsRailwaySharp.js b/packages/material-ui-icons/src/DirectionsRailwaySharp.js new file mode 100644 index 00000000000000..d625338802ec12 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsRailwaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsRailwaySharp'); diff --git a/packages/material-ui-icons/src/DirectionsRailwayTwoTone.js b/packages/material-ui-icons/src/DirectionsRailwayTwoTone.js new file mode 100644 index 00000000000000..2ced1fe56039ea --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsRailwayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsRailwayTwoTone'); diff --git a/packages/material-ui-icons/src/DirectionsRounded.js b/packages/material-ui-icons/src/DirectionsRounded.js new file mode 100644 index 00000000000000..ee52327fa76391 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsRounded'); diff --git a/packages/material-ui-icons/src/DirectionsRunOutlined.js b/packages/material-ui-icons/src/DirectionsRunOutlined.js new file mode 100644 index 00000000000000..c75428f9bd9fc8 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsRunOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsRunOutlined'); diff --git a/packages/material-ui-icons/src/DirectionsRunRounded.js b/packages/material-ui-icons/src/DirectionsRunRounded.js new file mode 100644 index 00000000000000..79d6fb6db06322 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsRunRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsRunRounded'); diff --git a/packages/material-ui-icons/src/DirectionsRunSharp.js b/packages/material-ui-icons/src/DirectionsRunSharp.js new file mode 100644 index 00000000000000..9ba9c8da2d9843 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsRunSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsRunSharp'); diff --git a/packages/material-ui-icons/src/DirectionsRunTwoTone.js b/packages/material-ui-icons/src/DirectionsRunTwoTone.js new file mode 100644 index 00000000000000..9911df3f915a53 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsRunTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsRunTwoTone'); diff --git a/packages/material-ui-icons/src/DirectionsSharp.js b/packages/material-ui-icons/src/DirectionsSharp.js new file mode 100644 index 00000000000000..1528f20d917cfb --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsSharp'); diff --git a/packages/material-ui-icons/src/DirectionsSubwayOutlined.js b/packages/material-ui-icons/src/DirectionsSubwayOutlined.js new file mode 100644 index 00000000000000..f88cc7d77716f6 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsSubwayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsSubwayOutlined'); diff --git a/packages/material-ui-icons/src/DirectionsSubwayRounded.js b/packages/material-ui-icons/src/DirectionsSubwayRounded.js new file mode 100644 index 00000000000000..687c112857c140 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsSubwayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsSubwayRounded'); diff --git a/packages/material-ui-icons/src/DirectionsSubwaySharp.js b/packages/material-ui-icons/src/DirectionsSubwaySharp.js new file mode 100644 index 00000000000000..68bdbd6e2f12ca --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsSubwaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsSubwaySharp'); diff --git a/packages/material-ui-icons/src/DirectionsSubwayTwoTone.js b/packages/material-ui-icons/src/DirectionsSubwayTwoTone.js new file mode 100644 index 00000000000000..e180d46d852a1a --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsSubwayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsSubwayTwoTone'); diff --git a/packages/material-ui-icons/src/DirectionsTransitOutlined.js b/packages/material-ui-icons/src/DirectionsTransitOutlined.js new file mode 100644 index 00000000000000..7ca8214019491c --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsTransitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsTransitOutlined'); diff --git a/packages/material-ui-icons/src/DirectionsTransitRounded.js b/packages/material-ui-icons/src/DirectionsTransitRounded.js new file mode 100644 index 00000000000000..ffa6a5a2703404 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsTransitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsTransitRounded'); diff --git a/packages/material-ui-icons/src/DirectionsTransitSharp.js b/packages/material-ui-icons/src/DirectionsTransitSharp.js new file mode 100644 index 00000000000000..10aef7e3eee5d4 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsTransitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsTransitSharp'); diff --git a/packages/material-ui-icons/src/DirectionsTransitTwoTone.js b/packages/material-ui-icons/src/DirectionsTransitTwoTone.js new file mode 100644 index 00000000000000..273ec186678f4c --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsTransitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsTransitTwoTone'); diff --git a/packages/material-ui-icons/src/DirectionsTwoTone.js b/packages/material-ui-icons/src/DirectionsTwoTone.js new file mode 100644 index 00000000000000..40bd1290d3cda9 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsTwoTone'); diff --git a/packages/material-ui-icons/src/DirectionsWalkOutlined.js b/packages/material-ui-icons/src/DirectionsWalkOutlined.js new file mode 100644 index 00000000000000..3c29c53e506b8e --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsWalkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsWalkOutlined'); diff --git a/packages/material-ui-icons/src/DirectionsWalkRounded.js b/packages/material-ui-icons/src/DirectionsWalkRounded.js new file mode 100644 index 00000000000000..6b71edabb0ff95 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsWalkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsWalkRounded'); diff --git a/packages/material-ui-icons/src/DirectionsWalkSharp.js b/packages/material-ui-icons/src/DirectionsWalkSharp.js new file mode 100644 index 00000000000000..581d55ef0bd330 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsWalkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsWalkSharp'); diff --git a/packages/material-ui-icons/src/DirectionsWalkTwoTone.js b/packages/material-ui-icons/src/DirectionsWalkTwoTone.js new file mode 100644 index 00000000000000..146e4833198468 --- /dev/null +++ b/packages/material-ui-icons/src/DirectionsWalkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DirectionsWalkTwoTone'); diff --git a/packages/material-ui-icons/src/DiscFullOutlined.js b/packages/material-ui-icons/src/DiscFullOutlined.js new file mode 100644 index 00000000000000..c12c451f4f44b5 --- /dev/null +++ b/packages/material-ui-icons/src/DiscFullOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DiscFullOutlined'); diff --git a/packages/material-ui-icons/src/DiscFullRounded.js b/packages/material-ui-icons/src/DiscFullRounded.js new file mode 100644 index 00000000000000..627f42597fea35 --- /dev/null +++ b/packages/material-ui-icons/src/DiscFullRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DiscFullRounded'); diff --git a/packages/material-ui-icons/src/DiscFullSharp.js b/packages/material-ui-icons/src/DiscFullSharp.js new file mode 100644 index 00000000000000..acdf7488409d86 --- /dev/null +++ b/packages/material-ui-icons/src/DiscFullSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DiscFullSharp'); diff --git a/packages/material-ui-icons/src/DiscFullTwoTone.js b/packages/material-ui-icons/src/DiscFullTwoTone.js new file mode 100644 index 00000000000000..095757763aba5c --- /dev/null +++ b/packages/material-ui-icons/src/DiscFullTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DiscFullTwoTone'); diff --git a/packages/material-ui-icons/src/DnsOutlined.js b/packages/material-ui-icons/src/DnsOutlined.js new file mode 100644 index 00000000000000..913b0c8a4d72dc --- /dev/null +++ b/packages/material-ui-icons/src/DnsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DnsOutlined'); diff --git a/packages/material-ui-icons/src/DnsRounded.js b/packages/material-ui-icons/src/DnsRounded.js new file mode 100644 index 00000000000000..c2e71b0e6598ee --- /dev/null +++ b/packages/material-ui-icons/src/DnsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DnsRounded'); diff --git a/packages/material-ui-icons/src/DnsSharp.js b/packages/material-ui-icons/src/DnsSharp.js new file mode 100644 index 00000000000000..7bd5a37a521eea --- /dev/null +++ b/packages/material-ui-icons/src/DnsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DnsSharp'); diff --git a/packages/material-ui-icons/src/DnsTwoTone.js b/packages/material-ui-icons/src/DnsTwoTone.js new file mode 100644 index 00000000000000..95964dedcc4377 --- /dev/null +++ b/packages/material-ui-icons/src/DnsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DnsTwoTone'); diff --git a/packages/material-ui-icons/src/DoNotDisturbAlt.js b/packages/material-ui-icons/src/DoNotDisturbAlt.js deleted file mode 100644 index 2aaa86011ea354..00000000000000 --- a/packages/material-ui-icons/src/DoNotDisturbAlt.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'DoNotDisturbAlt'); diff --git a/packages/material-ui-icons/src/DoNotDisturbOff.js b/packages/material-ui-icons/src/DoNotDisturbOff.js deleted file mode 100644 index 7a3595fe85278a..00000000000000 --- a/packages/material-ui-icons/src/DoNotDisturbOff.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'DoNotDisturbOff'); diff --git a/packages/material-ui-icons/src/DockOutlined.js b/packages/material-ui-icons/src/DockOutlined.js new file mode 100644 index 00000000000000..5274a1c095b480 --- /dev/null +++ b/packages/material-ui-icons/src/DockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DockOutlined'); diff --git a/packages/material-ui-icons/src/DockRounded.js b/packages/material-ui-icons/src/DockRounded.js new file mode 100644 index 00000000000000..9825ecbfc5aa88 --- /dev/null +++ b/packages/material-ui-icons/src/DockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DockRounded'); diff --git a/packages/material-ui-icons/src/DockSharp.js b/packages/material-ui-icons/src/DockSharp.js new file mode 100644 index 00000000000000..213bd9748dd898 --- /dev/null +++ b/packages/material-ui-icons/src/DockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DockSharp'); diff --git a/packages/material-ui-icons/src/DockTwoTone.js b/packages/material-ui-icons/src/DockTwoTone.js new file mode 100644 index 00000000000000..c4fada3c146a71 --- /dev/null +++ b/packages/material-ui-icons/src/DockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DockTwoTone'); diff --git a/packages/material-ui-icons/src/DomainDisabled.js b/packages/material-ui-icons/src/DomainDisabled.js new file mode 100644 index 00000000000000..b940eba6c39995 --- /dev/null +++ b/packages/material-ui-icons/src/DomainDisabled.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DomainDisabled'); diff --git a/packages/material-ui-icons/src/DomainDisabledOutlined.js b/packages/material-ui-icons/src/DomainDisabledOutlined.js new file mode 100644 index 00000000000000..399c3ddc9beeff --- /dev/null +++ b/packages/material-ui-icons/src/DomainDisabledOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DomainDisabledOutlined'); diff --git a/packages/material-ui-icons/src/DomainDisabledRounded.js b/packages/material-ui-icons/src/DomainDisabledRounded.js new file mode 100644 index 00000000000000..bc5e18f152a5fb --- /dev/null +++ b/packages/material-ui-icons/src/DomainDisabledRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DomainDisabledRounded'); diff --git a/packages/material-ui-icons/src/DomainDisabledSharp.js b/packages/material-ui-icons/src/DomainDisabledSharp.js new file mode 100644 index 00000000000000..8045f19ce959e2 --- /dev/null +++ b/packages/material-ui-icons/src/DomainDisabledSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DomainDisabledSharp'); diff --git a/packages/material-ui-icons/src/DomainDisabledTwoTone.js b/packages/material-ui-icons/src/DomainDisabledTwoTone.js new file mode 100644 index 00000000000000..50d6f33439efae --- /dev/null +++ b/packages/material-ui-icons/src/DomainDisabledTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DomainDisabledTwoTone'); diff --git a/packages/material-ui-icons/src/DomainOutlined.js b/packages/material-ui-icons/src/DomainOutlined.js new file mode 100644 index 00000000000000..adab0cef630961 --- /dev/null +++ b/packages/material-ui-icons/src/DomainOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DomainOutlined'); diff --git a/packages/material-ui-icons/src/DomainRounded.js b/packages/material-ui-icons/src/DomainRounded.js new file mode 100644 index 00000000000000..6a094b95c9cd2b --- /dev/null +++ b/packages/material-ui-icons/src/DomainRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DomainRounded'); diff --git a/packages/material-ui-icons/src/Domain.js b/packages/material-ui-icons/src/DomainSharp.js similarity index 94% rename from packages/material-ui-icons/src/Domain.js rename to packages/material-ui-icons/src/DomainSharp.js index 229f3a2ea14895..788eb7eceb9ed4 100644 --- a/packages/material-ui-icons/src/Domain.js +++ b/packages/material-ui-icons/src/DomainSharp.js @@ -3,4 +3,4 @@ import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( -, 'Domain'); +, 'DomainSharp'); diff --git a/packages/material-ui-icons/src/DomainTwoTone.js b/packages/material-ui-icons/src/DomainTwoTone.js new file mode 100644 index 00000000000000..9d0f4ea519967f --- /dev/null +++ b/packages/material-ui-icons/src/DomainTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DomainTwoTone'); diff --git a/packages/material-ui-icons/src/DoneAllOutlined.js b/packages/material-ui-icons/src/DoneAllOutlined.js new file mode 100644 index 00000000000000..f929a62151b366 --- /dev/null +++ b/packages/material-ui-icons/src/DoneAllOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneAllOutlined'); diff --git a/packages/material-ui-icons/src/DoneAllRounded.js b/packages/material-ui-icons/src/DoneAllRounded.js new file mode 100644 index 00000000000000..b1e52a9542b861 --- /dev/null +++ b/packages/material-ui-icons/src/DoneAllRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneAllRounded'); diff --git a/packages/material-ui-icons/src/DoneAllSharp.js b/packages/material-ui-icons/src/DoneAllSharp.js new file mode 100644 index 00000000000000..fd8db72893cb0d --- /dev/null +++ b/packages/material-ui-icons/src/DoneAllSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneAllSharp'); diff --git a/packages/material-ui-icons/src/DoneAllTwoTone.js b/packages/material-ui-icons/src/DoneAllTwoTone.js new file mode 100644 index 00000000000000..b93d41ddcc3556 --- /dev/null +++ b/packages/material-ui-icons/src/DoneAllTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneAllTwoTone'); diff --git a/packages/material-ui-icons/src/DoneOutline.js b/packages/material-ui-icons/src/DoneOutline.js new file mode 100644 index 00000000000000..c1328b72a1057b --- /dev/null +++ b/packages/material-ui-icons/src/DoneOutline.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneOutline'); diff --git a/packages/material-ui-icons/src/DoneOutlineOutlined.js b/packages/material-ui-icons/src/DoneOutlineOutlined.js new file mode 100644 index 00000000000000..575813247f1f64 --- /dev/null +++ b/packages/material-ui-icons/src/DoneOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneOutlineOutlined'); diff --git a/packages/material-ui-icons/src/DoneOutlineRounded.js b/packages/material-ui-icons/src/DoneOutlineRounded.js new file mode 100644 index 00000000000000..e2888060e76b7b --- /dev/null +++ b/packages/material-ui-icons/src/DoneOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneOutlineRounded'); diff --git a/packages/material-ui-icons/src/DoneOutlineSharp.js b/packages/material-ui-icons/src/DoneOutlineSharp.js new file mode 100644 index 00000000000000..89d1b3c50fcd57 --- /dev/null +++ b/packages/material-ui-icons/src/DoneOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneOutlineSharp'); diff --git a/packages/material-ui-icons/src/DoneOutlineTwoTone.js b/packages/material-ui-icons/src/DoneOutlineTwoTone.js new file mode 100644 index 00000000000000..b85e90e0bb0559 --- /dev/null +++ b/packages/material-ui-icons/src/DoneOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/DoneOutlined.js b/packages/material-ui-icons/src/DoneOutlined.js new file mode 100644 index 00000000000000..52a8d974c348d7 --- /dev/null +++ b/packages/material-ui-icons/src/DoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneOutlined'); diff --git a/packages/material-ui-icons/src/DoneRounded.js b/packages/material-ui-icons/src/DoneRounded.js new file mode 100644 index 00000000000000..0032624c1ec273 --- /dev/null +++ b/packages/material-ui-icons/src/DoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneRounded'); diff --git a/packages/material-ui-icons/src/DoneSharp.js b/packages/material-ui-icons/src/DoneSharp.js new file mode 100644 index 00000000000000..62d37e4e3784db --- /dev/null +++ b/packages/material-ui-icons/src/DoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneSharp'); diff --git a/packages/material-ui-icons/src/DoneTwoTone.js b/packages/material-ui-icons/src/DoneTwoTone.js new file mode 100644 index 00000000000000..358eab53ede5c0 --- /dev/null +++ b/packages/material-ui-icons/src/DoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DoneTwoTone'); diff --git a/packages/material-ui-icons/src/DonutLarge.js b/packages/material-ui-icons/src/DonutLarge.js index 868d2f8822bc73..4dff7f4cb80a32 100644 --- a/packages/material-ui-icons/src/DonutLarge.js +++ b/packages/material-ui-icons/src/DonutLarge.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'DonutLarge'); diff --git a/packages/material-ui-icons/src/DonutLargeOutlined.js b/packages/material-ui-icons/src/DonutLargeOutlined.js new file mode 100644 index 00000000000000..f69a1893acce2d --- /dev/null +++ b/packages/material-ui-icons/src/DonutLargeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DonutLargeOutlined'); diff --git a/packages/material-ui-icons/src/DonutLargeRounded.js b/packages/material-ui-icons/src/DonutLargeRounded.js new file mode 100644 index 00000000000000..b53dba6ee3764c --- /dev/null +++ b/packages/material-ui-icons/src/DonutLargeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DonutLargeRounded'); diff --git a/packages/material-ui-icons/src/DonutLargeSharp.js b/packages/material-ui-icons/src/DonutLargeSharp.js new file mode 100644 index 00000000000000..54e442a6ce035c --- /dev/null +++ b/packages/material-ui-icons/src/DonutLargeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DonutLargeSharp'); diff --git a/packages/material-ui-icons/src/DonutLargeTwoTone.js b/packages/material-ui-icons/src/DonutLargeTwoTone.js new file mode 100644 index 00000000000000..72346dfc6c9ec1 --- /dev/null +++ b/packages/material-ui-icons/src/DonutLargeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DonutLargeTwoTone'); diff --git a/packages/material-ui-icons/src/DonutSmallOutlined.js b/packages/material-ui-icons/src/DonutSmallOutlined.js new file mode 100644 index 00000000000000..c3d3442efa694c --- /dev/null +++ b/packages/material-ui-icons/src/DonutSmallOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DonutSmallOutlined'); diff --git a/packages/material-ui-icons/src/DonutSmallRounded.js b/packages/material-ui-icons/src/DonutSmallRounded.js new file mode 100644 index 00000000000000..3de8318f3ddd18 --- /dev/null +++ b/packages/material-ui-icons/src/DonutSmallRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DonutSmallRounded'); diff --git a/packages/material-ui-icons/src/DonutSmallSharp.js b/packages/material-ui-icons/src/DonutSmallSharp.js new file mode 100644 index 00000000000000..449d6238e06bc8 --- /dev/null +++ b/packages/material-ui-icons/src/DonutSmallSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DonutSmallSharp'); diff --git a/packages/material-ui-icons/src/DonutSmallTwoTone.js b/packages/material-ui-icons/src/DonutSmallTwoTone.js new file mode 100644 index 00000000000000..4e80fe4482480d --- /dev/null +++ b/packages/material-ui-icons/src/DonutSmallTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DonutSmallTwoTone'); diff --git a/packages/material-ui-icons/src/DraftsOutlined.js b/packages/material-ui-icons/src/DraftsOutlined.js new file mode 100644 index 00000000000000..c5be4d0139a6a9 --- /dev/null +++ b/packages/material-ui-icons/src/DraftsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DraftsOutlined'); diff --git a/packages/material-ui-icons/src/DraftsRounded.js b/packages/material-ui-icons/src/DraftsRounded.js new file mode 100644 index 00000000000000..101772428e6019 --- /dev/null +++ b/packages/material-ui-icons/src/DraftsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DraftsRounded'); diff --git a/packages/material-ui-icons/src/DraftsSharp.js b/packages/material-ui-icons/src/DraftsSharp.js new file mode 100644 index 00000000000000..cd43837428a08e --- /dev/null +++ b/packages/material-ui-icons/src/DraftsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DraftsSharp'); diff --git a/packages/material-ui-icons/src/DraftsTwoTone.js b/packages/material-ui-icons/src/DraftsTwoTone.js new file mode 100644 index 00000000000000..b64b911791d88f --- /dev/null +++ b/packages/material-ui-icons/src/DraftsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DraftsTwoTone'); diff --git a/packages/material-ui-icons/src/DragHandle.js b/packages/material-ui-icons/src/DragHandle.js index bedcf564784e33..33a7f6c7fad488 100644 --- a/packages/material-ui-icons/src/DragHandle.js +++ b/packages/material-ui-icons/src/DragHandle.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'DragHandle'); diff --git a/packages/material-ui-icons/src/DragHandleOutlined.js b/packages/material-ui-icons/src/DragHandleOutlined.js new file mode 100644 index 00000000000000..320c2f3e7a72e0 --- /dev/null +++ b/packages/material-ui-icons/src/DragHandleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DragHandleOutlined'); diff --git a/packages/material-ui-icons/src/DragHandleRounded.js b/packages/material-ui-icons/src/DragHandleRounded.js new file mode 100644 index 00000000000000..c1b92ef50e7935 --- /dev/null +++ b/packages/material-ui-icons/src/DragHandleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DragHandleRounded'); diff --git a/packages/material-ui-icons/src/DragHandleSharp.js b/packages/material-ui-icons/src/DragHandleSharp.js new file mode 100644 index 00000000000000..9acbd2b235a0af --- /dev/null +++ b/packages/material-ui-icons/src/DragHandleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DragHandleSharp'); diff --git a/packages/material-ui-icons/src/DragHandleTwoTone.js b/packages/material-ui-icons/src/DragHandleTwoTone.js new file mode 100644 index 00000000000000..e35849724c67f2 --- /dev/null +++ b/packages/material-ui-icons/src/DragHandleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DragHandleTwoTone'); diff --git a/packages/material-ui-icons/src/DragIndicator.js b/packages/material-ui-icons/src/DragIndicator.js new file mode 100644 index 00000000000000..f1010a30d3736d --- /dev/null +++ b/packages/material-ui-icons/src/DragIndicator.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DragIndicator'); diff --git a/packages/material-ui-icons/src/DragIndicatorOutlined.js b/packages/material-ui-icons/src/DragIndicatorOutlined.js new file mode 100644 index 00000000000000..bcbe2bca9fb7a9 --- /dev/null +++ b/packages/material-ui-icons/src/DragIndicatorOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DragIndicatorOutlined'); diff --git a/packages/material-ui-icons/src/DragIndicatorRounded.js b/packages/material-ui-icons/src/DragIndicatorRounded.js new file mode 100644 index 00000000000000..0cd595151c0d23 --- /dev/null +++ b/packages/material-ui-icons/src/DragIndicatorRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DragIndicatorRounded'); diff --git a/packages/material-ui-icons/src/DragIndicatorSharp.js b/packages/material-ui-icons/src/DragIndicatorSharp.js new file mode 100644 index 00000000000000..974ff09b138341 --- /dev/null +++ b/packages/material-ui-icons/src/DragIndicatorSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DragIndicatorSharp'); diff --git a/packages/material-ui-icons/src/DragIndicatorTwoTone.js b/packages/material-ui-icons/src/DragIndicatorTwoTone.js new file mode 100644 index 00000000000000..17acd0f8a10eb8 --- /dev/null +++ b/packages/material-ui-icons/src/DragIndicatorTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DragIndicatorTwoTone'); diff --git a/packages/material-ui-icons/src/DriveEtaOutlined.js b/packages/material-ui-icons/src/DriveEtaOutlined.js new file mode 100644 index 00000000000000..71cdddbc25ebc5 --- /dev/null +++ b/packages/material-ui-icons/src/DriveEtaOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DriveEtaOutlined'); diff --git a/packages/material-ui-icons/src/DriveEtaRounded.js b/packages/material-ui-icons/src/DriveEtaRounded.js new file mode 100644 index 00000000000000..dc22976b1bbb3f --- /dev/null +++ b/packages/material-ui-icons/src/DriveEtaRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DriveEtaRounded'); diff --git a/packages/material-ui-icons/src/DriveEtaSharp.js b/packages/material-ui-icons/src/DriveEtaSharp.js new file mode 100644 index 00000000000000..aee4d96a3b8fff --- /dev/null +++ b/packages/material-ui-icons/src/DriveEtaSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DriveEtaSharp'); diff --git a/packages/material-ui-icons/src/DriveEtaTwoTone.js b/packages/material-ui-icons/src/DriveEtaTwoTone.js new file mode 100644 index 00000000000000..2bb8c92fb67bd9 --- /dev/null +++ b/packages/material-ui-icons/src/DriveEtaTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DriveEtaTwoTone'); diff --git a/packages/material-ui-icons/src/Duo.js b/packages/material-ui-icons/src/Duo.js new file mode 100644 index 00000000000000..0a190cd96bef1a --- /dev/null +++ b/packages/material-ui-icons/src/Duo.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Duo'); diff --git a/packages/material-ui-icons/src/DuoOutlined.js b/packages/material-ui-icons/src/DuoOutlined.js new file mode 100644 index 00000000000000..43fc1aaf71b64d --- /dev/null +++ b/packages/material-ui-icons/src/DuoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DuoOutlined'); diff --git a/packages/material-ui-icons/src/DuoRounded.js b/packages/material-ui-icons/src/DuoRounded.js new file mode 100644 index 00000000000000..012f1987db184f --- /dev/null +++ b/packages/material-ui-icons/src/DuoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DuoRounded'); diff --git a/packages/material-ui-icons/src/DuoSharp.js b/packages/material-ui-icons/src/DuoSharp.js new file mode 100644 index 00000000000000..aa3c89fbff8bd3 --- /dev/null +++ b/packages/material-ui-icons/src/DuoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DuoSharp'); diff --git a/packages/material-ui-icons/src/DuoTwoTone.js b/packages/material-ui-icons/src/DuoTwoTone.js new file mode 100644 index 00000000000000..7328ed497e810b --- /dev/null +++ b/packages/material-ui-icons/src/DuoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DuoTwoTone'); diff --git a/packages/material-ui-icons/src/DvrOutlined.js b/packages/material-ui-icons/src/DvrOutlined.js new file mode 100644 index 00000000000000..de5fe9b8c6dd47 --- /dev/null +++ b/packages/material-ui-icons/src/DvrOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DvrOutlined'); diff --git a/packages/material-ui-icons/src/DvrRounded.js b/packages/material-ui-icons/src/DvrRounded.js new file mode 100644 index 00000000000000..69fa1cf36395b5 --- /dev/null +++ b/packages/material-ui-icons/src/DvrRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DvrRounded'); diff --git a/packages/material-ui-icons/src/DvrSharp.js b/packages/material-ui-icons/src/DvrSharp.js new file mode 100644 index 00000000000000..646c3b8ec41c52 --- /dev/null +++ b/packages/material-ui-icons/src/DvrSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DvrSharp'); diff --git a/packages/material-ui-icons/src/DvrTwoTone.js b/packages/material-ui-icons/src/DvrTwoTone.js new file mode 100644 index 00000000000000..a7e390e56b831f --- /dev/null +++ b/packages/material-ui-icons/src/DvrTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'DvrTwoTone'); diff --git a/packages/material-ui-icons/src/Edit.js b/packages/material-ui-icons/src/Edit.js index c562c35226dc94..c7e87427b881ea 100644 --- a/packages/material-ui-icons/src/Edit.js +++ b/packages/material-ui-icons/src/Edit.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Edit'); diff --git a/packages/material-ui-icons/src/EditAttributes.js b/packages/material-ui-icons/src/EditAttributes.js new file mode 100644 index 00000000000000..b9d03184f39fcb --- /dev/null +++ b/packages/material-ui-icons/src/EditAttributes.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditAttributes'); diff --git a/packages/material-ui-icons/src/EditAttributesOutlined.js b/packages/material-ui-icons/src/EditAttributesOutlined.js new file mode 100644 index 00000000000000..b6082e522c6383 --- /dev/null +++ b/packages/material-ui-icons/src/EditAttributesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditAttributesOutlined'); diff --git a/packages/material-ui-icons/src/EditAttributesRounded.js b/packages/material-ui-icons/src/EditAttributesRounded.js new file mode 100644 index 00000000000000..21f7aecb47f012 --- /dev/null +++ b/packages/material-ui-icons/src/EditAttributesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditAttributesRounded'); diff --git a/packages/material-ui-icons/src/EditAttributesSharp.js b/packages/material-ui-icons/src/EditAttributesSharp.js new file mode 100644 index 00000000000000..2fdca8f0abf7f1 --- /dev/null +++ b/packages/material-ui-icons/src/EditAttributesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditAttributesSharp'); diff --git a/packages/material-ui-icons/src/EditAttributesTwoTone.js b/packages/material-ui-icons/src/EditAttributesTwoTone.js new file mode 100644 index 00000000000000..c8537157386986 --- /dev/null +++ b/packages/material-ui-icons/src/EditAttributesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditAttributesTwoTone'); diff --git a/packages/material-ui-icons/src/EditLocation.js b/packages/material-ui-icons/src/EditLocation.js index 4f691edd8a9c46..435e244671c09c 100644 --- a/packages/material-ui-icons/src/EditLocation.js +++ b/packages/material-ui-icons/src/EditLocation.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'EditLocation'); diff --git a/packages/material-ui-icons/src/EditLocationOutlined.js b/packages/material-ui-icons/src/EditLocationOutlined.js new file mode 100644 index 00000000000000..e4f04c75c66beb --- /dev/null +++ b/packages/material-ui-icons/src/EditLocationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditLocationOutlined'); diff --git a/packages/material-ui-icons/src/EditLocationRounded.js b/packages/material-ui-icons/src/EditLocationRounded.js new file mode 100644 index 00000000000000..ce0a2a61b7a690 --- /dev/null +++ b/packages/material-ui-icons/src/EditLocationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditLocationRounded'); diff --git a/packages/material-ui-icons/src/EditLocationSharp.js b/packages/material-ui-icons/src/EditLocationSharp.js new file mode 100644 index 00000000000000..0c4223a5052879 --- /dev/null +++ b/packages/material-ui-icons/src/EditLocationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditLocationSharp'); diff --git a/packages/material-ui-icons/src/EditLocationTwoTone.js b/packages/material-ui-icons/src/EditLocationTwoTone.js new file mode 100644 index 00000000000000..907d78525397b3 --- /dev/null +++ b/packages/material-ui-icons/src/EditLocationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditLocationTwoTone'); diff --git a/packages/material-ui-icons/src/EditOutlined.js b/packages/material-ui-icons/src/EditOutlined.js new file mode 100644 index 00000000000000..ce67a945be6126 --- /dev/null +++ b/packages/material-ui-icons/src/EditOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditOutlined'); diff --git a/packages/material-ui-icons/src/EditRounded.js b/packages/material-ui-icons/src/EditRounded.js new file mode 100644 index 00000000000000..1fbf7aad1a1eb6 --- /dev/null +++ b/packages/material-ui-icons/src/EditRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditRounded'); diff --git a/packages/material-ui-icons/src/EditSharp.js b/packages/material-ui-icons/src/EditSharp.js new file mode 100644 index 00000000000000..bae71cbbf18e2e --- /dev/null +++ b/packages/material-ui-icons/src/EditSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditSharp'); diff --git a/packages/material-ui-icons/src/EditTwoTone.js b/packages/material-ui-icons/src/EditTwoTone.js new file mode 100644 index 00000000000000..da8e2f0ef7629d --- /dev/null +++ b/packages/material-ui-icons/src/EditTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EditTwoTone'); diff --git a/packages/material-ui-icons/src/EjectOutlined.js b/packages/material-ui-icons/src/EjectOutlined.js new file mode 100644 index 00000000000000..cbf0bacef0eb03 --- /dev/null +++ b/packages/material-ui-icons/src/EjectOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EjectOutlined'); diff --git a/packages/material-ui-icons/src/EjectRounded.js b/packages/material-ui-icons/src/EjectRounded.js new file mode 100644 index 00000000000000..c276e8f7ffa850 --- /dev/null +++ b/packages/material-ui-icons/src/EjectRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EjectRounded'); diff --git a/packages/material-ui-icons/src/EjectSharp.js b/packages/material-ui-icons/src/EjectSharp.js new file mode 100644 index 00000000000000..e59dd1afef12c3 --- /dev/null +++ b/packages/material-ui-icons/src/EjectSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EjectSharp'); diff --git a/packages/material-ui-icons/src/EjectTwoTone.js b/packages/material-ui-icons/src/EjectTwoTone.js new file mode 100644 index 00000000000000..820a96950bec68 --- /dev/null +++ b/packages/material-ui-icons/src/EjectTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EjectTwoTone'); diff --git a/packages/material-ui-icons/src/EmailOutlined.js b/packages/material-ui-icons/src/EmailOutlined.js new file mode 100644 index 00000000000000..1032484924fbbe --- /dev/null +++ b/packages/material-ui-icons/src/EmailOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EmailOutlined'); diff --git a/packages/material-ui-icons/src/EmailRounded.js b/packages/material-ui-icons/src/EmailRounded.js new file mode 100644 index 00000000000000..1f7a62380b3633 --- /dev/null +++ b/packages/material-ui-icons/src/EmailRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EmailRounded'); diff --git a/packages/material-ui-icons/src/EmailSharp.js b/packages/material-ui-icons/src/EmailSharp.js new file mode 100644 index 00000000000000..e5eb25f53d15ba --- /dev/null +++ b/packages/material-ui-icons/src/EmailSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EmailSharp'); diff --git a/packages/material-ui-icons/src/EmailTwoTone.js b/packages/material-ui-icons/src/EmailTwoTone.js new file mode 100644 index 00000000000000..4ade9ba5514d01 --- /dev/null +++ b/packages/material-ui-icons/src/EmailTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EmailTwoTone'); diff --git a/packages/material-ui-icons/src/EnhancedEncryptionOutlined.js b/packages/material-ui-icons/src/EnhancedEncryptionOutlined.js new file mode 100644 index 00000000000000..23fdebb0372228 --- /dev/null +++ b/packages/material-ui-icons/src/EnhancedEncryptionOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EnhancedEncryptionOutlined'); diff --git a/packages/material-ui-icons/src/EnhancedEncryptionRounded.js b/packages/material-ui-icons/src/EnhancedEncryptionRounded.js new file mode 100644 index 00000000000000..4e559f49b3b940 --- /dev/null +++ b/packages/material-ui-icons/src/EnhancedEncryptionRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EnhancedEncryptionRounded'); diff --git a/packages/material-ui-icons/src/EnhancedEncryptionSharp.js b/packages/material-ui-icons/src/EnhancedEncryptionSharp.js new file mode 100644 index 00000000000000..61726a25f22e95 --- /dev/null +++ b/packages/material-ui-icons/src/EnhancedEncryptionSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EnhancedEncryptionSharp'); diff --git a/packages/material-ui-icons/src/EnhancedEncryptionTwoTone.js b/packages/material-ui-icons/src/EnhancedEncryptionTwoTone.js new file mode 100644 index 00000000000000..3dad3e3ca66eae --- /dev/null +++ b/packages/material-ui-icons/src/EnhancedEncryptionTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EnhancedEncryptionTwoTone'); diff --git a/packages/material-ui-icons/src/EqualizerOutlined.js b/packages/material-ui-icons/src/EqualizerOutlined.js new file mode 100644 index 00000000000000..8689499e9124be --- /dev/null +++ b/packages/material-ui-icons/src/EqualizerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EqualizerOutlined'); diff --git a/packages/material-ui-icons/src/EqualizerRounded.js b/packages/material-ui-icons/src/EqualizerRounded.js new file mode 100644 index 00000000000000..2418e1a3bf562b --- /dev/null +++ b/packages/material-ui-icons/src/EqualizerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EqualizerRounded'); diff --git a/packages/material-ui-icons/src/EqualizerSharp.js b/packages/material-ui-icons/src/EqualizerSharp.js new file mode 100644 index 00000000000000..3ed410b22e6029 --- /dev/null +++ b/packages/material-ui-icons/src/EqualizerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EqualizerSharp'); diff --git a/packages/material-ui-icons/src/EqualizerTwoTone.js b/packages/material-ui-icons/src/EqualizerTwoTone.js new file mode 100644 index 00000000000000..9f6f0af743e3f2 --- /dev/null +++ b/packages/material-ui-icons/src/EqualizerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EqualizerTwoTone'); diff --git a/packages/material-ui-icons/src/ErrorOutlineOutlined.js b/packages/material-ui-icons/src/ErrorOutlineOutlined.js new file mode 100644 index 00000000000000..cf3485319ec77c --- /dev/null +++ b/packages/material-ui-icons/src/ErrorOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ErrorOutlineOutlined'); diff --git a/packages/material-ui-icons/src/ErrorOutlineRounded.js b/packages/material-ui-icons/src/ErrorOutlineRounded.js new file mode 100644 index 00000000000000..1e3f8e5ec988d4 --- /dev/null +++ b/packages/material-ui-icons/src/ErrorOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ErrorOutlineRounded'); diff --git a/packages/material-ui-icons/src/ErrorOutlineSharp.js b/packages/material-ui-icons/src/ErrorOutlineSharp.js new file mode 100644 index 00000000000000..03d87c5558ac4d --- /dev/null +++ b/packages/material-ui-icons/src/ErrorOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ErrorOutlineSharp'); diff --git a/packages/material-ui-icons/src/ErrorOutlineTwoTone.js b/packages/material-ui-icons/src/ErrorOutlineTwoTone.js new file mode 100644 index 00000000000000..0d85ce3c9a5133 --- /dev/null +++ b/packages/material-ui-icons/src/ErrorOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ErrorOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/ErrorOutlined.js b/packages/material-ui-icons/src/ErrorOutlined.js new file mode 100644 index 00000000000000..c271b6cac38eaf --- /dev/null +++ b/packages/material-ui-icons/src/ErrorOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ErrorOutlined'); diff --git a/packages/material-ui-icons/src/ErrorRounded.js b/packages/material-ui-icons/src/ErrorRounded.js new file mode 100644 index 00000000000000..de932e0fc92513 --- /dev/null +++ b/packages/material-ui-icons/src/ErrorRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ErrorRounded'); diff --git a/packages/material-ui-icons/src/ErrorSharp.js b/packages/material-ui-icons/src/ErrorSharp.js new file mode 100644 index 00000000000000..5003098eebf7f8 --- /dev/null +++ b/packages/material-ui-icons/src/ErrorSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ErrorSharp'); diff --git a/packages/material-ui-icons/src/ErrorTwoTone.js b/packages/material-ui-icons/src/ErrorTwoTone.js new file mode 100644 index 00000000000000..82a65fdc0473bd --- /dev/null +++ b/packages/material-ui-icons/src/ErrorTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ErrorTwoTone'); diff --git a/packages/material-ui-icons/src/EuroSymbol.js b/packages/material-ui-icons/src/EuroSymbol.js index 4ebf05af073ba8..5c41a337fefa28 100644 --- a/packages/material-ui-icons/src/EuroSymbol.js +++ b/packages/material-ui-icons/src/EuroSymbol.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'EuroSymbol'); diff --git a/packages/material-ui-icons/src/EuroSymbolOutlined.js b/packages/material-ui-icons/src/EuroSymbolOutlined.js new file mode 100644 index 00000000000000..1abb0653cbfe7c --- /dev/null +++ b/packages/material-ui-icons/src/EuroSymbolOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EuroSymbolOutlined'); diff --git a/packages/material-ui-icons/src/EuroSymbolRounded.js b/packages/material-ui-icons/src/EuroSymbolRounded.js new file mode 100644 index 00000000000000..f27cf100658de6 --- /dev/null +++ b/packages/material-ui-icons/src/EuroSymbolRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EuroSymbolRounded'); diff --git a/packages/material-ui-icons/src/EuroSymbolSharp.js b/packages/material-ui-icons/src/EuroSymbolSharp.js new file mode 100644 index 00000000000000..7ed1894ddbbc4e --- /dev/null +++ b/packages/material-ui-icons/src/EuroSymbolSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EuroSymbolSharp'); diff --git a/packages/material-ui-icons/src/EuroSymbolTwoTone.js b/packages/material-ui-icons/src/EuroSymbolTwoTone.js new file mode 100644 index 00000000000000..76aee0b6a77d50 --- /dev/null +++ b/packages/material-ui-icons/src/EuroSymbolTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EuroSymbolTwoTone'); diff --git a/packages/material-ui-icons/src/EvStation.js b/packages/material-ui-icons/src/EvStation.js index a06afc2edcd48e..315d6aaa3fcd5a 100644 --- a/packages/material-ui-icons/src/EvStation.js +++ b/packages/material-ui-icons/src/EvStation.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'EvStation'); diff --git a/packages/material-ui-icons/src/EvStationOutlined.js b/packages/material-ui-icons/src/EvStationOutlined.js new file mode 100644 index 00000000000000..d6117be6c1edf4 --- /dev/null +++ b/packages/material-ui-icons/src/EvStationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EvStationOutlined'); diff --git a/packages/material-ui-icons/src/EvStationRounded.js b/packages/material-ui-icons/src/EvStationRounded.js new file mode 100644 index 00000000000000..e418c8315e238a --- /dev/null +++ b/packages/material-ui-icons/src/EvStationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EvStationRounded'); diff --git a/packages/material-ui-icons/src/EvStationSharp.js b/packages/material-ui-icons/src/EvStationSharp.js new file mode 100644 index 00000000000000..b9bec09944b426 --- /dev/null +++ b/packages/material-ui-icons/src/EvStationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EvStationSharp'); diff --git a/packages/material-ui-icons/src/EvStationTwoTone.js b/packages/material-ui-icons/src/EvStationTwoTone.js new file mode 100644 index 00000000000000..4f537bdda276bc --- /dev/null +++ b/packages/material-ui-icons/src/EvStationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EvStationTwoTone'); diff --git a/packages/material-ui-icons/src/Event.js b/packages/material-ui-icons/src/Event.js index 54c65f216b2c95..0d3092f3548839 100644 --- a/packages/material-ui-icons/src/Event.js +++ b/packages/material-ui-icons/src/Event.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Event'); diff --git a/packages/material-ui-icons/src/EventAvailable.js b/packages/material-ui-icons/src/EventAvailable.js index a9a7b4814e63f2..3e62c4a0b36e2c 100644 --- a/packages/material-ui-icons/src/EventAvailable.js +++ b/packages/material-ui-icons/src/EventAvailable.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'EventAvailable'); diff --git a/packages/material-ui-icons/src/EventAvailableOutlined.js b/packages/material-ui-icons/src/EventAvailableOutlined.js new file mode 100644 index 00000000000000..482eb8cdc2a985 --- /dev/null +++ b/packages/material-ui-icons/src/EventAvailableOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventAvailableOutlined'); diff --git a/packages/material-ui-icons/src/EventAvailableRounded.js b/packages/material-ui-icons/src/EventAvailableRounded.js new file mode 100644 index 00000000000000..b7c5033343b598 --- /dev/null +++ b/packages/material-ui-icons/src/EventAvailableRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventAvailableRounded'); diff --git a/packages/material-ui-icons/src/EventAvailableSharp.js b/packages/material-ui-icons/src/EventAvailableSharp.js new file mode 100644 index 00000000000000..73f2333ac43483 --- /dev/null +++ b/packages/material-ui-icons/src/EventAvailableSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventAvailableSharp'); diff --git a/packages/material-ui-icons/src/EventAvailableTwoTone.js b/packages/material-ui-icons/src/EventAvailableTwoTone.js new file mode 100644 index 00000000000000..b7d15da4adb7d8 --- /dev/null +++ b/packages/material-ui-icons/src/EventAvailableTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventAvailableTwoTone'); diff --git a/packages/material-ui-icons/src/EventBusy.js b/packages/material-ui-icons/src/EventBusy.js index 18e931b96d45f7..6333a276916833 100644 --- a/packages/material-ui-icons/src/EventBusy.js +++ b/packages/material-ui-icons/src/EventBusy.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'EventBusy'); diff --git a/packages/material-ui-icons/src/EventBusyOutlined.js b/packages/material-ui-icons/src/EventBusyOutlined.js new file mode 100644 index 00000000000000..c857dd0410ee91 --- /dev/null +++ b/packages/material-ui-icons/src/EventBusyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventBusyOutlined'); diff --git a/packages/material-ui-icons/src/EventBusyRounded.js b/packages/material-ui-icons/src/EventBusyRounded.js new file mode 100644 index 00000000000000..1008c491eabf78 --- /dev/null +++ b/packages/material-ui-icons/src/EventBusyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventBusyRounded'); diff --git a/packages/material-ui-icons/src/EventBusySharp.js b/packages/material-ui-icons/src/EventBusySharp.js new file mode 100644 index 00000000000000..608ccb2658fbfd --- /dev/null +++ b/packages/material-ui-icons/src/EventBusySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventBusySharp'); diff --git a/packages/material-ui-icons/src/EventBusyTwoTone.js b/packages/material-ui-icons/src/EventBusyTwoTone.js new file mode 100644 index 00000000000000..f17ea149a7deb3 --- /dev/null +++ b/packages/material-ui-icons/src/EventBusyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventBusyTwoTone'); diff --git a/packages/material-ui-icons/src/EventNote.js b/packages/material-ui-icons/src/EventNote.js index 5150dc718407f6..e36b5b8c4642c6 100644 --- a/packages/material-ui-icons/src/EventNote.js +++ b/packages/material-ui-icons/src/EventNote.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'EventNote'); diff --git a/packages/material-ui-icons/src/EventNoteOutlined.js b/packages/material-ui-icons/src/EventNoteOutlined.js new file mode 100644 index 00000000000000..4608aeb79924ee --- /dev/null +++ b/packages/material-ui-icons/src/EventNoteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventNoteOutlined'); diff --git a/packages/material-ui-icons/src/EventNoteRounded.js b/packages/material-ui-icons/src/EventNoteRounded.js new file mode 100644 index 00000000000000..d89b6990bd06df --- /dev/null +++ b/packages/material-ui-icons/src/EventNoteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventNoteRounded'); diff --git a/packages/material-ui-icons/src/EventNoteSharp.js b/packages/material-ui-icons/src/EventNoteSharp.js new file mode 100644 index 00000000000000..3011d9fdb1b922 --- /dev/null +++ b/packages/material-ui-icons/src/EventNoteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventNoteSharp'); diff --git a/packages/material-ui-icons/src/EventNoteTwoTone.js b/packages/material-ui-icons/src/EventNoteTwoTone.js new file mode 100644 index 00000000000000..9e277515b5de5c --- /dev/null +++ b/packages/material-ui-icons/src/EventNoteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventNoteTwoTone'); diff --git a/packages/material-ui-icons/src/EventOutlined.js b/packages/material-ui-icons/src/EventOutlined.js new file mode 100644 index 00000000000000..5843f1d0bc0e5a --- /dev/null +++ b/packages/material-ui-icons/src/EventOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventOutlined'); diff --git a/packages/material-ui-icons/src/EventRounded.js b/packages/material-ui-icons/src/EventRounded.js new file mode 100644 index 00000000000000..b0af1958564177 --- /dev/null +++ b/packages/material-ui-icons/src/EventRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventRounded'); diff --git a/packages/material-ui-icons/src/EventSeat.js b/packages/material-ui-icons/src/EventSeat.js index 8d08d4b0d19971..9dbc16fef636ec 100644 --- a/packages/material-ui-icons/src/EventSeat.js +++ b/packages/material-ui-icons/src/EventSeat.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'EventSeat'); diff --git a/packages/material-ui-icons/src/EventSeatOutlined.js b/packages/material-ui-icons/src/EventSeatOutlined.js new file mode 100644 index 00000000000000..0ede67a3207fa3 --- /dev/null +++ b/packages/material-ui-icons/src/EventSeatOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventSeatOutlined'); diff --git a/packages/material-ui-icons/src/EventSeatRounded.js b/packages/material-ui-icons/src/EventSeatRounded.js new file mode 100644 index 00000000000000..0c8f291e07687d --- /dev/null +++ b/packages/material-ui-icons/src/EventSeatRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventSeatRounded'); diff --git a/packages/material-ui-icons/src/EventSeatSharp.js b/packages/material-ui-icons/src/EventSeatSharp.js new file mode 100644 index 00000000000000..2970139198d10d --- /dev/null +++ b/packages/material-ui-icons/src/EventSeatSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventSeatSharp'); diff --git a/packages/material-ui-icons/src/EventSeatTwoTone.js b/packages/material-ui-icons/src/EventSeatTwoTone.js new file mode 100644 index 00000000000000..b68ce935468130 --- /dev/null +++ b/packages/material-ui-icons/src/EventSeatTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventSeatTwoTone'); diff --git a/packages/material-ui-icons/src/EventSharp.js b/packages/material-ui-icons/src/EventSharp.js new file mode 100644 index 00000000000000..208b7bf3428e2c --- /dev/null +++ b/packages/material-ui-icons/src/EventSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventSharp'); diff --git a/packages/material-ui-icons/src/EventTwoTone.js b/packages/material-ui-icons/src/EventTwoTone.js new file mode 100644 index 00000000000000..4ec74397b49d28 --- /dev/null +++ b/packages/material-ui-icons/src/EventTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'EventTwoTone'); diff --git a/packages/material-ui-icons/src/ExitToApp.js b/packages/material-ui-icons/src/ExitToApp.js index ece6bf90f5f698..8e7e5ba4c21595 100644 --- a/packages/material-ui-icons/src/ExitToApp.js +++ b/packages/material-ui-icons/src/ExitToApp.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ExitToApp'); diff --git a/packages/material-ui-icons/src/ExitToAppOutlined.js b/packages/material-ui-icons/src/ExitToAppOutlined.js new file mode 100644 index 00000000000000..918609a759381e --- /dev/null +++ b/packages/material-ui-icons/src/ExitToAppOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExitToAppOutlined'); diff --git a/packages/material-ui-icons/src/ExitToAppRounded.js b/packages/material-ui-icons/src/ExitToAppRounded.js new file mode 100644 index 00000000000000..808bd14adc11a1 --- /dev/null +++ b/packages/material-ui-icons/src/ExitToAppRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExitToAppRounded'); diff --git a/packages/material-ui-icons/src/ExitToAppSharp.js b/packages/material-ui-icons/src/ExitToAppSharp.js new file mode 100644 index 00000000000000..75644a884929a7 --- /dev/null +++ b/packages/material-ui-icons/src/ExitToAppSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExitToAppSharp'); diff --git a/packages/material-ui-icons/src/ExitToAppTwoTone.js b/packages/material-ui-icons/src/ExitToAppTwoTone.js new file mode 100644 index 00000000000000..363a05ad9bc552 --- /dev/null +++ b/packages/material-ui-icons/src/ExitToAppTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExitToAppTwoTone'); diff --git a/packages/material-ui-icons/src/ExpandLessOutlined.js b/packages/material-ui-icons/src/ExpandLessOutlined.js new file mode 100644 index 00000000000000..2f30e4624f1e1c --- /dev/null +++ b/packages/material-ui-icons/src/ExpandLessOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExpandLessOutlined'); diff --git a/packages/material-ui-icons/src/ExpandLessRounded.js b/packages/material-ui-icons/src/ExpandLessRounded.js new file mode 100644 index 00000000000000..b1fa727472400a --- /dev/null +++ b/packages/material-ui-icons/src/ExpandLessRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExpandLessRounded'); diff --git a/packages/material-ui-icons/src/ExpandLessSharp.js b/packages/material-ui-icons/src/ExpandLessSharp.js new file mode 100644 index 00000000000000..d41f51df7739ea --- /dev/null +++ b/packages/material-ui-icons/src/ExpandLessSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExpandLessSharp'); diff --git a/packages/material-ui-icons/src/ExpandLessTwoTone.js b/packages/material-ui-icons/src/ExpandLessTwoTone.js new file mode 100644 index 00000000000000..77adcbfda1ba2b --- /dev/null +++ b/packages/material-ui-icons/src/ExpandLessTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExpandLessTwoTone'); diff --git a/packages/material-ui-icons/src/ExpandMoreOutlined.js b/packages/material-ui-icons/src/ExpandMoreOutlined.js new file mode 100644 index 00000000000000..09ace9b455719d --- /dev/null +++ b/packages/material-ui-icons/src/ExpandMoreOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExpandMoreOutlined'); diff --git a/packages/material-ui-icons/src/ExpandMoreRounded.js b/packages/material-ui-icons/src/ExpandMoreRounded.js new file mode 100644 index 00000000000000..4a5525b4134467 --- /dev/null +++ b/packages/material-ui-icons/src/ExpandMoreRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExpandMoreRounded'); diff --git a/packages/material-ui-icons/src/ExpandMoreSharp.js b/packages/material-ui-icons/src/ExpandMoreSharp.js new file mode 100644 index 00000000000000..3c1c3293199f72 --- /dev/null +++ b/packages/material-ui-icons/src/ExpandMoreSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExpandMoreSharp'); diff --git a/packages/material-ui-icons/src/ExpandMoreTwoTone.js b/packages/material-ui-icons/src/ExpandMoreTwoTone.js new file mode 100644 index 00000000000000..21ac7b8232a419 --- /dev/null +++ b/packages/material-ui-icons/src/ExpandMoreTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExpandMoreTwoTone'); diff --git a/packages/material-ui-icons/src/ExplicitOutlined.js b/packages/material-ui-icons/src/ExplicitOutlined.js new file mode 100644 index 00000000000000..c6b941bd7622aa --- /dev/null +++ b/packages/material-ui-icons/src/ExplicitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExplicitOutlined'); diff --git a/packages/material-ui-icons/src/ExplicitRounded.js b/packages/material-ui-icons/src/ExplicitRounded.js new file mode 100644 index 00000000000000..fdaa389d565384 --- /dev/null +++ b/packages/material-ui-icons/src/ExplicitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExplicitRounded'); diff --git a/packages/material-ui-icons/src/ExplicitSharp.js b/packages/material-ui-icons/src/ExplicitSharp.js new file mode 100644 index 00000000000000..a295831207553d --- /dev/null +++ b/packages/material-ui-icons/src/ExplicitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExplicitSharp'); diff --git a/packages/material-ui-icons/src/ExplicitTwoTone.js b/packages/material-ui-icons/src/ExplicitTwoTone.js new file mode 100644 index 00000000000000..2bd29b783f8d29 --- /dev/null +++ b/packages/material-ui-icons/src/ExplicitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExplicitTwoTone'); diff --git a/packages/material-ui-icons/src/ExploreOff.js b/packages/material-ui-icons/src/ExploreOff.js new file mode 100644 index 00000000000000..02c9659c1ce9a4 --- /dev/null +++ b/packages/material-ui-icons/src/ExploreOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExploreOff'); diff --git a/packages/material-ui-icons/src/ExploreOffOutlined.js b/packages/material-ui-icons/src/ExploreOffOutlined.js new file mode 100644 index 00000000000000..646c500750a3ac --- /dev/null +++ b/packages/material-ui-icons/src/ExploreOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExploreOffOutlined'); diff --git a/packages/material-ui-icons/src/ExploreOffRounded.js b/packages/material-ui-icons/src/ExploreOffRounded.js new file mode 100644 index 00000000000000..fae90786902b09 --- /dev/null +++ b/packages/material-ui-icons/src/ExploreOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExploreOffRounded'); diff --git a/packages/material-ui-icons/src/ExploreOffSharp.js b/packages/material-ui-icons/src/ExploreOffSharp.js new file mode 100644 index 00000000000000..b9d6f565bb8563 --- /dev/null +++ b/packages/material-ui-icons/src/ExploreOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExploreOffSharp'); diff --git a/packages/material-ui-icons/src/ExploreOffTwoTone.js b/packages/material-ui-icons/src/ExploreOffTwoTone.js new file mode 100644 index 00000000000000..acfe04338b919e --- /dev/null +++ b/packages/material-ui-icons/src/ExploreOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExploreOffTwoTone'); diff --git a/packages/material-ui-icons/src/ExploreOutlined.js b/packages/material-ui-icons/src/ExploreOutlined.js new file mode 100644 index 00000000000000..70e08d33d0ace9 --- /dev/null +++ b/packages/material-ui-icons/src/ExploreOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExploreOutlined'); diff --git a/packages/material-ui-icons/src/ExploreRounded.js b/packages/material-ui-icons/src/ExploreRounded.js new file mode 100644 index 00000000000000..b8c8fa9e5d5fe7 --- /dev/null +++ b/packages/material-ui-icons/src/ExploreRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExploreRounded'); diff --git a/packages/material-ui-icons/src/ExploreSharp.js b/packages/material-ui-icons/src/ExploreSharp.js new file mode 100644 index 00000000000000..36235f29ede0b7 --- /dev/null +++ b/packages/material-ui-icons/src/ExploreSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExploreSharp'); diff --git a/packages/material-ui-icons/src/ExploreTwoTone.js b/packages/material-ui-icons/src/ExploreTwoTone.js new file mode 100644 index 00000000000000..9efa9277aa5f5b --- /dev/null +++ b/packages/material-ui-icons/src/ExploreTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExploreTwoTone'); diff --git a/packages/material-ui-icons/src/Exposure.js b/packages/material-ui-icons/src/Exposure.js index 78a40d24d8be28..728ec57b2909b7 100644 --- a/packages/material-ui-icons/src/Exposure.js +++ b/packages/material-ui-icons/src/Exposure.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Exposure'); diff --git a/packages/material-ui-icons/src/ExposureNeg1Outlined.js b/packages/material-ui-icons/src/ExposureNeg1Outlined.js new file mode 100644 index 00000000000000..092275a1f4a87e --- /dev/null +++ b/packages/material-ui-icons/src/ExposureNeg1Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureNeg1Outlined'); diff --git a/packages/material-ui-icons/src/ExposureNeg1Rounded.js b/packages/material-ui-icons/src/ExposureNeg1Rounded.js new file mode 100644 index 00000000000000..e31b82f7bb7bb2 --- /dev/null +++ b/packages/material-ui-icons/src/ExposureNeg1Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureNeg1Rounded'); diff --git a/packages/material-ui-icons/src/ExposureNeg1Sharp.js b/packages/material-ui-icons/src/ExposureNeg1Sharp.js new file mode 100644 index 00000000000000..15237387b1363e --- /dev/null +++ b/packages/material-ui-icons/src/ExposureNeg1Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureNeg1Sharp'); diff --git a/packages/material-ui-icons/src/ExposureNeg1TwoTone.js b/packages/material-ui-icons/src/ExposureNeg1TwoTone.js new file mode 100644 index 00000000000000..baaa2272425a60 --- /dev/null +++ b/packages/material-ui-icons/src/ExposureNeg1TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureNeg1TwoTone'); diff --git a/packages/material-ui-icons/src/ExposureNeg2.js b/packages/material-ui-icons/src/ExposureNeg2.js index 537daba8dffba6..a3828e71f57729 100644 --- a/packages/material-ui-icons/src/ExposureNeg2.js +++ b/packages/material-ui-icons/src/ExposureNeg2.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ExposureNeg2'); diff --git a/packages/material-ui-icons/src/ExposureNeg2Outlined.js b/packages/material-ui-icons/src/ExposureNeg2Outlined.js new file mode 100644 index 00000000000000..3d25f2727548ec --- /dev/null +++ b/packages/material-ui-icons/src/ExposureNeg2Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureNeg2Outlined'); diff --git a/packages/material-ui-icons/src/ExposureNeg2Rounded.js b/packages/material-ui-icons/src/ExposureNeg2Rounded.js new file mode 100644 index 00000000000000..ee7ff27a607f12 --- /dev/null +++ b/packages/material-ui-icons/src/ExposureNeg2Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureNeg2Rounded'); diff --git a/packages/material-ui-icons/src/ExposureNeg2Sharp.js b/packages/material-ui-icons/src/ExposureNeg2Sharp.js new file mode 100644 index 00000000000000..416b760bafebf6 --- /dev/null +++ b/packages/material-ui-icons/src/ExposureNeg2Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureNeg2Sharp'); diff --git a/packages/material-ui-icons/src/ExposureNeg2TwoTone.js b/packages/material-ui-icons/src/ExposureNeg2TwoTone.js new file mode 100644 index 00000000000000..eb5994982dbe03 --- /dev/null +++ b/packages/material-ui-icons/src/ExposureNeg2TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureNeg2TwoTone'); diff --git a/packages/material-ui-icons/src/ExposureOutlined.js b/packages/material-ui-icons/src/ExposureOutlined.js new file mode 100644 index 00000000000000..2c7699cad366ce --- /dev/null +++ b/packages/material-ui-icons/src/ExposureOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureOutlined'); diff --git a/packages/material-ui-icons/src/ExposurePlus1Outlined.js b/packages/material-ui-icons/src/ExposurePlus1Outlined.js new file mode 100644 index 00000000000000..42feee46fbd908 --- /dev/null +++ b/packages/material-ui-icons/src/ExposurePlus1Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposurePlus1Outlined'); diff --git a/packages/material-ui-icons/src/ExposurePlus1Rounded.js b/packages/material-ui-icons/src/ExposurePlus1Rounded.js new file mode 100644 index 00000000000000..dbf37a0f9f6ec7 --- /dev/null +++ b/packages/material-ui-icons/src/ExposurePlus1Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposurePlus1Rounded'); diff --git a/packages/material-ui-icons/src/ExposurePlus1Sharp.js b/packages/material-ui-icons/src/ExposurePlus1Sharp.js new file mode 100644 index 00000000000000..ed71479417f401 --- /dev/null +++ b/packages/material-ui-icons/src/ExposurePlus1Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposurePlus1Sharp'); diff --git a/packages/material-ui-icons/src/ExposurePlus1TwoTone.js b/packages/material-ui-icons/src/ExposurePlus1TwoTone.js new file mode 100644 index 00000000000000..4db817cc4da7d7 --- /dev/null +++ b/packages/material-ui-icons/src/ExposurePlus1TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposurePlus1TwoTone'); diff --git a/packages/material-ui-icons/src/ExposurePlus2.js b/packages/material-ui-icons/src/ExposurePlus2.js index 71688ab2e5a11f..4fbde2ff72503f 100644 --- a/packages/material-ui-icons/src/ExposurePlus2.js +++ b/packages/material-ui-icons/src/ExposurePlus2.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ExposurePlus2'); diff --git a/packages/material-ui-icons/src/ExposurePlus2Outlined.js b/packages/material-ui-icons/src/ExposurePlus2Outlined.js new file mode 100644 index 00000000000000..e4dbd61e2dca02 --- /dev/null +++ b/packages/material-ui-icons/src/ExposurePlus2Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposurePlus2Outlined'); diff --git a/packages/material-ui-icons/src/ExposurePlus2Rounded.js b/packages/material-ui-icons/src/ExposurePlus2Rounded.js new file mode 100644 index 00000000000000..e6cd151104b178 --- /dev/null +++ b/packages/material-ui-icons/src/ExposurePlus2Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposurePlus2Rounded'); diff --git a/packages/material-ui-icons/src/ExposurePlus2Sharp.js b/packages/material-ui-icons/src/ExposurePlus2Sharp.js new file mode 100644 index 00000000000000..5f5a990c3af076 --- /dev/null +++ b/packages/material-ui-icons/src/ExposurePlus2Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposurePlus2Sharp'); diff --git a/packages/material-ui-icons/src/ExposurePlus2TwoTone.js b/packages/material-ui-icons/src/ExposurePlus2TwoTone.js new file mode 100644 index 00000000000000..4f3d5768392c9a --- /dev/null +++ b/packages/material-ui-icons/src/ExposurePlus2TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposurePlus2TwoTone'); diff --git a/packages/material-ui-icons/src/ExposureRounded.js b/packages/material-ui-icons/src/ExposureRounded.js new file mode 100644 index 00000000000000..5deef3272ccc5f --- /dev/null +++ b/packages/material-ui-icons/src/ExposureRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureRounded'); diff --git a/packages/material-ui-icons/src/ExposureSharp.js b/packages/material-ui-icons/src/ExposureSharp.js new file mode 100644 index 00000000000000..b5564820e2ff9b --- /dev/null +++ b/packages/material-ui-icons/src/ExposureSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureSharp'); diff --git a/packages/material-ui-icons/src/ExposureTwoTone.js b/packages/material-ui-icons/src/ExposureTwoTone.js new file mode 100644 index 00000000000000..9b00f0b84bb868 --- /dev/null +++ b/packages/material-ui-icons/src/ExposureTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureTwoTone'); diff --git a/packages/material-ui-icons/src/ExposureZeroOutlined.js b/packages/material-ui-icons/src/ExposureZeroOutlined.js new file mode 100644 index 00000000000000..df32088e28e749 --- /dev/null +++ b/packages/material-ui-icons/src/ExposureZeroOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureZeroOutlined'); diff --git a/packages/material-ui-icons/src/ExposureZeroRounded.js b/packages/material-ui-icons/src/ExposureZeroRounded.js new file mode 100644 index 00000000000000..db7dde30d4c04d --- /dev/null +++ b/packages/material-ui-icons/src/ExposureZeroRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureZeroRounded'); diff --git a/packages/material-ui-icons/src/ExposureZeroSharp.js b/packages/material-ui-icons/src/ExposureZeroSharp.js new file mode 100644 index 00000000000000..487a81aaa2f40e --- /dev/null +++ b/packages/material-ui-icons/src/ExposureZeroSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureZeroSharp'); diff --git a/packages/material-ui-icons/src/ExposureZeroTwoTone.js b/packages/material-ui-icons/src/ExposureZeroTwoTone.js new file mode 100644 index 00000000000000..6abd6262777832 --- /dev/null +++ b/packages/material-ui-icons/src/ExposureZeroTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExposureZeroTwoTone'); diff --git a/packages/material-ui-icons/src/Extension.js b/packages/material-ui-icons/src/Extension.js index 6b393da5ca91bd..3959d7c6e3b0e4 100644 --- a/packages/material-ui-icons/src/Extension.js +++ b/packages/material-ui-icons/src/Extension.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Extension'); diff --git a/packages/material-ui-icons/src/ExtensionOutlined.js b/packages/material-ui-icons/src/ExtensionOutlined.js new file mode 100644 index 00000000000000..77777a69382e90 --- /dev/null +++ b/packages/material-ui-icons/src/ExtensionOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExtensionOutlined'); diff --git a/packages/material-ui-icons/src/ExtensionRounded.js b/packages/material-ui-icons/src/ExtensionRounded.js new file mode 100644 index 00000000000000..6af414561d0fab --- /dev/null +++ b/packages/material-ui-icons/src/ExtensionRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExtensionRounded'); diff --git a/packages/material-ui-icons/src/ExtensionSharp.js b/packages/material-ui-icons/src/ExtensionSharp.js new file mode 100644 index 00000000000000..65ab7d29fc747b --- /dev/null +++ b/packages/material-ui-icons/src/ExtensionSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExtensionSharp'); diff --git a/packages/material-ui-icons/src/ExtensionTwoTone.js b/packages/material-ui-icons/src/ExtensionTwoTone.js new file mode 100644 index 00000000000000..97b63a03c9986a --- /dev/null +++ b/packages/material-ui-icons/src/ExtensionTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ExtensionTwoTone'); diff --git a/packages/material-ui-icons/src/Face.js b/packages/material-ui-icons/src/Face.js index 4fcb944bbc4742..73d7882aeadeb3 100644 --- a/packages/material-ui-icons/src/Face.js +++ b/packages/material-ui-icons/src/Face.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Face'); diff --git a/packages/material-ui-icons/src/FaceOutlined.js b/packages/material-ui-icons/src/FaceOutlined.js new file mode 100644 index 00000000000000..beb03c53564241 --- /dev/null +++ b/packages/material-ui-icons/src/FaceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FaceOutlined'); diff --git a/packages/material-ui-icons/src/FaceRounded.js b/packages/material-ui-icons/src/FaceRounded.js new file mode 100644 index 00000000000000..e17b7175ab3d6d --- /dev/null +++ b/packages/material-ui-icons/src/FaceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FaceRounded'); diff --git a/packages/material-ui-icons/src/FaceSharp.js b/packages/material-ui-icons/src/FaceSharp.js new file mode 100644 index 00000000000000..5c24175d628d1d --- /dev/null +++ b/packages/material-ui-icons/src/FaceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FaceSharp'); diff --git a/packages/material-ui-icons/src/FaceTwoTone.js b/packages/material-ui-icons/src/FaceTwoTone.js new file mode 100644 index 00000000000000..feb784c6e89607 --- /dev/null +++ b/packages/material-ui-icons/src/FaceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FaceTwoTone'); diff --git a/packages/material-ui-icons/src/FastForwardOutlined.js b/packages/material-ui-icons/src/FastForwardOutlined.js new file mode 100644 index 00000000000000..3c16aa7e994d8c --- /dev/null +++ b/packages/material-ui-icons/src/FastForwardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastForwardOutlined'); diff --git a/packages/material-ui-icons/src/FastForwardRounded.js b/packages/material-ui-icons/src/FastForwardRounded.js new file mode 100644 index 00000000000000..f70d5a86b19dfa --- /dev/null +++ b/packages/material-ui-icons/src/FastForwardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastForwardRounded'); diff --git a/packages/material-ui-icons/src/FastForwardSharp.js b/packages/material-ui-icons/src/FastForwardSharp.js new file mode 100644 index 00000000000000..3e33bdb4498946 --- /dev/null +++ b/packages/material-ui-icons/src/FastForwardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastForwardSharp'); diff --git a/packages/material-ui-icons/src/FastForwardTwoTone.js b/packages/material-ui-icons/src/FastForwardTwoTone.js new file mode 100644 index 00000000000000..ac235dd5714ee4 --- /dev/null +++ b/packages/material-ui-icons/src/FastForwardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastForwardTwoTone'); diff --git a/packages/material-ui-icons/src/FastRewindOutlined.js b/packages/material-ui-icons/src/FastRewindOutlined.js new file mode 100644 index 00000000000000..6659ebe2c5e3bb --- /dev/null +++ b/packages/material-ui-icons/src/FastRewindOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastRewindOutlined'); diff --git a/packages/material-ui-icons/src/FastRewindRounded.js b/packages/material-ui-icons/src/FastRewindRounded.js new file mode 100644 index 00000000000000..a815b4ac1d2bbe --- /dev/null +++ b/packages/material-ui-icons/src/FastRewindRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastRewindRounded'); diff --git a/packages/material-ui-icons/src/FastRewindSharp.js b/packages/material-ui-icons/src/FastRewindSharp.js new file mode 100644 index 00000000000000..b648898927a9a7 --- /dev/null +++ b/packages/material-ui-icons/src/FastRewindSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastRewindSharp'); diff --git a/packages/material-ui-icons/src/FastRewindTwoTone.js b/packages/material-ui-icons/src/FastRewindTwoTone.js new file mode 100644 index 00000000000000..3c68ec86282d23 --- /dev/null +++ b/packages/material-ui-icons/src/FastRewindTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastRewindTwoTone'); diff --git a/packages/material-ui-icons/src/Fastfood.js b/packages/material-ui-icons/src/Fastfood.js new file mode 100644 index 00000000000000..0694620e59029a --- /dev/null +++ b/packages/material-ui-icons/src/Fastfood.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Fastfood'); diff --git a/packages/material-ui-icons/src/FastfoodOutlined.js b/packages/material-ui-icons/src/FastfoodOutlined.js new file mode 100644 index 00000000000000..ef5386426164c9 --- /dev/null +++ b/packages/material-ui-icons/src/FastfoodOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastfoodOutlined'); diff --git a/packages/material-ui-icons/src/FastfoodRounded.js b/packages/material-ui-icons/src/FastfoodRounded.js new file mode 100644 index 00000000000000..72c77ab6ff2580 --- /dev/null +++ b/packages/material-ui-icons/src/FastfoodRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastfoodRounded'); diff --git a/packages/material-ui-icons/src/FastfoodSharp.js b/packages/material-ui-icons/src/FastfoodSharp.js new file mode 100644 index 00000000000000..f84c55a112e0df --- /dev/null +++ b/packages/material-ui-icons/src/FastfoodSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastfoodSharp'); diff --git a/packages/material-ui-icons/src/FastfoodTwoTone.js b/packages/material-ui-icons/src/FastfoodTwoTone.js new file mode 100644 index 00000000000000..118abc3b4f7f2b --- /dev/null +++ b/packages/material-ui-icons/src/FastfoodTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FastfoodTwoTone'); diff --git a/packages/material-ui-icons/src/FavoriteBorderOutlined.js b/packages/material-ui-icons/src/FavoriteBorderOutlined.js new file mode 100644 index 00000000000000..3a734850b83541 --- /dev/null +++ b/packages/material-ui-icons/src/FavoriteBorderOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FavoriteBorderOutlined'); diff --git a/packages/material-ui-icons/src/FavoriteBorderRounded.js b/packages/material-ui-icons/src/FavoriteBorderRounded.js new file mode 100644 index 00000000000000..252990424e30bd --- /dev/null +++ b/packages/material-ui-icons/src/FavoriteBorderRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FavoriteBorderRounded'); diff --git a/packages/material-ui-icons/src/FavoriteBorderSharp.js b/packages/material-ui-icons/src/FavoriteBorderSharp.js new file mode 100644 index 00000000000000..d7136ef94f1c51 --- /dev/null +++ b/packages/material-ui-icons/src/FavoriteBorderSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FavoriteBorderSharp'); diff --git a/packages/material-ui-icons/src/FavoriteBorderTwoTone.js b/packages/material-ui-icons/src/FavoriteBorderTwoTone.js new file mode 100644 index 00000000000000..766cf3514c4424 --- /dev/null +++ b/packages/material-ui-icons/src/FavoriteBorderTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FavoriteBorderTwoTone'); diff --git a/packages/material-ui-icons/src/FavoriteOutlined.js b/packages/material-ui-icons/src/FavoriteOutlined.js new file mode 100644 index 00000000000000..52d2b030f7d355 --- /dev/null +++ b/packages/material-ui-icons/src/FavoriteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FavoriteOutlined'); diff --git a/packages/material-ui-icons/src/FavoriteRounded.js b/packages/material-ui-icons/src/FavoriteRounded.js new file mode 100644 index 00000000000000..b90f0bdbd15b6a --- /dev/null +++ b/packages/material-ui-icons/src/FavoriteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FavoriteRounded'); diff --git a/packages/material-ui-icons/src/FavoriteSharp.js b/packages/material-ui-icons/src/FavoriteSharp.js new file mode 100644 index 00000000000000..6ef2a6008185fb --- /dev/null +++ b/packages/material-ui-icons/src/FavoriteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FavoriteSharp'); diff --git a/packages/material-ui-icons/src/FavoriteTwoTone.js b/packages/material-ui-icons/src/FavoriteTwoTone.js new file mode 100644 index 00000000000000..be7719256a07a5 --- /dev/null +++ b/packages/material-ui-icons/src/FavoriteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FavoriteTwoTone'); diff --git a/packages/material-ui-icons/src/FeaturedPlayListOutlined.js b/packages/material-ui-icons/src/FeaturedPlayListOutlined.js new file mode 100644 index 00000000000000..cf907db5d1a9dd --- /dev/null +++ b/packages/material-ui-icons/src/FeaturedPlayListOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeaturedPlayListOutlined'); diff --git a/packages/material-ui-icons/src/FeaturedPlayListRounded.js b/packages/material-ui-icons/src/FeaturedPlayListRounded.js new file mode 100644 index 00000000000000..0cf1aa5b8d4e66 --- /dev/null +++ b/packages/material-ui-icons/src/FeaturedPlayListRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeaturedPlayListRounded'); diff --git a/packages/material-ui-icons/src/FeaturedPlayListSharp.js b/packages/material-ui-icons/src/FeaturedPlayListSharp.js new file mode 100644 index 00000000000000..3c6d5fbb39c668 --- /dev/null +++ b/packages/material-ui-icons/src/FeaturedPlayListSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeaturedPlayListSharp'); diff --git a/packages/material-ui-icons/src/FeaturedPlayListTwoTone.js b/packages/material-ui-icons/src/FeaturedPlayListTwoTone.js new file mode 100644 index 00000000000000..6a50aab5c68736 --- /dev/null +++ b/packages/material-ui-icons/src/FeaturedPlayListTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeaturedPlayListTwoTone'); diff --git a/packages/material-ui-icons/src/FeaturedVideoOutlined.js b/packages/material-ui-icons/src/FeaturedVideoOutlined.js new file mode 100644 index 00000000000000..ff1462c7c3874d --- /dev/null +++ b/packages/material-ui-icons/src/FeaturedVideoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeaturedVideoOutlined'); diff --git a/packages/material-ui-icons/src/FeaturedVideoRounded.js b/packages/material-ui-icons/src/FeaturedVideoRounded.js new file mode 100644 index 00000000000000..9e462b9896834c --- /dev/null +++ b/packages/material-ui-icons/src/FeaturedVideoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeaturedVideoRounded'); diff --git a/packages/material-ui-icons/src/FeaturedVideoSharp.js b/packages/material-ui-icons/src/FeaturedVideoSharp.js new file mode 100644 index 00000000000000..c7d34a85244970 --- /dev/null +++ b/packages/material-ui-icons/src/FeaturedVideoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeaturedVideoSharp'); diff --git a/packages/material-ui-icons/src/FeaturedVideoTwoTone.js b/packages/material-ui-icons/src/FeaturedVideoTwoTone.js new file mode 100644 index 00000000000000..b4a684f16879e4 --- /dev/null +++ b/packages/material-ui-icons/src/FeaturedVideoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeaturedVideoTwoTone'); diff --git a/packages/material-ui-icons/src/FeedbackOutlined.js b/packages/material-ui-icons/src/FeedbackOutlined.js new file mode 100644 index 00000000000000..82d21b4ef96fbb --- /dev/null +++ b/packages/material-ui-icons/src/FeedbackOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeedbackOutlined'); diff --git a/packages/material-ui-icons/src/FeedbackRounded.js b/packages/material-ui-icons/src/FeedbackRounded.js new file mode 100644 index 00000000000000..f2ead466cffe03 --- /dev/null +++ b/packages/material-ui-icons/src/FeedbackRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeedbackRounded'); diff --git a/packages/material-ui-icons/src/FeedbackSharp.js b/packages/material-ui-icons/src/FeedbackSharp.js new file mode 100644 index 00000000000000..2f8d06654d1eac --- /dev/null +++ b/packages/material-ui-icons/src/FeedbackSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeedbackSharp'); diff --git a/packages/material-ui-icons/src/FeedbackTwoTone.js b/packages/material-ui-icons/src/FeedbackTwoTone.js new file mode 100644 index 00000000000000..a30e6fc5e9630c --- /dev/null +++ b/packages/material-ui-icons/src/FeedbackTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FeedbackTwoTone'); diff --git a/packages/material-ui-icons/src/FiberDvr.js b/packages/material-ui-icons/src/FiberDvr.js index 1d363801f9c2b5..c57e724c9c6857 100644 --- a/packages/material-ui-icons/src/FiberDvr.js +++ b/packages/material-ui-icons/src/FiberDvr.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FiberDvr'); diff --git a/packages/material-ui-icons/src/FiberDvrOutlined.js b/packages/material-ui-icons/src/FiberDvrOutlined.js new file mode 100644 index 00000000000000..cdee75d2051bb2 --- /dev/null +++ b/packages/material-ui-icons/src/FiberDvrOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberDvrOutlined'); diff --git a/packages/material-ui-icons/src/FiberDvrRounded.js b/packages/material-ui-icons/src/FiberDvrRounded.js new file mode 100644 index 00000000000000..1b40636a24703d --- /dev/null +++ b/packages/material-ui-icons/src/FiberDvrRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberDvrRounded'); diff --git a/packages/material-ui-icons/src/FiberDvrSharp.js b/packages/material-ui-icons/src/FiberDvrSharp.js new file mode 100644 index 00000000000000..198587b53fda71 --- /dev/null +++ b/packages/material-ui-icons/src/FiberDvrSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberDvrSharp'); diff --git a/packages/material-ui-icons/src/FiberDvrTwoTone.js b/packages/material-ui-icons/src/FiberDvrTwoTone.js new file mode 100644 index 00000000000000..c5ad9a6d82c666 --- /dev/null +++ b/packages/material-ui-icons/src/FiberDvrTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberDvrTwoTone'); diff --git a/packages/material-ui-icons/src/FiberManualRecordOutlined.js b/packages/material-ui-icons/src/FiberManualRecordOutlined.js new file mode 100644 index 00000000000000..26d193a7f2f791 --- /dev/null +++ b/packages/material-ui-icons/src/FiberManualRecordOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberManualRecordOutlined'); diff --git a/packages/material-ui-icons/src/FiberManualRecordRounded.js b/packages/material-ui-icons/src/FiberManualRecordRounded.js new file mode 100644 index 00000000000000..42d4e8dfb1c2d2 --- /dev/null +++ b/packages/material-ui-icons/src/FiberManualRecordRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberManualRecordRounded'); diff --git a/packages/material-ui-icons/src/FiberManualRecordSharp.js b/packages/material-ui-icons/src/FiberManualRecordSharp.js new file mode 100644 index 00000000000000..26cda061273bdd --- /dev/null +++ b/packages/material-ui-icons/src/FiberManualRecordSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberManualRecordSharp'); diff --git a/packages/material-ui-icons/src/FiberManualRecordTwoTone.js b/packages/material-ui-icons/src/FiberManualRecordTwoTone.js new file mode 100644 index 00000000000000..637e5249c7bfda --- /dev/null +++ b/packages/material-ui-icons/src/FiberManualRecordTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberManualRecordTwoTone'); diff --git a/packages/material-ui-icons/src/FiberNew.js b/packages/material-ui-icons/src/FiberNew.js index fc8daec7b42474..448e85c945ae58 100644 --- a/packages/material-ui-icons/src/FiberNew.js +++ b/packages/material-ui-icons/src/FiberNew.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FiberNew'); diff --git a/packages/material-ui-icons/src/FiberNewOutlined.js b/packages/material-ui-icons/src/FiberNewOutlined.js new file mode 100644 index 00000000000000..f0a41e8b18ef01 --- /dev/null +++ b/packages/material-ui-icons/src/FiberNewOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberNewOutlined'); diff --git a/packages/material-ui-icons/src/FiberNewRounded.js b/packages/material-ui-icons/src/FiberNewRounded.js new file mode 100644 index 00000000000000..bbfbfdc35679a6 --- /dev/null +++ b/packages/material-ui-icons/src/FiberNewRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberNewRounded'); diff --git a/packages/material-ui-icons/src/FiberNewSharp.js b/packages/material-ui-icons/src/FiberNewSharp.js new file mode 100644 index 00000000000000..abccbe9c28c2b7 --- /dev/null +++ b/packages/material-ui-icons/src/FiberNewSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberNewSharp'); diff --git a/packages/material-ui-icons/src/FiberNewTwoTone.js b/packages/material-ui-icons/src/FiberNewTwoTone.js new file mode 100644 index 00000000000000..c77bb19f8108e9 --- /dev/null +++ b/packages/material-ui-icons/src/FiberNewTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberNewTwoTone'); diff --git a/packages/material-ui-icons/src/FiberPinOutlined.js b/packages/material-ui-icons/src/FiberPinOutlined.js new file mode 100644 index 00000000000000..9193b75fed97fc --- /dev/null +++ b/packages/material-ui-icons/src/FiberPinOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberPinOutlined'); diff --git a/packages/material-ui-icons/src/FiberPinRounded.js b/packages/material-ui-icons/src/FiberPinRounded.js new file mode 100644 index 00000000000000..7f80fd06933f92 --- /dev/null +++ b/packages/material-ui-icons/src/FiberPinRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberPinRounded'); diff --git a/packages/material-ui-icons/src/FiberPinSharp.js b/packages/material-ui-icons/src/FiberPinSharp.js new file mode 100644 index 00000000000000..cef22a85f60527 --- /dev/null +++ b/packages/material-ui-icons/src/FiberPinSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberPinSharp'); diff --git a/packages/material-ui-icons/src/FiberPinTwoTone.js b/packages/material-ui-icons/src/FiberPinTwoTone.js new file mode 100644 index 00000000000000..b486e001401271 --- /dev/null +++ b/packages/material-ui-icons/src/FiberPinTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberPinTwoTone'); diff --git a/packages/material-ui-icons/src/FiberSmartRecord.js b/packages/material-ui-icons/src/FiberSmartRecord.js index 781ddefb798330..28d908131d2d86 100644 --- a/packages/material-ui-icons/src/FiberSmartRecord.js +++ b/packages/material-ui-icons/src/FiberSmartRecord.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FiberSmartRecord'); diff --git a/packages/material-ui-icons/src/FiberSmartRecordOutlined.js b/packages/material-ui-icons/src/FiberSmartRecordOutlined.js new file mode 100644 index 00000000000000..b3d64061c2ca7c --- /dev/null +++ b/packages/material-ui-icons/src/FiberSmartRecordOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberSmartRecordOutlined'); diff --git a/packages/material-ui-icons/src/FiberSmartRecordRounded.js b/packages/material-ui-icons/src/FiberSmartRecordRounded.js new file mode 100644 index 00000000000000..1e516d09d66e16 --- /dev/null +++ b/packages/material-ui-icons/src/FiberSmartRecordRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberSmartRecordRounded'); diff --git a/packages/material-ui-icons/src/FiberSmartRecordSharp.js b/packages/material-ui-icons/src/FiberSmartRecordSharp.js new file mode 100644 index 00000000000000..7af0932b3a8930 --- /dev/null +++ b/packages/material-ui-icons/src/FiberSmartRecordSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberSmartRecordSharp'); diff --git a/packages/material-ui-icons/src/FiberSmartRecordTwoTone.js b/packages/material-ui-icons/src/FiberSmartRecordTwoTone.js new file mode 100644 index 00000000000000..7cf9e52c5bcae4 --- /dev/null +++ b/packages/material-ui-icons/src/FiberSmartRecordTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FiberSmartRecordTwoTone'); diff --git a/packages/material-ui-icons/src/FileCopy.js b/packages/material-ui-icons/src/FileCopy.js new file mode 100644 index 00000000000000..8fd2cb2cd0578d --- /dev/null +++ b/packages/material-ui-icons/src/FileCopy.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FileCopy'); diff --git a/packages/material-ui-icons/src/FileCopyOutlined.js b/packages/material-ui-icons/src/FileCopyOutlined.js new file mode 100644 index 00000000000000..945f7751d5c780 --- /dev/null +++ b/packages/material-ui-icons/src/FileCopyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FileCopyOutlined'); diff --git a/packages/material-ui-icons/src/FileCopyRounded.js b/packages/material-ui-icons/src/FileCopyRounded.js new file mode 100644 index 00000000000000..2847cbbcef84d8 --- /dev/null +++ b/packages/material-ui-icons/src/FileCopyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FileCopyRounded'); diff --git a/packages/material-ui-icons/src/FileCopySharp.js b/packages/material-ui-icons/src/FileCopySharp.js new file mode 100644 index 00000000000000..6cd646caaf7102 --- /dev/null +++ b/packages/material-ui-icons/src/FileCopySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FileCopySharp'); diff --git a/packages/material-ui-icons/src/FileCopyTwoTone.js b/packages/material-ui-icons/src/FileCopyTwoTone.js new file mode 100644 index 00000000000000..63019dc48a7854 --- /dev/null +++ b/packages/material-ui-icons/src/FileCopyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FileCopyTwoTone'); diff --git a/packages/material-ui-icons/src/Filter1Outlined.js b/packages/material-ui-icons/src/Filter1Outlined.js new file mode 100644 index 00000000000000..41bbfb2903cbb1 --- /dev/null +++ b/packages/material-ui-icons/src/Filter1Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter1Outlined'); diff --git a/packages/material-ui-icons/src/Filter1Rounded.js b/packages/material-ui-icons/src/Filter1Rounded.js new file mode 100644 index 00000000000000..fb663268a8ca53 --- /dev/null +++ b/packages/material-ui-icons/src/Filter1Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter1Rounded'); diff --git a/packages/material-ui-icons/src/Filter1Sharp.js b/packages/material-ui-icons/src/Filter1Sharp.js new file mode 100644 index 00000000000000..a75f37faa34bfa --- /dev/null +++ b/packages/material-ui-icons/src/Filter1Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter1Sharp'); diff --git a/packages/material-ui-icons/src/Filter1TwoTone.js b/packages/material-ui-icons/src/Filter1TwoTone.js new file mode 100644 index 00000000000000..a95cfbe058874e --- /dev/null +++ b/packages/material-ui-icons/src/Filter1TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter1TwoTone'); diff --git a/packages/material-ui-icons/src/Filter2.js b/packages/material-ui-icons/src/Filter2.js index 9a7de40ddc665d..966b1624127506 100644 --- a/packages/material-ui-icons/src/Filter2.js +++ b/packages/material-ui-icons/src/Filter2.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Filter2'); diff --git a/packages/material-ui-icons/src/Filter2Outlined.js b/packages/material-ui-icons/src/Filter2Outlined.js new file mode 100644 index 00000000000000..aea36caaa1a39e --- /dev/null +++ b/packages/material-ui-icons/src/Filter2Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter2Outlined'); diff --git a/packages/material-ui-icons/src/Filter2Rounded.js b/packages/material-ui-icons/src/Filter2Rounded.js new file mode 100644 index 00000000000000..d20f5c4bba4ee9 --- /dev/null +++ b/packages/material-ui-icons/src/Filter2Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter2Rounded'); diff --git a/packages/material-ui-icons/src/Filter2Sharp.js b/packages/material-ui-icons/src/Filter2Sharp.js new file mode 100644 index 00000000000000..0adb45fb26c63c --- /dev/null +++ b/packages/material-ui-icons/src/Filter2Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter2Sharp'); diff --git a/packages/material-ui-icons/src/Filter2TwoTone.js b/packages/material-ui-icons/src/Filter2TwoTone.js new file mode 100644 index 00000000000000..84380e70cf9e07 --- /dev/null +++ b/packages/material-ui-icons/src/Filter2TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter2TwoTone'); diff --git a/packages/material-ui-icons/src/Filter3.js b/packages/material-ui-icons/src/Filter3.js index 8db8a14e06af5a..1389ad5f0576ea 100644 --- a/packages/material-ui-icons/src/Filter3.js +++ b/packages/material-ui-icons/src/Filter3.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Filter3'); diff --git a/packages/material-ui-icons/src/Filter3Outlined.js b/packages/material-ui-icons/src/Filter3Outlined.js new file mode 100644 index 00000000000000..bbb0e3e9d26a6a --- /dev/null +++ b/packages/material-ui-icons/src/Filter3Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter3Outlined'); diff --git a/packages/material-ui-icons/src/Filter3Rounded.js b/packages/material-ui-icons/src/Filter3Rounded.js new file mode 100644 index 00000000000000..e95b0d76b00169 --- /dev/null +++ b/packages/material-ui-icons/src/Filter3Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter3Rounded'); diff --git a/packages/material-ui-icons/src/Filter3Sharp.js b/packages/material-ui-icons/src/Filter3Sharp.js new file mode 100644 index 00000000000000..bcea0f7eb85842 --- /dev/null +++ b/packages/material-ui-icons/src/Filter3Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter3Sharp'); diff --git a/packages/material-ui-icons/src/Filter3TwoTone.js b/packages/material-ui-icons/src/Filter3TwoTone.js new file mode 100644 index 00000000000000..c23386bd40f964 --- /dev/null +++ b/packages/material-ui-icons/src/Filter3TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter3TwoTone'); diff --git a/packages/material-ui-icons/src/Filter4Outlined.js b/packages/material-ui-icons/src/Filter4Outlined.js new file mode 100644 index 00000000000000..af372b409104c0 --- /dev/null +++ b/packages/material-ui-icons/src/Filter4Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter4Outlined'); diff --git a/packages/material-ui-icons/src/Filter4Rounded.js b/packages/material-ui-icons/src/Filter4Rounded.js new file mode 100644 index 00000000000000..47f1e7ff962f71 --- /dev/null +++ b/packages/material-ui-icons/src/Filter4Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter4Rounded'); diff --git a/packages/material-ui-icons/src/Filter4Sharp.js b/packages/material-ui-icons/src/Filter4Sharp.js new file mode 100644 index 00000000000000..bcf3a9e2e769d1 --- /dev/null +++ b/packages/material-ui-icons/src/Filter4Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter4Sharp'); diff --git a/packages/material-ui-icons/src/Filter4TwoTone.js b/packages/material-ui-icons/src/Filter4TwoTone.js new file mode 100644 index 00000000000000..1838e715359600 --- /dev/null +++ b/packages/material-ui-icons/src/Filter4TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter4TwoTone'); diff --git a/packages/material-ui-icons/src/Filter5.js b/packages/material-ui-icons/src/Filter5.js index d1ca392ae77129..e910b58055a05c 100644 --- a/packages/material-ui-icons/src/Filter5.js +++ b/packages/material-ui-icons/src/Filter5.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Filter5'); diff --git a/packages/material-ui-icons/src/Filter5Outlined.js b/packages/material-ui-icons/src/Filter5Outlined.js new file mode 100644 index 00000000000000..607c27bb7ab499 --- /dev/null +++ b/packages/material-ui-icons/src/Filter5Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter5Outlined'); diff --git a/packages/material-ui-icons/src/Filter5Rounded.js b/packages/material-ui-icons/src/Filter5Rounded.js new file mode 100644 index 00000000000000..bea9ffd843f415 --- /dev/null +++ b/packages/material-ui-icons/src/Filter5Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter5Rounded'); diff --git a/packages/material-ui-icons/src/Filter5Sharp.js b/packages/material-ui-icons/src/Filter5Sharp.js new file mode 100644 index 00000000000000..088f0dffb9d181 --- /dev/null +++ b/packages/material-ui-icons/src/Filter5Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter5Sharp'); diff --git a/packages/material-ui-icons/src/Filter5TwoTone.js b/packages/material-ui-icons/src/Filter5TwoTone.js new file mode 100644 index 00000000000000..b7b6efcc3333c7 --- /dev/null +++ b/packages/material-ui-icons/src/Filter5TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter5TwoTone'); diff --git a/packages/material-ui-icons/src/Filter6.js b/packages/material-ui-icons/src/Filter6.js index 8879056211b8bd..a309822454a38c 100644 --- a/packages/material-ui-icons/src/Filter6.js +++ b/packages/material-ui-icons/src/Filter6.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Filter6'); diff --git a/packages/material-ui-icons/src/Filter6Outlined.js b/packages/material-ui-icons/src/Filter6Outlined.js new file mode 100644 index 00000000000000..a605416ea60c1a --- /dev/null +++ b/packages/material-ui-icons/src/Filter6Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter6Outlined'); diff --git a/packages/material-ui-icons/src/Filter6Rounded.js b/packages/material-ui-icons/src/Filter6Rounded.js new file mode 100644 index 00000000000000..dd1e438a6b1c5e --- /dev/null +++ b/packages/material-ui-icons/src/Filter6Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter6Rounded'); diff --git a/packages/material-ui-icons/src/Filter6Sharp.js b/packages/material-ui-icons/src/Filter6Sharp.js new file mode 100644 index 00000000000000..9dbf732232d721 --- /dev/null +++ b/packages/material-ui-icons/src/Filter6Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter6Sharp'); diff --git a/packages/material-ui-icons/src/Filter6TwoTone.js b/packages/material-ui-icons/src/Filter6TwoTone.js new file mode 100644 index 00000000000000..6f2e8a2a813e9f --- /dev/null +++ b/packages/material-ui-icons/src/Filter6TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter6TwoTone'); diff --git a/packages/material-ui-icons/src/Filter7Outlined.js b/packages/material-ui-icons/src/Filter7Outlined.js new file mode 100644 index 00000000000000..93941a601dd9ab --- /dev/null +++ b/packages/material-ui-icons/src/Filter7Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter7Outlined'); diff --git a/packages/material-ui-icons/src/Filter7Rounded.js b/packages/material-ui-icons/src/Filter7Rounded.js new file mode 100644 index 00000000000000..8dd30373d16d2b --- /dev/null +++ b/packages/material-ui-icons/src/Filter7Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter7Rounded'); diff --git a/packages/material-ui-icons/src/Filter7Sharp.js b/packages/material-ui-icons/src/Filter7Sharp.js new file mode 100644 index 00000000000000..33038c7560e2e9 --- /dev/null +++ b/packages/material-ui-icons/src/Filter7Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter7Sharp'); diff --git a/packages/material-ui-icons/src/Filter7TwoTone.js b/packages/material-ui-icons/src/Filter7TwoTone.js new file mode 100644 index 00000000000000..1162c18bd8dcb9 --- /dev/null +++ b/packages/material-ui-icons/src/Filter7TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter7TwoTone'); diff --git a/packages/material-ui-icons/src/Filter8.js b/packages/material-ui-icons/src/Filter8.js index 0a86a40aae4a07..5bad0ed22421e6 100644 --- a/packages/material-ui-icons/src/Filter8.js +++ b/packages/material-ui-icons/src/Filter8.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Filter8'); diff --git a/packages/material-ui-icons/src/Filter8Outlined.js b/packages/material-ui-icons/src/Filter8Outlined.js new file mode 100644 index 00000000000000..b7cec0bef78247 --- /dev/null +++ b/packages/material-ui-icons/src/Filter8Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter8Outlined'); diff --git a/packages/material-ui-icons/src/Filter8Rounded.js b/packages/material-ui-icons/src/Filter8Rounded.js new file mode 100644 index 00000000000000..8968433ac86972 --- /dev/null +++ b/packages/material-ui-icons/src/Filter8Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter8Rounded'); diff --git a/packages/material-ui-icons/src/Filter8Sharp.js b/packages/material-ui-icons/src/Filter8Sharp.js new file mode 100644 index 00000000000000..3842e604ad5636 --- /dev/null +++ b/packages/material-ui-icons/src/Filter8Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter8Sharp'); diff --git a/packages/material-ui-icons/src/Filter8TwoTone.js b/packages/material-ui-icons/src/Filter8TwoTone.js new file mode 100644 index 00000000000000..a362fe9cf14dad --- /dev/null +++ b/packages/material-ui-icons/src/Filter8TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter8TwoTone'); diff --git a/packages/material-ui-icons/src/Filter9.js b/packages/material-ui-icons/src/Filter9.js index 305a1cd6004ae1..e7e666c42340db 100644 --- a/packages/material-ui-icons/src/Filter9.js +++ b/packages/material-ui-icons/src/Filter9.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Filter9'); diff --git a/packages/material-ui-icons/src/Filter9Outlined.js b/packages/material-ui-icons/src/Filter9Outlined.js new file mode 100644 index 00000000000000..392e259e09de79 --- /dev/null +++ b/packages/material-ui-icons/src/Filter9Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter9Outlined'); diff --git a/packages/material-ui-icons/src/Filter9Plus.js b/packages/material-ui-icons/src/Filter9Plus.js index 4ffe422651eccb..270d4b0b852199 100644 --- a/packages/material-ui-icons/src/Filter9Plus.js +++ b/packages/material-ui-icons/src/Filter9Plus.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Filter9Plus'); diff --git a/packages/material-ui-icons/src/Filter9PlusOutlined.js b/packages/material-ui-icons/src/Filter9PlusOutlined.js new file mode 100644 index 00000000000000..3efb81bf763088 --- /dev/null +++ b/packages/material-ui-icons/src/Filter9PlusOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter9PlusOutlined'); diff --git a/packages/material-ui-icons/src/Filter9PlusRounded.js b/packages/material-ui-icons/src/Filter9PlusRounded.js new file mode 100644 index 00000000000000..5deaff35a7a4df --- /dev/null +++ b/packages/material-ui-icons/src/Filter9PlusRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter9PlusRounded'); diff --git a/packages/material-ui-icons/src/Filter9PlusSharp.js b/packages/material-ui-icons/src/Filter9PlusSharp.js new file mode 100644 index 00000000000000..2ddf1d1d34d69d --- /dev/null +++ b/packages/material-ui-icons/src/Filter9PlusSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter9PlusSharp'); diff --git a/packages/material-ui-icons/src/Filter9PlusTwoTone.js b/packages/material-ui-icons/src/Filter9PlusTwoTone.js new file mode 100644 index 00000000000000..23aa57ed455e17 --- /dev/null +++ b/packages/material-ui-icons/src/Filter9PlusTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter9PlusTwoTone'); diff --git a/packages/material-ui-icons/src/Filter9Rounded.js b/packages/material-ui-icons/src/Filter9Rounded.js new file mode 100644 index 00000000000000..2d8c95102711cf --- /dev/null +++ b/packages/material-ui-icons/src/Filter9Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter9Rounded'); diff --git a/packages/material-ui-icons/src/Filter9Sharp.js b/packages/material-ui-icons/src/Filter9Sharp.js new file mode 100644 index 00000000000000..057b476135ab10 --- /dev/null +++ b/packages/material-ui-icons/src/Filter9Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter9Sharp'); diff --git a/packages/material-ui-icons/src/Filter9TwoTone.js b/packages/material-ui-icons/src/Filter9TwoTone.js new file mode 100644 index 00000000000000..5577e6b758c0f2 --- /dev/null +++ b/packages/material-ui-icons/src/Filter9TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Filter9TwoTone'); diff --git a/packages/material-ui-icons/src/FilterBAndWOutlined.js b/packages/material-ui-icons/src/FilterBAndWOutlined.js new file mode 100644 index 00000000000000..b073aafd523f43 --- /dev/null +++ b/packages/material-ui-icons/src/FilterBAndWOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterBAndWOutlined'); diff --git a/packages/material-ui-icons/src/FilterBAndWRounded.js b/packages/material-ui-icons/src/FilterBAndWRounded.js new file mode 100644 index 00000000000000..53497e42c4b057 --- /dev/null +++ b/packages/material-ui-icons/src/FilterBAndWRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterBAndWRounded'); diff --git a/packages/material-ui-icons/src/FilterBAndWSharp.js b/packages/material-ui-icons/src/FilterBAndWSharp.js new file mode 100644 index 00000000000000..b331604d7aa7d1 --- /dev/null +++ b/packages/material-ui-icons/src/FilterBAndWSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterBAndWSharp'); diff --git a/packages/material-ui-icons/src/FilterBAndWTwoTone.js b/packages/material-ui-icons/src/FilterBAndWTwoTone.js new file mode 100644 index 00000000000000..d3cef81328d0c8 --- /dev/null +++ b/packages/material-ui-icons/src/FilterBAndWTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterBAndWTwoTone'); diff --git a/packages/material-ui-icons/src/FilterCenterFocusOutlined.js b/packages/material-ui-icons/src/FilterCenterFocusOutlined.js new file mode 100644 index 00000000000000..f140d45e85e623 --- /dev/null +++ b/packages/material-ui-icons/src/FilterCenterFocusOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterCenterFocusOutlined'); diff --git a/packages/material-ui-icons/src/FilterCenterFocusRounded.js b/packages/material-ui-icons/src/FilterCenterFocusRounded.js new file mode 100644 index 00000000000000..488c837246c614 --- /dev/null +++ b/packages/material-ui-icons/src/FilterCenterFocusRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterCenterFocusRounded'); diff --git a/packages/material-ui-icons/src/FilterCenterFocusSharp.js b/packages/material-ui-icons/src/FilterCenterFocusSharp.js new file mode 100644 index 00000000000000..06f9a6c0675c9e --- /dev/null +++ b/packages/material-ui-icons/src/FilterCenterFocusSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterCenterFocusSharp'); diff --git a/packages/material-ui-icons/src/FilterCenterFocusTwoTone.js b/packages/material-ui-icons/src/FilterCenterFocusTwoTone.js new file mode 100644 index 00000000000000..7ec8608378e612 --- /dev/null +++ b/packages/material-ui-icons/src/FilterCenterFocusTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterCenterFocusTwoTone'); diff --git a/packages/material-ui-icons/src/FilterDrama.js b/packages/material-ui-icons/src/FilterDrama.js index 60ebb573f54790..7f67d784e1890f 100644 --- a/packages/material-ui-icons/src/FilterDrama.js +++ b/packages/material-ui-icons/src/FilterDrama.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FilterDrama'); diff --git a/packages/material-ui-icons/src/FilterDramaOutlined.js b/packages/material-ui-icons/src/FilterDramaOutlined.js new file mode 100644 index 00000000000000..23270421f3d1d5 --- /dev/null +++ b/packages/material-ui-icons/src/FilterDramaOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterDramaOutlined'); diff --git a/packages/material-ui-icons/src/FilterDramaRounded.js b/packages/material-ui-icons/src/FilterDramaRounded.js new file mode 100644 index 00000000000000..1a2963196cc3df --- /dev/null +++ b/packages/material-ui-icons/src/FilterDramaRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterDramaRounded'); diff --git a/packages/material-ui-icons/src/FilterDramaSharp.js b/packages/material-ui-icons/src/FilterDramaSharp.js new file mode 100644 index 00000000000000..f84c5b740fad90 --- /dev/null +++ b/packages/material-ui-icons/src/FilterDramaSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterDramaSharp'); diff --git a/packages/material-ui-icons/src/FilterDramaTwoTone.js b/packages/material-ui-icons/src/FilterDramaTwoTone.js new file mode 100644 index 00000000000000..ca4d9092a745a1 --- /dev/null +++ b/packages/material-ui-icons/src/FilterDramaTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterDramaTwoTone'); diff --git a/packages/material-ui-icons/src/FilterFramesOutlined.js b/packages/material-ui-icons/src/FilterFramesOutlined.js new file mode 100644 index 00000000000000..51bfbe4b001dd5 --- /dev/null +++ b/packages/material-ui-icons/src/FilterFramesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterFramesOutlined'); diff --git a/packages/material-ui-icons/src/FilterFramesRounded.js b/packages/material-ui-icons/src/FilterFramesRounded.js new file mode 100644 index 00000000000000..19272bc2d1be61 --- /dev/null +++ b/packages/material-ui-icons/src/FilterFramesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterFramesRounded'); diff --git a/packages/material-ui-icons/src/FilterFramesSharp.js b/packages/material-ui-icons/src/FilterFramesSharp.js new file mode 100644 index 00000000000000..4c40b2737c22e9 --- /dev/null +++ b/packages/material-ui-icons/src/FilterFramesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterFramesSharp'); diff --git a/packages/material-ui-icons/src/FilterFramesTwoTone.js b/packages/material-ui-icons/src/FilterFramesTwoTone.js new file mode 100644 index 00000000000000..b087cf94dd4e2f --- /dev/null +++ b/packages/material-ui-icons/src/FilterFramesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterFramesTwoTone'); diff --git a/packages/material-ui-icons/src/FilterHdrOutlined.js b/packages/material-ui-icons/src/FilterHdrOutlined.js new file mode 100644 index 00000000000000..9cc103be54ff81 --- /dev/null +++ b/packages/material-ui-icons/src/FilterHdrOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterHdrOutlined'); diff --git a/packages/material-ui-icons/src/FilterHdrRounded.js b/packages/material-ui-icons/src/FilterHdrRounded.js new file mode 100644 index 00000000000000..52413784b37d2f --- /dev/null +++ b/packages/material-ui-icons/src/FilterHdrRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterHdrRounded'); diff --git a/packages/material-ui-icons/src/FilterHdrSharp.js b/packages/material-ui-icons/src/FilterHdrSharp.js new file mode 100644 index 00000000000000..9eb25e5f795391 --- /dev/null +++ b/packages/material-ui-icons/src/FilterHdrSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterHdrSharp'); diff --git a/packages/material-ui-icons/src/FilterHdrTwoTone.js b/packages/material-ui-icons/src/FilterHdrTwoTone.js new file mode 100644 index 00000000000000..52c5b56100973e --- /dev/null +++ b/packages/material-ui-icons/src/FilterHdrTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterHdrTwoTone'); diff --git a/packages/material-ui-icons/src/FilterListOutlined.js b/packages/material-ui-icons/src/FilterListOutlined.js new file mode 100644 index 00000000000000..d3c71cd5242377 --- /dev/null +++ b/packages/material-ui-icons/src/FilterListOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterListOutlined'); diff --git a/packages/material-ui-icons/src/FilterListRounded.js b/packages/material-ui-icons/src/FilterListRounded.js new file mode 100644 index 00000000000000..83dd76cd037c0c --- /dev/null +++ b/packages/material-ui-icons/src/FilterListRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterListRounded'); diff --git a/packages/material-ui-icons/src/FilterListSharp.js b/packages/material-ui-icons/src/FilterListSharp.js new file mode 100644 index 00000000000000..c32755aa6a0b69 --- /dev/null +++ b/packages/material-ui-icons/src/FilterListSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterListSharp'); diff --git a/packages/material-ui-icons/src/FilterListTwoTone.js b/packages/material-ui-icons/src/FilterListTwoTone.js new file mode 100644 index 00000000000000..8fca325d967a91 --- /dev/null +++ b/packages/material-ui-icons/src/FilterListTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterListTwoTone'); diff --git a/packages/material-ui-icons/src/FilterNoneOutlined.js b/packages/material-ui-icons/src/FilterNoneOutlined.js new file mode 100644 index 00000000000000..481a9ff80dc15d --- /dev/null +++ b/packages/material-ui-icons/src/FilterNoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterNoneOutlined'); diff --git a/packages/material-ui-icons/src/FilterNoneRounded.js b/packages/material-ui-icons/src/FilterNoneRounded.js new file mode 100644 index 00000000000000..fc0b9df2c35e36 --- /dev/null +++ b/packages/material-ui-icons/src/FilterNoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterNoneRounded'); diff --git a/packages/material-ui-icons/src/FilterNoneSharp.js b/packages/material-ui-icons/src/FilterNoneSharp.js new file mode 100644 index 00000000000000..c08dfd94754b42 --- /dev/null +++ b/packages/material-ui-icons/src/FilterNoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterNoneSharp'); diff --git a/packages/material-ui-icons/src/FilterNoneTwoTone.js b/packages/material-ui-icons/src/FilterNoneTwoTone.js new file mode 100644 index 00000000000000..ee81f09568b7c9 --- /dev/null +++ b/packages/material-ui-icons/src/FilterNoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterNoneTwoTone'); diff --git a/packages/material-ui-icons/src/FilterOutlined.js b/packages/material-ui-icons/src/FilterOutlined.js new file mode 100644 index 00000000000000..838580046b32da --- /dev/null +++ b/packages/material-ui-icons/src/FilterOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterOutlined'); diff --git a/packages/material-ui-icons/src/FilterRounded.js b/packages/material-ui-icons/src/FilterRounded.js new file mode 100644 index 00000000000000..614fc1ab6d9506 --- /dev/null +++ b/packages/material-ui-icons/src/FilterRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterRounded'); diff --git a/packages/material-ui-icons/src/FilterSharp.js b/packages/material-ui-icons/src/FilterSharp.js new file mode 100644 index 00000000000000..8079ce12d503b4 --- /dev/null +++ b/packages/material-ui-icons/src/FilterSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterSharp'); diff --git a/packages/material-ui-icons/src/FilterTiltShift.js b/packages/material-ui-icons/src/FilterTiltShift.js index c7959a0db3d38a..6b008c1f32a180 100644 --- a/packages/material-ui-icons/src/FilterTiltShift.js +++ b/packages/material-ui-icons/src/FilterTiltShift.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FilterTiltShift'); diff --git a/packages/material-ui-icons/src/FilterTiltShiftOutlined.js b/packages/material-ui-icons/src/FilterTiltShiftOutlined.js new file mode 100644 index 00000000000000..ed05b0ac6e1a38 --- /dev/null +++ b/packages/material-ui-icons/src/FilterTiltShiftOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterTiltShiftOutlined'); diff --git a/packages/material-ui-icons/src/FilterTiltShiftRounded.js b/packages/material-ui-icons/src/FilterTiltShiftRounded.js new file mode 100644 index 00000000000000..21934ab8e4f9aa --- /dev/null +++ b/packages/material-ui-icons/src/FilterTiltShiftRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterTiltShiftRounded'); diff --git a/packages/material-ui-icons/src/FilterTiltShiftSharp.js b/packages/material-ui-icons/src/FilterTiltShiftSharp.js new file mode 100644 index 00000000000000..619dee8b1cda07 --- /dev/null +++ b/packages/material-ui-icons/src/FilterTiltShiftSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterTiltShiftSharp'); diff --git a/packages/material-ui-icons/src/FilterTiltShiftTwoTone.js b/packages/material-ui-icons/src/FilterTiltShiftTwoTone.js new file mode 100644 index 00000000000000..e9f3abf82515d6 --- /dev/null +++ b/packages/material-ui-icons/src/FilterTiltShiftTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterTiltShiftTwoTone'); diff --git a/packages/material-ui-icons/src/FilterTwoTone.js b/packages/material-ui-icons/src/FilterTwoTone.js new file mode 100644 index 00000000000000..f19d6f8465b72e --- /dev/null +++ b/packages/material-ui-icons/src/FilterTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterTwoTone'); diff --git a/packages/material-ui-icons/src/FilterVintage.js b/packages/material-ui-icons/src/FilterVintage.js index 4e6755700eb6fc..4276450c0c9281 100644 --- a/packages/material-ui-icons/src/FilterVintage.js +++ b/packages/material-ui-icons/src/FilterVintage.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FilterVintage'); diff --git a/packages/material-ui-icons/src/FilterVintageOutlined.js b/packages/material-ui-icons/src/FilterVintageOutlined.js new file mode 100644 index 00000000000000..4360fe9a6a45e9 --- /dev/null +++ b/packages/material-ui-icons/src/FilterVintageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterVintageOutlined'); diff --git a/packages/material-ui-icons/src/FilterVintageRounded.js b/packages/material-ui-icons/src/FilterVintageRounded.js new file mode 100644 index 00000000000000..26bb1f77ecabed --- /dev/null +++ b/packages/material-ui-icons/src/FilterVintageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterVintageRounded'); diff --git a/packages/material-ui-icons/src/FilterVintageSharp.js b/packages/material-ui-icons/src/FilterVintageSharp.js new file mode 100644 index 00000000000000..7cd8162780fbbe --- /dev/null +++ b/packages/material-ui-icons/src/FilterVintageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterVintageSharp'); diff --git a/packages/material-ui-icons/src/FilterVintageTwoTone.js b/packages/material-ui-icons/src/FilterVintageTwoTone.js new file mode 100644 index 00000000000000..e07ab7b813748b --- /dev/null +++ b/packages/material-ui-icons/src/FilterVintageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FilterVintageTwoTone'); diff --git a/packages/material-ui-icons/src/FindInPageOutlined.js b/packages/material-ui-icons/src/FindInPageOutlined.js new file mode 100644 index 00000000000000..fd9ccad78e2cc5 --- /dev/null +++ b/packages/material-ui-icons/src/FindInPageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FindInPageOutlined'); diff --git a/packages/material-ui-icons/src/FindInPageRounded.js b/packages/material-ui-icons/src/FindInPageRounded.js new file mode 100644 index 00000000000000..6938299a70ec11 --- /dev/null +++ b/packages/material-ui-icons/src/FindInPageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FindInPageRounded'); diff --git a/packages/material-ui-icons/src/FindInPageSharp.js b/packages/material-ui-icons/src/FindInPageSharp.js new file mode 100644 index 00000000000000..69690bc867f29f --- /dev/null +++ b/packages/material-ui-icons/src/FindInPageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FindInPageSharp'); diff --git a/packages/material-ui-icons/src/FindInPageTwoTone.js b/packages/material-ui-icons/src/FindInPageTwoTone.js new file mode 100644 index 00000000000000..1aa917ab28c9fe --- /dev/null +++ b/packages/material-ui-icons/src/FindInPageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FindInPageTwoTone'); diff --git a/packages/material-ui-icons/src/FindReplace.js b/packages/material-ui-icons/src/FindReplace.js index e063045ad24639..3f5fd909f1210a 100644 --- a/packages/material-ui-icons/src/FindReplace.js +++ b/packages/material-ui-icons/src/FindReplace.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FindReplace'); diff --git a/packages/material-ui-icons/src/FindReplaceOutlined.js b/packages/material-ui-icons/src/FindReplaceOutlined.js new file mode 100644 index 00000000000000..dda697e29aed64 --- /dev/null +++ b/packages/material-ui-icons/src/FindReplaceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FindReplaceOutlined'); diff --git a/packages/material-ui-icons/src/FindReplaceRounded.js b/packages/material-ui-icons/src/FindReplaceRounded.js new file mode 100644 index 00000000000000..eefd3ce59120f6 --- /dev/null +++ b/packages/material-ui-icons/src/FindReplaceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FindReplaceRounded'); diff --git a/packages/material-ui-icons/src/FindReplaceSharp.js b/packages/material-ui-icons/src/FindReplaceSharp.js new file mode 100644 index 00000000000000..25d7fc064d12c2 --- /dev/null +++ b/packages/material-ui-icons/src/FindReplaceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FindReplaceSharp'); diff --git a/packages/material-ui-icons/src/FindReplaceTwoTone.js b/packages/material-ui-icons/src/FindReplaceTwoTone.js new file mode 100644 index 00000000000000..d4820577f5d27c --- /dev/null +++ b/packages/material-ui-icons/src/FindReplaceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FindReplaceTwoTone'); diff --git a/packages/material-ui-icons/src/Fingerprint.js b/packages/material-ui-icons/src/Fingerprint.js index 61fd13a9e9a02e..25481c0c5995fc 100644 --- a/packages/material-ui-icons/src/Fingerprint.js +++ b/packages/material-ui-icons/src/Fingerprint.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Fingerprint'); diff --git a/packages/material-ui-icons/src/FingerprintOutlined.js b/packages/material-ui-icons/src/FingerprintOutlined.js new file mode 100644 index 00000000000000..5bc89210910ca4 --- /dev/null +++ b/packages/material-ui-icons/src/FingerprintOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FingerprintOutlined'); diff --git a/packages/material-ui-icons/src/FingerprintRounded.js b/packages/material-ui-icons/src/FingerprintRounded.js new file mode 100644 index 00000000000000..854bb52ef3eff0 --- /dev/null +++ b/packages/material-ui-icons/src/FingerprintRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FingerprintRounded'); diff --git a/packages/material-ui-icons/src/FingerprintSharp.js b/packages/material-ui-icons/src/FingerprintSharp.js new file mode 100644 index 00000000000000..48d6fedd3b8ae9 --- /dev/null +++ b/packages/material-ui-icons/src/FingerprintSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FingerprintSharp'); diff --git a/packages/material-ui-icons/src/FingerprintTwoTone.js b/packages/material-ui-icons/src/FingerprintTwoTone.js new file mode 100644 index 00000000000000..4987c9ce59aa12 --- /dev/null +++ b/packages/material-ui-icons/src/FingerprintTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FingerprintTwoTone'); diff --git a/packages/material-ui-icons/src/FirstPageOutlined.js b/packages/material-ui-icons/src/FirstPageOutlined.js new file mode 100644 index 00000000000000..89b0b317691412 --- /dev/null +++ b/packages/material-ui-icons/src/FirstPageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FirstPageOutlined'); diff --git a/packages/material-ui-icons/src/FirstPageRounded.js b/packages/material-ui-icons/src/FirstPageRounded.js new file mode 100644 index 00000000000000..8d7da207211fd3 --- /dev/null +++ b/packages/material-ui-icons/src/FirstPageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FirstPageRounded'); diff --git a/packages/material-ui-icons/src/FirstPageSharp.js b/packages/material-ui-icons/src/FirstPageSharp.js new file mode 100644 index 00000000000000..ced669fc3752eb --- /dev/null +++ b/packages/material-ui-icons/src/FirstPageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FirstPageSharp'); diff --git a/packages/material-ui-icons/src/FirstPageTwoTone.js b/packages/material-ui-icons/src/FirstPageTwoTone.js new file mode 100644 index 00000000000000..8932c2b4085387 --- /dev/null +++ b/packages/material-ui-icons/src/FirstPageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FirstPageTwoTone'); diff --git a/packages/material-ui-icons/src/FitnessCenterOutlined.js b/packages/material-ui-icons/src/FitnessCenterOutlined.js new file mode 100644 index 00000000000000..6bbead7314293e --- /dev/null +++ b/packages/material-ui-icons/src/FitnessCenterOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FitnessCenterOutlined'); diff --git a/packages/material-ui-icons/src/FitnessCenterRounded.js b/packages/material-ui-icons/src/FitnessCenterRounded.js new file mode 100644 index 00000000000000..1cc3aa55573fa9 --- /dev/null +++ b/packages/material-ui-icons/src/FitnessCenterRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FitnessCenterRounded'); diff --git a/packages/material-ui-icons/src/FitnessCenterSharp.js b/packages/material-ui-icons/src/FitnessCenterSharp.js new file mode 100644 index 00000000000000..fdc748b14297af --- /dev/null +++ b/packages/material-ui-icons/src/FitnessCenterSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FitnessCenterSharp'); diff --git a/packages/material-ui-icons/src/FitnessCenterTwoTone.js b/packages/material-ui-icons/src/FitnessCenterTwoTone.js new file mode 100644 index 00000000000000..a2842ae8b36cd1 --- /dev/null +++ b/packages/material-ui-icons/src/FitnessCenterTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FitnessCenterTwoTone'); diff --git a/packages/material-ui-icons/src/FlagOutlined.js b/packages/material-ui-icons/src/FlagOutlined.js new file mode 100644 index 00000000000000..1dde57740c037a --- /dev/null +++ b/packages/material-ui-icons/src/FlagOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlagOutlined'); diff --git a/packages/material-ui-icons/src/FlagRounded.js b/packages/material-ui-icons/src/FlagRounded.js new file mode 100644 index 00000000000000..64675ca750c0f6 --- /dev/null +++ b/packages/material-ui-icons/src/FlagRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlagRounded'); diff --git a/packages/material-ui-icons/src/FlagSharp.js b/packages/material-ui-icons/src/FlagSharp.js new file mode 100644 index 00000000000000..41de8b6d1d9c25 --- /dev/null +++ b/packages/material-ui-icons/src/FlagSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlagSharp'); diff --git a/packages/material-ui-icons/src/FlagTwoTone.js b/packages/material-ui-icons/src/FlagTwoTone.js new file mode 100644 index 00000000000000..b183043cde8603 --- /dev/null +++ b/packages/material-ui-icons/src/FlagTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlagTwoTone'); diff --git a/packages/material-ui-icons/src/FlareOutlined.js b/packages/material-ui-icons/src/FlareOutlined.js new file mode 100644 index 00000000000000..6e6f71d5de717e --- /dev/null +++ b/packages/material-ui-icons/src/FlareOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlareOutlined'); diff --git a/packages/material-ui-icons/src/FlareRounded.js b/packages/material-ui-icons/src/FlareRounded.js new file mode 100644 index 00000000000000..24add20267eb4a --- /dev/null +++ b/packages/material-ui-icons/src/FlareRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlareRounded'); diff --git a/packages/material-ui-icons/src/FlareSharp.js b/packages/material-ui-icons/src/FlareSharp.js new file mode 100644 index 00000000000000..41d2ed56404836 --- /dev/null +++ b/packages/material-ui-icons/src/FlareSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlareSharp'); diff --git a/packages/material-ui-icons/src/FlareTwoTone.js b/packages/material-ui-icons/src/FlareTwoTone.js new file mode 100644 index 00000000000000..931d6e8b3cd625 --- /dev/null +++ b/packages/material-ui-icons/src/FlareTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlareTwoTone'); diff --git a/packages/material-ui-icons/src/FlashAutoOutlined.js b/packages/material-ui-icons/src/FlashAutoOutlined.js new file mode 100644 index 00000000000000..21903b20114b94 --- /dev/null +++ b/packages/material-ui-icons/src/FlashAutoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashAutoOutlined'); diff --git a/packages/material-ui-icons/src/FlashAutoRounded.js b/packages/material-ui-icons/src/FlashAutoRounded.js new file mode 100644 index 00000000000000..6ef20deda0b057 --- /dev/null +++ b/packages/material-ui-icons/src/FlashAutoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashAutoRounded'); diff --git a/packages/material-ui-icons/src/FlashAutoSharp.js b/packages/material-ui-icons/src/FlashAutoSharp.js new file mode 100644 index 00000000000000..1c63fa922cc485 --- /dev/null +++ b/packages/material-ui-icons/src/FlashAutoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashAutoSharp'); diff --git a/packages/material-ui-icons/src/FlashAutoTwoTone.js b/packages/material-ui-icons/src/FlashAutoTwoTone.js new file mode 100644 index 00000000000000..c2971a8a48c94c --- /dev/null +++ b/packages/material-ui-icons/src/FlashAutoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashAutoTwoTone'); diff --git a/packages/material-ui-icons/src/FlashOffOutlined.js b/packages/material-ui-icons/src/FlashOffOutlined.js new file mode 100644 index 00000000000000..1e969c9ab0c166 --- /dev/null +++ b/packages/material-ui-icons/src/FlashOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashOffOutlined'); diff --git a/packages/material-ui-icons/src/FlashOffRounded.js b/packages/material-ui-icons/src/FlashOffRounded.js new file mode 100644 index 00000000000000..686d7dc3684bed --- /dev/null +++ b/packages/material-ui-icons/src/FlashOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashOffRounded'); diff --git a/packages/material-ui-icons/src/FlashOffSharp.js b/packages/material-ui-icons/src/FlashOffSharp.js new file mode 100644 index 00000000000000..6cb33325e50f9c --- /dev/null +++ b/packages/material-ui-icons/src/FlashOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashOffSharp'); diff --git a/packages/material-ui-icons/src/FlashOffTwoTone.js b/packages/material-ui-icons/src/FlashOffTwoTone.js new file mode 100644 index 00000000000000..64e9da7e45d1c6 --- /dev/null +++ b/packages/material-ui-icons/src/FlashOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashOffTwoTone'); diff --git a/packages/material-ui-icons/src/FlashOnOutlined.js b/packages/material-ui-icons/src/FlashOnOutlined.js new file mode 100644 index 00000000000000..85623e5dad4cd5 --- /dev/null +++ b/packages/material-ui-icons/src/FlashOnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashOnOutlined'); diff --git a/packages/material-ui-icons/src/FlashOnRounded.js b/packages/material-ui-icons/src/FlashOnRounded.js new file mode 100644 index 00000000000000..a84a2987eef826 --- /dev/null +++ b/packages/material-ui-icons/src/FlashOnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashOnRounded'); diff --git a/packages/material-ui-icons/src/FlashOnSharp.js b/packages/material-ui-icons/src/FlashOnSharp.js new file mode 100644 index 00000000000000..0891b195cdc34e --- /dev/null +++ b/packages/material-ui-icons/src/FlashOnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashOnSharp'); diff --git a/packages/material-ui-icons/src/FlashOnTwoTone.js b/packages/material-ui-icons/src/FlashOnTwoTone.js new file mode 100644 index 00000000000000..c58368e50622d7 --- /dev/null +++ b/packages/material-ui-icons/src/FlashOnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlashOnTwoTone'); diff --git a/packages/material-ui-icons/src/Flight.js b/packages/material-ui-icons/src/Flight.js index 9a3a17d81f7683..99db34e5eab8f4 100644 --- a/packages/material-ui-icons/src/Flight.js +++ b/packages/material-ui-icons/src/Flight.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Flight'); diff --git a/packages/material-ui-icons/src/FlightLand.js b/packages/material-ui-icons/src/FlightLand.js index fda757eacd39c7..9227d1e51cc3ed 100644 --- a/packages/material-ui-icons/src/FlightLand.js +++ b/packages/material-ui-icons/src/FlightLand.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FlightLand'); diff --git a/packages/material-ui-icons/src/FlightLandOutlined.js b/packages/material-ui-icons/src/FlightLandOutlined.js new file mode 100644 index 00000000000000..207205f137811f --- /dev/null +++ b/packages/material-ui-icons/src/FlightLandOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightLandOutlined'); diff --git a/packages/material-ui-icons/src/FlightLandRounded.js b/packages/material-ui-icons/src/FlightLandRounded.js new file mode 100644 index 00000000000000..fdb2837961ecf6 --- /dev/null +++ b/packages/material-ui-icons/src/FlightLandRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightLandRounded'); diff --git a/packages/material-ui-icons/src/FlightLandSharp.js b/packages/material-ui-icons/src/FlightLandSharp.js new file mode 100644 index 00000000000000..e09e5c7e0b9bda --- /dev/null +++ b/packages/material-ui-icons/src/FlightLandSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightLandSharp'); diff --git a/packages/material-ui-icons/src/FlightLandTwoTone.js b/packages/material-ui-icons/src/FlightLandTwoTone.js new file mode 100644 index 00000000000000..25ad36209c6e52 --- /dev/null +++ b/packages/material-ui-icons/src/FlightLandTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightLandTwoTone'); diff --git a/packages/material-ui-icons/src/FlightOutlined.js b/packages/material-ui-icons/src/FlightOutlined.js new file mode 100644 index 00000000000000..01dece42e26b2d --- /dev/null +++ b/packages/material-ui-icons/src/FlightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightOutlined'); diff --git a/packages/material-ui-icons/src/FlightRounded.js b/packages/material-ui-icons/src/FlightRounded.js new file mode 100644 index 00000000000000..67a5064bc04ede --- /dev/null +++ b/packages/material-ui-icons/src/FlightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightRounded'); diff --git a/packages/material-ui-icons/src/FlightSharp.js b/packages/material-ui-icons/src/FlightSharp.js new file mode 100644 index 00000000000000..285b7b7471bd5b --- /dev/null +++ b/packages/material-ui-icons/src/FlightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightSharp'); diff --git a/packages/material-ui-icons/src/FlightTakeoff.js b/packages/material-ui-icons/src/FlightTakeoff.js index dd364ae91cefe5..2e6c4aebd2979c 100644 --- a/packages/material-ui-icons/src/FlightTakeoff.js +++ b/packages/material-ui-icons/src/FlightTakeoff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FlightTakeoff'); diff --git a/packages/material-ui-icons/src/FlightTakeoffOutlined.js b/packages/material-ui-icons/src/FlightTakeoffOutlined.js new file mode 100644 index 00000000000000..cc1d5f387feba9 --- /dev/null +++ b/packages/material-ui-icons/src/FlightTakeoffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightTakeoffOutlined'); diff --git a/packages/material-ui-icons/src/FlightTakeoffRounded.js b/packages/material-ui-icons/src/FlightTakeoffRounded.js new file mode 100644 index 00000000000000..9adf8826c38691 --- /dev/null +++ b/packages/material-ui-icons/src/FlightTakeoffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightTakeoffRounded'); diff --git a/packages/material-ui-icons/src/FlightTakeoffSharp.js b/packages/material-ui-icons/src/FlightTakeoffSharp.js new file mode 100644 index 00000000000000..ba258bc49e6c14 --- /dev/null +++ b/packages/material-ui-icons/src/FlightTakeoffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightTakeoffSharp'); diff --git a/packages/material-ui-icons/src/FlightTakeoffTwoTone.js b/packages/material-ui-icons/src/FlightTakeoffTwoTone.js new file mode 100644 index 00000000000000..4bd0aa0600523d --- /dev/null +++ b/packages/material-ui-icons/src/FlightTakeoffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightTakeoffTwoTone'); diff --git a/packages/material-ui-icons/src/FlightTwoTone.js b/packages/material-ui-icons/src/FlightTwoTone.js new file mode 100644 index 00000000000000..731eb6b44e9763 --- /dev/null +++ b/packages/material-ui-icons/src/FlightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlightTwoTone'); diff --git a/packages/material-ui-icons/src/FlipOutlined.js b/packages/material-ui-icons/src/FlipOutlined.js new file mode 100644 index 00000000000000..a4598ab2840e76 --- /dev/null +++ b/packages/material-ui-icons/src/FlipOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipOutlined'); diff --git a/packages/material-ui-icons/src/FlipRounded.js b/packages/material-ui-icons/src/FlipRounded.js new file mode 100644 index 00000000000000..ebfe68c9f87388 --- /dev/null +++ b/packages/material-ui-icons/src/FlipRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipRounded'); diff --git a/packages/material-ui-icons/src/FlipSharp.js b/packages/material-ui-icons/src/FlipSharp.js new file mode 100644 index 00000000000000..0363c5464d6e54 --- /dev/null +++ b/packages/material-ui-icons/src/FlipSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipSharp'); diff --git a/packages/material-ui-icons/src/FlipToBack.js b/packages/material-ui-icons/src/FlipToBack.js index 3aacf1e41f228f..0f9ee2acd3e758 100644 --- a/packages/material-ui-icons/src/FlipToBack.js +++ b/packages/material-ui-icons/src/FlipToBack.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FlipToBack'); diff --git a/packages/material-ui-icons/src/FlipToBackOutlined.js b/packages/material-ui-icons/src/FlipToBackOutlined.js new file mode 100644 index 00000000000000..cfb1a431c100f5 --- /dev/null +++ b/packages/material-ui-icons/src/FlipToBackOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipToBackOutlined'); diff --git a/packages/material-ui-icons/src/FlipToBackRounded.js b/packages/material-ui-icons/src/FlipToBackRounded.js new file mode 100644 index 00000000000000..9f3e611038af3b --- /dev/null +++ b/packages/material-ui-icons/src/FlipToBackRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipToBackRounded'); diff --git a/packages/material-ui-icons/src/FlipToBackSharp.js b/packages/material-ui-icons/src/FlipToBackSharp.js new file mode 100644 index 00000000000000..d2957f8b2b5599 --- /dev/null +++ b/packages/material-ui-icons/src/FlipToBackSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipToBackSharp'); diff --git a/packages/material-ui-icons/src/FlipToBackTwoTone.js b/packages/material-ui-icons/src/FlipToBackTwoTone.js new file mode 100644 index 00000000000000..de33ad3989e1c5 --- /dev/null +++ b/packages/material-ui-icons/src/FlipToBackTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipToBackTwoTone'); diff --git a/packages/material-ui-icons/src/FlipToFront.js b/packages/material-ui-icons/src/FlipToFront.js index c5601fca025404..71af65c8403c31 100644 --- a/packages/material-ui-icons/src/FlipToFront.js +++ b/packages/material-ui-icons/src/FlipToFront.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FlipToFront'); diff --git a/packages/material-ui-icons/src/FlipToFrontOutlined.js b/packages/material-ui-icons/src/FlipToFrontOutlined.js new file mode 100644 index 00000000000000..de788a451e898b --- /dev/null +++ b/packages/material-ui-icons/src/FlipToFrontOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipToFrontOutlined'); diff --git a/packages/material-ui-icons/src/FlipToFrontRounded.js b/packages/material-ui-icons/src/FlipToFrontRounded.js new file mode 100644 index 00000000000000..ab23fa243d0505 --- /dev/null +++ b/packages/material-ui-icons/src/FlipToFrontRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipToFrontRounded'); diff --git a/packages/material-ui-icons/src/FlipToFrontSharp.js b/packages/material-ui-icons/src/FlipToFrontSharp.js new file mode 100644 index 00000000000000..f31248acfbea84 --- /dev/null +++ b/packages/material-ui-icons/src/FlipToFrontSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipToFrontSharp'); diff --git a/packages/material-ui-icons/src/FlipToFrontTwoTone.js b/packages/material-ui-icons/src/FlipToFrontTwoTone.js new file mode 100644 index 00000000000000..b033160b7ce737 --- /dev/null +++ b/packages/material-ui-icons/src/FlipToFrontTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipToFrontTwoTone'); diff --git a/packages/material-ui-icons/src/FlipTwoTone.js b/packages/material-ui-icons/src/FlipTwoTone.js new file mode 100644 index 00000000000000..cbdf03272b27ff --- /dev/null +++ b/packages/material-ui-icons/src/FlipTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FlipTwoTone'); diff --git a/packages/material-ui-icons/src/FolderOpenOutlined.js b/packages/material-ui-icons/src/FolderOpenOutlined.js new file mode 100644 index 00000000000000..0f463f7f6a7d4e --- /dev/null +++ b/packages/material-ui-icons/src/FolderOpenOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderOpenOutlined'); diff --git a/packages/material-ui-icons/src/FolderOpenRounded.js b/packages/material-ui-icons/src/FolderOpenRounded.js new file mode 100644 index 00000000000000..0b0f3f1fb3eceb --- /dev/null +++ b/packages/material-ui-icons/src/FolderOpenRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderOpenRounded'); diff --git a/packages/material-ui-icons/src/FolderOpenSharp.js b/packages/material-ui-icons/src/FolderOpenSharp.js new file mode 100644 index 00000000000000..5e6a429def434e --- /dev/null +++ b/packages/material-ui-icons/src/FolderOpenSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderOpenSharp'); diff --git a/packages/material-ui-icons/src/FolderOpenTwoTone.js b/packages/material-ui-icons/src/FolderOpenTwoTone.js new file mode 100644 index 00000000000000..af9a60b128f598 --- /dev/null +++ b/packages/material-ui-icons/src/FolderOpenTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderOpenTwoTone'); diff --git a/packages/material-ui-icons/src/FolderOutlined.js b/packages/material-ui-icons/src/FolderOutlined.js new file mode 100644 index 00000000000000..951acc9fcbd231 --- /dev/null +++ b/packages/material-ui-icons/src/FolderOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderOutlined'); diff --git a/packages/material-ui-icons/src/FolderRounded.js b/packages/material-ui-icons/src/FolderRounded.js new file mode 100644 index 00000000000000..73a21158fb3323 --- /dev/null +++ b/packages/material-ui-icons/src/FolderRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderRounded'); diff --git a/packages/material-ui-icons/src/FolderSharedOutlined.js b/packages/material-ui-icons/src/FolderSharedOutlined.js new file mode 100644 index 00000000000000..288dd85eff7142 --- /dev/null +++ b/packages/material-ui-icons/src/FolderSharedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderSharedOutlined'); diff --git a/packages/material-ui-icons/src/FolderSharedRounded.js b/packages/material-ui-icons/src/FolderSharedRounded.js new file mode 100644 index 00000000000000..16a5458b338da0 --- /dev/null +++ b/packages/material-ui-icons/src/FolderSharedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderSharedRounded'); diff --git a/packages/material-ui-icons/src/FolderSharedSharp.js b/packages/material-ui-icons/src/FolderSharedSharp.js new file mode 100644 index 00000000000000..ffb4f3cbefce2e --- /dev/null +++ b/packages/material-ui-icons/src/FolderSharedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderSharedSharp'); diff --git a/packages/material-ui-icons/src/FolderSharedTwoTone.js b/packages/material-ui-icons/src/FolderSharedTwoTone.js new file mode 100644 index 00000000000000..f904e64c42beca --- /dev/null +++ b/packages/material-ui-icons/src/FolderSharedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderSharedTwoTone'); diff --git a/packages/material-ui-icons/src/FolderSharp.js b/packages/material-ui-icons/src/FolderSharp.js new file mode 100644 index 00000000000000..7691a9c670d694 --- /dev/null +++ b/packages/material-ui-icons/src/FolderSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderSharp'); diff --git a/packages/material-ui-icons/src/FolderSpecialOutlined.js b/packages/material-ui-icons/src/FolderSpecialOutlined.js new file mode 100644 index 00000000000000..7aa821bcd5ac42 --- /dev/null +++ b/packages/material-ui-icons/src/FolderSpecialOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderSpecialOutlined'); diff --git a/packages/material-ui-icons/src/FolderSpecialRounded.js b/packages/material-ui-icons/src/FolderSpecialRounded.js new file mode 100644 index 00000000000000..cf722b1f74d6a7 --- /dev/null +++ b/packages/material-ui-icons/src/FolderSpecialRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderSpecialRounded'); diff --git a/packages/material-ui-icons/src/FolderSpecialSharp.js b/packages/material-ui-icons/src/FolderSpecialSharp.js new file mode 100644 index 00000000000000..a0f4a4ca6eece8 --- /dev/null +++ b/packages/material-ui-icons/src/FolderSpecialSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderSpecialSharp'); diff --git a/packages/material-ui-icons/src/FolderSpecialTwoTone.js b/packages/material-ui-icons/src/FolderSpecialTwoTone.js new file mode 100644 index 00000000000000..1a29f02e4d9e1b --- /dev/null +++ b/packages/material-ui-icons/src/FolderSpecialTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderSpecialTwoTone'); diff --git a/packages/material-ui-icons/src/FolderTwoTone.js b/packages/material-ui-icons/src/FolderTwoTone.js new file mode 100644 index 00000000000000..a504a1aa11633b --- /dev/null +++ b/packages/material-ui-icons/src/FolderTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FolderTwoTone'); diff --git a/packages/material-ui-icons/src/FontDownloadOutlined.js b/packages/material-ui-icons/src/FontDownloadOutlined.js new file mode 100644 index 00000000000000..e2099ea10ff924 --- /dev/null +++ b/packages/material-ui-icons/src/FontDownloadOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FontDownloadOutlined'); diff --git a/packages/material-ui-icons/src/FontDownloadRounded.js b/packages/material-ui-icons/src/FontDownloadRounded.js new file mode 100644 index 00000000000000..06a3139b98819c --- /dev/null +++ b/packages/material-ui-icons/src/FontDownloadRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FontDownloadRounded'); diff --git a/packages/material-ui-icons/src/FontDownloadSharp.js b/packages/material-ui-icons/src/FontDownloadSharp.js new file mode 100644 index 00000000000000..eb84ba8c048ea9 --- /dev/null +++ b/packages/material-ui-icons/src/FontDownloadSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FontDownloadSharp'); diff --git a/packages/material-ui-icons/src/FontDownloadTwoTone.js b/packages/material-ui-icons/src/FontDownloadTwoTone.js new file mode 100644 index 00000000000000..199cd1c43a55c3 --- /dev/null +++ b/packages/material-ui-icons/src/FontDownloadTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FontDownloadTwoTone'); diff --git a/packages/material-ui-icons/src/FormatAlignCenterOutlined.js b/packages/material-ui-icons/src/FormatAlignCenterOutlined.js new file mode 100644 index 00000000000000..e591b9a4c5a582 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignCenterOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignCenterOutlined'); diff --git a/packages/material-ui-icons/src/FormatAlignCenterRounded.js b/packages/material-ui-icons/src/FormatAlignCenterRounded.js new file mode 100644 index 00000000000000..d2ba7963aebcc5 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignCenterRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignCenterRounded'); diff --git a/packages/material-ui-icons/src/FormatAlignCenterSharp.js b/packages/material-ui-icons/src/FormatAlignCenterSharp.js new file mode 100644 index 00000000000000..3861e94b370908 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignCenterSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignCenterSharp'); diff --git a/packages/material-ui-icons/src/FormatAlignCenterTwoTone.js b/packages/material-ui-icons/src/FormatAlignCenterTwoTone.js new file mode 100644 index 00000000000000..a07f4f504ea159 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignCenterTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignCenterTwoTone'); diff --git a/packages/material-ui-icons/src/FormatAlignJustifyOutlined.js b/packages/material-ui-icons/src/FormatAlignJustifyOutlined.js new file mode 100644 index 00000000000000..5c4fb5abeef7b6 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignJustifyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignJustifyOutlined'); diff --git a/packages/material-ui-icons/src/FormatAlignJustifyRounded.js b/packages/material-ui-icons/src/FormatAlignJustifyRounded.js new file mode 100644 index 00000000000000..b8112a81f218b4 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignJustifyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignJustifyRounded'); diff --git a/packages/material-ui-icons/src/FormatAlignJustifySharp.js b/packages/material-ui-icons/src/FormatAlignJustifySharp.js new file mode 100644 index 00000000000000..7ac9e3df348c59 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignJustifySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignJustifySharp'); diff --git a/packages/material-ui-icons/src/FormatAlignJustifyTwoTone.js b/packages/material-ui-icons/src/FormatAlignJustifyTwoTone.js new file mode 100644 index 00000000000000..efa329310513cc --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignJustifyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignJustifyTwoTone'); diff --git a/packages/material-ui-icons/src/FormatAlignLeftOutlined.js b/packages/material-ui-icons/src/FormatAlignLeftOutlined.js new file mode 100644 index 00000000000000..dfb8a9968d4158 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignLeftOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignLeftOutlined'); diff --git a/packages/material-ui-icons/src/FormatAlignLeftRounded.js b/packages/material-ui-icons/src/FormatAlignLeftRounded.js new file mode 100644 index 00000000000000..018b2f2d1f63f5 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignLeftRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignLeftRounded'); diff --git a/packages/material-ui-icons/src/FormatAlignLeftSharp.js b/packages/material-ui-icons/src/FormatAlignLeftSharp.js new file mode 100644 index 00000000000000..13324176626cf1 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignLeftSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignLeftSharp'); diff --git a/packages/material-ui-icons/src/FormatAlignLeftTwoTone.js b/packages/material-ui-icons/src/FormatAlignLeftTwoTone.js new file mode 100644 index 00000000000000..d98d288e6a8a34 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignLeftTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignLeftTwoTone'); diff --git a/packages/material-ui-icons/src/FormatAlignRightOutlined.js b/packages/material-ui-icons/src/FormatAlignRightOutlined.js new file mode 100644 index 00000000000000..10a6dd342f9067 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignRightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignRightOutlined'); diff --git a/packages/material-ui-icons/src/FormatAlignRightRounded.js b/packages/material-ui-icons/src/FormatAlignRightRounded.js new file mode 100644 index 00000000000000..00d1ef526a63a8 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignRightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignRightRounded'); diff --git a/packages/material-ui-icons/src/FormatAlignRightSharp.js b/packages/material-ui-icons/src/FormatAlignRightSharp.js new file mode 100644 index 00000000000000..09f7fbeeb058a7 --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignRightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignRightSharp'); diff --git a/packages/material-ui-icons/src/FormatAlignRightTwoTone.js b/packages/material-ui-icons/src/FormatAlignRightTwoTone.js new file mode 100644 index 00000000000000..64c84621a1bf1a --- /dev/null +++ b/packages/material-ui-icons/src/FormatAlignRightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatAlignRightTwoTone'); diff --git a/packages/material-ui-icons/src/FormatBoldOutlined.js b/packages/material-ui-icons/src/FormatBoldOutlined.js new file mode 100644 index 00000000000000..9d5024d93161d1 --- /dev/null +++ b/packages/material-ui-icons/src/FormatBoldOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatBoldOutlined'); diff --git a/packages/material-ui-icons/src/FormatBoldRounded.js b/packages/material-ui-icons/src/FormatBoldRounded.js new file mode 100644 index 00000000000000..fe5b5c16254c05 --- /dev/null +++ b/packages/material-ui-icons/src/FormatBoldRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatBoldRounded'); diff --git a/packages/material-ui-icons/src/FormatBoldSharp.js b/packages/material-ui-icons/src/FormatBoldSharp.js new file mode 100644 index 00000000000000..e475abbdc87e26 --- /dev/null +++ b/packages/material-ui-icons/src/FormatBoldSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatBoldSharp'); diff --git a/packages/material-ui-icons/src/FormatBoldTwoTone.js b/packages/material-ui-icons/src/FormatBoldTwoTone.js new file mode 100644 index 00000000000000..19241e145688d5 --- /dev/null +++ b/packages/material-ui-icons/src/FormatBoldTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatBoldTwoTone'); diff --git a/packages/material-ui-icons/src/FormatClearOutlined.js b/packages/material-ui-icons/src/FormatClearOutlined.js new file mode 100644 index 00000000000000..ac299a9ee26338 --- /dev/null +++ b/packages/material-ui-icons/src/FormatClearOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatClearOutlined'); diff --git a/packages/material-ui-icons/src/FormatClearRounded.js b/packages/material-ui-icons/src/FormatClearRounded.js new file mode 100644 index 00000000000000..cf0cf97de44e7c --- /dev/null +++ b/packages/material-ui-icons/src/FormatClearRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatClearRounded'); diff --git a/packages/material-ui-icons/src/FormatClearSharp.js b/packages/material-ui-icons/src/FormatClearSharp.js new file mode 100644 index 00000000000000..0a5aec8c716511 --- /dev/null +++ b/packages/material-ui-icons/src/FormatClearSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatClearSharp'); diff --git a/packages/material-ui-icons/src/FormatClearTwoTone.js b/packages/material-ui-icons/src/FormatClearTwoTone.js new file mode 100644 index 00000000000000..cd8a3d566c3041 --- /dev/null +++ b/packages/material-ui-icons/src/FormatClearTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatClearTwoTone'); diff --git a/packages/material-ui-icons/src/FormatColorFill.js b/packages/material-ui-icons/src/FormatColorFill.js index 1eb9119b3727b6..9ea35db29f28b4 100644 --- a/packages/material-ui-icons/src/FormatColorFill.js +++ b/packages/material-ui-icons/src/FormatColorFill.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FormatColorFill'); diff --git a/packages/material-ui-icons/src/FormatColorFillOutlined.js b/packages/material-ui-icons/src/FormatColorFillOutlined.js new file mode 100644 index 00000000000000..a97bce788bf7c6 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorFillOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorFillOutlined'); diff --git a/packages/material-ui-icons/src/FormatColorFillRounded.js b/packages/material-ui-icons/src/FormatColorFillRounded.js new file mode 100644 index 00000000000000..c384c7415d9b63 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorFillRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorFillRounded'); diff --git a/packages/material-ui-icons/src/FormatColorFillSharp.js b/packages/material-ui-icons/src/FormatColorFillSharp.js new file mode 100644 index 00000000000000..0c2777cb2fc2d6 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorFillSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorFillSharp'); diff --git a/packages/material-ui-icons/src/FormatColorFillTwoTone.js b/packages/material-ui-icons/src/FormatColorFillTwoTone.js new file mode 100644 index 00000000000000..6853b965a71d82 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorFillTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorFillTwoTone'); diff --git a/packages/material-ui-icons/src/FormatColorResetOutlined.js b/packages/material-ui-icons/src/FormatColorResetOutlined.js new file mode 100644 index 00000000000000..f13bde235a7eeb --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorResetOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorResetOutlined'); diff --git a/packages/material-ui-icons/src/FormatColorResetRounded.js b/packages/material-ui-icons/src/FormatColorResetRounded.js new file mode 100644 index 00000000000000..2b49ee62081e15 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorResetRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorResetRounded'); diff --git a/packages/material-ui-icons/src/FormatColorResetSharp.js b/packages/material-ui-icons/src/FormatColorResetSharp.js new file mode 100644 index 00000000000000..efe8b4419af688 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorResetSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorResetSharp'); diff --git a/packages/material-ui-icons/src/FormatColorResetTwoTone.js b/packages/material-ui-icons/src/FormatColorResetTwoTone.js new file mode 100644 index 00000000000000..2924145c16daf3 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorResetTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorResetTwoTone'); diff --git a/packages/material-ui-icons/src/FormatColorText.js b/packages/material-ui-icons/src/FormatColorText.js index fd8ebd56995f87..48e62263a9b992 100644 --- a/packages/material-ui-icons/src/FormatColorText.js +++ b/packages/material-ui-icons/src/FormatColorText.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FormatColorText'); diff --git a/packages/material-ui-icons/src/FormatColorTextOutlined.js b/packages/material-ui-icons/src/FormatColorTextOutlined.js new file mode 100644 index 00000000000000..8c1bc0b2666dc6 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorTextOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorTextOutlined'); diff --git a/packages/material-ui-icons/src/FormatColorTextRounded.js b/packages/material-ui-icons/src/FormatColorTextRounded.js new file mode 100644 index 00000000000000..82d939d02ac776 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorTextRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorTextRounded'); diff --git a/packages/material-ui-icons/src/FormatColorTextSharp.js b/packages/material-ui-icons/src/FormatColorTextSharp.js new file mode 100644 index 00000000000000..e1b71c0a5bede3 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorTextSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorTextSharp'); diff --git a/packages/material-ui-icons/src/FormatColorTextTwoTone.js b/packages/material-ui-icons/src/FormatColorTextTwoTone.js new file mode 100644 index 00000000000000..a56d56ffedd447 --- /dev/null +++ b/packages/material-ui-icons/src/FormatColorTextTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatColorTextTwoTone'); diff --git a/packages/material-ui-icons/src/FormatIndentDecreaseOutlined.js b/packages/material-ui-icons/src/FormatIndentDecreaseOutlined.js new file mode 100644 index 00000000000000..462b55c410e15c --- /dev/null +++ b/packages/material-ui-icons/src/FormatIndentDecreaseOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatIndentDecreaseOutlined'); diff --git a/packages/material-ui-icons/src/FormatIndentDecreaseRounded.js b/packages/material-ui-icons/src/FormatIndentDecreaseRounded.js new file mode 100644 index 00000000000000..cce6387de457f4 --- /dev/null +++ b/packages/material-ui-icons/src/FormatIndentDecreaseRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatIndentDecreaseRounded'); diff --git a/packages/material-ui-icons/src/FormatIndentDecreaseSharp.js b/packages/material-ui-icons/src/FormatIndentDecreaseSharp.js new file mode 100644 index 00000000000000..d76b5d9a458b3a --- /dev/null +++ b/packages/material-ui-icons/src/FormatIndentDecreaseSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatIndentDecreaseSharp'); diff --git a/packages/material-ui-icons/src/FormatIndentDecreaseTwoTone.js b/packages/material-ui-icons/src/FormatIndentDecreaseTwoTone.js new file mode 100644 index 00000000000000..5e0a3a4e0ba2f2 --- /dev/null +++ b/packages/material-ui-icons/src/FormatIndentDecreaseTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatIndentDecreaseTwoTone'); diff --git a/packages/material-ui-icons/src/FormatIndentIncreaseOutlined.js b/packages/material-ui-icons/src/FormatIndentIncreaseOutlined.js new file mode 100644 index 00000000000000..7ff9903b7323fa --- /dev/null +++ b/packages/material-ui-icons/src/FormatIndentIncreaseOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatIndentIncreaseOutlined'); diff --git a/packages/material-ui-icons/src/FormatIndentIncreaseRounded.js b/packages/material-ui-icons/src/FormatIndentIncreaseRounded.js new file mode 100644 index 00000000000000..7ac044a6727b8c --- /dev/null +++ b/packages/material-ui-icons/src/FormatIndentIncreaseRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatIndentIncreaseRounded'); diff --git a/packages/material-ui-icons/src/FormatIndentIncreaseSharp.js b/packages/material-ui-icons/src/FormatIndentIncreaseSharp.js new file mode 100644 index 00000000000000..9283d9cf87c436 --- /dev/null +++ b/packages/material-ui-icons/src/FormatIndentIncreaseSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatIndentIncreaseSharp'); diff --git a/packages/material-ui-icons/src/FormatIndentIncreaseTwoTone.js b/packages/material-ui-icons/src/FormatIndentIncreaseTwoTone.js new file mode 100644 index 00000000000000..1d8b0371561f07 --- /dev/null +++ b/packages/material-ui-icons/src/FormatIndentIncreaseTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatIndentIncreaseTwoTone'); diff --git a/packages/material-ui-icons/src/FormatItalicOutlined.js b/packages/material-ui-icons/src/FormatItalicOutlined.js new file mode 100644 index 00000000000000..8db225c7ba60b5 --- /dev/null +++ b/packages/material-ui-icons/src/FormatItalicOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatItalicOutlined'); diff --git a/packages/material-ui-icons/src/FormatItalicRounded.js b/packages/material-ui-icons/src/FormatItalicRounded.js new file mode 100644 index 00000000000000..250b89d6fc7efc --- /dev/null +++ b/packages/material-ui-icons/src/FormatItalicRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatItalicRounded'); diff --git a/packages/material-ui-icons/src/FormatItalicSharp.js b/packages/material-ui-icons/src/FormatItalicSharp.js new file mode 100644 index 00000000000000..8245526286824e --- /dev/null +++ b/packages/material-ui-icons/src/FormatItalicSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatItalicSharp'); diff --git a/packages/material-ui-icons/src/FormatItalicTwoTone.js b/packages/material-ui-icons/src/FormatItalicTwoTone.js new file mode 100644 index 00000000000000..3b317695e98736 --- /dev/null +++ b/packages/material-ui-icons/src/FormatItalicTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatItalicTwoTone'); diff --git a/packages/material-ui-icons/src/FormatLineSpacingOutlined.js b/packages/material-ui-icons/src/FormatLineSpacingOutlined.js new file mode 100644 index 00000000000000..539b34726d798e --- /dev/null +++ b/packages/material-ui-icons/src/FormatLineSpacingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatLineSpacingOutlined'); diff --git a/packages/material-ui-icons/src/FormatLineSpacingRounded.js b/packages/material-ui-icons/src/FormatLineSpacingRounded.js new file mode 100644 index 00000000000000..c28d97972f3a87 --- /dev/null +++ b/packages/material-ui-icons/src/FormatLineSpacingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatLineSpacingRounded'); diff --git a/packages/material-ui-icons/src/FormatLineSpacingSharp.js b/packages/material-ui-icons/src/FormatLineSpacingSharp.js new file mode 100644 index 00000000000000..e66d8ed7a9a463 --- /dev/null +++ b/packages/material-ui-icons/src/FormatLineSpacingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatLineSpacingSharp'); diff --git a/packages/material-ui-icons/src/FormatLineSpacingTwoTone.js b/packages/material-ui-icons/src/FormatLineSpacingTwoTone.js new file mode 100644 index 00000000000000..3d1a576f92e7c2 --- /dev/null +++ b/packages/material-ui-icons/src/FormatLineSpacingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatLineSpacingTwoTone'); diff --git a/packages/material-ui-icons/src/FormatListBulletedOutlined.js b/packages/material-ui-icons/src/FormatListBulletedOutlined.js new file mode 100644 index 00000000000000..cccf0ca82c1a9f --- /dev/null +++ b/packages/material-ui-icons/src/FormatListBulletedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListBulletedOutlined'); diff --git a/packages/material-ui-icons/src/FormatListBulletedRounded.js b/packages/material-ui-icons/src/FormatListBulletedRounded.js new file mode 100644 index 00000000000000..feb0169d3efa48 --- /dev/null +++ b/packages/material-ui-icons/src/FormatListBulletedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListBulletedRounded'); diff --git a/packages/material-ui-icons/src/FormatListBulletedSharp.js b/packages/material-ui-icons/src/FormatListBulletedSharp.js new file mode 100644 index 00000000000000..710a46785922bc --- /dev/null +++ b/packages/material-ui-icons/src/FormatListBulletedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListBulletedSharp'); diff --git a/packages/material-ui-icons/src/FormatListBulletedTwoTone.js b/packages/material-ui-icons/src/FormatListBulletedTwoTone.js new file mode 100644 index 00000000000000..a588799ace8294 --- /dev/null +++ b/packages/material-ui-icons/src/FormatListBulletedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListBulletedTwoTone'); diff --git a/packages/material-ui-icons/src/FormatListNumberedOutlined.js b/packages/material-ui-icons/src/FormatListNumberedOutlined.js new file mode 100644 index 00000000000000..4913c78b25bcb6 --- /dev/null +++ b/packages/material-ui-icons/src/FormatListNumberedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListNumberedOutlined'); diff --git a/packages/material-ui-icons/src/FormatListNumberedRounded.js b/packages/material-ui-icons/src/FormatListNumberedRounded.js new file mode 100644 index 00000000000000..57f5dcbeba69fb --- /dev/null +++ b/packages/material-ui-icons/src/FormatListNumberedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListNumberedRounded'); diff --git a/packages/material-ui-icons/src/FormatListNumberedRtl.js b/packages/material-ui-icons/src/FormatListNumberedRtl.js new file mode 100644 index 00000000000000..b7d5ad41283016 --- /dev/null +++ b/packages/material-ui-icons/src/FormatListNumberedRtl.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListNumberedRtl'); diff --git a/packages/material-ui-icons/src/FormatListNumberedRtlOutlined.js b/packages/material-ui-icons/src/FormatListNumberedRtlOutlined.js new file mode 100644 index 00000000000000..4ccc6b7ac5b00e --- /dev/null +++ b/packages/material-ui-icons/src/FormatListNumberedRtlOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListNumberedRtlOutlined'); diff --git a/packages/material-ui-icons/src/FormatListNumberedRtlRounded.js b/packages/material-ui-icons/src/FormatListNumberedRtlRounded.js new file mode 100644 index 00000000000000..f77b4b33882ce6 --- /dev/null +++ b/packages/material-ui-icons/src/FormatListNumberedRtlRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListNumberedRtlRounded'); diff --git a/packages/material-ui-icons/src/FormatListNumberedRtlSharp.js b/packages/material-ui-icons/src/FormatListNumberedRtlSharp.js new file mode 100644 index 00000000000000..a6fe19ce4219da --- /dev/null +++ b/packages/material-ui-icons/src/FormatListNumberedRtlSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListNumberedRtlSharp'); diff --git a/packages/material-ui-icons/src/FormatListNumberedRtlTwoTone.js b/packages/material-ui-icons/src/FormatListNumberedRtlTwoTone.js new file mode 100644 index 00000000000000..7f836f2106a17a --- /dev/null +++ b/packages/material-ui-icons/src/FormatListNumberedRtlTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListNumberedRtlTwoTone'); diff --git a/packages/material-ui-icons/src/FormatListNumberedSharp.js b/packages/material-ui-icons/src/FormatListNumberedSharp.js new file mode 100644 index 00000000000000..66975bd8245be1 --- /dev/null +++ b/packages/material-ui-icons/src/FormatListNumberedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListNumberedSharp'); diff --git a/packages/material-ui-icons/src/FormatListNumberedTwoTone.js b/packages/material-ui-icons/src/FormatListNumberedTwoTone.js new file mode 100644 index 00000000000000..6e13443ea7d89d --- /dev/null +++ b/packages/material-ui-icons/src/FormatListNumberedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatListNumberedTwoTone'); diff --git a/packages/material-ui-icons/src/FormatPaintOutlined.js b/packages/material-ui-icons/src/FormatPaintOutlined.js new file mode 100644 index 00000000000000..26eedcdf791da4 --- /dev/null +++ b/packages/material-ui-icons/src/FormatPaintOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatPaintOutlined'); diff --git a/packages/material-ui-icons/src/FormatPaintRounded.js b/packages/material-ui-icons/src/FormatPaintRounded.js new file mode 100644 index 00000000000000..09a012c272859d --- /dev/null +++ b/packages/material-ui-icons/src/FormatPaintRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatPaintRounded'); diff --git a/packages/material-ui-icons/src/FormatPaintSharp.js b/packages/material-ui-icons/src/FormatPaintSharp.js new file mode 100644 index 00000000000000..85dacfcfd6254b --- /dev/null +++ b/packages/material-ui-icons/src/FormatPaintSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatPaintSharp'); diff --git a/packages/material-ui-icons/src/FormatPaintTwoTone.js b/packages/material-ui-icons/src/FormatPaintTwoTone.js new file mode 100644 index 00000000000000..71f7d432d54999 --- /dev/null +++ b/packages/material-ui-icons/src/FormatPaintTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatPaintTwoTone'); diff --git a/packages/material-ui-icons/src/FormatQuoteOutlined.js b/packages/material-ui-icons/src/FormatQuoteOutlined.js new file mode 100644 index 00000000000000..78b7ff9d34e29c --- /dev/null +++ b/packages/material-ui-icons/src/FormatQuoteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatQuoteOutlined'); diff --git a/packages/material-ui-icons/src/FormatQuoteRounded.js b/packages/material-ui-icons/src/FormatQuoteRounded.js new file mode 100644 index 00000000000000..4aaa8ba7e39387 --- /dev/null +++ b/packages/material-ui-icons/src/FormatQuoteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatQuoteRounded'); diff --git a/packages/material-ui-icons/src/FormatQuoteSharp.js b/packages/material-ui-icons/src/FormatQuoteSharp.js new file mode 100644 index 00000000000000..880290a49c07f0 --- /dev/null +++ b/packages/material-ui-icons/src/FormatQuoteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatQuoteSharp'); diff --git a/packages/material-ui-icons/src/FormatQuoteTwoTone.js b/packages/material-ui-icons/src/FormatQuoteTwoTone.js new file mode 100644 index 00000000000000..e77c44e102c387 --- /dev/null +++ b/packages/material-ui-icons/src/FormatQuoteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatQuoteTwoTone'); diff --git a/packages/material-ui-icons/src/FormatShapesOutlined.js b/packages/material-ui-icons/src/FormatShapesOutlined.js new file mode 100644 index 00000000000000..937292b5248277 --- /dev/null +++ b/packages/material-ui-icons/src/FormatShapesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatShapesOutlined'); diff --git a/packages/material-ui-icons/src/FormatShapesRounded.js b/packages/material-ui-icons/src/FormatShapesRounded.js new file mode 100644 index 00000000000000..1ff70fd37030e4 --- /dev/null +++ b/packages/material-ui-icons/src/FormatShapesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatShapesRounded'); diff --git a/packages/material-ui-icons/src/FormatShapesSharp.js b/packages/material-ui-icons/src/FormatShapesSharp.js new file mode 100644 index 00000000000000..c31fd8d6fd7bcf --- /dev/null +++ b/packages/material-ui-icons/src/FormatShapesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatShapesSharp'); diff --git a/packages/material-ui-icons/src/FormatShapesTwoTone.js b/packages/material-ui-icons/src/FormatShapesTwoTone.js new file mode 100644 index 00000000000000..f9e835f8709c6c --- /dev/null +++ b/packages/material-ui-icons/src/FormatShapesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatShapesTwoTone'); diff --git a/packages/material-ui-icons/src/FormatSizeOutlined.js b/packages/material-ui-icons/src/FormatSizeOutlined.js new file mode 100644 index 00000000000000..6a53f3b88d90b0 --- /dev/null +++ b/packages/material-ui-icons/src/FormatSizeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatSizeOutlined'); diff --git a/packages/material-ui-icons/src/FormatSizeRounded.js b/packages/material-ui-icons/src/FormatSizeRounded.js new file mode 100644 index 00000000000000..a06e92cbfe7e61 --- /dev/null +++ b/packages/material-ui-icons/src/FormatSizeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatSizeRounded'); diff --git a/packages/material-ui-icons/src/FormatSizeSharp.js b/packages/material-ui-icons/src/FormatSizeSharp.js new file mode 100644 index 00000000000000..0d153ebcf84898 --- /dev/null +++ b/packages/material-ui-icons/src/FormatSizeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatSizeSharp'); diff --git a/packages/material-ui-icons/src/FormatSizeTwoTone.js b/packages/material-ui-icons/src/FormatSizeTwoTone.js new file mode 100644 index 00000000000000..0ef1bdc55d1e1b --- /dev/null +++ b/packages/material-ui-icons/src/FormatSizeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatSizeTwoTone'); diff --git a/packages/material-ui-icons/src/FormatStrikethroughOutlined.js b/packages/material-ui-icons/src/FormatStrikethroughOutlined.js new file mode 100644 index 00000000000000..9b7acd3a65d99b --- /dev/null +++ b/packages/material-ui-icons/src/FormatStrikethroughOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatStrikethroughOutlined'); diff --git a/packages/material-ui-icons/src/FormatStrikethroughRounded.js b/packages/material-ui-icons/src/FormatStrikethroughRounded.js new file mode 100644 index 00000000000000..0776c5680cc7d1 --- /dev/null +++ b/packages/material-ui-icons/src/FormatStrikethroughRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatStrikethroughRounded'); diff --git a/packages/material-ui-icons/src/FormatStrikethroughSharp.js b/packages/material-ui-icons/src/FormatStrikethroughSharp.js new file mode 100644 index 00000000000000..05ba52d5a1d165 --- /dev/null +++ b/packages/material-ui-icons/src/FormatStrikethroughSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatStrikethroughSharp'); diff --git a/packages/material-ui-icons/src/FormatStrikethroughTwoTone.js b/packages/material-ui-icons/src/FormatStrikethroughTwoTone.js new file mode 100644 index 00000000000000..573169a39157f8 --- /dev/null +++ b/packages/material-ui-icons/src/FormatStrikethroughTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatStrikethroughTwoTone'); diff --git a/packages/material-ui-icons/src/FormatTextdirectionLToROutlined.js b/packages/material-ui-icons/src/FormatTextdirectionLToROutlined.js new file mode 100644 index 00000000000000..4565a1626f295e --- /dev/null +++ b/packages/material-ui-icons/src/FormatTextdirectionLToROutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatTextdirectionLToROutlined'); diff --git a/packages/material-ui-icons/src/FormatTextdirectionLToRRounded.js b/packages/material-ui-icons/src/FormatTextdirectionLToRRounded.js new file mode 100644 index 00000000000000..d99e4b1f0ec8f9 --- /dev/null +++ b/packages/material-ui-icons/src/FormatTextdirectionLToRRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatTextdirectionLToRRounded'); diff --git a/packages/material-ui-icons/src/FormatTextdirectionLToRSharp.js b/packages/material-ui-icons/src/FormatTextdirectionLToRSharp.js new file mode 100644 index 00000000000000..425aec08e7dd29 --- /dev/null +++ b/packages/material-ui-icons/src/FormatTextdirectionLToRSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatTextdirectionLToRSharp'); diff --git a/packages/material-ui-icons/src/FormatTextdirectionLToRTwoTone.js b/packages/material-ui-icons/src/FormatTextdirectionLToRTwoTone.js new file mode 100644 index 00000000000000..b3d6f8f4c34b9f --- /dev/null +++ b/packages/material-ui-icons/src/FormatTextdirectionLToRTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatTextdirectionLToRTwoTone'); diff --git a/packages/material-ui-icons/src/FormatTextdirectionRToLOutlined.js b/packages/material-ui-icons/src/FormatTextdirectionRToLOutlined.js new file mode 100644 index 00000000000000..4192bf7caf0a80 --- /dev/null +++ b/packages/material-ui-icons/src/FormatTextdirectionRToLOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatTextdirectionRToLOutlined'); diff --git a/packages/material-ui-icons/src/FormatTextdirectionRToLRounded.js b/packages/material-ui-icons/src/FormatTextdirectionRToLRounded.js new file mode 100644 index 00000000000000..f8380df1041a05 --- /dev/null +++ b/packages/material-ui-icons/src/FormatTextdirectionRToLRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatTextdirectionRToLRounded'); diff --git a/packages/material-ui-icons/src/FormatTextdirectionRToLSharp.js b/packages/material-ui-icons/src/FormatTextdirectionRToLSharp.js new file mode 100644 index 00000000000000..8d1bf355603eab --- /dev/null +++ b/packages/material-ui-icons/src/FormatTextdirectionRToLSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatTextdirectionRToLSharp'); diff --git a/packages/material-ui-icons/src/FormatTextdirectionRToLTwoTone.js b/packages/material-ui-icons/src/FormatTextdirectionRToLTwoTone.js new file mode 100644 index 00000000000000..76216c56857001 --- /dev/null +++ b/packages/material-ui-icons/src/FormatTextdirectionRToLTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatTextdirectionRToLTwoTone'); diff --git a/packages/material-ui-icons/src/FormatUnderlinedOutlined.js b/packages/material-ui-icons/src/FormatUnderlinedOutlined.js new file mode 100644 index 00000000000000..e772ab0f991029 --- /dev/null +++ b/packages/material-ui-icons/src/FormatUnderlinedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatUnderlinedOutlined'); diff --git a/packages/material-ui-icons/src/FormatUnderlinedRounded.js b/packages/material-ui-icons/src/FormatUnderlinedRounded.js new file mode 100644 index 00000000000000..f94c5bba254090 --- /dev/null +++ b/packages/material-ui-icons/src/FormatUnderlinedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatUnderlinedRounded'); diff --git a/packages/material-ui-icons/src/FormatUnderlinedSharp.js b/packages/material-ui-icons/src/FormatUnderlinedSharp.js new file mode 100644 index 00000000000000..5e1af6ffc73641 --- /dev/null +++ b/packages/material-ui-icons/src/FormatUnderlinedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatUnderlinedSharp'); diff --git a/packages/material-ui-icons/src/FormatUnderlinedTwoTone.js b/packages/material-ui-icons/src/FormatUnderlinedTwoTone.js new file mode 100644 index 00000000000000..e7e66daecc3b4d --- /dev/null +++ b/packages/material-ui-icons/src/FormatUnderlinedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FormatUnderlinedTwoTone'); diff --git a/packages/material-ui-icons/src/ForumOutlined.js b/packages/material-ui-icons/src/ForumOutlined.js new file mode 100644 index 00000000000000..06c69645bb3584 --- /dev/null +++ b/packages/material-ui-icons/src/ForumOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ForumOutlined'); diff --git a/packages/material-ui-icons/src/ForumRounded.js b/packages/material-ui-icons/src/ForumRounded.js new file mode 100644 index 00000000000000..0c2d31ed47932e --- /dev/null +++ b/packages/material-ui-icons/src/ForumRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ForumRounded'); diff --git a/packages/material-ui-icons/src/ForumSharp.js b/packages/material-ui-icons/src/ForumSharp.js new file mode 100644 index 00000000000000..9fcdc35c6c403d --- /dev/null +++ b/packages/material-ui-icons/src/ForumSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ForumSharp'); diff --git a/packages/material-ui-icons/src/ForumTwoTone.js b/packages/material-ui-icons/src/ForumTwoTone.js new file mode 100644 index 00000000000000..d1c9d5f3f17d08 --- /dev/null +++ b/packages/material-ui-icons/src/ForumTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ForumTwoTone'); diff --git a/packages/material-ui-icons/src/Forward10.js b/packages/material-ui-icons/src/Forward10.js index 67eefe0f900b45..59b4804aef469a 100644 --- a/packages/material-ui-icons/src/Forward10.js +++ b/packages/material-ui-icons/src/Forward10.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Forward10'); diff --git a/packages/material-ui-icons/src/Forward10Outlined.js b/packages/material-ui-icons/src/Forward10Outlined.js new file mode 100644 index 00000000000000..4b546953c94acd --- /dev/null +++ b/packages/material-ui-icons/src/Forward10Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward10Outlined'); diff --git a/packages/material-ui-icons/src/Forward10Rounded.js b/packages/material-ui-icons/src/Forward10Rounded.js new file mode 100644 index 00000000000000..f4bc7d66f76154 --- /dev/null +++ b/packages/material-ui-icons/src/Forward10Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward10Rounded'); diff --git a/packages/material-ui-icons/src/Forward10Sharp.js b/packages/material-ui-icons/src/Forward10Sharp.js new file mode 100644 index 00000000000000..eaacaba3070ba9 --- /dev/null +++ b/packages/material-ui-icons/src/Forward10Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward10Sharp'); diff --git a/packages/material-ui-icons/src/Forward10TwoTone.js b/packages/material-ui-icons/src/Forward10TwoTone.js new file mode 100644 index 00000000000000..ab3296601d4b06 --- /dev/null +++ b/packages/material-ui-icons/src/Forward10TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward10TwoTone'); diff --git a/packages/material-ui-icons/src/Forward30.js b/packages/material-ui-icons/src/Forward30.js index 292bf09a4ee837..e89a8fce276449 100644 --- a/packages/material-ui-icons/src/Forward30.js +++ b/packages/material-ui-icons/src/Forward30.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Forward30'); diff --git a/packages/material-ui-icons/src/Forward30Outlined.js b/packages/material-ui-icons/src/Forward30Outlined.js new file mode 100644 index 00000000000000..265b544255ec79 --- /dev/null +++ b/packages/material-ui-icons/src/Forward30Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward30Outlined'); diff --git a/packages/material-ui-icons/src/Forward30Rounded.js b/packages/material-ui-icons/src/Forward30Rounded.js new file mode 100644 index 00000000000000..b6ebfb18d6cdf6 --- /dev/null +++ b/packages/material-ui-icons/src/Forward30Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward30Rounded'); diff --git a/packages/material-ui-icons/src/Forward30Sharp.js b/packages/material-ui-icons/src/Forward30Sharp.js new file mode 100644 index 00000000000000..8cea2c0af9eac3 --- /dev/null +++ b/packages/material-ui-icons/src/Forward30Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward30Sharp'); diff --git a/packages/material-ui-icons/src/Forward30TwoTone.js b/packages/material-ui-icons/src/Forward30TwoTone.js new file mode 100644 index 00000000000000..2e056a6e6a629d --- /dev/null +++ b/packages/material-ui-icons/src/Forward30TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward30TwoTone'); diff --git a/packages/material-ui-icons/src/Forward5.js b/packages/material-ui-icons/src/Forward5.js index 792185faa9fe34..62ebf79dbab0e8 100644 --- a/packages/material-ui-icons/src/Forward5.js +++ b/packages/material-ui-icons/src/Forward5.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Forward5'); diff --git a/packages/material-ui-icons/src/Forward5Outlined.js b/packages/material-ui-icons/src/Forward5Outlined.js new file mode 100644 index 00000000000000..b9c063ee23b0e0 --- /dev/null +++ b/packages/material-ui-icons/src/Forward5Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward5Outlined'); diff --git a/packages/material-ui-icons/src/Forward5Rounded.js b/packages/material-ui-icons/src/Forward5Rounded.js new file mode 100644 index 00000000000000..c244cbc8c9f609 --- /dev/null +++ b/packages/material-ui-icons/src/Forward5Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward5Rounded'); diff --git a/packages/material-ui-icons/src/Forward5Sharp.js b/packages/material-ui-icons/src/Forward5Sharp.js new file mode 100644 index 00000000000000..e8f64ea80e79d9 --- /dev/null +++ b/packages/material-ui-icons/src/Forward5Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward5Sharp'); diff --git a/packages/material-ui-icons/src/Forward5TwoTone.js b/packages/material-ui-icons/src/Forward5TwoTone.js new file mode 100644 index 00000000000000..3480a9b4751814 --- /dev/null +++ b/packages/material-ui-icons/src/Forward5TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Forward5TwoTone'); diff --git a/packages/material-ui-icons/src/ForwardOutlined.js b/packages/material-ui-icons/src/ForwardOutlined.js new file mode 100644 index 00000000000000..655253acfa751d --- /dev/null +++ b/packages/material-ui-icons/src/ForwardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ForwardOutlined'); diff --git a/packages/material-ui-icons/src/ForwardRounded.js b/packages/material-ui-icons/src/ForwardRounded.js new file mode 100644 index 00000000000000..d475b403e69349 --- /dev/null +++ b/packages/material-ui-icons/src/ForwardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ForwardRounded'); diff --git a/packages/material-ui-icons/src/ForwardSharp.js b/packages/material-ui-icons/src/ForwardSharp.js new file mode 100644 index 00000000000000..2de1e89c86ce79 --- /dev/null +++ b/packages/material-ui-icons/src/ForwardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ForwardSharp'); diff --git a/packages/material-ui-icons/src/ForwardTwoTone.js b/packages/material-ui-icons/src/ForwardTwoTone.js new file mode 100644 index 00000000000000..cb464dd428ec3a --- /dev/null +++ b/packages/material-ui-icons/src/ForwardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ForwardTwoTone'); diff --git a/packages/material-ui-icons/src/FourK.js b/packages/material-ui-icons/src/FourK.js new file mode 100644 index 00000000000000..3046cfdbfe69ce --- /dev/null +++ b/packages/material-ui-icons/src/FourK.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FourK'); diff --git a/packages/material-ui-icons/src/FourKOutlined.js b/packages/material-ui-icons/src/FourKOutlined.js new file mode 100644 index 00000000000000..b64934c6fa879a --- /dev/null +++ b/packages/material-ui-icons/src/FourKOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FourKOutlined'); diff --git a/packages/material-ui-icons/src/FourKRounded.js b/packages/material-ui-icons/src/FourKRounded.js new file mode 100644 index 00000000000000..49e7546172a247 --- /dev/null +++ b/packages/material-ui-icons/src/FourKRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FourKRounded'); diff --git a/packages/material-ui-icons/src/FourKSharp.js b/packages/material-ui-icons/src/FourKSharp.js new file mode 100644 index 00000000000000..7093af9427ed7f --- /dev/null +++ b/packages/material-ui-icons/src/FourKSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FourKSharp'); diff --git a/packages/material-ui-icons/src/FourKTwoTone.js b/packages/material-ui-icons/src/FourKTwoTone.js new file mode 100644 index 00000000000000..a61d11b7f7d83c --- /dev/null +++ b/packages/material-ui-icons/src/FourKTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FourKTwoTone'); diff --git a/packages/material-ui-icons/src/FreeBreakfast.js b/packages/material-ui-icons/src/FreeBreakfast.js index fbd01bfd36d7c6..bbf4d98dde7fa9 100644 --- a/packages/material-ui-icons/src/FreeBreakfast.js +++ b/packages/material-ui-icons/src/FreeBreakfast.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'FreeBreakfast'); diff --git a/packages/material-ui-icons/src/FreeBreakfastOutlined.js b/packages/material-ui-icons/src/FreeBreakfastOutlined.js new file mode 100644 index 00000000000000..1d8ac6aff606e8 --- /dev/null +++ b/packages/material-ui-icons/src/FreeBreakfastOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FreeBreakfastOutlined'); diff --git a/packages/material-ui-icons/src/FreeBreakfastRounded.js b/packages/material-ui-icons/src/FreeBreakfastRounded.js new file mode 100644 index 00000000000000..0445d516f88d8e --- /dev/null +++ b/packages/material-ui-icons/src/FreeBreakfastRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FreeBreakfastRounded'); diff --git a/packages/material-ui-icons/src/FreeBreakfastSharp.js b/packages/material-ui-icons/src/FreeBreakfastSharp.js new file mode 100644 index 00000000000000..8b25cb4d8ebddd --- /dev/null +++ b/packages/material-ui-icons/src/FreeBreakfastSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FreeBreakfastSharp'); diff --git a/packages/material-ui-icons/src/FreeBreakfastTwoTone.js b/packages/material-ui-icons/src/FreeBreakfastTwoTone.js new file mode 100644 index 00000000000000..2a370c9354391c --- /dev/null +++ b/packages/material-ui-icons/src/FreeBreakfastTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FreeBreakfastTwoTone'); diff --git a/packages/material-ui-icons/src/FullscreenExitOutlined.js b/packages/material-ui-icons/src/FullscreenExitOutlined.js new file mode 100644 index 00000000000000..d8d057530aa4ad --- /dev/null +++ b/packages/material-ui-icons/src/FullscreenExitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FullscreenExitOutlined'); diff --git a/packages/material-ui-icons/src/FullscreenExitRounded.js b/packages/material-ui-icons/src/FullscreenExitRounded.js new file mode 100644 index 00000000000000..1816db7f767e86 --- /dev/null +++ b/packages/material-ui-icons/src/FullscreenExitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FullscreenExitRounded'); diff --git a/packages/material-ui-icons/src/FullscreenExitSharp.js b/packages/material-ui-icons/src/FullscreenExitSharp.js new file mode 100644 index 00000000000000..713a2c23edf3ba --- /dev/null +++ b/packages/material-ui-icons/src/FullscreenExitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FullscreenExitSharp'); diff --git a/packages/material-ui-icons/src/FullscreenExitTwoTone.js b/packages/material-ui-icons/src/FullscreenExitTwoTone.js new file mode 100644 index 00000000000000..ae48ded18e4f67 --- /dev/null +++ b/packages/material-ui-icons/src/FullscreenExitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FullscreenExitTwoTone'); diff --git a/packages/material-ui-icons/src/FullscreenOutlined.js b/packages/material-ui-icons/src/FullscreenOutlined.js new file mode 100644 index 00000000000000..92c5b2f67e8063 --- /dev/null +++ b/packages/material-ui-icons/src/FullscreenOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FullscreenOutlined'); diff --git a/packages/material-ui-icons/src/FullscreenRounded.js b/packages/material-ui-icons/src/FullscreenRounded.js new file mode 100644 index 00000000000000..296176d5f5b75c --- /dev/null +++ b/packages/material-ui-icons/src/FullscreenRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FullscreenRounded'); diff --git a/packages/material-ui-icons/src/FullscreenSharp.js b/packages/material-ui-icons/src/FullscreenSharp.js new file mode 100644 index 00000000000000..738c7d74b56d07 --- /dev/null +++ b/packages/material-ui-icons/src/FullscreenSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FullscreenSharp'); diff --git a/packages/material-ui-icons/src/FullscreenTwoTone.js b/packages/material-ui-icons/src/FullscreenTwoTone.js new file mode 100644 index 00000000000000..b5329266f7df54 --- /dev/null +++ b/packages/material-ui-icons/src/FullscreenTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FullscreenTwoTone'); diff --git a/packages/material-ui-icons/src/FunctionsOutlined.js b/packages/material-ui-icons/src/FunctionsOutlined.js new file mode 100644 index 00000000000000..74c72c872bed2b --- /dev/null +++ b/packages/material-ui-icons/src/FunctionsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FunctionsOutlined'); diff --git a/packages/material-ui-icons/src/FunctionsRounded.js b/packages/material-ui-icons/src/FunctionsRounded.js new file mode 100644 index 00000000000000..2fab8b2795b77d --- /dev/null +++ b/packages/material-ui-icons/src/FunctionsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FunctionsRounded'); diff --git a/packages/material-ui-icons/src/FunctionsSharp.js b/packages/material-ui-icons/src/FunctionsSharp.js new file mode 100644 index 00000000000000..c2d0d9b7ea100e --- /dev/null +++ b/packages/material-ui-icons/src/FunctionsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FunctionsSharp'); diff --git a/packages/material-ui-icons/src/FunctionsTwoTone.js b/packages/material-ui-icons/src/FunctionsTwoTone.js new file mode 100644 index 00000000000000..484facacd501bf --- /dev/null +++ b/packages/material-ui-icons/src/FunctionsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'FunctionsTwoTone'); diff --git a/packages/material-ui-icons/src/GTranslate.js b/packages/material-ui-icons/src/GTranslate.js index 2b8a60bd75a285..a1839c7a74da9e 100644 --- a/packages/material-ui-icons/src/GTranslate.js +++ b/packages/material-ui-icons/src/GTranslate.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'GTranslate'); diff --git a/packages/material-ui-icons/src/GTranslateOutlined.js b/packages/material-ui-icons/src/GTranslateOutlined.js new file mode 100644 index 00000000000000..7fc08a8d0d61db --- /dev/null +++ b/packages/material-ui-icons/src/GTranslateOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GTranslateOutlined'); diff --git a/packages/material-ui-icons/src/GTranslateRounded.js b/packages/material-ui-icons/src/GTranslateRounded.js new file mode 100644 index 00000000000000..d8af7a55452900 --- /dev/null +++ b/packages/material-ui-icons/src/GTranslateRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GTranslateRounded'); diff --git a/packages/material-ui-icons/src/GTranslateSharp.js b/packages/material-ui-icons/src/GTranslateSharp.js new file mode 100644 index 00000000000000..21f80f15ce1643 --- /dev/null +++ b/packages/material-ui-icons/src/GTranslateSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GTranslateSharp'); diff --git a/packages/material-ui-icons/src/GTranslateTwoTone.js b/packages/material-ui-icons/src/GTranslateTwoTone.js new file mode 100644 index 00000000000000..2d723eacab4ada --- /dev/null +++ b/packages/material-ui-icons/src/GTranslateTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GTranslateTwoTone'); diff --git a/packages/material-ui-icons/src/GamepadOutlined.js b/packages/material-ui-icons/src/GamepadOutlined.js new file mode 100644 index 00000000000000..e6de2d38fcb153 --- /dev/null +++ b/packages/material-ui-icons/src/GamepadOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GamepadOutlined'); diff --git a/packages/material-ui-icons/src/GamepadRounded.js b/packages/material-ui-icons/src/GamepadRounded.js new file mode 100644 index 00000000000000..11526e74c5ec68 --- /dev/null +++ b/packages/material-ui-icons/src/GamepadRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GamepadRounded'); diff --git a/packages/material-ui-icons/src/GamepadSharp.js b/packages/material-ui-icons/src/GamepadSharp.js new file mode 100644 index 00000000000000..0d615c522a2931 --- /dev/null +++ b/packages/material-ui-icons/src/GamepadSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GamepadSharp'); diff --git a/packages/material-ui-icons/src/GamepadTwoTone.js b/packages/material-ui-icons/src/GamepadTwoTone.js new file mode 100644 index 00000000000000..355f7f2ccf61b1 --- /dev/null +++ b/packages/material-ui-icons/src/GamepadTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GamepadTwoTone'); diff --git a/packages/material-ui-icons/src/GamesOutlined.js b/packages/material-ui-icons/src/GamesOutlined.js new file mode 100644 index 00000000000000..958233a38d3aa3 --- /dev/null +++ b/packages/material-ui-icons/src/GamesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GamesOutlined'); diff --git a/packages/material-ui-icons/src/GamesRounded.js b/packages/material-ui-icons/src/GamesRounded.js new file mode 100644 index 00000000000000..c45fba1174c884 --- /dev/null +++ b/packages/material-ui-icons/src/GamesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GamesRounded'); diff --git a/packages/material-ui-icons/src/GamesSharp.js b/packages/material-ui-icons/src/GamesSharp.js new file mode 100644 index 00000000000000..6ae996eedeb312 --- /dev/null +++ b/packages/material-ui-icons/src/GamesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GamesSharp'); diff --git a/packages/material-ui-icons/src/GamesTwoTone.js b/packages/material-ui-icons/src/GamesTwoTone.js new file mode 100644 index 00000000000000..d6030e792d1a0e --- /dev/null +++ b/packages/material-ui-icons/src/GamesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GamesTwoTone'); diff --git a/packages/material-ui-icons/src/Gavel.js b/packages/material-ui-icons/src/Gavel.js index 1c08184224ed38..b2e47da9386137 100644 --- a/packages/material-ui-icons/src/Gavel.js +++ b/packages/material-ui-icons/src/Gavel.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Gavel'); diff --git a/packages/material-ui-icons/src/GavelOutlined.js b/packages/material-ui-icons/src/GavelOutlined.js new file mode 100644 index 00000000000000..ff60f2eee856ff --- /dev/null +++ b/packages/material-ui-icons/src/GavelOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GavelOutlined'); diff --git a/packages/material-ui-icons/src/GavelRounded.js b/packages/material-ui-icons/src/GavelRounded.js new file mode 100644 index 00000000000000..5e5eea049d6160 --- /dev/null +++ b/packages/material-ui-icons/src/GavelRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GavelRounded'); diff --git a/packages/material-ui-icons/src/GavelSharp.js b/packages/material-ui-icons/src/GavelSharp.js new file mode 100644 index 00000000000000..3c859e737ccae0 --- /dev/null +++ b/packages/material-ui-icons/src/GavelSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GavelSharp'); diff --git a/packages/material-ui-icons/src/GavelTwoTone.js b/packages/material-ui-icons/src/GavelTwoTone.js new file mode 100644 index 00000000000000..a0cc3696040c48 --- /dev/null +++ b/packages/material-ui-icons/src/GavelTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GavelTwoTone'); diff --git a/packages/material-ui-icons/src/GestureOutlined.js b/packages/material-ui-icons/src/GestureOutlined.js new file mode 100644 index 00000000000000..1f3970ec668dc5 --- /dev/null +++ b/packages/material-ui-icons/src/GestureOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GestureOutlined'); diff --git a/packages/material-ui-icons/src/GestureRounded.js b/packages/material-ui-icons/src/GestureRounded.js new file mode 100644 index 00000000000000..2acef290963368 --- /dev/null +++ b/packages/material-ui-icons/src/GestureRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GestureRounded'); diff --git a/packages/material-ui-icons/src/GestureSharp.js b/packages/material-ui-icons/src/GestureSharp.js new file mode 100644 index 00000000000000..0450c9974c5ebc --- /dev/null +++ b/packages/material-ui-icons/src/GestureSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GestureSharp'); diff --git a/packages/material-ui-icons/src/GestureTwoTone.js b/packages/material-ui-icons/src/GestureTwoTone.js new file mode 100644 index 00000000000000..73e2951442082b --- /dev/null +++ b/packages/material-ui-icons/src/GestureTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GestureTwoTone'); diff --git a/packages/material-ui-icons/src/GetAppOutlined.js b/packages/material-ui-icons/src/GetAppOutlined.js new file mode 100644 index 00000000000000..dad450961dc841 --- /dev/null +++ b/packages/material-ui-icons/src/GetAppOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GetAppOutlined'); diff --git a/packages/material-ui-icons/src/GetAppRounded.js b/packages/material-ui-icons/src/GetAppRounded.js new file mode 100644 index 00000000000000..08ee182e86dc01 --- /dev/null +++ b/packages/material-ui-icons/src/GetAppRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GetAppRounded'); diff --git a/packages/material-ui-icons/src/FileDownload.js b/packages/material-ui-icons/src/GetAppSharp.js similarity index 90% rename from packages/material-ui-icons/src/FileDownload.js rename to packages/material-ui-icons/src/GetAppSharp.js index 08ea58053f7bdb..403d58cf757a29 100644 --- a/packages/material-ui-icons/src/FileDownload.js +++ b/packages/material-ui-icons/src/GetAppSharp.js @@ -3,4 +3,4 @@ import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( -, 'FileDownload'); +, 'GetAppSharp'); diff --git a/packages/material-ui-icons/src/GetAppTwoTone.js b/packages/material-ui-icons/src/GetAppTwoTone.js new file mode 100644 index 00000000000000..ec3148484d4931 --- /dev/null +++ b/packages/material-ui-icons/src/GetAppTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GetAppTwoTone'); diff --git a/packages/material-ui-icons/src/Gif.js b/packages/material-ui-icons/src/Gif.js index fa236296b49d96..7f0f7e60744f5c 100644 --- a/packages/material-ui-icons/src/Gif.js +++ b/packages/material-ui-icons/src/Gif.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Gif'); diff --git a/packages/material-ui-icons/src/GifOutlined.js b/packages/material-ui-icons/src/GifOutlined.js new file mode 100644 index 00000000000000..79e725beda8e44 --- /dev/null +++ b/packages/material-ui-icons/src/GifOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GifOutlined'); diff --git a/packages/material-ui-icons/src/GifRounded.js b/packages/material-ui-icons/src/GifRounded.js new file mode 100644 index 00000000000000..7827d399b8d3cd --- /dev/null +++ b/packages/material-ui-icons/src/GifRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GifRounded'); diff --git a/packages/material-ui-icons/src/GifSharp.js b/packages/material-ui-icons/src/GifSharp.js new file mode 100644 index 00000000000000..13eeb8e7c24a93 --- /dev/null +++ b/packages/material-ui-icons/src/GifSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GifSharp'); diff --git a/packages/material-ui-icons/src/GifTwoTone.js b/packages/material-ui-icons/src/GifTwoTone.js new file mode 100644 index 00000000000000..22848e0b8dd59a --- /dev/null +++ b/packages/material-ui-icons/src/GifTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GifTwoTone'); diff --git a/packages/material-ui-icons/src/GolfCourseOutlined.js b/packages/material-ui-icons/src/GolfCourseOutlined.js new file mode 100644 index 00000000000000..14a8f67f1be278 --- /dev/null +++ b/packages/material-ui-icons/src/GolfCourseOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GolfCourseOutlined'); diff --git a/packages/material-ui-icons/src/GolfCourseRounded.js b/packages/material-ui-icons/src/GolfCourseRounded.js new file mode 100644 index 00000000000000..8e0ed5b0396b53 --- /dev/null +++ b/packages/material-ui-icons/src/GolfCourseRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GolfCourseRounded'); diff --git a/packages/material-ui-icons/src/GolfCourseSharp.js b/packages/material-ui-icons/src/GolfCourseSharp.js new file mode 100644 index 00000000000000..4f6df336e82e01 --- /dev/null +++ b/packages/material-ui-icons/src/GolfCourseSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GolfCourseSharp'); diff --git a/packages/material-ui-icons/src/GolfCourseTwoTone.js b/packages/material-ui-icons/src/GolfCourseTwoTone.js new file mode 100644 index 00000000000000..f142309cd79546 --- /dev/null +++ b/packages/material-ui-icons/src/GolfCourseTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GolfCourseTwoTone'); diff --git a/packages/material-ui-icons/src/GpsFixed.js b/packages/material-ui-icons/src/GpsFixed.js index f4d86e3d3ad0e9..04eca9d758426b 100644 --- a/packages/material-ui-icons/src/GpsFixed.js +++ b/packages/material-ui-icons/src/GpsFixed.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'GpsFixed'); diff --git a/packages/material-ui-icons/src/GpsFixedOutlined.js b/packages/material-ui-icons/src/GpsFixedOutlined.js new file mode 100644 index 00000000000000..327efe81168922 --- /dev/null +++ b/packages/material-ui-icons/src/GpsFixedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsFixedOutlined'); diff --git a/packages/material-ui-icons/src/GpsFixedRounded.js b/packages/material-ui-icons/src/GpsFixedRounded.js new file mode 100644 index 00000000000000..3adc564dfdb33e --- /dev/null +++ b/packages/material-ui-icons/src/GpsFixedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsFixedRounded'); diff --git a/packages/material-ui-icons/src/GpsFixedSharp.js b/packages/material-ui-icons/src/GpsFixedSharp.js new file mode 100644 index 00000000000000..b025073e4f851a --- /dev/null +++ b/packages/material-ui-icons/src/GpsFixedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsFixedSharp'); diff --git a/packages/material-ui-icons/src/GpsFixedTwoTone.js b/packages/material-ui-icons/src/GpsFixedTwoTone.js new file mode 100644 index 00000000000000..9a459d36791a42 --- /dev/null +++ b/packages/material-ui-icons/src/GpsFixedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsFixedTwoTone'); diff --git a/packages/material-ui-icons/src/GpsNotFixed.js b/packages/material-ui-icons/src/GpsNotFixed.js index f5bcd544a2cd9d..0e6bc90a51902b 100644 --- a/packages/material-ui-icons/src/GpsNotFixed.js +++ b/packages/material-ui-icons/src/GpsNotFixed.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'GpsNotFixed'); diff --git a/packages/material-ui-icons/src/GpsNotFixedOutlined.js b/packages/material-ui-icons/src/GpsNotFixedOutlined.js new file mode 100644 index 00000000000000..a3aac65474b60d --- /dev/null +++ b/packages/material-ui-icons/src/GpsNotFixedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsNotFixedOutlined'); diff --git a/packages/material-ui-icons/src/GpsNotFixedRounded.js b/packages/material-ui-icons/src/GpsNotFixedRounded.js new file mode 100644 index 00000000000000..86fc746d85e05c --- /dev/null +++ b/packages/material-ui-icons/src/GpsNotFixedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsNotFixedRounded'); diff --git a/packages/material-ui-icons/src/GpsNotFixedSharp.js b/packages/material-ui-icons/src/GpsNotFixedSharp.js new file mode 100644 index 00000000000000..e025e50cf3ae4a --- /dev/null +++ b/packages/material-ui-icons/src/GpsNotFixedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsNotFixedSharp'); diff --git a/packages/material-ui-icons/src/GpsNotFixedTwoTone.js b/packages/material-ui-icons/src/GpsNotFixedTwoTone.js new file mode 100644 index 00000000000000..fbb3cbf17bb1e1 --- /dev/null +++ b/packages/material-ui-icons/src/GpsNotFixedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsNotFixedTwoTone'); diff --git a/packages/material-ui-icons/src/GpsOff.js b/packages/material-ui-icons/src/GpsOff.js index 5d3143f88f9da3..2650081f5404fe 100644 --- a/packages/material-ui-icons/src/GpsOff.js +++ b/packages/material-ui-icons/src/GpsOff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'GpsOff'); diff --git a/packages/material-ui-icons/src/GpsOffOutlined.js b/packages/material-ui-icons/src/GpsOffOutlined.js new file mode 100644 index 00000000000000..eb27483f2d40fb --- /dev/null +++ b/packages/material-ui-icons/src/GpsOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsOffOutlined'); diff --git a/packages/material-ui-icons/src/GpsOffRounded.js b/packages/material-ui-icons/src/GpsOffRounded.js new file mode 100644 index 00000000000000..af0d48ffbb0007 --- /dev/null +++ b/packages/material-ui-icons/src/GpsOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsOffRounded'); diff --git a/packages/material-ui-icons/src/GpsOffSharp.js b/packages/material-ui-icons/src/GpsOffSharp.js new file mode 100644 index 00000000000000..015c3a36343480 --- /dev/null +++ b/packages/material-ui-icons/src/GpsOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsOffSharp'); diff --git a/packages/material-ui-icons/src/GpsOffTwoTone.js b/packages/material-ui-icons/src/GpsOffTwoTone.js new file mode 100644 index 00000000000000..ec271cddfd9c7e --- /dev/null +++ b/packages/material-ui-icons/src/GpsOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GpsOffTwoTone'); diff --git a/packages/material-ui-icons/src/GradeOutlined.js b/packages/material-ui-icons/src/GradeOutlined.js new file mode 100644 index 00000000000000..a40805e154d769 --- /dev/null +++ b/packages/material-ui-icons/src/GradeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GradeOutlined'); diff --git a/packages/material-ui-icons/src/GradeRounded.js b/packages/material-ui-icons/src/GradeRounded.js new file mode 100644 index 00000000000000..83b0903bfb9f69 --- /dev/null +++ b/packages/material-ui-icons/src/GradeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GradeRounded'); diff --git a/packages/material-ui-icons/src/GradeSharp.js b/packages/material-ui-icons/src/GradeSharp.js new file mode 100644 index 00000000000000..1af6f011af79fa --- /dev/null +++ b/packages/material-ui-icons/src/GradeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GradeSharp'); diff --git a/packages/material-ui-icons/src/GradeTwoTone.js b/packages/material-ui-icons/src/GradeTwoTone.js new file mode 100644 index 00000000000000..7d9ec0fd5f52d2 --- /dev/null +++ b/packages/material-ui-icons/src/GradeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GradeTwoTone'); diff --git a/packages/material-ui-icons/src/GradientOutlined.js b/packages/material-ui-icons/src/GradientOutlined.js new file mode 100644 index 00000000000000..0c2f76d31bfba1 --- /dev/null +++ b/packages/material-ui-icons/src/GradientOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GradientOutlined'); diff --git a/packages/material-ui-icons/src/GradientRounded.js b/packages/material-ui-icons/src/GradientRounded.js new file mode 100644 index 00000000000000..40b94d803e00d3 --- /dev/null +++ b/packages/material-ui-icons/src/GradientRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GradientRounded'); diff --git a/packages/material-ui-icons/src/GradientSharp.js b/packages/material-ui-icons/src/GradientSharp.js new file mode 100644 index 00000000000000..d71e92106fda86 --- /dev/null +++ b/packages/material-ui-icons/src/GradientSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GradientSharp'); diff --git a/packages/material-ui-icons/src/GradientTwoTone.js b/packages/material-ui-icons/src/GradientTwoTone.js new file mode 100644 index 00000000000000..3c045868c04284 --- /dev/null +++ b/packages/material-ui-icons/src/GradientTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GradientTwoTone'); diff --git a/packages/material-ui-icons/src/GrainOutlined.js b/packages/material-ui-icons/src/GrainOutlined.js new file mode 100644 index 00000000000000..156aa48155647d --- /dev/null +++ b/packages/material-ui-icons/src/GrainOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GrainOutlined'); diff --git a/packages/material-ui-icons/src/GrainRounded.js b/packages/material-ui-icons/src/GrainRounded.js new file mode 100644 index 00000000000000..b20c6437577571 --- /dev/null +++ b/packages/material-ui-icons/src/GrainRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GrainRounded'); diff --git a/packages/material-ui-icons/src/GrainSharp.js b/packages/material-ui-icons/src/GrainSharp.js new file mode 100644 index 00000000000000..e69f439757b57c --- /dev/null +++ b/packages/material-ui-icons/src/GrainSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GrainSharp'); diff --git a/packages/material-ui-icons/src/GrainTwoTone.js b/packages/material-ui-icons/src/GrainTwoTone.js new file mode 100644 index 00000000000000..58dd8c352d5e0e --- /dev/null +++ b/packages/material-ui-icons/src/GrainTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GrainTwoTone'); diff --git a/packages/material-ui-icons/src/GraphicEqOutlined.js b/packages/material-ui-icons/src/GraphicEqOutlined.js new file mode 100644 index 00000000000000..57991e0219d79a --- /dev/null +++ b/packages/material-ui-icons/src/GraphicEqOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GraphicEqOutlined'); diff --git a/packages/material-ui-icons/src/GraphicEqRounded.js b/packages/material-ui-icons/src/GraphicEqRounded.js new file mode 100644 index 00000000000000..01e90dafb72fa4 --- /dev/null +++ b/packages/material-ui-icons/src/GraphicEqRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GraphicEqRounded'); diff --git a/packages/material-ui-icons/src/GraphicEqSharp.js b/packages/material-ui-icons/src/GraphicEqSharp.js new file mode 100644 index 00000000000000..929572c44d539e --- /dev/null +++ b/packages/material-ui-icons/src/GraphicEqSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GraphicEqSharp'); diff --git a/packages/material-ui-icons/src/GraphicEqTwoTone.js b/packages/material-ui-icons/src/GraphicEqTwoTone.js new file mode 100644 index 00000000000000..a1a1be835f2900 --- /dev/null +++ b/packages/material-ui-icons/src/GraphicEqTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GraphicEqTwoTone'); diff --git a/packages/material-ui-icons/src/GridOffOutlined.js b/packages/material-ui-icons/src/GridOffOutlined.js new file mode 100644 index 00000000000000..581457ac431763 --- /dev/null +++ b/packages/material-ui-icons/src/GridOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GridOffOutlined'); diff --git a/packages/material-ui-icons/src/GridOffRounded.js b/packages/material-ui-icons/src/GridOffRounded.js new file mode 100644 index 00000000000000..b4372d73e79b00 --- /dev/null +++ b/packages/material-ui-icons/src/GridOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GridOffRounded'); diff --git a/packages/material-ui-icons/src/GridOffSharp.js b/packages/material-ui-icons/src/GridOffSharp.js new file mode 100644 index 00000000000000..4efa6a29aa4838 --- /dev/null +++ b/packages/material-ui-icons/src/GridOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GridOffSharp'); diff --git a/packages/material-ui-icons/src/GridOffTwoTone.js b/packages/material-ui-icons/src/GridOffTwoTone.js new file mode 100644 index 00000000000000..941c42a4f5ab33 --- /dev/null +++ b/packages/material-ui-icons/src/GridOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GridOffTwoTone'); diff --git a/packages/material-ui-icons/src/GridOnOutlined.js b/packages/material-ui-icons/src/GridOnOutlined.js new file mode 100644 index 00000000000000..7b5fd3b1b12082 --- /dev/null +++ b/packages/material-ui-icons/src/GridOnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GridOnOutlined'); diff --git a/packages/material-ui-icons/src/GridOnRounded.js b/packages/material-ui-icons/src/GridOnRounded.js new file mode 100644 index 00000000000000..16e72ac8c9d40d --- /dev/null +++ b/packages/material-ui-icons/src/GridOnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GridOnRounded'); diff --git a/packages/material-ui-icons/src/GridOnSharp.js b/packages/material-ui-icons/src/GridOnSharp.js new file mode 100644 index 00000000000000..76c6ca9a3a1cea --- /dev/null +++ b/packages/material-ui-icons/src/GridOnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GridOnSharp'); diff --git a/packages/material-ui-icons/src/GridOnTwoTone.js b/packages/material-ui-icons/src/GridOnTwoTone.js new file mode 100644 index 00000000000000..17e720dc308e1f --- /dev/null +++ b/packages/material-ui-icons/src/GridOnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GridOnTwoTone'); diff --git a/packages/material-ui-icons/src/GroupAddOutlined.js b/packages/material-ui-icons/src/GroupAddOutlined.js new file mode 100644 index 00000000000000..9603bf9becd867 --- /dev/null +++ b/packages/material-ui-icons/src/GroupAddOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupAddOutlined'); diff --git a/packages/material-ui-icons/src/GroupAddRounded.js b/packages/material-ui-icons/src/GroupAddRounded.js new file mode 100644 index 00000000000000..2675c8e17bfcdf --- /dev/null +++ b/packages/material-ui-icons/src/GroupAddRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupAddRounded'); diff --git a/packages/material-ui-icons/src/GroupAddSharp.js b/packages/material-ui-icons/src/GroupAddSharp.js new file mode 100644 index 00000000000000..009fe21c95de73 --- /dev/null +++ b/packages/material-ui-icons/src/GroupAddSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupAddSharp'); diff --git a/packages/material-ui-icons/src/GroupAddTwoTone.js b/packages/material-ui-icons/src/GroupAddTwoTone.js new file mode 100644 index 00000000000000..95d33d302d4668 --- /dev/null +++ b/packages/material-ui-icons/src/GroupAddTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupAddTwoTone'); diff --git a/packages/material-ui-icons/src/GroupOutlined.js b/packages/material-ui-icons/src/GroupOutlined.js new file mode 100644 index 00000000000000..5e37ee72e80020 --- /dev/null +++ b/packages/material-ui-icons/src/GroupOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupOutlined'); diff --git a/packages/material-ui-icons/src/GroupRounded.js b/packages/material-ui-icons/src/GroupRounded.js new file mode 100644 index 00000000000000..76a6554a3c5cf5 --- /dev/null +++ b/packages/material-ui-icons/src/GroupRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupRounded'); diff --git a/packages/material-ui-icons/src/GroupSharp.js b/packages/material-ui-icons/src/GroupSharp.js new file mode 100644 index 00000000000000..9a0016e5cad7f1 --- /dev/null +++ b/packages/material-ui-icons/src/GroupSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupSharp'); diff --git a/packages/material-ui-icons/src/GroupTwoTone.js b/packages/material-ui-icons/src/GroupTwoTone.js new file mode 100644 index 00000000000000..1d8b27475e29e7 --- /dev/null +++ b/packages/material-ui-icons/src/GroupTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupTwoTone'); diff --git a/packages/material-ui-icons/src/GroupWork.js b/packages/material-ui-icons/src/GroupWork.js index 2200af266e96d3..f590cd453230c8 100644 --- a/packages/material-ui-icons/src/GroupWork.js +++ b/packages/material-ui-icons/src/GroupWork.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'GroupWork'); diff --git a/packages/material-ui-icons/src/GroupWorkOutlined.js b/packages/material-ui-icons/src/GroupWorkOutlined.js new file mode 100644 index 00000000000000..80428b32c0ca3a --- /dev/null +++ b/packages/material-ui-icons/src/GroupWorkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupWorkOutlined'); diff --git a/packages/material-ui-icons/src/GroupWorkRounded.js b/packages/material-ui-icons/src/GroupWorkRounded.js new file mode 100644 index 00000000000000..28b0b47f90a564 --- /dev/null +++ b/packages/material-ui-icons/src/GroupWorkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupWorkRounded'); diff --git a/packages/material-ui-icons/src/GroupWorkSharp.js b/packages/material-ui-icons/src/GroupWorkSharp.js new file mode 100644 index 00000000000000..c8e57457bb9dfa --- /dev/null +++ b/packages/material-ui-icons/src/GroupWorkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupWorkSharp'); diff --git a/packages/material-ui-icons/src/GroupWorkTwoTone.js b/packages/material-ui-icons/src/GroupWorkTwoTone.js new file mode 100644 index 00000000000000..d6b6ed80c79786 --- /dev/null +++ b/packages/material-ui-icons/src/GroupWorkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'GroupWorkTwoTone'); diff --git a/packages/material-ui-icons/src/Hd.js b/packages/material-ui-icons/src/Hd.js index 25998c84602731..c5a58d36be2078 100644 --- a/packages/material-ui-icons/src/Hd.js +++ b/packages/material-ui-icons/src/Hd.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Hd'); diff --git a/packages/material-ui-icons/src/HdOutlined.js b/packages/material-ui-icons/src/HdOutlined.js new file mode 100644 index 00000000000000..dec77308082c95 --- /dev/null +++ b/packages/material-ui-icons/src/HdOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdOutlined'); diff --git a/packages/material-ui-icons/src/HdRounded.js b/packages/material-ui-icons/src/HdRounded.js new file mode 100644 index 00000000000000..c6fe3bfb263568 --- /dev/null +++ b/packages/material-ui-icons/src/HdRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdRounded'); diff --git a/packages/material-ui-icons/src/HdSharp.js b/packages/material-ui-icons/src/HdSharp.js new file mode 100644 index 00000000000000..374b4907c3501f --- /dev/null +++ b/packages/material-ui-icons/src/HdSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdSharp'); diff --git a/packages/material-ui-icons/src/HdTwoTone.js b/packages/material-ui-icons/src/HdTwoTone.js new file mode 100644 index 00000000000000..1dc601b2cbe381 --- /dev/null +++ b/packages/material-ui-icons/src/HdTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdTwoTone'); diff --git a/packages/material-ui-icons/src/HdrOffOutlined.js b/packages/material-ui-icons/src/HdrOffOutlined.js new file mode 100644 index 00000000000000..73b69bd042b9fb --- /dev/null +++ b/packages/material-ui-icons/src/HdrOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrOffOutlined'); diff --git a/packages/material-ui-icons/src/HdrOffRounded.js b/packages/material-ui-icons/src/HdrOffRounded.js new file mode 100644 index 00000000000000..1a1abb251fd828 --- /dev/null +++ b/packages/material-ui-icons/src/HdrOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrOffRounded'); diff --git a/packages/material-ui-icons/src/HdrOffSharp.js b/packages/material-ui-icons/src/HdrOffSharp.js new file mode 100644 index 00000000000000..bf700f7f6ac9bb --- /dev/null +++ b/packages/material-ui-icons/src/HdrOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrOffSharp'); diff --git a/packages/material-ui-icons/src/HdrOffTwoTone.js b/packages/material-ui-icons/src/HdrOffTwoTone.js new file mode 100644 index 00000000000000..72c4532ad08628 --- /dev/null +++ b/packages/material-ui-icons/src/HdrOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrOffTwoTone'); diff --git a/packages/material-ui-icons/src/HdrOnOutlined.js b/packages/material-ui-icons/src/HdrOnOutlined.js new file mode 100644 index 00000000000000..3e091144d563ee --- /dev/null +++ b/packages/material-ui-icons/src/HdrOnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrOnOutlined'); diff --git a/packages/material-ui-icons/src/HdrOnRounded.js b/packages/material-ui-icons/src/HdrOnRounded.js new file mode 100644 index 00000000000000..e53a2ae1bc6067 --- /dev/null +++ b/packages/material-ui-icons/src/HdrOnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrOnRounded'); diff --git a/packages/material-ui-icons/src/HdrOnSharp.js b/packages/material-ui-icons/src/HdrOnSharp.js new file mode 100644 index 00000000000000..b748b73d775584 --- /dev/null +++ b/packages/material-ui-icons/src/HdrOnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrOnSharp'); diff --git a/packages/material-ui-icons/src/HdrOnTwoTone.js b/packages/material-ui-icons/src/HdrOnTwoTone.js new file mode 100644 index 00000000000000..8d8f29502e1e0f --- /dev/null +++ b/packages/material-ui-icons/src/HdrOnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrOnTwoTone'); diff --git a/packages/material-ui-icons/src/HdrStrongOutlined.js b/packages/material-ui-icons/src/HdrStrongOutlined.js new file mode 100644 index 00000000000000..57581696fd0afd --- /dev/null +++ b/packages/material-ui-icons/src/HdrStrongOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrStrongOutlined'); diff --git a/packages/material-ui-icons/src/HdrStrongRounded.js b/packages/material-ui-icons/src/HdrStrongRounded.js new file mode 100644 index 00000000000000..179c660f471ad0 --- /dev/null +++ b/packages/material-ui-icons/src/HdrStrongRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrStrongRounded'); diff --git a/packages/material-ui-icons/src/HdrStrongSharp.js b/packages/material-ui-icons/src/HdrStrongSharp.js new file mode 100644 index 00000000000000..1804b861c1785b --- /dev/null +++ b/packages/material-ui-icons/src/HdrStrongSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrStrongSharp'); diff --git a/packages/material-ui-icons/src/HdrStrongTwoTone.js b/packages/material-ui-icons/src/HdrStrongTwoTone.js new file mode 100644 index 00000000000000..5a875d282028db --- /dev/null +++ b/packages/material-ui-icons/src/HdrStrongTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrStrongTwoTone'); diff --git a/packages/material-ui-icons/src/HdrWeakOutlined.js b/packages/material-ui-icons/src/HdrWeakOutlined.js new file mode 100644 index 00000000000000..683e7011618cf7 --- /dev/null +++ b/packages/material-ui-icons/src/HdrWeakOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrWeakOutlined'); diff --git a/packages/material-ui-icons/src/HdrWeakRounded.js b/packages/material-ui-icons/src/HdrWeakRounded.js new file mode 100644 index 00000000000000..d6c38f862a07a1 --- /dev/null +++ b/packages/material-ui-icons/src/HdrWeakRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrWeakRounded'); diff --git a/packages/material-ui-icons/src/HdrWeakSharp.js b/packages/material-ui-icons/src/HdrWeakSharp.js new file mode 100644 index 00000000000000..23c4a04b03c971 --- /dev/null +++ b/packages/material-ui-icons/src/HdrWeakSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrWeakSharp'); diff --git a/packages/material-ui-icons/src/HdrWeakTwoTone.js b/packages/material-ui-icons/src/HdrWeakTwoTone.js new file mode 100644 index 00000000000000..9f097157a01c66 --- /dev/null +++ b/packages/material-ui-icons/src/HdrWeakTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HdrWeakTwoTone'); diff --git a/packages/material-ui-icons/src/Headset.js b/packages/material-ui-icons/src/Headset.js index 662fadfab0b857..189ab0e23880ca 100644 --- a/packages/material-ui-icons/src/Headset.js +++ b/packages/material-ui-icons/src/Headset.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Headset'); diff --git a/packages/material-ui-icons/src/HeadsetMic.js b/packages/material-ui-icons/src/HeadsetMic.js index 0d74816026e076..8b81c3acad611d 100644 --- a/packages/material-ui-icons/src/HeadsetMic.js +++ b/packages/material-ui-icons/src/HeadsetMic.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'HeadsetMic'); diff --git a/packages/material-ui-icons/src/HeadsetMicOutlined.js b/packages/material-ui-icons/src/HeadsetMicOutlined.js new file mode 100644 index 00000000000000..e689c890c770bf --- /dev/null +++ b/packages/material-ui-icons/src/HeadsetMicOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HeadsetMicOutlined'); diff --git a/packages/material-ui-icons/src/HeadsetMicRounded.js b/packages/material-ui-icons/src/HeadsetMicRounded.js new file mode 100644 index 00000000000000..91ab88706f4c1b --- /dev/null +++ b/packages/material-ui-icons/src/HeadsetMicRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HeadsetMicRounded'); diff --git a/packages/material-ui-icons/src/HeadsetMicSharp.js b/packages/material-ui-icons/src/HeadsetMicSharp.js new file mode 100644 index 00000000000000..7e89491a5fa08e --- /dev/null +++ b/packages/material-ui-icons/src/HeadsetMicSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HeadsetMicSharp'); diff --git a/packages/material-ui-icons/src/HeadsetMicTwoTone.js b/packages/material-ui-icons/src/HeadsetMicTwoTone.js new file mode 100644 index 00000000000000..251b903869a70d --- /dev/null +++ b/packages/material-ui-icons/src/HeadsetMicTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HeadsetMicTwoTone'); diff --git a/packages/material-ui-icons/src/HeadsetOutlined.js b/packages/material-ui-icons/src/HeadsetOutlined.js new file mode 100644 index 00000000000000..8b4070a3e5664e --- /dev/null +++ b/packages/material-ui-icons/src/HeadsetOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HeadsetOutlined'); diff --git a/packages/material-ui-icons/src/HeadsetRounded.js b/packages/material-ui-icons/src/HeadsetRounded.js new file mode 100644 index 00000000000000..ffbe285b848738 --- /dev/null +++ b/packages/material-ui-icons/src/HeadsetRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HeadsetRounded'); diff --git a/packages/material-ui-icons/src/HeadsetSharp.js b/packages/material-ui-icons/src/HeadsetSharp.js new file mode 100644 index 00000000000000..d7d6bd82d4025c --- /dev/null +++ b/packages/material-ui-icons/src/HeadsetSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HeadsetSharp'); diff --git a/packages/material-ui-icons/src/HeadsetTwoTone.js b/packages/material-ui-icons/src/HeadsetTwoTone.js new file mode 100644 index 00000000000000..49916b3f113521 --- /dev/null +++ b/packages/material-ui-icons/src/HeadsetTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HeadsetTwoTone'); diff --git a/packages/material-ui-icons/src/Healing.js b/packages/material-ui-icons/src/Healing.js index 4b1e7b9219b7b5..e9e8961dcc87ef 100644 --- a/packages/material-ui-icons/src/Healing.js +++ b/packages/material-ui-icons/src/Healing.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Healing'); diff --git a/packages/material-ui-icons/src/HealingOutlined.js b/packages/material-ui-icons/src/HealingOutlined.js new file mode 100644 index 00000000000000..9f376f68f0ee83 --- /dev/null +++ b/packages/material-ui-icons/src/HealingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HealingOutlined'); diff --git a/packages/material-ui-icons/src/HealingRounded.js b/packages/material-ui-icons/src/HealingRounded.js new file mode 100644 index 00000000000000..c6e64dcf5d1dd4 --- /dev/null +++ b/packages/material-ui-icons/src/HealingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HealingRounded'); diff --git a/packages/material-ui-icons/src/HealingSharp.js b/packages/material-ui-icons/src/HealingSharp.js new file mode 100644 index 00000000000000..77146f54ed6bbd --- /dev/null +++ b/packages/material-ui-icons/src/HealingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HealingSharp'); diff --git a/packages/material-ui-icons/src/HealingTwoTone.js b/packages/material-ui-icons/src/HealingTwoTone.js new file mode 100644 index 00000000000000..f729c865096d9c --- /dev/null +++ b/packages/material-ui-icons/src/HealingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HealingTwoTone'); diff --git a/packages/material-ui-icons/src/Hearing.js b/packages/material-ui-icons/src/Hearing.js index 60225067ff1ee7..9642322eb206c6 100644 --- a/packages/material-ui-icons/src/Hearing.js +++ b/packages/material-ui-icons/src/Hearing.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Hearing'); diff --git a/packages/material-ui-icons/src/HearingOutlined.js b/packages/material-ui-icons/src/HearingOutlined.js new file mode 100644 index 00000000000000..d7a067fdda0480 --- /dev/null +++ b/packages/material-ui-icons/src/HearingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HearingOutlined'); diff --git a/packages/material-ui-icons/src/HearingRounded.js b/packages/material-ui-icons/src/HearingRounded.js new file mode 100644 index 00000000000000..f5afc746adf619 --- /dev/null +++ b/packages/material-ui-icons/src/HearingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HearingRounded'); diff --git a/packages/material-ui-icons/src/HearingSharp.js b/packages/material-ui-icons/src/HearingSharp.js new file mode 100644 index 00000000000000..50639f5f57b414 --- /dev/null +++ b/packages/material-ui-icons/src/HearingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HearingSharp'); diff --git a/packages/material-ui-icons/src/HearingTwoTone.js b/packages/material-ui-icons/src/HearingTwoTone.js new file mode 100644 index 00000000000000..f2a325c84d10ed --- /dev/null +++ b/packages/material-ui-icons/src/HearingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HearingTwoTone'); diff --git a/packages/material-ui-icons/src/HelpOutlineOutlined.js b/packages/material-ui-icons/src/HelpOutlineOutlined.js new file mode 100644 index 00000000000000..d438c8fb3d64e9 --- /dev/null +++ b/packages/material-ui-icons/src/HelpOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HelpOutlineOutlined'); diff --git a/packages/material-ui-icons/src/HelpOutlineRounded.js b/packages/material-ui-icons/src/HelpOutlineRounded.js new file mode 100644 index 00000000000000..e9ec259073be2a --- /dev/null +++ b/packages/material-ui-icons/src/HelpOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HelpOutlineRounded'); diff --git a/packages/material-ui-icons/src/HelpOutlineSharp.js b/packages/material-ui-icons/src/HelpOutlineSharp.js new file mode 100644 index 00000000000000..656edc5839c3ba --- /dev/null +++ b/packages/material-ui-icons/src/HelpOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HelpOutlineSharp'); diff --git a/packages/material-ui-icons/src/HelpOutlineTwoTone.js b/packages/material-ui-icons/src/HelpOutlineTwoTone.js new file mode 100644 index 00000000000000..58d8811864fe5c --- /dev/null +++ b/packages/material-ui-icons/src/HelpOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HelpOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/HelpOutlined.js b/packages/material-ui-icons/src/HelpOutlined.js new file mode 100644 index 00000000000000..3cd132c72b545f --- /dev/null +++ b/packages/material-ui-icons/src/HelpOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HelpOutlined'); diff --git a/packages/material-ui-icons/src/HelpRounded.js b/packages/material-ui-icons/src/HelpRounded.js new file mode 100644 index 00000000000000..91d4853c4d5986 --- /dev/null +++ b/packages/material-ui-icons/src/HelpRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HelpRounded'); diff --git a/packages/material-ui-icons/src/HelpSharp.js b/packages/material-ui-icons/src/HelpSharp.js new file mode 100644 index 00000000000000..8c65e5fce0c8e3 --- /dev/null +++ b/packages/material-ui-icons/src/HelpSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HelpSharp'); diff --git a/packages/material-ui-icons/src/HelpTwoTone.js b/packages/material-ui-icons/src/HelpTwoTone.js new file mode 100644 index 00000000000000..2741cf8c520fc0 --- /dev/null +++ b/packages/material-ui-icons/src/HelpTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HelpTwoTone'); diff --git a/packages/material-ui-icons/src/HighQuality.js b/packages/material-ui-icons/src/HighQuality.js index 2f09d8697a6dd5..ab3f158d30f865 100644 --- a/packages/material-ui-icons/src/HighQuality.js +++ b/packages/material-ui-icons/src/HighQuality.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'HighQuality'); diff --git a/packages/material-ui-icons/src/HighQualityOutlined.js b/packages/material-ui-icons/src/HighQualityOutlined.js new file mode 100644 index 00000000000000..47b94396af8003 --- /dev/null +++ b/packages/material-ui-icons/src/HighQualityOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighQualityOutlined'); diff --git a/packages/material-ui-icons/src/HighQualityRounded.js b/packages/material-ui-icons/src/HighQualityRounded.js new file mode 100644 index 00000000000000..91436a638dcb10 --- /dev/null +++ b/packages/material-ui-icons/src/HighQualityRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighQualityRounded'); diff --git a/packages/material-ui-icons/src/HighQualitySharp.js b/packages/material-ui-icons/src/HighQualitySharp.js new file mode 100644 index 00000000000000..a4fbdc3918daca --- /dev/null +++ b/packages/material-ui-icons/src/HighQualitySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighQualitySharp'); diff --git a/packages/material-ui-icons/src/HighQualityTwoTone.js b/packages/material-ui-icons/src/HighQualityTwoTone.js new file mode 100644 index 00000000000000..a5692d8e84f217 --- /dev/null +++ b/packages/material-ui-icons/src/HighQualityTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighQualityTwoTone'); diff --git a/packages/material-ui-icons/src/Highlight.js b/packages/material-ui-icons/src/Highlight.js index 0446b3acc1b9e1..d67191e64436a8 100644 --- a/packages/material-ui-icons/src/Highlight.js +++ b/packages/material-ui-icons/src/Highlight.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Highlight'); diff --git a/packages/material-ui-icons/src/HighlightOffOutlined.js b/packages/material-ui-icons/src/HighlightOffOutlined.js new file mode 100644 index 00000000000000..930db78027ac5e --- /dev/null +++ b/packages/material-ui-icons/src/HighlightOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighlightOffOutlined'); diff --git a/packages/material-ui-icons/src/HighlightOffRounded.js b/packages/material-ui-icons/src/HighlightOffRounded.js new file mode 100644 index 00000000000000..1f2ba3dc0f6319 --- /dev/null +++ b/packages/material-ui-icons/src/HighlightOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighlightOffRounded'); diff --git a/packages/material-ui-icons/src/HighlightOffSharp.js b/packages/material-ui-icons/src/HighlightOffSharp.js new file mode 100644 index 00000000000000..410801f16a0ece --- /dev/null +++ b/packages/material-ui-icons/src/HighlightOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighlightOffSharp'); diff --git a/packages/material-ui-icons/src/HighlightOffTwoTone.js b/packages/material-ui-icons/src/HighlightOffTwoTone.js new file mode 100644 index 00000000000000..6c1e08e78c1913 --- /dev/null +++ b/packages/material-ui-icons/src/HighlightOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighlightOffTwoTone'); diff --git a/packages/material-ui-icons/src/HighlightOutlined.js b/packages/material-ui-icons/src/HighlightOutlined.js new file mode 100644 index 00000000000000..3427210e797745 --- /dev/null +++ b/packages/material-ui-icons/src/HighlightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighlightOutlined'); diff --git a/packages/material-ui-icons/src/HighlightRounded.js b/packages/material-ui-icons/src/HighlightRounded.js new file mode 100644 index 00000000000000..4806dff5637dc4 --- /dev/null +++ b/packages/material-ui-icons/src/HighlightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighlightRounded'); diff --git a/packages/material-ui-icons/src/HighlightSharp.js b/packages/material-ui-icons/src/HighlightSharp.js new file mode 100644 index 00000000000000..732cc9a93d67d7 --- /dev/null +++ b/packages/material-ui-icons/src/HighlightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighlightSharp'); diff --git a/packages/material-ui-icons/src/HighlightTwoTone.js b/packages/material-ui-icons/src/HighlightTwoTone.js new file mode 100644 index 00000000000000..7a6281bec2e26b --- /dev/null +++ b/packages/material-ui-icons/src/HighlightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HighlightTwoTone'); diff --git a/packages/material-ui-icons/src/History.js b/packages/material-ui-icons/src/History.js index be7e67f80d8a93..c28df66d945fea 100644 --- a/packages/material-ui-icons/src/History.js +++ b/packages/material-ui-icons/src/History.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'History'); diff --git a/packages/material-ui-icons/src/HistoryOutlined.js b/packages/material-ui-icons/src/HistoryOutlined.js new file mode 100644 index 00000000000000..0319bf1fa4397e --- /dev/null +++ b/packages/material-ui-icons/src/HistoryOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HistoryOutlined'); diff --git a/packages/material-ui-icons/src/HistoryRounded.js b/packages/material-ui-icons/src/HistoryRounded.js new file mode 100644 index 00000000000000..e07dd5dbd52b9f --- /dev/null +++ b/packages/material-ui-icons/src/HistoryRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HistoryRounded'); diff --git a/packages/material-ui-icons/src/HistorySharp.js b/packages/material-ui-icons/src/HistorySharp.js new file mode 100644 index 00000000000000..9cd747194d988f --- /dev/null +++ b/packages/material-ui-icons/src/HistorySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HistorySharp'); diff --git a/packages/material-ui-icons/src/HistoryTwoTone.js b/packages/material-ui-icons/src/HistoryTwoTone.js new file mode 100644 index 00000000000000..b53b8c4de0cb9a --- /dev/null +++ b/packages/material-ui-icons/src/HistoryTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HistoryTwoTone'); diff --git a/packages/material-ui-icons/src/HomeOutlined.js b/packages/material-ui-icons/src/HomeOutlined.js new file mode 100644 index 00000000000000..fdc1500f0ab04a --- /dev/null +++ b/packages/material-ui-icons/src/HomeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HomeOutlined'); diff --git a/packages/material-ui-icons/src/HomeRounded.js b/packages/material-ui-icons/src/HomeRounded.js new file mode 100644 index 00000000000000..12006141632f32 --- /dev/null +++ b/packages/material-ui-icons/src/HomeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HomeRounded'); diff --git a/packages/material-ui-icons/src/HomeSharp.js b/packages/material-ui-icons/src/HomeSharp.js new file mode 100644 index 00000000000000..6e5580c083f152 --- /dev/null +++ b/packages/material-ui-icons/src/HomeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HomeSharp'); diff --git a/packages/material-ui-icons/src/HomeTwoTone.js b/packages/material-ui-icons/src/HomeTwoTone.js new file mode 100644 index 00000000000000..24e5ed438c4121 --- /dev/null +++ b/packages/material-ui-icons/src/HomeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HomeTwoTone'); diff --git a/packages/material-ui-icons/src/HorizontalSplit.js b/packages/material-ui-icons/src/HorizontalSplit.js new file mode 100644 index 00000000000000..a790ba0bf54bd9 --- /dev/null +++ b/packages/material-ui-icons/src/HorizontalSplit.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HorizontalSplit'); diff --git a/packages/material-ui-icons/src/HorizontalSplitOutlined.js b/packages/material-ui-icons/src/HorizontalSplitOutlined.js new file mode 100644 index 00000000000000..3af37f62cb73ed --- /dev/null +++ b/packages/material-ui-icons/src/HorizontalSplitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HorizontalSplitOutlined'); diff --git a/packages/material-ui-icons/src/HorizontalSplitRounded.js b/packages/material-ui-icons/src/HorizontalSplitRounded.js new file mode 100644 index 00000000000000..c2b4589318f2f9 --- /dev/null +++ b/packages/material-ui-icons/src/HorizontalSplitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HorizontalSplitRounded'); diff --git a/packages/material-ui-icons/src/HorizontalSplitSharp.js b/packages/material-ui-icons/src/HorizontalSplitSharp.js new file mode 100644 index 00000000000000..b9a4701927e6a9 --- /dev/null +++ b/packages/material-ui-icons/src/HorizontalSplitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HorizontalSplitSharp'); diff --git a/packages/material-ui-icons/src/HorizontalSplitTwoTone.js b/packages/material-ui-icons/src/HorizontalSplitTwoTone.js new file mode 100644 index 00000000000000..a45a4e9cbc1d9c --- /dev/null +++ b/packages/material-ui-icons/src/HorizontalSplitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HorizontalSplitTwoTone'); diff --git a/packages/material-ui-icons/src/HotTubOutlined.js b/packages/material-ui-icons/src/HotTubOutlined.js new file mode 100644 index 00000000000000..2f004f5456fc45 --- /dev/null +++ b/packages/material-ui-icons/src/HotTubOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HotTubOutlined'); diff --git a/packages/material-ui-icons/src/HotTubRounded.js b/packages/material-ui-icons/src/HotTubRounded.js new file mode 100644 index 00000000000000..b0bc4215793cd4 --- /dev/null +++ b/packages/material-ui-icons/src/HotTubRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HotTubRounded'); diff --git a/packages/material-ui-icons/src/HotTubSharp.js b/packages/material-ui-icons/src/HotTubSharp.js new file mode 100644 index 00000000000000..16e6b62251efc2 --- /dev/null +++ b/packages/material-ui-icons/src/HotTubSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HotTubSharp'); diff --git a/packages/material-ui-icons/src/HotTubTwoTone.js b/packages/material-ui-icons/src/HotTubTwoTone.js new file mode 100644 index 00000000000000..662aa5412d2334 --- /dev/null +++ b/packages/material-ui-icons/src/HotTubTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HotTubTwoTone'); diff --git a/packages/material-ui-icons/src/HotelOutlined.js b/packages/material-ui-icons/src/HotelOutlined.js new file mode 100644 index 00000000000000..d4ac45e410a745 --- /dev/null +++ b/packages/material-ui-icons/src/HotelOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HotelOutlined'); diff --git a/packages/material-ui-icons/src/HotelRounded.js b/packages/material-ui-icons/src/HotelRounded.js new file mode 100644 index 00000000000000..af225ef8fbec0b --- /dev/null +++ b/packages/material-ui-icons/src/HotelRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HotelRounded'); diff --git a/packages/material-ui-icons/src/HotelSharp.js b/packages/material-ui-icons/src/HotelSharp.js new file mode 100644 index 00000000000000..0f129edc44be53 --- /dev/null +++ b/packages/material-ui-icons/src/HotelSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HotelSharp'); diff --git a/packages/material-ui-icons/src/HotelTwoTone.js b/packages/material-ui-icons/src/HotelTwoTone.js new file mode 100644 index 00000000000000..482663c00ba12d --- /dev/null +++ b/packages/material-ui-icons/src/HotelTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HotelTwoTone'); diff --git a/packages/material-ui-icons/src/HourglassEmptyOutlined.js b/packages/material-ui-icons/src/HourglassEmptyOutlined.js new file mode 100644 index 00000000000000..3636a6cb8a4323 --- /dev/null +++ b/packages/material-ui-icons/src/HourglassEmptyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HourglassEmptyOutlined'); diff --git a/packages/material-ui-icons/src/HourglassEmptyRounded.js b/packages/material-ui-icons/src/HourglassEmptyRounded.js new file mode 100644 index 00000000000000..059db1f4713026 --- /dev/null +++ b/packages/material-ui-icons/src/HourglassEmptyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HourglassEmptyRounded'); diff --git a/packages/material-ui-icons/src/HourglassEmptySharp.js b/packages/material-ui-icons/src/HourglassEmptySharp.js new file mode 100644 index 00000000000000..5ed83e380d6e79 --- /dev/null +++ b/packages/material-ui-icons/src/HourglassEmptySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HourglassEmptySharp'); diff --git a/packages/material-ui-icons/src/HourglassEmptyTwoTone.js b/packages/material-ui-icons/src/HourglassEmptyTwoTone.js new file mode 100644 index 00000000000000..c3ca11747c3fcd --- /dev/null +++ b/packages/material-ui-icons/src/HourglassEmptyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HourglassEmptyTwoTone'); diff --git a/packages/material-ui-icons/src/HourglassFullOutlined.js b/packages/material-ui-icons/src/HourglassFullOutlined.js new file mode 100644 index 00000000000000..374de0021cb75e --- /dev/null +++ b/packages/material-ui-icons/src/HourglassFullOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HourglassFullOutlined'); diff --git a/packages/material-ui-icons/src/HourglassFullRounded.js b/packages/material-ui-icons/src/HourglassFullRounded.js new file mode 100644 index 00000000000000..7d294c4df358a5 --- /dev/null +++ b/packages/material-ui-icons/src/HourglassFullRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HourglassFullRounded'); diff --git a/packages/material-ui-icons/src/HourglassFullSharp.js b/packages/material-ui-icons/src/HourglassFullSharp.js new file mode 100644 index 00000000000000..f297f0039fa24e --- /dev/null +++ b/packages/material-ui-icons/src/HourglassFullSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HourglassFullSharp'); diff --git a/packages/material-ui-icons/src/HourglassFullTwoTone.js b/packages/material-ui-icons/src/HourglassFullTwoTone.js new file mode 100644 index 00000000000000..0774fe8cf7703e --- /dev/null +++ b/packages/material-ui-icons/src/HourglassFullTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HourglassFullTwoTone'); diff --git a/packages/material-ui-icons/src/HowToReg.js b/packages/material-ui-icons/src/HowToReg.js new file mode 100644 index 00000000000000..1fd9a4f829ec47 --- /dev/null +++ b/packages/material-ui-icons/src/HowToReg.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HowToReg'); diff --git a/packages/material-ui-icons/src/HowToRegOutlined.js b/packages/material-ui-icons/src/HowToRegOutlined.js new file mode 100644 index 00000000000000..86ff016400c5b9 --- /dev/null +++ b/packages/material-ui-icons/src/HowToRegOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HowToRegOutlined'); diff --git a/packages/material-ui-icons/src/HowToRegRounded.js b/packages/material-ui-icons/src/HowToRegRounded.js new file mode 100644 index 00000000000000..3b53f2e691e05e --- /dev/null +++ b/packages/material-ui-icons/src/HowToRegRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HowToRegRounded'); diff --git a/packages/material-ui-icons/src/HowToRegSharp.js b/packages/material-ui-icons/src/HowToRegSharp.js new file mode 100644 index 00000000000000..45980025e5a202 --- /dev/null +++ b/packages/material-ui-icons/src/HowToRegSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HowToRegSharp'); diff --git a/packages/material-ui-icons/src/HowToRegTwoTone.js b/packages/material-ui-icons/src/HowToRegTwoTone.js new file mode 100644 index 00000000000000..16f91adceb85c7 --- /dev/null +++ b/packages/material-ui-icons/src/HowToRegTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HowToRegTwoTone'); diff --git a/packages/material-ui-icons/src/HowToVote.js b/packages/material-ui-icons/src/HowToVote.js new file mode 100644 index 00000000000000..f899f4ca5ae872 --- /dev/null +++ b/packages/material-ui-icons/src/HowToVote.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HowToVote'); diff --git a/packages/material-ui-icons/src/HowToVoteOutlined.js b/packages/material-ui-icons/src/HowToVoteOutlined.js new file mode 100644 index 00000000000000..c0e4f2cf440ee3 --- /dev/null +++ b/packages/material-ui-icons/src/HowToVoteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HowToVoteOutlined'); diff --git a/packages/material-ui-icons/src/HowToVoteRounded.js b/packages/material-ui-icons/src/HowToVoteRounded.js new file mode 100644 index 00000000000000..66d770275ec6b8 --- /dev/null +++ b/packages/material-ui-icons/src/HowToVoteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HowToVoteRounded'); diff --git a/packages/material-ui-icons/src/HowToVoteSharp.js b/packages/material-ui-icons/src/HowToVoteSharp.js new file mode 100644 index 00000000000000..346ef66889e3e0 --- /dev/null +++ b/packages/material-ui-icons/src/HowToVoteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HowToVoteSharp'); diff --git a/packages/material-ui-icons/src/HowToVoteTwoTone.js b/packages/material-ui-icons/src/HowToVoteTwoTone.js new file mode 100644 index 00000000000000..e7db59ec2cd425 --- /dev/null +++ b/packages/material-ui-icons/src/HowToVoteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HowToVoteTwoTone'); diff --git a/packages/material-ui-icons/src/HttpOutlined.js b/packages/material-ui-icons/src/HttpOutlined.js new file mode 100644 index 00000000000000..a25409ed202df1 --- /dev/null +++ b/packages/material-ui-icons/src/HttpOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HttpOutlined'); diff --git a/packages/material-ui-icons/src/HttpRounded.js b/packages/material-ui-icons/src/HttpRounded.js new file mode 100644 index 00000000000000..7e98e427535bcd --- /dev/null +++ b/packages/material-ui-icons/src/HttpRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HttpRounded'); diff --git a/packages/material-ui-icons/src/HttpSharp.js b/packages/material-ui-icons/src/HttpSharp.js new file mode 100644 index 00000000000000..7b2e16ac7eaec9 --- /dev/null +++ b/packages/material-ui-icons/src/HttpSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HttpSharp'); diff --git a/packages/material-ui-icons/src/HttpTwoTone.js b/packages/material-ui-icons/src/HttpTwoTone.js new file mode 100644 index 00000000000000..48cfad5e70643c --- /dev/null +++ b/packages/material-ui-icons/src/HttpTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HttpTwoTone'); diff --git a/packages/material-ui-icons/src/HttpsOutlined.js b/packages/material-ui-icons/src/HttpsOutlined.js new file mode 100644 index 00000000000000..fd5bd2c555dca8 --- /dev/null +++ b/packages/material-ui-icons/src/HttpsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HttpsOutlined'); diff --git a/packages/material-ui-icons/src/HttpsRounded.js b/packages/material-ui-icons/src/HttpsRounded.js new file mode 100644 index 00000000000000..ce91af9e3c6e16 --- /dev/null +++ b/packages/material-ui-icons/src/HttpsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HttpsRounded'); diff --git a/packages/material-ui-icons/src/HttpsSharp.js b/packages/material-ui-icons/src/HttpsSharp.js new file mode 100644 index 00000000000000..9e6644b7030a07 --- /dev/null +++ b/packages/material-ui-icons/src/HttpsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HttpsSharp'); diff --git a/packages/material-ui-icons/src/HttpsTwoTone.js b/packages/material-ui-icons/src/HttpsTwoTone.js new file mode 100644 index 00000000000000..f675261e28b8e7 --- /dev/null +++ b/packages/material-ui-icons/src/HttpsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'HttpsTwoTone'); diff --git a/packages/material-ui-icons/src/ImageAspectRatioOutlined.js b/packages/material-ui-icons/src/ImageAspectRatioOutlined.js new file mode 100644 index 00000000000000..3b5e3dccb74d9c --- /dev/null +++ b/packages/material-ui-icons/src/ImageAspectRatioOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageAspectRatioOutlined'); diff --git a/packages/material-ui-icons/src/ImageAspectRatioRounded.js b/packages/material-ui-icons/src/ImageAspectRatioRounded.js new file mode 100644 index 00000000000000..4ab4fe5cdb695b --- /dev/null +++ b/packages/material-ui-icons/src/ImageAspectRatioRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageAspectRatioRounded'); diff --git a/packages/material-ui-icons/src/ImageAspectRatioSharp.js b/packages/material-ui-icons/src/ImageAspectRatioSharp.js new file mode 100644 index 00000000000000..71a90b2d24af14 --- /dev/null +++ b/packages/material-ui-icons/src/ImageAspectRatioSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageAspectRatioSharp'); diff --git a/packages/material-ui-icons/src/ImageAspectRatioTwoTone.js b/packages/material-ui-icons/src/ImageAspectRatioTwoTone.js new file mode 100644 index 00000000000000..9852a23772e442 --- /dev/null +++ b/packages/material-ui-icons/src/ImageAspectRatioTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageAspectRatioTwoTone'); diff --git a/packages/material-ui-icons/src/ImageOutlined.js b/packages/material-ui-icons/src/ImageOutlined.js new file mode 100644 index 00000000000000..71dd0b591bfb5a --- /dev/null +++ b/packages/material-ui-icons/src/ImageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageOutlined'); diff --git a/packages/material-ui-icons/src/ImageRounded.js b/packages/material-ui-icons/src/ImageRounded.js new file mode 100644 index 00000000000000..f2c82ffd16d44d --- /dev/null +++ b/packages/material-ui-icons/src/ImageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageRounded'); diff --git a/packages/material-ui-icons/src/ImageSearch.js b/packages/material-ui-icons/src/ImageSearch.js new file mode 100644 index 00000000000000..2b4497eb299d4d --- /dev/null +++ b/packages/material-ui-icons/src/ImageSearch.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageSearch'); diff --git a/packages/material-ui-icons/src/ImageSearchOutlined.js b/packages/material-ui-icons/src/ImageSearchOutlined.js new file mode 100644 index 00000000000000..1b9b2d66894ccf --- /dev/null +++ b/packages/material-ui-icons/src/ImageSearchOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageSearchOutlined'); diff --git a/packages/material-ui-icons/src/ImageSearchRounded.js b/packages/material-ui-icons/src/ImageSearchRounded.js new file mode 100644 index 00000000000000..be509d6330dc95 --- /dev/null +++ b/packages/material-ui-icons/src/ImageSearchRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageSearchRounded'); diff --git a/packages/material-ui-icons/src/ImageSearchSharp.js b/packages/material-ui-icons/src/ImageSearchSharp.js new file mode 100644 index 00000000000000..96a14f4381b421 --- /dev/null +++ b/packages/material-ui-icons/src/ImageSearchSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageSearchSharp'); diff --git a/packages/material-ui-icons/src/ImageSearchTwoTone.js b/packages/material-ui-icons/src/ImageSearchTwoTone.js new file mode 100644 index 00000000000000..08ead3752ebfeb --- /dev/null +++ b/packages/material-ui-icons/src/ImageSearchTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageSearchTwoTone'); diff --git a/packages/material-ui-icons/src/ImageSharp.js b/packages/material-ui-icons/src/ImageSharp.js new file mode 100644 index 00000000000000..1cb1cae0323736 --- /dev/null +++ b/packages/material-ui-icons/src/ImageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageSharp'); diff --git a/packages/material-ui-icons/src/ImageTwoTone.js b/packages/material-ui-icons/src/ImageTwoTone.js new file mode 100644 index 00000000000000..69364e9cee7b72 --- /dev/null +++ b/packages/material-ui-icons/src/ImageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImageTwoTone'); diff --git a/packages/material-ui-icons/src/ImportContacts.js b/packages/material-ui-icons/src/ImportContacts.js index 80e5110ced9c0e..06bacd101ac332 100644 --- a/packages/material-ui-icons/src/ImportContacts.js +++ b/packages/material-ui-icons/src/ImportContacts.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ImportContacts'); diff --git a/packages/material-ui-icons/src/ImportContactsOutlined.js b/packages/material-ui-icons/src/ImportContactsOutlined.js new file mode 100644 index 00000000000000..04453e4f9f9af7 --- /dev/null +++ b/packages/material-ui-icons/src/ImportContactsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportContactsOutlined'); diff --git a/packages/material-ui-icons/src/ImportContactsRounded.js b/packages/material-ui-icons/src/ImportContactsRounded.js new file mode 100644 index 00000000000000..3aa887498b4cea --- /dev/null +++ b/packages/material-ui-icons/src/ImportContactsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportContactsRounded'); diff --git a/packages/material-ui-icons/src/ImportContactsSharp.js b/packages/material-ui-icons/src/ImportContactsSharp.js new file mode 100644 index 00000000000000..a66b0963718fab --- /dev/null +++ b/packages/material-ui-icons/src/ImportContactsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportContactsSharp'); diff --git a/packages/material-ui-icons/src/ImportContactsTwoTone.js b/packages/material-ui-icons/src/ImportContactsTwoTone.js new file mode 100644 index 00000000000000..cddef2db086779 --- /dev/null +++ b/packages/material-ui-icons/src/ImportContactsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportContactsTwoTone'); diff --git a/packages/material-ui-icons/src/ImportExportOutlined.js b/packages/material-ui-icons/src/ImportExportOutlined.js new file mode 100644 index 00000000000000..d0ad5eab62a396 --- /dev/null +++ b/packages/material-ui-icons/src/ImportExportOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportExportOutlined'); diff --git a/packages/material-ui-icons/src/ImportExportRounded.js b/packages/material-ui-icons/src/ImportExportRounded.js new file mode 100644 index 00000000000000..fb352906911b7f --- /dev/null +++ b/packages/material-ui-icons/src/ImportExportRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportExportRounded'); diff --git a/packages/material-ui-icons/src/ImportExportSharp.js b/packages/material-ui-icons/src/ImportExportSharp.js new file mode 100644 index 00000000000000..2300b2c49b32b8 --- /dev/null +++ b/packages/material-ui-icons/src/ImportExportSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportExportSharp'); diff --git a/packages/material-ui-icons/src/ImportExportTwoTone.js b/packages/material-ui-icons/src/ImportExportTwoTone.js new file mode 100644 index 00000000000000..e26a10a1df3761 --- /dev/null +++ b/packages/material-ui-icons/src/ImportExportTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportExportTwoTone'); diff --git a/packages/material-ui-icons/src/ImportantDevices.js b/packages/material-ui-icons/src/ImportantDevices.js index 0647bd8e76f839..af897ece1f138f 100644 --- a/packages/material-ui-icons/src/ImportantDevices.js +++ b/packages/material-ui-icons/src/ImportantDevices.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ImportantDevices'); diff --git a/packages/material-ui-icons/src/ImportantDevicesOutlined.js b/packages/material-ui-icons/src/ImportantDevicesOutlined.js new file mode 100644 index 00000000000000..4972c8c511c57a --- /dev/null +++ b/packages/material-ui-icons/src/ImportantDevicesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportantDevicesOutlined'); diff --git a/packages/material-ui-icons/src/ImportantDevicesRounded.js b/packages/material-ui-icons/src/ImportantDevicesRounded.js new file mode 100644 index 00000000000000..68b1c8229dcba4 --- /dev/null +++ b/packages/material-ui-icons/src/ImportantDevicesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportantDevicesRounded'); diff --git a/packages/material-ui-icons/src/ImportantDevicesSharp.js b/packages/material-ui-icons/src/ImportantDevicesSharp.js new file mode 100644 index 00000000000000..799e25734617f7 --- /dev/null +++ b/packages/material-ui-icons/src/ImportantDevicesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportantDevicesSharp'); diff --git a/packages/material-ui-icons/src/ImportantDevicesTwoTone.js b/packages/material-ui-icons/src/ImportantDevicesTwoTone.js new file mode 100644 index 00000000000000..ec54b23eefac2b --- /dev/null +++ b/packages/material-ui-icons/src/ImportantDevicesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ImportantDevicesTwoTone'); diff --git a/packages/material-ui-icons/src/Inbox.js b/packages/material-ui-icons/src/Inbox.js index a60df3c795a72a..3f6db45d85ffef 100644 --- a/packages/material-ui-icons/src/Inbox.js +++ b/packages/material-ui-icons/src/Inbox.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Inbox'); diff --git a/packages/material-ui-icons/src/InboxOutlined.js b/packages/material-ui-icons/src/InboxOutlined.js new file mode 100644 index 00000000000000..4f27f4515b585d --- /dev/null +++ b/packages/material-ui-icons/src/InboxOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InboxOutlined'); diff --git a/packages/material-ui-icons/src/InboxRounded.js b/packages/material-ui-icons/src/InboxRounded.js new file mode 100644 index 00000000000000..ecf9202542ad2e --- /dev/null +++ b/packages/material-ui-icons/src/InboxRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InboxRounded'); diff --git a/packages/material-ui-icons/src/InboxSharp.js b/packages/material-ui-icons/src/InboxSharp.js new file mode 100644 index 00000000000000..0f7d269daea6d1 --- /dev/null +++ b/packages/material-ui-icons/src/InboxSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InboxSharp'); diff --git a/packages/material-ui-icons/src/InboxTwoTone.js b/packages/material-ui-icons/src/InboxTwoTone.js new file mode 100644 index 00000000000000..0c336ee1d653d6 --- /dev/null +++ b/packages/material-ui-icons/src/InboxTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InboxTwoTone'); diff --git a/packages/material-ui-icons/src/IndeterminateCheckBox.js b/packages/material-ui-icons/src/IndeterminateCheckBox.js index a4e3332aeeac29..6b4867613767e5 100644 --- a/packages/material-ui-icons/src/IndeterminateCheckBox.js +++ b/packages/material-ui-icons/src/IndeterminateCheckBox.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'IndeterminateCheckBox'); diff --git a/packages/material-ui-icons/src/IndeterminateCheckBoxOutlined.js b/packages/material-ui-icons/src/IndeterminateCheckBoxOutlined.js new file mode 100644 index 00000000000000..81403db151c62d --- /dev/null +++ b/packages/material-ui-icons/src/IndeterminateCheckBoxOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'IndeterminateCheckBoxOutlined'); diff --git a/packages/material-ui-icons/src/IndeterminateCheckBoxRounded.js b/packages/material-ui-icons/src/IndeterminateCheckBoxRounded.js new file mode 100644 index 00000000000000..96a35bd1eeefa5 --- /dev/null +++ b/packages/material-ui-icons/src/IndeterminateCheckBoxRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'IndeterminateCheckBoxRounded'); diff --git a/packages/material-ui-icons/src/IndeterminateCheckBoxSharp.js b/packages/material-ui-icons/src/IndeterminateCheckBoxSharp.js new file mode 100644 index 00000000000000..671e568ba63efa --- /dev/null +++ b/packages/material-ui-icons/src/IndeterminateCheckBoxSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'IndeterminateCheckBoxSharp'); diff --git a/packages/material-ui-icons/src/IndeterminateCheckBoxTwoTone.js b/packages/material-ui-icons/src/IndeterminateCheckBoxTwoTone.js new file mode 100644 index 00000000000000..e4de34cf662a89 --- /dev/null +++ b/packages/material-ui-icons/src/IndeterminateCheckBoxTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'IndeterminateCheckBoxTwoTone'); diff --git a/packages/material-ui-icons/src/InfoOutline.js b/packages/material-ui-icons/src/InfoOutline.js deleted file mode 100644 index 043ae3f01908a2..00000000000000 --- a/packages/material-ui-icons/src/InfoOutline.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'InfoOutline'); diff --git a/packages/material-ui-icons/src/InfoOutlined.js b/packages/material-ui-icons/src/InfoOutlined.js new file mode 100644 index 00000000000000..0c83831bc49af3 --- /dev/null +++ b/packages/material-ui-icons/src/InfoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InfoOutlined'); diff --git a/packages/material-ui-icons/src/InfoRounded.js b/packages/material-ui-icons/src/InfoRounded.js new file mode 100644 index 00000000000000..69c6959975904e --- /dev/null +++ b/packages/material-ui-icons/src/InfoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InfoRounded'); diff --git a/packages/material-ui-icons/src/InfoSharp.js b/packages/material-ui-icons/src/InfoSharp.js new file mode 100644 index 00000000000000..bd204a92055283 --- /dev/null +++ b/packages/material-ui-icons/src/InfoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InfoSharp'); diff --git a/packages/material-ui-icons/src/InfoTwoTone.js b/packages/material-ui-icons/src/InfoTwoTone.js new file mode 100644 index 00000000000000..9fa4d74fd74b55 --- /dev/null +++ b/packages/material-ui-icons/src/InfoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InfoTwoTone'); diff --git a/packages/material-ui-icons/src/Input.js b/packages/material-ui-icons/src/Input.js index 321c8c4b110a4e..f840762fa55933 100644 --- a/packages/material-ui-icons/src/Input.js +++ b/packages/material-ui-icons/src/Input.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Input'); diff --git a/packages/material-ui-icons/src/InputOutlined.js b/packages/material-ui-icons/src/InputOutlined.js new file mode 100644 index 00000000000000..f5625a6759a51f --- /dev/null +++ b/packages/material-ui-icons/src/InputOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InputOutlined'); diff --git a/packages/material-ui-icons/src/InputRounded.js b/packages/material-ui-icons/src/InputRounded.js new file mode 100644 index 00000000000000..f28ba5c6f6e7e4 --- /dev/null +++ b/packages/material-ui-icons/src/InputRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InputRounded'); diff --git a/packages/material-ui-icons/src/InputSharp.js b/packages/material-ui-icons/src/InputSharp.js new file mode 100644 index 00000000000000..79330266cda8ad --- /dev/null +++ b/packages/material-ui-icons/src/InputSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InputSharp'); diff --git a/packages/material-ui-icons/src/InputTwoTone.js b/packages/material-ui-icons/src/InputTwoTone.js new file mode 100644 index 00000000000000..8996b2f45d01ea --- /dev/null +++ b/packages/material-ui-icons/src/InputTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InputTwoTone'); diff --git a/packages/material-ui-icons/src/InsertChartOutlined.js b/packages/material-ui-icons/src/InsertChartOutlined.js new file mode 100644 index 00000000000000..a7d58bf32594da --- /dev/null +++ b/packages/material-ui-icons/src/InsertChartOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertChartOutlined'); diff --git a/packages/material-ui-icons/src/InsertChartOutlinedOutlined.js b/packages/material-ui-icons/src/InsertChartOutlinedOutlined.js new file mode 100644 index 00000000000000..99430678b26693 --- /dev/null +++ b/packages/material-ui-icons/src/InsertChartOutlinedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertChartOutlinedOutlined'); diff --git a/packages/material-ui-icons/src/InsertChartOutlinedRounded.js b/packages/material-ui-icons/src/InsertChartOutlinedRounded.js new file mode 100644 index 00000000000000..d27e3dcf5e7d63 --- /dev/null +++ b/packages/material-ui-icons/src/InsertChartOutlinedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertChartOutlinedRounded'); diff --git a/packages/material-ui-icons/src/InsertChartOutlinedSharp.js b/packages/material-ui-icons/src/InsertChartOutlinedSharp.js new file mode 100644 index 00000000000000..1a155e53be71fd --- /dev/null +++ b/packages/material-ui-icons/src/InsertChartOutlinedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertChartOutlinedSharp'); diff --git a/packages/material-ui-icons/src/InsertChartOutlinedTwoTone.js b/packages/material-ui-icons/src/InsertChartOutlinedTwoTone.js new file mode 100644 index 00000000000000..3a566da07b93d0 --- /dev/null +++ b/packages/material-ui-icons/src/InsertChartOutlinedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertChartOutlinedTwoTone'); diff --git a/packages/material-ui-icons/src/InsertChartRounded.js b/packages/material-ui-icons/src/InsertChartRounded.js new file mode 100644 index 00000000000000..4925f88accc929 --- /dev/null +++ b/packages/material-ui-icons/src/InsertChartRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertChartRounded'); diff --git a/packages/material-ui-icons/src/InsertChartSharp.js b/packages/material-ui-icons/src/InsertChartSharp.js new file mode 100644 index 00000000000000..d00054891ae1e2 --- /dev/null +++ b/packages/material-ui-icons/src/InsertChartSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertChartSharp'); diff --git a/packages/material-ui-icons/src/InsertChartTwoTone.js b/packages/material-ui-icons/src/InsertChartTwoTone.js new file mode 100644 index 00000000000000..2ff3703514b9e0 --- /dev/null +++ b/packages/material-ui-icons/src/InsertChartTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertChartTwoTone'); diff --git a/packages/material-ui-icons/src/InsertCommentOutlined.js b/packages/material-ui-icons/src/InsertCommentOutlined.js new file mode 100644 index 00000000000000..489e0a19bed8fc --- /dev/null +++ b/packages/material-ui-icons/src/InsertCommentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertCommentOutlined'); diff --git a/packages/material-ui-icons/src/InsertCommentRounded.js b/packages/material-ui-icons/src/InsertCommentRounded.js new file mode 100644 index 00000000000000..445de0011fa842 --- /dev/null +++ b/packages/material-ui-icons/src/InsertCommentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertCommentRounded'); diff --git a/packages/material-ui-icons/src/InsertCommentSharp.js b/packages/material-ui-icons/src/InsertCommentSharp.js new file mode 100644 index 00000000000000..c3fe56e0309981 --- /dev/null +++ b/packages/material-ui-icons/src/InsertCommentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertCommentSharp'); diff --git a/packages/material-ui-icons/src/InsertCommentTwoTone.js b/packages/material-ui-icons/src/InsertCommentTwoTone.js new file mode 100644 index 00000000000000..15ec351652cac3 --- /dev/null +++ b/packages/material-ui-icons/src/InsertCommentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertCommentTwoTone'); diff --git a/packages/material-ui-icons/src/InsertDriveFileOutlined.js b/packages/material-ui-icons/src/InsertDriveFileOutlined.js new file mode 100644 index 00000000000000..30fc85dd1ee7bb --- /dev/null +++ b/packages/material-ui-icons/src/InsertDriveFileOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertDriveFileOutlined'); diff --git a/packages/material-ui-icons/src/InsertDriveFileRounded.js b/packages/material-ui-icons/src/InsertDriveFileRounded.js new file mode 100644 index 00000000000000..c840a5abf7c3ba --- /dev/null +++ b/packages/material-ui-icons/src/InsertDriveFileRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertDriveFileRounded'); diff --git a/packages/material-ui-icons/src/InsertDriveFileSharp.js b/packages/material-ui-icons/src/InsertDriveFileSharp.js new file mode 100644 index 00000000000000..d3fd4f90461311 --- /dev/null +++ b/packages/material-ui-icons/src/InsertDriveFileSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertDriveFileSharp'); diff --git a/packages/material-ui-icons/src/InsertDriveFileTwoTone.js b/packages/material-ui-icons/src/InsertDriveFileTwoTone.js new file mode 100644 index 00000000000000..75915a57f30c35 --- /dev/null +++ b/packages/material-ui-icons/src/InsertDriveFileTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertDriveFileTwoTone'); diff --git a/packages/material-ui-icons/src/InsertEmoticonOutlined.js b/packages/material-ui-icons/src/InsertEmoticonOutlined.js new file mode 100644 index 00000000000000..77f995344e1d2d --- /dev/null +++ b/packages/material-ui-icons/src/InsertEmoticonOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertEmoticonOutlined'); diff --git a/packages/material-ui-icons/src/InsertEmoticonRounded.js b/packages/material-ui-icons/src/InsertEmoticonRounded.js new file mode 100644 index 00000000000000..b34bf21f3ced94 --- /dev/null +++ b/packages/material-ui-icons/src/InsertEmoticonRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertEmoticonRounded'); diff --git a/packages/material-ui-icons/src/InsertEmoticonSharp.js b/packages/material-ui-icons/src/InsertEmoticonSharp.js new file mode 100644 index 00000000000000..8340f373c80367 --- /dev/null +++ b/packages/material-ui-icons/src/InsertEmoticonSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertEmoticonSharp'); diff --git a/packages/material-ui-icons/src/InsertEmoticonTwoTone.js b/packages/material-ui-icons/src/InsertEmoticonTwoTone.js new file mode 100644 index 00000000000000..07e19d5a4a4e9e --- /dev/null +++ b/packages/material-ui-icons/src/InsertEmoticonTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertEmoticonTwoTone'); diff --git a/packages/material-ui-icons/src/InsertInvitation.js b/packages/material-ui-icons/src/InsertInvitation.js index 4f599db7f8c58a..5cde2a612e4e77 100644 --- a/packages/material-ui-icons/src/InsertInvitation.js +++ b/packages/material-ui-icons/src/InsertInvitation.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'InsertInvitation'); diff --git a/packages/material-ui-icons/src/InsertInvitationOutlined.js b/packages/material-ui-icons/src/InsertInvitationOutlined.js new file mode 100644 index 00000000000000..99bd0bd052a54d --- /dev/null +++ b/packages/material-ui-icons/src/InsertInvitationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertInvitationOutlined'); diff --git a/packages/material-ui-icons/src/InsertInvitationRounded.js b/packages/material-ui-icons/src/InsertInvitationRounded.js new file mode 100644 index 00000000000000..5f22edcde01f99 --- /dev/null +++ b/packages/material-ui-icons/src/InsertInvitationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertInvitationRounded'); diff --git a/packages/material-ui-icons/src/InsertInvitationSharp.js b/packages/material-ui-icons/src/InsertInvitationSharp.js new file mode 100644 index 00000000000000..f8f171c7ac720f --- /dev/null +++ b/packages/material-ui-icons/src/InsertInvitationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertInvitationSharp'); diff --git a/packages/material-ui-icons/src/InsertInvitationTwoTone.js b/packages/material-ui-icons/src/InsertInvitationTwoTone.js new file mode 100644 index 00000000000000..84f61f8916b26b --- /dev/null +++ b/packages/material-ui-icons/src/InsertInvitationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertInvitationTwoTone'); diff --git a/packages/material-ui-icons/src/InsertLinkOutlined.js b/packages/material-ui-icons/src/InsertLinkOutlined.js new file mode 100644 index 00000000000000..a27958512eae67 --- /dev/null +++ b/packages/material-ui-icons/src/InsertLinkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertLinkOutlined'); diff --git a/packages/material-ui-icons/src/InsertLinkRounded.js b/packages/material-ui-icons/src/InsertLinkRounded.js new file mode 100644 index 00000000000000..e9bfd6097e6056 --- /dev/null +++ b/packages/material-ui-icons/src/InsertLinkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertLinkRounded'); diff --git a/packages/material-ui-icons/src/InsertLinkSharp.js b/packages/material-ui-icons/src/InsertLinkSharp.js new file mode 100644 index 00000000000000..9cdfbb8db86421 --- /dev/null +++ b/packages/material-ui-icons/src/InsertLinkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertLinkSharp'); diff --git a/packages/material-ui-icons/src/InsertLinkTwoTone.js b/packages/material-ui-icons/src/InsertLinkTwoTone.js new file mode 100644 index 00000000000000..9e390700668999 --- /dev/null +++ b/packages/material-ui-icons/src/InsertLinkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertLinkTwoTone'); diff --git a/packages/material-ui-icons/src/InsertPhotoOutlined.js b/packages/material-ui-icons/src/InsertPhotoOutlined.js new file mode 100644 index 00000000000000..f214b7e9d40546 --- /dev/null +++ b/packages/material-ui-icons/src/InsertPhotoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertPhotoOutlined'); diff --git a/packages/material-ui-icons/src/InsertPhotoRounded.js b/packages/material-ui-icons/src/InsertPhotoRounded.js new file mode 100644 index 00000000000000..0452e7f66874e2 --- /dev/null +++ b/packages/material-ui-icons/src/InsertPhotoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertPhotoRounded'); diff --git a/packages/material-ui-icons/src/InsertPhotoSharp.js b/packages/material-ui-icons/src/InsertPhotoSharp.js new file mode 100644 index 00000000000000..d1bea4ab4c3491 --- /dev/null +++ b/packages/material-ui-icons/src/InsertPhotoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertPhotoSharp'); diff --git a/packages/material-ui-icons/src/InsertPhotoTwoTone.js b/packages/material-ui-icons/src/InsertPhotoTwoTone.js new file mode 100644 index 00000000000000..05d6988b025507 --- /dev/null +++ b/packages/material-ui-icons/src/InsertPhotoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InsertPhotoTwoTone'); diff --git a/packages/material-ui-icons/src/InvertColors.js b/packages/material-ui-icons/src/InvertColors.js index d1b664736abb36..c2a433b143a0a3 100644 --- a/packages/material-ui-icons/src/InvertColors.js +++ b/packages/material-ui-icons/src/InvertColors.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'InvertColors'); diff --git a/packages/material-ui-icons/src/InvertColorsOff.js b/packages/material-ui-icons/src/InvertColorsOff.js index a75839d6f93acb..4bbf0a598288b2 100644 --- a/packages/material-ui-icons/src/InvertColorsOff.js +++ b/packages/material-ui-icons/src/InvertColorsOff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'InvertColorsOff'); diff --git a/packages/material-ui-icons/src/InvertColorsOffOutlined.js b/packages/material-ui-icons/src/InvertColorsOffOutlined.js new file mode 100644 index 00000000000000..f6a00cd0549cc0 --- /dev/null +++ b/packages/material-ui-icons/src/InvertColorsOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InvertColorsOffOutlined'); diff --git a/packages/material-ui-icons/src/InvertColorsOffRounded.js b/packages/material-ui-icons/src/InvertColorsOffRounded.js new file mode 100644 index 00000000000000..1af1c44e5779d6 --- /dev/null +++ b/packages/material-ui-icons/src/InvertColorsOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InvertColorsOffRounded'); diff --git a/packages/material-ui-icons/src/InvertColorsOffSharp.js b/packages/material-ui-icons/src/InvertColorsOffSharp.js new file mode 100644 index 00000000000000..079f5ff5aa9eeb --- /dev/null +++ b/packages/material-ui-icons/src/InvertColorsOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InvertColorsOffSharp'); diff --git a/packages/material-ui-icons/src/InvertColorsOffTwoTone.js b/packages/material-ui-icons/src/InvertColorsOffTwoTone.js new file mode 100644 index 00000000000000..6a2a155b20f407 --- /dev/null +++ b/packages/material-ui-icons/src/InvertColorsOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InvertColorsOffTwoTone'); diff --git a/packages/material-ui-icons/src/InvertColorsOutlined.js b/packages/material-ui-icons/src/InvertColorsOutlined.js new file mode 100644 index 00000000000000..1171c8c1ec86ec --- /dev/null +++ b/packages/material-ui-icons/src/InvertColorsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InvertColorsOutlined'); diff --git a/packages/material-ui-icons/src/InvertColorsRounded.js b/packages/material-ui-icons/src/InvertColorsRounded.js new file mode 100644 index 00000000000000..da47b460c53a91 --- /dev/null +++ b/packages/material-ui-icons/src/InvertColorsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InvertColorsRounded'); diff --git a/packages/material-ui-icons/src/InvertColorsSharp.js b/packages/material-ui-icons/src/InvertColorsSharp.js new file mode 100644 index 00000000000000..827ce845b93eba --- /dev/null +++ b/packages/material-ui-icons/src/InvertColorsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InvertColorsSharp'); diff --git a/packages/material-ui-icons/src/InvertColorsTwoTone.js b/packages/material-ui-icons/src/InvertColorsTwoTone.js new file mode 100644 index 00000000000000..db34cc53457e46 --- /dev/null +++ b/packages/material-ui-icons/src/InvertColorsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'InvertColorsTwoTone'); diff --git a/packages/material-ui-icons/src/IsoOutlined.js b/packages/material-ui-icons/src/IsoOutlined.js new file mode 100644 index 00000000000000..4b3a3091bfbb2c --- /dev/null +++ b/packages/material-ui-icons/src/IsoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'IsoOutlined'); diff --git a/packages/material-ui-icons/src/IsoRounded.js b/packages/material-ui-icons/src/IsoRounded.js new file mode 100644 index 00000000000000..d78384f271d2d3 --- /dev/null +++ b/packages/material-ui-icons/src/IsoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'IsoRounded'); diff --git a/packages/material-ui-icons/src/IsoSharp.js b/packages/material-ui-icons/src/IsoSharp.js new file mode 100644 index 00000000000000..0b485767cd12bb --- /dev/null +++ b/packages/material-ui-icons/src/IsoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'IsoSharp'); diff --git a/packages/material-ui-icons/src/IsoTwoTone.js b/packages/material-ui-icons/src/IsoTwoTone.js new file mode 100644 index 00000000000000..3fcafae510c26f --- /dev/null +++ b/packages/material-ui-icons/src/IsoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'IsoTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardArrowDown.js b/packages/material-ui-icons/src/KeyboardArrowDown.js index d5ae775ac78e70..b7f824431ebd4a 100644 --- a/packages/material-ui-icons/src/KeyboardArrowDown.js +++ b/packages/material-ui-icons/src/KeyboardArrowDown.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'KeyboardArrowDown'); diff --git a/packages/material-ui-icons/src/KeyboardArrowDownOutlined.js b/packages/material-ui-icons/src/KeyboardArrowDownOutlined.js new file mode 100644 index 00000000000000..95e8f53e6cc4f5 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowDownOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowDownOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardArrowDownRounded.js b/packages/material-ui-icons/src/KeyboardArrowDownRounded.js new file mode 100644 index 00000000000000..1750b3f8fa3a02 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowDownRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowDownRounded'); diff --git a/packages/material-ui-icons/src/KeyboardArrowDownSharp.js b/packages/material-ui-icons/src/KeyboardArrowDownSharp.js new file mode 100644 index 00000000000000..505df94089586b --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowDownSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowDownSharp'); diff --git a/packages/material-ui-icons/src/KeyboardArrowDownTwoTone.js b/packages/material-ui-icons/src/KeyboardArrowDownTwoTone.js new file mode 100644 index 00000000000000..8fb26fb079bd97 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowDownTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowDownTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardArrowLeft.js b/packages/material-ui-icons/src/KeyboardArrowLeft.js index 3d87b56bcffc2f..e9a8ccd61eb39d 100644 --- a/packages/material-ui-icons/src/KeyboardArrowLeft.js +++ b/packages/material-ui-icons/src/KeyboardArrowLeft.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'KeyboardArrowLeft'); diff --git a/packages/material-ui-icons/src/KeyboardArrowLeftOutlined.js b/packages/material-ui-icons/src/KeyboardArrowLeftOutlined.js new file mode 100644 index 00000000000000..0754162a5a6de8 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowLeftOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowLeftOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardArrowLeftRounded.js b/packages/material-ui-icons/src/KeyboardArrowLeftRounded.js new file mode 100644 index 00000000000000..3c1b8b25fae856 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowLeftRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowLeftRounded'); diff --git a/packages/material-ui-icons/src/KeyboardArrowLeftSharp.js b/packages/material-ui-icons/src/KeyboardArrowLeftSharp.js new file mode 100644 index 00000000000000..b68d1917e3f7ea --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowLeftSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowLeftSharp'); diff --git a/packages/material-ui-icons/src/KeyboardArrowLeftTwoTone.js b/packages/material-ui-icons/src/KeyboardArrowLeftTwoTone.js new file mode 100644 index 00000000000000..de339a5c6624f7 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowLeftTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowLeftTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardArrowRight.js b/packages/material-ui-icons/src/KeyboardArrowRight.js index 8bc766f9d9855f..ebc2c872f78027 100644 --- a/packages/material-ui-icons/src/KeyboardArrowRight.js +++ b/packages/material-ui-icons/src/KeyboardArrowRight.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'KeyboardArrowRight'); diff --git a/packages/material-ui-icons/src/KeyboardArrowRightOutlined.js b/packages/material-ui-icons/src/KeyboardArrowRightOutlined.js new file mode 100644 index 00000000000000..56937bb79d8387 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowRightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowRightOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardArrowRightRounded.js b/packages/material-ui-icons/src/KeyboardArrowRightRounded.js new file mode 100644 index 00000000000000..727c419d10105f --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowRightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowRightRounded'); diff --git a/packages/material-ui-icons/src/KeyboardArrowRightSharp.js b/packages/material-ui-icons/src/KeyboardArrowRightSharp.js new file mode 100644 index 00000000000000..dba9efa6aed641 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowRightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowRightSharp'); diff --git a/packages/material-ui-icons/src/KeyboardArrowRightTwoTone.js b/packages/material-ui-icons/src/KeyboardArrowRightTwoTone.js new file mode 100644 index 00000000000000..fcb0f84910f247 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowRightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowRightTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardArrowUpOutlined.js b/packages/material-ui-icons/src/KeyboardArrowUpOutlined.js new file mode 100644 index 00000000000000..bb0158ce4c0093 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowUpOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowUpOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardArrowUpRounded.js b/packages/material-ui-icons/src/KeyboardArrowUpRounded.js new file mode 100644 index 00000000000000..43918af5366203 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowUpRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowUpRounded'); diff --git a/packages/material-ui-icons/src/KeyboardArrowUpSharp.js b/packages/material-ui-icons/src/KeyboardArrowUpSharp.js new file mode 100644 index 00000000000000..7cd8272e345cd0 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowUpSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowUpSharp'); diff --git a/packages/material-ui-icons/src/KeyboardArrowUpTwoTone.js b/packages/material-ui-icons/src/KeyboardArrowUpTwoTone.js new file mode 100644 index 00000000000000..bbeb764c0f3277 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardArrowUpTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardArrowUpTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardBackspaceOutlined.js b/packages/material-ui-icons/src/KeyboardBackspaceOutlined.js new file mode 100644 index 00000000000000..1e03b8034a3161 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardBackspaceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardBackspaceOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardBackspaceRounded.js b/packages/material-ui-icons/src/KeyboardBackspaceRounded.js new file mode 100644 index 00000000000000..993b83e7a4d442 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardBackspaceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardBackspaceRounded'); diff --git a/packages/material-ui-icons/src/KeyboardBackspaceSharp.js b/packages/material-ui-icons/src/KeyboardBackspaceSharp.js new file mode 100644 index 00000000000000..b6b4e51a5a32df --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardBackspaceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardBackspaceSharp'); diff --git a/packages/material-ui-icons/src/KeyboardBackspaceTwoTone.js b/packages/material-ui-icons/src/KeyboardBackspaceTwoTone.js new file mode 100644 index 00000000000000..49cb662b5b6ca1 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardBackspaceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardBackspaceTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardCapslockOutlined.js b/packages/material-ui-icons/src/KeyboardCapslockOutlined.js new file mode 100644 index 00000000000000..b29d42e6548b2b --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardCapslockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardCapslockOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardCapslockRounded.js b/packages/material-ui-icons/src/KeyboardCapslockRounded.js new file mode 100644 index 00000000000000..8d2e79a8097e48 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardCapslockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardCapslockRounded'); diff --git a/packages/material-ui-icons/src/KeyboardCapslockSharp.js b/packages/material-ui-icons/src/KeyboardCapslockSharp.js new file mode 100644 index 00000000000000..90dbad91ca7cdf --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardCapslockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardCapslockSharp'); diff --git a/packages/material-ui-icons/src/KeyboardCapslockTwoTone.js b/packages/material-ui-icons/src/KeyboardCapslockTwoTone.js new file mode 100644 index 00000000000000..8e53212ff14fb4 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardCapslockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardCapslockTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardHideOutlined.js b/packages/material-ui-icons/src/KeyboardHideOutlined.js new file mode 100644 index 00000000000000..8b7fa97862e992 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardHideOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardHideOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardHideRounded.js b/packages/material-ui-icons/src/KeyboardHideRounded.js new file mode 100644 index 00000000000000..b2ddf0c7e59876 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardHideRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardHideRounded'); diff --git a/packages/material-ui-icons/src/KeyboardHideSharp.js b/packages/material-ui-icons/src/KeyboardHideSharp.js new file mode 100644 index 00000000000000..33934f9b38b3bb --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardHideSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardHideSharp'); diff --git a/packages/material-ui-icons/src/KeyboardHideTwoTone.js b/packages/material-ui-icons/src/KeyboardHideTwoTone.js new file mode 100644 index 00000000000000..2de94ced6e3c59 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardHideTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardHideTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardOutlined.js b/packages/material-ui-icons/src/KeyboardOutlined.js new file mode 100644 index 00000000000000..5d398d5cbc3aeb --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardReturnOutlined.js b/packages/material-ui-icons/src/KeyboardReturnOutlined.js new file mode 100644 index 00000000000000..8c4fea0d22f41f --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardReturnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardReturnOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardReturnRounded.js b/packages/material-ui-icons/src/KeyboardReturnRounded.js new file mode 100644 index 00000000000000..530a98eb46b1d1 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardReturnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardReturnRounded'); diff --git a/packages/material-ui-icons/src/KeyboardReturnSharp.js b/packages/material-ui-icons/src/KeyboardReturnSharp.js new file mode 100644 index 00000000000000..3eda91abe0dfb9 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardReturnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardReturnSharp'); diff --git a/packages/material-ui-icons/src/KeyboardReturnTwoTone.js b/packages/material-ui-icons/src/KeyboardReturnTwoTone.js new file mode 100644 index 00000000000000..7a66efc91fd94d --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardReturnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardReturnTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardRounded.js b/packages/material-ui-icons/src/KeyboardRounded.js new file mode 100644 index 00000000000000..06700c2408ea91 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardRounded'); diff --git a/packages/material-ui-icons/src/KeyboardSharp.js b/packages/material-ui-icons/src/KeyboardSharp.js new file mode 100644 index 00000000000000..79b05866ee3959 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardSharp'); diff --git a/packages/material-ui-icons/src/KeyboardTabOutlined.js b/packages/material-ui-icons/src/KeyboardTabOutlined.js new file mode 100644 index 00000000000000..a6500239d1cb51 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardTabOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardTabOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardTabRounded.js b/packages/material-ui-icons/src/KeyboardTabRounded.js new file mode 100644 index 00000000000000..d14ce35da659e7 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardTabRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardTabRounded'); diff --git a/packages/material-ui-icons/src/KeyboardTabSharp.js b/packages/material-ui-icons/src/KeyboardTabSharp.js new file mode 100644 index 00000000000000..a26031d81a188f --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardTabSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardTabSharp'); diff --git a/packages/material-ui-icons/src/KeyboardTabTwoTone.js b/packages/material-ui-icons/src/KeyboardTabTwoTone.js new file mode 100644 index 00000000000000..e88f847516eca8 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardTabTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardTabTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardTwoTone.js b/packages/material-ui-icons/src/KeyboardTwoTone.js new file mode 100644 index 00000000000000..db54355fba61b5 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardTwoTone'); diff --git a/packages/material-ui-icons/src/KeyboardVoiceOutlined.js b/packages/material-ui-icons/src/KeyboardVoiceOutlined.js new file mode 100644 index 00000000000000..ca904f8a1db8cf --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardVoiceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardVoiceOutlined'); diff --git a/packages/material-ui-icons/src/KeyboardVoiceRounded.js b/packages/material-ui-icons/src/KeyboardVoiceRounded.js new file mode 100644 index 00000000000000..ac4017f8297f34 --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardVoiceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardVoiceRounded'); diff --git a/packages/material-ui-icons/src/KeyboardVoiceSharp.js b/packages/material-ui-icons/src/KeyboardVoiceSharp.js new file mode 100644 index 00000000000000..908450a7788a9a --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardVoiceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardVoiceSharp'); diff --git a/packages/material-ui-icons/src/KeyboardVoiceTwoTone.js b/packages/material-ui-icons/src/KeyboardVoiceTwoTone.js new file mode 100644 index 00000000000000..e739c0d833144e --- /dev/null +++ b/packages/material-ui-icons/src/KeyboardVoiceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KeyboardVoiceTwoTone'); diff --git a/packages/material-ui-icons/src/Kitchen.js b/packages/material-ui-icons/src/Kitchen.js index ac781ceaf340fd..6d39bee6339e14 100644 --- a/packages/material-ui-icons/src/Kitchen.js +++ b/packages/material-ui-icons/src/Kitchen.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Kitchen'); diff --git a/packages/material-ui-icons/src/KitchenOutlined.js b/packages/material-ui-icons/src/KitchenOutlined.js new file mode 100644 index 00000000000000..8912f2750e3094 --- /dev/null +++ b/packages/material-ui-icons/src/KitchenOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KitchenOutlined'); diff --git a/packages/material-ui-icons/src/KitchenRounded.js b/packages/material-ui-icons/src/KitchenRounded.js new file mode 100644 index 00000000000000..b3a4d26ca68c4a --- /dev/null +++ b/packages/material-ui-icons/src/KitchenRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KitchenRounded'); diff --git a/packages/material-ui-icons/src/KitchenSharp.js b/packages/material-ui-icons/src/KitchenSharp.js new file mode 100644 index 00000000000000..ecb1d68b3934bf --- /dev/null +++ b/packages/material-ui-icons/src/KitchenSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KitchenSharp'); diff --git a/packages/material-ui-icons/src/KitchenTwoTone.js b/packages/material-ui-icons/src/KitchenTwoTone.js new file mode 100644 index 00000000000000..3d404865160b71 --- /dev/null +++ b/packages/material-ui-icons/src/KitchenTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'KitchenTwoTone'); diff --git a/packages/material-ui-icons/src/LabelImportant.js b/packages/material-ui-icons/src/LabelImportant.js new file mode 100644 index 00000000000000..9b8e30e89e77cc --- /dev/null +++ b/packages/material-ui-icons/src/LabelImportant.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelImportant'); diff --git a/packages/material-ui-icons/src/LabelImportantOutlined.js b/packages/material-ui-icons/src/LabelImportantOutlined.js new file mode 100644 index 00000000000000..180d75c27927e4 --- /dev/null +++ b/packages/material-ui-icons/src/LabelImportantOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelImportantOutlined'); diff --git a/packages/material-ui-icons/src/LabelImportantRounded.js b/packages/material-ui-icons/src/LabelImportantRounded.js new file mode 100644 index 00000000000000..4cce9e5a3b59b5 --- /dev/null +++ b/packages/material-ui-icons/src/LabelImportantRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelImportantRounded'); diff --git a/packages/material-ui-icons/src/LabelImportantSharp.js b/packages/material-ui-icons/src/LabelImportantSharp.js new file mode 100644 index 00000000000000..b3e9ec01fdd0a3 --- /dev/null +++ b/packages/material-ui-icons/src/LabelImportantSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelImportantSharp'); diff --git a/packages/material-ui-icons/src/LabelImportantTwoTone.js b/packages/material-ui-icons/src/LabelImportantTwoTone.js new file mode 100644 index 00000000000000..3f903fff1e46f8 --- /dev/null +++ b/packages/material-ui-icons/src/LabelImportantTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelImportantTwoTone'); diff --git a/packages/material-ui-icons/src/LabelOff.js b/packages/material-ui-icons/src/LabelOff.js new file mode 100644 index 00000000000000..95f3321fd91bcf --- /dev/null +++ b/packages/material-ui-icons/src/LabelOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelOff'); diff --git a/packages/material-ui-icons/src/LabelOffOutlined.js b/packages/material-ui-icons/src/LabelOffOutlined.js new file mode 100644 index 00000000000000..5b9bfc4a1de29f --- /dev/null +++ b/packages/material-ui-icons/src/LabelOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelOffOutlined'); diff --git a/packages/material-ui-icons/src/LabelOffRounded.js b/packages/material-ui-icons/src/LabelOffRounded.js new file mode 100644 index 00000000000000..6517bdaff69fe7 --- /dev/null +++ b/packages/material-ui-icons/src/LabelOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelOffRounded'); diff --git a/packages/material-ui-icons/src/LabelOffSharp.js b/packages/material-ui-icons/src/LabelOffSharp.js new file mode 100644 index 00000000000000..d1d625af12dd9b --- /dev/null +++ b/packages/material-ui-icons/src/LabelOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelOffSharp'); diff --git a/packages/material-ui-icons/src/LabelOffTwoTone.js b/packages/material-ui-icons/src/LabelOffTwoTone.js new file mode 100644 index 00000000000000..022df75ab95d38 --- /dev/null +++ b/packages/material-ui-icons/src/LabelOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelOffTwoTone'); diff --git a/packages/material-ui-icons/src/LabelOutline.js b/packages/material-ui-icons/src/LabelOutlined.js similarity index 93% rename from packages/material-ui-icons/src/LabelOutline.js rename to packages/material-ui-icons/src/LabelOutlined.js index 0aebdee9025dad..0fc2bf52ec94a4 100644 --- a/packages/material-ui-icons/src/LabelOutline.js +++ b/packages/material-ui-icons/src/LabelOutlined.js @@ -3,4 +3,4 @@ import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( -, 'LabelOutline'); +, 'LabelOutlined'); diff --git a/packages/material-ui-icons/src/LabelRounded.js b/packages/material-ui-icons/src/LabelRounded.js new file mode 100644 index 00000000000000..c2db4a4dbcb1ba --- /dev/null +++ b/packages/material-ui-icons/src/LabelRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelRounded'); diff --git a/packages/material-ui-icons/src/LabelSharp.js b/packages/material-ui-icons/src/LabelSharp.js new file mode 100644 index 00000000000000..4a5daaa1e396b5 --- /dev/null +++ b/packages/material-ui-icons/src/LabelSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelSharp'); diff --git a/packages/material-ui-icons/src/LabelTwoTone.js b/packages/material-ui-icons/src/LabelTwoTone.js new file mode 100644 index 00000000000000..97a36e3df8807d --- /dev/null +++ b/packages/material-ui-icons/src/LabelTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LabelTwoTone'); diff --git a/packages/material-ui-icons/src/LandscapeOutlined.js b/packages/material-ui-icons/src/LandscapeOutlined.js new file mode 100644 index 00000000000000..19e01db5b5a3c3 --- /dev/null +++ b/packages/material-ui-icons/src/LandscapeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LandscapeOutlined'); diff --git a/packages/material-ui-icons/src/LandscapeRounded.js b/packages/material-ui-icons/src/LandscapeRounded.js new file mode 100644 index 00000000000000..2e100f53374401 --- /dev/null +++ b/packages/material-ui-icons/src/LandscapeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LandscapeRounded'); diff --git a/packages/material-ui-icons/src/LandscapeSharp.js b/packages/material-ui-icons/src/LandscapeSharp.js new file mode 100644 index 00000000000000..07532fcdbed540 --- /dev/null +++ b/packages/material-ui-icons/src/LandscapeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LandscapeSharp'); diff --git a/packages/material-ui-icons/src/LandscapeTwoTone.js b/packages/material-ui-icons/src/LandscapeTwoTone.js new file mode 100644 index 00000000000000..8ce3d0f2c0e0b6 --- /dev/null +++ b/packages/material-ui-icons/src/LandscapeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LandscapeTwoTone'); diff --git a/packages/material-ui-icons/src/Language.js b/packages/material-ui-icons/src/Language.js index fc24f93334d34d..4b730bb7a7319e 100644 --- a/packages/material-ui-icons/src/Language.js +++ b/packages/material-ui-icons/src/Language.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Language'); diff --git a/packages/material-ui-icons/src/LanguageOutlined.js b/packages/material-ui-icons/src/LanguageOutlined.js new file mode 100644 index 00000000000000..1554ca9f1c51cf --- /dev/null +++ b/packages/material-ui-icons/src/LanguageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LanguageOutlined'); diff --git a/packages/material-ui-icons/src/LanguageRounded.js b/packages/material-ui-icons/src/LanguageRounded.js new file mode 100644 index 00000000000000..b1b26f9afe3d90 --- /dev/null +++ b/packages/material-ui-icons/src/LanguageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LanguageRounded'); diff --git a/packages/material-ui-icons/src/LanguageSharp.js b/packages/material-ui-icons/src/LanguageSharp.js new file mode 100644 index 00000000000000..7774487a68b0b6 --- /dev/null +++ b/packages/material-ui-icons/src/LanguageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LanguageSharp'); diff --git a/packages/material-ui-icons/src/LanguageTwoTone.js b/packages/material-ui-icons/src/LanguageTwoTone.js new file mode 100644 index 00000000000000..1c8c2120562224 --- /dev/null +++ b/packages/material-ui-icons/src/LanguageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LanguageTwoTone'); diff --git a/packages/material-ui-icons/src/Laptop.js b/packages/material-ui-icons/src/Laptop.js index 11af19bf1010ee..3451f8ff49e5c0 100644 --- a/packages/material-ui-icons/src/Laptop.js +++ b/packages/material-ui-icons/src/Laptop.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Laptop'); diff --git a/packages/material-ui-icons/src/LaptopChromebookOutlined.js b/packages/material-ui-icons/src/LaptopChromebookOutlined.js new file mode 100644 index 00000000000000..83531c90fc97ca --- /dev/null +++ b/packages/material-ui-icons/src/LaptopChromebookOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopChromebookOutlined'); diff --git a/packages/material-ui-icons/src/LaptopChromebookRounded.js b/packages/material-ui-icons/src/LaptopChromebookRounded.js new file mode 100644 index 00000000000000..832f4618f69acd --- /dev/null +++ b/packages/material-ui-icons/src/LaptopChromebookRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopChromebookRounded'); diff --git a/packages/material-ui-icons/src/LaptopChromebookSharp.js b/packages/material-ui-icons/src/LaptopChromebookSharp.js new file mode 100644 index 00000000000000..632cb7f0e22171 --- /dev/null +++ b/packages/material-ui-icons/src/LaptopChromebookSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopChromebookSharp'); diff --git a/packages/material-ui-icons/src/LaptopChromebookTwoTone.js b/packages/material-ui-icons/src/LaptopChromebookTwoTone.js new file mode 100644 index 00000000000000..4f6cd7932b23be --- /dev/null +++ b/packages/material-ui-icons/src/LaptopChromebookTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopChromebookTwoTone'); diff --git a/packages/material-ui-icons/src/LaptopMacOutlined.js b/packages/material-ui-icons/src/LaptopMacOutlined.js new file mode 100644 index 00000000000000..c4a819cfefac8d --- /dev/null +++ b/packages/material-ui-icons/src/LaptopMacOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopMacOutlined'); diff --git a/packages/material-ui-icons/src/LaptopMacRounded.js b/packages/material-ui-icons/src/LaptopMacRounded.js new file mode 100644 index 00000000000000..497e5181eaf266 --- /dev/null +++ b/packages/material-ui-icons/src/LaptopMacRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopMacRounded'); diff --git a/packages/material-ui-icons/src/LaptopMacSharp.js b/packages/material-ui-icons/src/LaptopMacSharp.js new file mode 100644 index 00000000000000..22fc6f293d8b6e --- /dev/null +++ b/packages/material-ui-icons/src/LaptopMacSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopMacSharp'); diff --git a/packages/material-ui-icons/src/LaptopMacTwoTone.js b/packages/material-ui-icons/src/LaptopMacTwoTone.js new file mode 100644 index 00000000000000..9fd19b6847245a --- /dev/null +++ b/packages/material-ui-icons/src/LaptopMacTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopMacTwoTone'); diff --git a/packages/material-ui-icons/src/LaptopOutlined.js b/packages/material-ui-icons/src/LaptopOutlined.js new file mode 100644 index 00000000000000..9dc978d220d8d4 --- /dev/null +++ b/packages/material-ui-icons/src/LaptopOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopOutlined'); diff --git a/packages/material-ui-icons/src/LaptopRounded.js b/packages/material-ui-icons/src/LaptopRounded.js new file mode 100644 index 00000000000000..6e6eae7e96d927 --- /dev/null +++ b/packages/material-ui-icons/src/LaptopRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopRounded'); diff --git a/packages/material-ui-icons/src/LaptopSharp.js b/packages/material-ui-icons/src/LaptopSharp.js new file mode 100644 index 00000000000000..a129203b338839 --- /dev/null +++ b/packages/material-ui-icons/src/LaptopSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopSharp'); diff --git a/packages/material-ui-icons/src/LaptopTwoTone.js b/packages/material-ui-icons/src/LaptopTwoTone.js new file mode 100644 index 00000000000000..699a651023c4d2 --- /dev/null +++ b/packages/material-ui-icons/src/LaptopTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopTwoTone'); diff --git a/packages/material-ui-icons/src/LaptopWindowsOutlined.js b/packages/material-ui-icons/src/LaptopWindowsOutlined.js new file mode 100644 index 00000000000000..f043bd0fd5c9fc --- /dev/null +++ b/packages/material-ui-icons/src/LaptopWindowsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopWindowsOutlined'); diff --git a/packages/material-ui-icons/src/LaptopWindowsRounded.js b/packages/material-ui-icons/src/LaptopWindowsRounded.js new file mode 100644 index 00000000000000..83056a4477e25f --- /dev/null +++ b/packages/material-ui-icons/src/LaptopWindowsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopWindowsRounded'); diff --git a/packages/material-ui-icons/src/LaptopWindowsSharp.js b/packages/material-ui-icons/src/LaptopWindowsSharp.js new file mode 100644 index 00000000000000..9781832af6da39 --- /dev/null +++ b/packages/material-ui-icons/src/LaptopWindowsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopWindowsSharp'); diff --git a/packages/material-ui-icons/src/LaptopWindowsTwoTone.js b/packages/material-ui-icons/src/LaptopWindowsTwoTone.js new file mode 100644 index 00000000000000..368d05ca1dbe06 --- /dev/null +++ b/packages/material-ui-icons/src/LaptopWindowsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaptopWindowsTwoTone'); diff --git a/packages/material-ui-icons/src/LastPageOutlined.js b/packages/material-ui-icons/src/LastPageOutlined.js new file mode 100644 index 00000000000000..754c08b88d01ef --- /dev/null +++ b/packages/material-ui-icons/src/LastPageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LastPageOutlined'); diff --git a/packages/material-ui-icons/src/LastPageRounded.js b/packages/material-ui-icons/src/LastPageRounded.js new file mode 100644 index 00000000000000..9d497b7e20d859 --- /dev/null +++ b/packages/material-ui-icons/src/LastPageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LastPageRounded'); diff --git a/packages/material-ui-icons/src/LastPageSharp.js b/packages/material-ui-icons/src/LastPageSharp.js new file mode 100644 index 00000000000000..5bf12b1135bb6d --- /dev/null +++ b/packages/material-ui-icons/src/LastPageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LastPageSharp'); diff --git a/packages/material-ui-icons/src/LastPageTwoTone.js b/packages/material-ui-icons/src/LastPageTwoTone.js new file mode 100644 index 00000000000000..dffdbb687b5279 --- /dev/null +++ b/packages/material-ui-icons/src/LastPageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LastPageTwoTone'); diff --git a/packages/material-ui-icons/src/Launch.js b/packages/material-ui-icons/src/Launch.js index a55f50c40a7a5f..9e88366b8f64ce 100644 --- a/packages/material-ui-icons/src/Launch.js +++ b/packages/material-ui-icons/src/Launch.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Launch'); diff --git a/packages/material-ui-icons/src/LaunchOutlined.js b/packages/material-ui-icons/src/LaunchOutlined.js new file mode 100644 index 00000000000000..de091189e29604 --- /dev/null +++ b/packages/material-ui-icons/src/LaunchOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaunchOutlined'); diff --git a/packages/material-ui-icons/src/LaunchRounded.js b/packages/material-ui-icons/src/LaunchRounded.js new file mode 100644 index 00000000000000..3facd5765341e8 --- /dev/null +++ b/packages/material-ui-icons/src/LaunchRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaunchRounded'); diff --git a/packages/material-ui-icons/src/LaunchSharp.js b/packages/material-ui-icons/src/LaunchSharp.js new file mode 100644 index 00000000000000..c86dd913cb25ef --- /dev/null +++ b/packages/material-ui-icons/src/LaunchSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaunchSharp'); diff --git a/packages/material-ui-icons/src/LaunchTwoTone.js b/packages/material-ui-icons/src/LaunchTwoTone.js new file mode 100644 index 00000000000000..e54349e3e2250a --- /dev/null +++ b/packages/material-ui-icons/src/LaunchTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LaunchTwoTone'); diff --git a/packages/material-ui-icons/src/LayersClearOutlined.js b/packages/material-ui-icons/src/LayersClearOutlined.js new file mode 100644 index 00000000000000..d9efce88cf8c02 --- /dev/null +++ b/packages/material-ui-icons/src/LayersClearOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LayersClearOutlined'); diff --git a/packages/material-ui-icons/src/LayersClearRounded.js b/packages/material-ui-icons/src/LayersClearRounded.js new file mode 100644 index 00000000000000..20b0085abc75c4 --- /dev/null +++ b/packages/material-ui-icons/src/LayersClearRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LayersClearRounded'); diff --git a/packages/material-ui-icons/src/LayersClearSharp.js b/packages/material-ui-icons/src/LayersClearSharp.js new file mode 100644 index 00000000000000..e67d8861995dc0 --- /dev/null +++ b/packages/material-ui-icons/src/LayersClearSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LayersClearSharp'); diff --git a/packages/material-ui-icons/src/LayersClearTwoTone.js b/packages/material-ui-icons/src/LayersClearTwoTone.js new file mode 100644 index 00000000000000..16d259d568a668 --- /dev/null +++ b/packages/material-ui-icons/src/LayersClearTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LayersClearTwoTone'); diff --git a/packages/material-ui-icons/src/LayersOutlined.js b/packages/material-ui-icons/src/LayersOutlined.js new file mode 100644 index 00000000000000..182e490d2e6372 --- /dev/null +++ b/packages/material-ui-icons/src/LayersOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LayersOutlined'); diff --git a/packages/material-ui-icons/src/LayersRounded.js b/packages/material-ui-icons/src/LayersRounded.js new file mode 100644 index 00000000000000..430a92637aa77e --- /dev/null +++ b/packages/material-ui-icons/src/LayersRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LayersRounded'); diff --git a/packages/material-ui-icons/src/LayersSharp.js b/packages/material-ui-icons/src/LayersSharp.js new file mode 100644 index 00000000000000..0c96763ee054cb --- /dev/null +++ b/packages/material-ui-icons/src/LayersSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LayersSharp'); diff --git a/packages/material-ui-icons/src/LayersTwoTone.js b/packages/material-ui-icons/src/LayersTwoTone.js new file mode 100644 index 00000000000000..8c4112cc9eba7b --- /dev/null +++ b/packages/material-ui-icons/src/LayersTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LayersTwoTone'); diff --git a/packages/material-ui-icons/src/LeakAdd.js b/packages/material-ui-icons/src/LeakAdd.js index 241c2d7a9e2754..296ee8bb573cf6 100644 --- a/packages/material-ui-icons/src/LeakAdd.js +++ b/packages/material-ui-icons/src/LeakAdd.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LeakAdd'); diff --git a/packages/material-ui-icons/src/LeakAddOutlined.js b/packages/material-ui-icons/src/LeakAddOutlined.js new file mode 100644 index 00000000000000..80c2d8bd2d2689 --- /dev/null +++ b/packages/material-ui-icons/src/LeakAddOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LeakAddOutlined'); diff --git a/packages/material-ui-icons/src/LeakAddRounded.js b/packages/material-ui-icons/src/LeakAddRounded.js new file mode 100644 index 00000000000000..cfc1a215d395e9 --- /dev/null +++ b/packages/material-ui-icons/src/LeakAddRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LeakAddRounded'); diff --git a/packages/material-ui-icons/src/LeakAddSharp.js b/packages/material-ui-icons/src/LeakAddSharp.js new file mode 100644 index 00000000000000..ccf1634f784f65 --- /dev/null +++ b/packages/material-ui-icons/src/LeakAddSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LeakAddSharp'); diff --git a/packages/material-ui-icons/src/LeakAddTwoTone.js b/packages/material-ui-icons/src/LeakAddTwoTone.js new file mode 100644 index 00000000000000..80873d234b3dde --- /dev/null +++ b/packages/material-ui-icons/src/LeakAddTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LeakAddTwoTone'); diff --git a/packages/material-ui-icons/src/LeakRemove.js b/packages/material-ui-icons/src/LeakRemove.js index 645a21a7cd1e2e..22502a65c8835d 100644 --- a/packages/material-ui-icons/src/LeakRemove.js +++ b/packages/material-ui-icons/src/LeakRemove.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LeakRemove'); diff --git a/packages/material-ui-icons/src/LeakRemoveOutlined.js b/packages/material-ui-icons/src/LeakRemoveOutlined.js new file mode 100644 index 00000000000000..da01f2aee9393f --- /dev/null +++ b/packages/material-ui-icons/src/LeakRemoveOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LeakRemoveOutlined'); diff --git a/packages/material-ui-icons/src/LeakRemoveRounded.js b/packages/material-ui-icons/src/LeakRemoveRounded.js new file mode 100644 index 00000000000000..2ef58f6fa3578b --- /dev/null +++ b/packages/material-ui-icons/src/LeakRemoveRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LeakRemoveRounded'); diff --git a/packages/material-ui-icons/src/LeakRemoveSharp.js b/packages/material-ui-icons/src/LeakRemoveSharp.js new file mode 100644 index 00000000000000..9a3615f5e0c00d --- /dev/null +++ b/packages/material-ui-icons/src/LeakRemoveSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LeakRemoveSharp'); diff --git a/packages/material-ui-icons/src/LeakRemoveTwoTone.js b/packages/material-ui-icons/src/LeakRemoveTwoTone.js new file mode 100644 index 00000000000000..331cfe01c64b31 --- /dev/null +++ b/packages/material-ui-icons/src/LeakRemoveTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LeakRemoveTwoTone'); diff --git a/packages/material-ui-icons/src/LensOutlined.js b/packages/material-ui-icons/src/LensOutlined.js new file mode 100644 index 00000000000000..f8a9b2e7600574 --- /dev/null +++ b/packages/material-ui-icons/src/LensOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LensOutlined'); diff --git a/packages/material-ui-icons/src/LensRounded.js b/packages/material-ui-icons/src/LensRounded.js new file mode 100644 index 00000000000000..2830ce10993d76 --- /dev/null +++ b/packages/material-ui-icons/src/LensRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LensRounded'); diff --git a/packages/material-ui-icons/src/LensSharp.js b/packages/material-ui-icons/src/LensSharp.js new file mode 100644 index 00000000000000..5f0276355081ba --- /dev/null +++ b/packages/material-ui-icons/src/LensSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LensSharp'); diff --git a/packages/material-ui-icons/src/LensTwoTone.js b/packages/material-ui-icons/src/LensTwoTone.js new file mode 100644 index 00000000000000..7b5a561979cb52 --- /dev/null +++ b/packages/material-ui-icons/src/LensTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LensTwoTone'); diff --git a/packages/material-ui-icons/src/LibraryAddOutlined.js b/packages/material-ui-icons/src/LibraryAddOutlined.js new file mode 100644 index 00000000000000..18670c16302e99 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryAddOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryAddOutlined'); diff --git a/packages/material-ui-icons/src/LibraryAddRounded.js b/packages/material-ui-icons/src/LibraryAddRounded.js new file mode 100644 index 00000000000000..71579940f30d39 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryAddRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryAddRounded'); diff --git a/packages/material-ui-icons/src/LibraryAddSharp.js b/packages/material-ui-icons/src/LibraryAddSharp.js new file mode 100644 index 00000000000000..10e9f34ae654fd --- /dev/null +++ b/packages/material-ui-icons/src/LibraryAddSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryAddSharp'); diff --git a/packages/material-ui-icons/src/LibraryAddTwoTone.js b/packages/material-ui-icons/src/LibraryAddTwoTone.js new file mode 100644 index 00000000000000..10acd225eaac17 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryAddTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryAddTwoTone'); diff --git a/packages/material-ui-icons/src/LibraryBooksOutlined.js b/packages/material-ui-icons/src/LibraryBooksOutlined.js new file mode 100644 index 00000000000000..08556c22a40e73 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryBooksOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryBooksOutlined'); diff --git a/packages/material-ui-icons/src/LibraryBooksRounded.js b/packages/material-ui-icons/src/LibraryBooksRounded.js new file mode 100644 index 00000000000000..023c3519f06704 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryBooksRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryBooksRounded'); diff --git a/packages/material-ui-icons/src/LibraryBooksSharp.js b/packages/material-ui-icons/src/LibraryBooksSharp.js new file mode 100644 index 00000000000000..a48c094cf2dc42 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryBooksSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryBooksSharp'); diff --git a/packages/material-ui-icons/src/LibraryBooksTwoTone.js b/packages/material-ui-icons/src/LibraryBooksTwoTone.js new file mode 100644 index 00000000000000..978edc1c5dd991 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryBooksTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryBooksTwoTone'); diff --git a/packages/material-ui-icons/src/LibraryMusic.js b/packages/material-ui-icons/src/LibraryMusic.js index 5e5697faf8b62d..aca83c7376c9db 100644 --- a/packages/material-ui-icons/src/LibraryMusic.js +++ b/packages/material-ui-icons/src/LibraryMusic.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LibraryMusic'); diff --git a/packages/material-ui-icons/src/LibraryMusicOutlined.js b/packages/material-ui-icons/src/LibraryMusicOutlined.js new file mode 100644 index 00000000000000..acf1bb8cf06526 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryMusicOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryMusicOutlined'); diff --git a/packages/material-ui-icons/src/LibraryMusicRounded.js b/packages/material-ui-icons/src/LibraryMusicRounded.js new file mode 100644 index 00000000000000..eac3a142f811a5 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryMusicRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryMusicRounded'); diff --git a/packages/material-ui-icons/src/LibraryMusicSharp.js b/packages/material-ui-icons/src/LibraryMusicSharp.js new file mode 100644 index 00000000000000..b1195aa81ffff6 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryMusicSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryMusicSharp'); diff --git a/packages/material-ui-icons/src/LibraryMusicTwoTone.js b/packages/material-ui-icons/src/LibraryMusicTwoTone.js new file mode 100644 index 00000000000000..30e2318f78df93 --- /dev/null +++ b/packages/material-ui-icons/src/LibraryMusicTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LibraryMusicTwoTone'); diff --git a/packages/material-ui-icons/src/LightbulbOutline.js b/packages/material-ui-icons/src/LightbulbOutline.js deleted file mode 100644 index a2ed12acc90585..00000000000000 --- a/packages/material-ui-icons/src/LightbulbOutline.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'LightbulbOutline'); diff --git a/packages/material-ui-icons/src/LineStyle.js b/packages/material-ui-icons/src/LineStyle.js index 8f242508d907a2..fe42d0e911cba6 100644 --- a/packages/material-ui-icons/src/LineStyle.js +++ b/packages/material-ui-icons/src/LineStyle.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LineStyle'); diff --git a/packages/material-ui-icons/src/LineStyleOutlined.js b/packages/material-ui-icons/src/LineStyleOutlined.js new file mode 100644 index 00000000000000..5d4cc94c3264ef --- /dev/null +++ b/packages/material-ui-icons/src/LineStyleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LineStyleOutlined'); diff --git a/packages/material-ui-icons/src/LineStyleRounded.js b/packages/material-ui-icons/src/LineStyleRounded.js new file mode 100644 index 00000000000000..76929f1e0c0c33 --- /dev/null +++ b/packages/material-ui-icons/src/LineStyleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LineStyleRounded'); diff --git a/packages/material-ui-icons/src/LineStyleSharp.js b/packages/material-ui-icons/src/LineStyleSharp.js new file mode 100644 index 00000000000000..0029d6b2297fec --- /dev/null +++ b/packages/material-ui-icons/src/LineStyleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LineStyleSharp'); diff --git a/packages/material-ui-icons/src/LineStyleTwoTone.js b/packages/material-ui-icons/src/LineStyleTwoTone.js new file mode 100644 index 00000000000000..bc8f1619a576e5 --- /dev/null +++ b/packages/material-ui-icons/src/LineStyleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LineStyleTwoTone'); diff --git a/packages/material-ui-icons/src/LineWeight.js b/packages/material-ui-icons/src/LineWeight.js index 30d336abb9390e..a36b7f74cd4b6a 100644 --- a/packages/material-ui-icons/src/LineWeight.js +++ b/packages/material-ui-icons/src/LineWeight.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LineWeight'); diff --git a/packages/material-ui-icons/src/LineWeightOutlined.js b/packages/material-ui-icons/src/LineWeightOutlined.js new file mode 100644 index 00000000000000..d2e2b0041a2bff --- /dev/null +++ b/packages/material-ui-icons/src/LineWeightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LineWeightOutlined'); diff --git a/packages/material-ui-icons/src/LineWeightRounded.js b/packages/material-ui-icons/src/LineWeightRounded.js new file mode 100644 index 00000000000000..8d745cde119553 --- /dev/null +++ b/packages/material-ui-icons/src/LineWeightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LineWeightRounded'); diff --git a/packages/material-ui-icons/src/LineWeightSharp.js b/packages/material-ui-icons/src/LineWeightSharp.js new file mode 100644 index 00000000000000..76b8389802a73f --- /dev/null +++ b/packages/material-ui-icons/src/LineWeightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LineWeightSharp'); diff --git a/packages/material-ui-icons/src/LineWeightTwoTone.js b/packages/material-ui-icons/src/LineWeightTwoTone.js new file mode 100644 index 00000000000000..6457770f058346 --- /dev/null +++ b/packages/material-ui-icons/src/LineWeightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LineWeightTwoTone'); diff --git a/packages/material-ui-icons/src/LinearScale.js b/packages/material-ui-icons/src/LinearScale.js index 8720c31d05e650..5bcea2a9ed13b8 100644 --- a/packages/material-ui-icons/src/LinearScale.js +++ b/packages/material-ui-icons/src/LinearScale.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LinearScale'); diff --git a/packages/material-ui-icons/src/LinearScaleOutlined.js b/packages/material-ui-icons/src/LinearScaleOutlined.js new file mode 100644 index 00000000000000..bcfcb9d7c41bd6 --- /dev/null +++ b/packages/material-ui-icons/src/LinearScaleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinearScaleOutlined'); diff --git a/packages/material-ui-icons/src/LinearScaleRounded.js b/packages/material-ui-icons/src/LinearScaleRounded.js new file mode 100644 index 00000000000000..83a7d542833579 --- /dev/null +++ b/packages/material-ui-icons/src/LinearScaleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinearScaleRounded'); diff --git a/packages/material-ui-icons/src/LinearScaleSharp.js b/packages/material-ui-icons/src/LinearScaleSharp.js new file mode 100644 index 00000000000000..ac0bff4440f79c --- /dev/null +++ b/packages/material-ui-icons/src/LinearScaleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinearScaleSharp'); diff --git a/packages/material-ui-icons/src/LinearScaleTwoTone.js b/packages/material-ui-icons/src/LinearScaleTwoTone.js new file mode 100644 index 00000000000000..5cbbfee9fdd290 --- /dev/null +++ b/packages/material-ui-icons/src/LinearScaleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinearScaleTwoTone'); diff --git a/packages/material-ui-icons/src/LinkOff.js b/packages/material-ui-icons/src/LinkOff.js new file mode 100644 index 00000000000000..ab2179ae23ddf9 --- /dev/null +++ b/packages/material-ui-icons/src/LinkOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkOff'); diff --git a/packages/material-ui-icons/src/LinkOffOutlined.js b/packages/material-ui-icons/src/LinkOffOutlined.js new file mode 100644 index 00000000000000..e5dfd4a2343a06 --- /dev/null +++ b/packages/material-ui-icons/src/LinkOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkOffOutlined'); diff --git a/packages/material-ui-icons/src/LinkOffRounded.js b/packages/material-ui-icons/src/LinkOffRounded.js new file mode 100644 index 00000000000000..5a6bc0b8a4b1ee --- /dev/null +++ b/packages/material-ui-icons/src/LinkOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkOffRounded'); diff --git a/packages/material-ui-icons/src/LinkOffSharp.js b/packages/material-ui-icons/src/LinkOffSharp.js new file mode 100644 index 00000000000000..e3ec02e03e22e7 --- /dev/null +++ b/packages/material-ui-icons/src/LinkOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkOffSharp'); diff --git a/packages/material-ui-icons/src/LinkOffTwoTone.js b/packages/material-ui-icons/src/LinkOffTwoTone.js new file mode 100644 index 00000000000000..5daec8f438d039 --- /dev/null +++ b/packages/material-ui-icons/src/LinkOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkOffTwoTone'); diff --git a/packages/material-ui-icons/src/LinkOutlined.js b/packages/material-ui-icons/src/LinkOutlined.js new file mode 100644 index 00000000000000..dd11b0ee10e057 --- /dev/null +++ b/packages/material-ui-icons/src/LinkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkOutlined'); diff --git a/packages/material-ui-icons/src/LinkRounded.js b/packages/material-ui-icons/src/LinkRounded.js new file mode 100644 index 00000000000000..5e002595139ba2 --- /dev/null +++ b/packages/material-ui-icons/src/LinkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkRounded'); diff --git a/packages/material-ui-icons/src/LinkSharp.js b/packages/material-ui-icons/src/LinkSharp.js new file mode 100644 index 00000000000000..2e571333157a6b --- /dev/null +++ b/packages/material-ui-icons/src/LinkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkSharp'); diff --git a/packages/material-ui-icons/src/LinkTwoTone.js b/packages/material-ui-icons/src/LinkTwoTone.js new file mode 100644 index 00000000000000..6de183dd871741 --- /dev/null +++ b/packages/material-ui-icons/src/LinkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkTwoTone'); diff --git a/packages/material-ui-icons/src/LinkedCamera.js b/packages/material-ui-icons/src/LinkedCamera.js index cdfa55ca38aa05..c489fdebde444e 100644 --- a/packages/material-ui-icons/src/LinkedCamera.js +++ b/packages/material-ui-icons/src/LinkedCamera.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LinkedCamera'); diff --git a/packages/material-ui-icons/src/LinkedCameraOutlined.js b/packages/material-ui-icons/src/LinkedCameraOutlined.js new file mode 100644 index 00000000000000..f6feb243442cba --- /dev/null +++ b/packages/material-ui-icons/src/LinkedCameraOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkedCameraOutlined'); diff --git a/packages/material-ui-icons/src/LinkedCameraRounded.js b/packages/material-ui-icons/src/LinkedCameraRounded.js new file mode 100644 index 00000000000000..de3c34d5fad468 --- /dev/null +++ b/packages/material-ui-icons/src/LinkedCameraRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkedCameraRounded'); diff --git a/packages/material-ui-icons/src/LinkedCameraSharp.js b/packages/material-ui-icons/src/LinkedCameraSharp.js new file mode 100644 index 00000000000000..3eee107caa4824 --- /dev/null +++ b/packages/material-ui-icons/src/LinkedCameraSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkedCameraSharp'); diff --git a/packages/material-ui-icons/src/LinkedCameraTwoTone.js b/packages/material-ui-icons/src/LinkedCameraTwoTone.js new file mode 100644 index 00000000000000..3f767cf391a39e --- /dev/null +++ b/packages/material-ui-icons/src/LinkedCameraTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LinkedCameraTwoTone'); diff --git a/packages/material-ui-icons/src/ListAlt.js b/packages/material-ui-icons/src/ListAlt.js new file mode 100644 index 00000000000000..700293c95a1a69 --- /dev/null +++ b/packages/material-ui-icons/src/ListAlt.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ListAlt'); diff --git a/packages/material-ui-icons/src/ListAltOutlined.js b/packages/material-ui-icons/src/ListAltOutlined.js new file mode 100644 index 00000000000000..ee3b29fb87d8b8 --- /dev/null +++ b/packages/material-ui-icons/src/ListAltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ListAltOutlined'); diff --git a/packages/material-ui-icons/src/ListAltRounded.js b/packages/material-ui-icons/src/ListAltRounded.js new file mode 100644 index 00000000000000..f5f2db882e8cd8 --- /dev/null +++ b/packages/material-ui-icons/src/ListAltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ListAltRounded'); diff --git a/packages/material-ui-icons/src/ListAltSharp.js b/packages/material-ui-icons/src/ListAltSharp.js new file mode 100644 index 00000000000000..de22730d65c75d --- /dev/null +++ b/packages/material-ui-icons/src/ListAltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ListAltSharp'); diff --git a/packages/material-ui-icons/src/ListAltTwoTone.js b/packages/material-ui-icons/src/ListAltTwoTone.js new file mode 100644 index 00000000000000..146b112763aba7 --- /dev/null +++ b/packages/material-ui-icons/src/ListAltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ListAltTwoTone'); diff --git a/packages/material-ui-icons/src/ListOutlined.js b/packages/material-ui-icons/src/ListOutlined.js new file mode 100644 index 00000000000000..95c9a372c52748 --- /dev/null +++ b/packages/material-ui-icons/src/ListOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ListOutlined'); diff --git a/packages/material-ui-icons/src/ListRounded.js b/packages/material-ui-icons/src/ListRounded.js new file mode 100644 index 00000000000000..15fd4f5d4b9256 --- /dev/null +++ b/packages/material-ui-icons/src/ListRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ListRounded'); diff --git a/packages/material-ui-icons/src/ListSharp.js b/packages/material-ui-icons/src/ListSharp.js new file mode 100644 index 00000000000000..f7e5d2ded30432 --- /dev/null +++ b/packages/material-ui-icons/src/ListSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ListSharp'); diff --git a/packages/material-ui-icons/src/ListTwoTone.js b/packages/material-ui-icons/src/ListTwoTone.js new file mode 100644 index 00000000000000..da9719d2a37834 --- /dev/null +++ b/packages/material-ui-icons/src/ListTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ListTwoTone'); diff --git a/packages/material-ui-icons/src/LiveHelp.js b/packages/material-ui-icons/src/LiveHelp.js index 2c17c4a4ee71bd..93e88fd947cbce 100644 --- a/packages/material-ui-icons/src/LiveHelp.js +++ b/packages/material-ui-icons/src/LiveHelp.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LiveHelp'); diff --git a/packages/material-ui-icons/src/LiveHelpOutlined.js b/packages/material-ui-icons/src/LiveHelpOutlined.js new file mode 100644 index 00000000000000..e2c2a0675df566 --- /dev/null +++ b/packages/material-ui-icons/src/LiveHelpOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LiveHelpOutlined'); diff --git a/packages/material-ui-icons/src/LiveHelpRounded.js b/packages/material-ui-icons/src/LiveHelpRounded.js new file mode 100644 index 00000000000000..fa181d3cc332b8 --- /dev/null +++ b/packages/material-ui-icons/src/LiveHelpRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LiveHelpRounded'); diff --git a/packages/material-ui-icons/src/LiveHelpSharp.js b/packages/material-ui-icons/src/LiveHelpSharp.js new file mode 100644 index 00000000000000..55a9b04332df89 --- /dev/null +++ b/packages/material-ui-icons/src/LiveHelpSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LiveHelpSharp'); diff --git a/packages/material-ui-icons/src/LiveHelpTwoTone.js b/packages/material-ui-icons/src/LiveHelpTwoTone.js new file mode 100644 index 00000000000000..04a83ba6fd2750 --- /dev/null +++ b/packages/material-ui-icons/src/LiveHelpTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LiveHelpTwoTone'); diff --git a/packages/material-ui-icons/src/LiveTv.js b/packages/material-ui-icons/src/LiveTv.js index 82710771aa3395..c2aacac1d9f789 100644 --- a/packages/material-ui-icons/src/LiveTv.js +++ b/packages/material-ui-icons/src/LiveTv.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LiveTv'); diff --git a/packages/material-ui-icons/src/LiveTvOutlined.js b/packages/material-ui-icons/src/LiveTvOutlined.js new file mode 100644 index 00000000000000..39833fdc0a493d --- /dev/null +++ b/packages/material-ui-icons/src/LiveTvOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LiveTvOutlined'); diff --git a/packages/material-ui-icons/src/LiveTvRounded.js b/packages/material-ui-icons/src/LiveTvRounded.js new file mode 100644 index 00000000000000..fed4942fb27c59 --- /dev/null +++ b/packages/material-ui-icons/src/LiveTvRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LiveTvRounded'); diff --git a/packages/material-ui-icons/src/LiveTvSharp.js b/packages/material-ui-icons/src/LiveTvSharp.js new file mode 100644 index 00000000000000..24281036599684 --- /dev/null +++ b/packages/material-ui-icons/src/LiveTvSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LiveTvSharp'); diff --git a/packages/material-ui-icons/src/LiveTvTwoTone.js b/packages/material-ui-icons/src/LiveTvTwoTone.js new file mode 100644 index 00000000000000..12118b22e07b7d --- /dev/null +++ b/packages/material-ui-icons/src/LiveTvTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LiveTvTwoTone'); diff --git a/packages/material-ui-icons/src/LocalActivityOutlined.js b/packages/material-ui-icons/src/LocalActivityOutlined.js new file mode 100644 index 00000000000000..99052a72af7ee2 --- /dev/null +++ b/packages/material-ui-icons/src/LocalActivityOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalActivityOutlined'); diff --git a/packages/material-ui-icons/src/LocalActivityRounded.js b/packages/material-ui-icons/src/LocalActivityRounded.js new file mode 100644 index 00000000000000..59ecd4882d2e75 --- /dev/null +++ b/packages/material-ui-icons/src/LocalActivityRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalActivityRounded'); diff --git a/packages/material-ui-icons/src/LocalActivitySharp.js b/packages/material-ui-icons/src/LocalActivitySharp.js new file mode 100644 index 00000000000000..260b981b425457 --- /dev/null +++ b/packages/material-ui-icons/src/LocalActivitySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalActivitySharp'); diff --git a/packages/material-ui-icons/src/LocalActivityTwoTone.js b/packages/material-ui-icons/src/LocalActivityTwoTone.js new file mode 100644 index 00000000000000..0a6eb59443a8a3 --- /dev/null +++ b/packages/material-ui-icons/src/LocalActivityTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalActivityTwoTone'); diff --git a/packages/material-ui-icons/src/LocalAirportOutlined.js b/packages/material-ui-icons/src/LocalAirportOutlined.js new file mode 100644 index 00000000000000..2c83a2e87a2146 --- /dev/null +++ b/packages/material-ui-icons/src/LocalAirportOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalAirportOutlined'); diff --git a/packages/material-ui-icons/src/LocalAirportRounded.js b/packages/material-ui-icons/src/LocalAirportRounded.js new file mode 100644 index 00000000000000..37f42b2357fb36 --- /dev/null +++ b/packages/material-ui-icons/src/LocalAirportRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalAirportRounded'); diff --git a/packages/material-ui-icons/src/LocalAirportSharp.js b/packages/material-ui-icons/src/LocalAirportSharp.js new file mode 100644 index 00000000000000..e7f2b9c27d65ce --- /dev/null +++ b/packages/material-ui-icons/src/LocalAirportSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalAirportSharp'); diff --git a/packages/material-ui-icons/src/LocalAirportTwoTone.js b/packages/material-ui-icons/src/LocalAirportTwoTone.js new file mode 100644 index 00000000000000..7efa41f1f083f7 --- /dev/null +++ b/packages/material-ui-icons/src/LocalAirportTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalAirportTwoTone'); diff --git a/packages/material-ui-icons/src/LocalAtmOutlined.js b/packages/material-ui-icons/src/LocalAtmOutlined.js new file mode 100644 index 00000000000000..2ac6e232207ab1 --- /dev/null +++ b/packages/material-ui-icons/src/LocalAtmOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalAtmOutlined'); diff --git a/packages/material-ui-icons/src/LocalAtmRounded.js b/packages/material-ui-icons/src/LocalAtmRounded.js new file mode 100644 index 00000000000000..e8168d58e1ca73 --- /dev/null +++ b/packages/material-ui-icons/src/LocalAtmRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalAtmRounded'); diff --git a/packages/material-ui-icons/src/LocalAtmSharp.js b/packages/material-ui-icons/src/LocalAtmSharp.js new file mode 100644 index 00000000000000..3a49075678f180 --- /dev/null +++ b/packages/material-ui-icons/src/LocalAtmSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalAtmSharp'); diff --git a/packages/material-ui-icons/src/LocalAtmTwoTone.js b/packages/material-ui-icons/src/LocalAtmTwoTone.js new file mode 100644 index 00000000000000..e325ad70d06a62 --- /dev/null +++ b/packages/material-ui-icons/src/LocalAtmTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalAtmTwoTone'); diff --git a/packages/material-ui-icons/src/LocalBarOutlined.js b/packages/material-ui-icons/src/LocalBarOutlined.js new file mode 100644 index 00000000000000..8a9fab33f98f7c --- /dev/null +++ b/packages/material-ui-icons/src/LocalBarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalBarOutlined'); diff --git a/packages/material-ui-icons/src/LocalBarRounded.js b/packages/material-ui-icons/src/LocalBarRounded.js new file mode 100644 index 00000000000000..4602bc47394bfc --- /dev/null +++ b/packages/material-ui-icons/src/LocalBarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalBarRounded'); diff --git a/packages/material-ui-icons/src/LocalBarSharp.js b/packages/material-ui-icons/src/LocalBarSharp.js new file mode 100644 index 00000000000000..0adb7c943c8ee2 --- /dev/null +++ b/packages/material-ui-icons/src/LocalBarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalBarSharp'); diff --git a/packages/material-ui-icons/src/LocalBarTwoTone.js b/packages/material-ui-icons/src/LocalBarTwoTone.js new file mode 100644 index 00000000000000..664b06c6aa591e --- /dev/null +++ b/packages/material-ui-icons/src/LocalBarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalBarTwoTone'); diff --git a/packages/material-ui-icons/src/LocalCafe.js b/packages/material-ui-icons/src/LocalCafe.js index 9343f155f66a75..1f6e693cc22543 100644 --- a/packages/material-ui-icons/src/LocalCafe.js +++ b/packages/material-ui-icons/src/LocalCafe.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LocalCafe'); diff --git a/packages/material-ui-icons/src/LocalCafeOutlined.js b/packages/material-ui-icons/src/LocalCafeOutlined.js new file mode 100644 index 00000000000000..087fd23ed7cd7e --- /dev/null +++ b/packages/material-ui-icons/src/LocalCafeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalCafeOutlined'); diff --git a/packages/material-ui-icons/src/LocalCafeRounded.js b/packages/material-ui-icons/src/LocalCafeRounded.js new file mode 100644 index 00000000000000..9deeefd2841e16 --- /dev/null +++ b/packages/material-ui-icons/src/LocalCafeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalCafeRounded'); diff --git a/packages/material-ui-icons/src/LocalCafeSharp.js b/packages/material-ui-icons/src/LocalCafeSharp.js new file mode 100644 index 00000000000000..4825d7092fbf79 --- /dev/null +++ b/packages/material-ui-icons/src/LocalCafeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalCafeSharp'); diff --git a/packages/material-ui-icons/src/LocalCafeTwoTone.js b/packages/material-ui-icons/src/LocalCafeTwoTone.js new file mode 100644 index 00000000000000..d1b8f69713ba12 --- /dev/null +++ b/packages/material-ui-icons/src/LocalCafeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalCafeTwoTone'); diff --git a/packages/material-ui-icons/src/LocalCarWashOutlined.js b/packages/material-ui-icons/src/LocalCarWashOutlined.js new file mode 100644 index 00000000000000..87ae4a9ec2fc3c --- /dev/null +++ b/packages/material-ui-icons/src/LocalCarWashOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalCarWashOutlined'); diff --git a/packages/material-ui-icons/src/LocalCarWashRounded.js b/packages/material-ui-icons/src/LocalCarWashRounded.js new file mode 100644 index 00000000000000..a77dfee71fc7c9 --- /dev/null +++ b/packages/material-ui-icons/src/LocalCarWashRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalCarWashRounded'); diff --git a/packages/material-ui-icons/src/LocalCarWashSharp.js b/packages/material-ui-icons/src/LocalCarWashSharp.js new file mode 100644 index 00000000000000..71b3f23d400510 --- /dev/null +++ b/packages/material-ui-icons/src/LocalCarWashSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalCarWashSharp'); diff --git a/packages/material-ui-icons/src/LocalCarWashTwoTone.js b/packages/material-ui-icons/src/LocalCarWashTwoTone.js new file mode 100644 index 00000000000000..bb7b2e1f9bbccc --- /dev/null +++ b/packages/material-ui-icons/src/LocalCarWashTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalCarWashTwoTone'); diff --git a/packages/material-ui-icons/src/LocalConvenienceStoreOutlined.js b/packages/material-ui-icons/src/LocalConvenienceStoreOutlined.js new file mode 100644 index 00000000000000..c34ff3990a54c1 --- /dev/null +++ b/packages/material-ui-icons/src/LocalConvenienceStoreOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalConvenienceStoreOutlined'); diff --git a/packages/material-ui-icons/src/LocalConvenienceStoreRounded.js b/packages/material-ui-icons/src/LocalConvenienceStoreRounded.js new file mode 100644 index 00000000000000..17111a24c93bfe --- /dev/null +++ b/packages/material-ui-icons/src/LocalConvenienceStoreRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalConvenienceStoreRounded'); diff --git a/packages/material-ui-icons/src/LocalConvenienceStoreSharp.js b/packages/material-ui-icons/src/LocalConvenienceStoreSharp.js new file mode 100644 index 00000000000000..5f8a0ae4ad4e91 --- /dev/null +++ b/packages/material-ui-icons/src/LocalConvenienceStoreSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalConvenienceStoreSharp'); diff --git a/packages/material-ui-icons/src/LocalConvenienceStoreTwoTone.js b/packages/material-ui-icons/src/LocalConvenienceStoreTwoTone.js new file mode 100644 index 00000000000000..910f8090781eeb --- /dev/null +++ b/packages/material-ui-icons/src/LocalConvenienceStoreTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalConvenienceStoreTwoTone'); diff --git a/packages/material-ui-icons/src/LocalDining.js b/packages/material-ui-icons/src/LocalDining.js index 602452706ad9d6..4fc16116a25373 100644 --- a/packages/material-ui-icons/src/LocalDining.js +++ b/packages/material-ui-icons/src/LocalDining.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LocalDining'); diff --git a/packages/material-ui-icons/src/LocalDiningOutlined.js b/packages/material-ui-icons/src/LocalDiningOutlined.js new file mode 100644 index 00000000000000..a18f776e64d707 --- /dev/null +++ b/packages/material-ui-icons/src/LocalDiningOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalDiningOutlined'); diff --git a/packages/material-ui-icons/src/LocalDiningRounded.js b/packages/material-ui-icons/src/LocalDiningRounded.js new file mode 100644 index 00000000000000..ea7b74d4a14838 --- /dev/null +++ b/packages/material-ui-icons/src/LocalDiningRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalDiningRounded'); diff --git a/packages/material-ui-icons/src/LocalDiningSharp.js b/packages/material-ui-icons/src/LocalDiningSharp.js new file mode 100644 index 00000000000000..318accd8bf6e7d --- /dev/null +++ b/packages/material-ui-icons/src/LocalDiningSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalDiningSharp'); diff --git a/packages/material-ui-icons/src/LocalDiningTwoTone.js b/packages/material-ui-icons/src/LocalDiningTwoTone.js new file mode 100644 index 00000000000000..393a18768e811e --- /dev/null +++ b/packages/material-ui-icons/src/LocalDiningTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalDiningTwoTone'); diff --git a/packages/material-ui-icons/src/LocalDrinkOutlined.js b/packages/material-ui-icons/src/LocalDrinkOutlined.js new file mode 100644 index 00000000000000..796b545f8f37b1 --- /dev/null +++ b/packages/material-ui-icons/src/LocalDrinkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalDrinkOutlined'); diff --git a/packages/material-ui-icons/src/LocalDrinkRounded.js b/packages/material-ui-icons/src/LocalDrinkRounded.js new file mode 100644 index 00000000000000..5b6daa860b9ede --- /dev/null +++ b/packages/material-ui-icons/src/LocalDrinkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalDrinkRounded'); diff --git a/packages/material-ui-icons/src/LocalDrinkSharp.js b/packages/material-ui-icons/src/LocalDrinkSharp.js new file mode 100644 index 00000000000000..6505ba57401f2b --- /dev/null +++ b/packages/material-ui-icons/src/LocalDrinkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalDrinkSharp'); diff --git a/packages/material-ui-icons/src/LocalDrinkTwoTone.js b/packages/material-ui-icons/src/LocalDrinkTwoTone.js new file mode 100644 index 00000000000000..132d495a9a2bcb --- /dev/null +++ b/packages/material-ui-icons/src/LocalDrinkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalDrinkTwoTone'); diff --git a/packages/material-ui-icons/src/LocalFlorist.js b/packages/material-ui-icons/src/LocalFlorist.js index ba70e0e67ff1ec..4ee78345d9c084 100644 --- a/packages/material-ui-icons/src/LocalFlorist.js +++ b/packages/material-ui-icons/src/LocalFlorist.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LocalFlorist'); diff --git a/packages/material-ui-icons/src/LocalFloristOutlined.js b/packages/material-ui-icons/src/LocalFloristOutlined.js new file mode 100644 index 00000000000000..a76e1e99c379ca --- /dev/null +++ b/packages/material-ui-icons/src/LocalFloristOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalFloristOutlined'); diff --git a/packages/material-ui-icons/src/LocalFloristRounded.js b/packages/material-ui-icons/src/LocalFloristRounded.js new file mode 100644 index 00000000000000..dd8bd0862e22aa --- /dev/null +++ b/packages/material-ui-icons/src/LocalFloristRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalFloristRounded'); diff --git a/packages/material-ui-icons/src/LocalFloristSharp.js b/packages/material-ui-icons/src/LocalFloristSharp.js new file mode 100644 index 00000000000000..75b8b3a39b2b8f --- /dev/null +++ b/packages/material-ui-icons/src/LocalFloristSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalFloristSharp'); diff --git a/packages/material-ui-icons/src/LocalFloristTwoTone.js b/packages/material-ui-icons/src/LocalFloristTwoTone.js new file mode 100644 index 00000000000000..00e6912c71546c --- /dev/null +++ b/packages/material-ui-icons/src/LocalFloristTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalFloristTwoTone'); diff --git a/packages/material-ui-icons/src/LocalGasStation.js b/packages/material-ui-icons/src/LocalGasStation.js index c82df62560fa82..1596d2181d8c31 100644 --- a/packages/material-ui-icons/src/LocalGasStation.js +++ b/packages/material-ui-icons/src/LocalGasStation.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LocalGasStation'); diff --git a/packages/material-ui-icons/src/LocalGasStationOutlined.js b/packages/material-ui-icons/src/LocalGasStationOutlined.js new file mode 100644 index 00000000000000..7c75aeaf0757cb --- /dev/null +++ b/packages/material-ui-icons/src/LocalGasStationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalGasStationOutlined'); diff --git a/packages/material-ui-icons/src/LocalGasStationRounded.js b/packages/material-ui-icons/src/LocalGasStationRounded.js new file mode 100644 index 00000000000000..4a31dfb421b2bb --- /dev/null +++ b/packages/material-ui-icons/src/LocalGasStationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalGasStationRounded'); diff --git a/packages/material-ui-icons/src/LocalGasStationSharp.js b/packages/material-ui-icons/src/LocalGasStationSharp.js new file mode 100644 index 00000000000000..87d10c97990254 --- /dev/null +++ b/packages/material-ui-icons/src/LocalGasStationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalGasStationSharp'); diff --git a/packages/material-ui-icons/src/LocalGasStationTwoTone.js b/packages/material-ui-icons/src/LocalGasStationTwoTone.js new file mode 100644 index 00000000000000..c38676d10123f0 --- /dev/null +++ b/packages/material-ui-icons/src/LocalGasStationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalGasStationTwoTone'); diff --git a/packages/material-ui-icons/src/LocalGroceryStore.js b/packages/material-ui-icons/src/LocalGroceryStore.js index 1e3a68b5d36e17..326b0f749ed320 100644 --- a/packages/material-ui-icons/src/LocalGroceryStore.js +++ b/packages/material-ui-icons/src/LocalGroceryStore.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LocalGroceryStore'); diff --git a/packages/material-ui-icons/src/LocalGroceryStoreOutlined.js b/packages/material-ui-icons/src/LocalGroceryStoreOutlined.js new file mode 100644 index 00000000000000..026e9b2ac92e71 --- /dev/null +++ b/packages/material-ui-icons/src/LocalGroceryStoreOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalGroceryStoreOutlined'); diff --git a/packages/material-ui-icons/src/LocalGroceryStoreRounded.js b/packages/material-ui-icons/src/LocalGroceryStoreRounded.js new file mode 100644 index 00000000000000..d10730d86e4302 --- /dev/null +++ b/packages/material-ui-icons/src/LocalGroceryStoreRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalGroceryStoreRounded'); diff --git a/packages/material-ui-icons/src/LocalGroceryStoreSharp.js b/packages/material-ui-icons/src/LocalGroceryStoreSharp.js new file mode 100644 index 00000000000000..89f416e7aefa31 --- /dev/null +++ b/packages/material-ui-icons/src/LocalGroceryStoreSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalGroceryStoreSharp'); diff --git a/packages/material-ui-icons/src/LocalGroceryStoreTwoTone.js b/packages/material-ui-icons/src/LocalGroceryStoreTwoTone.js new file mode 100644 index 00000000000000..d9fb983aed96ba --- /dev/null +++ b/packages/material-ui-icons/src/LocalGroceryStoreTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalGroceryStoreTwoTone'); diff --git a/packages/material-ui-icons/src/LocalHospitalOutlined.js b/packages/material-ui-icons/src/LocalHospitalOutlined.js new file mode 100644 index 00000000000000..e03e5c01d7cb6d --- /dev/null +++ b/packages/material-ui-icons/src/LocalHospitalOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalHospitalOutlined'); diff --git a/packages/material-ui-icons/src/LocalHospitalRounded.js b/packages/material-ui-icons/src/LocalHospitalRounded.js new file mode 100644 index 00000000000000..d783bcc05cf5af --- /dev/null +++ b/packages/material-ui-icons/src/LocalHospitalRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalHospitalRounded'); diff --git a/packages/material-ui-icons/src/LocalHospitalSharp.js b/packages/material-ui-icons/src/LocalHospitalSharp.js new file mode 100644 index 00000000000000..7efa0384da5107 --- /dev/null +++ b/packages/material-ui-icons/src/LocalHospitalSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalHospitalSharp'); diff --git a/packages/material-ui-icons/src/LocalHospitalTwoTone.js b/packages/material-ui-icons/src/LocalHospitalTwoTone.js new file mode 100644 index 00000000000000..de30792b5782cd --- /dev/null +++ b/packages/material-ui-icons/src/LocalHospitalTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalHospitalTwoTone'); diff --git a/packages/material-ui-icons/src/LocalHotelOutlined.js b/packages/material-ui-icons/src/LocalHotelOutlined.js new file mode 100644 index 00000000000000..cdce94e39c1345 --- /dev/null +++ b/packages/material-ui-icons/src/LocalHotelOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalHotelOutlined'); diff --git a/packages/material-ui-icons/src/LocalHotelRounded.js b/packages/material-ui-icons/src/LocalHotelRounded.js new file mode 100644 index 00000000000000..be2f6b82bbf152 --- /dev/null +++ b/packages/material-ui-icons/src/LocalHotelRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalHotelRounded'); diff --git a/packages/material-ui-icons/src/LocalHotelSharp.js b/packages/material-ui-icons/src/LocalHotelSharp.js new file mode 100644 index 00000000000000..45ff140731139f --- /dev/null +++ b/packages/material-ui-icons/src/LocalHotelSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalHotelSharp'); diff --git a/packages/material-ui-icons/src/LocalHotelTwoTone.js b/packages/material-ui-icons/src/LocalHotelTwoTone.js new file mode 100644 index 00000000000000..3a53d4f658e433 --- /dev/null +++ b/packages/material-ui-icons/src/LocalHotelTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalHotelTwoTone'); diff --git a/packages/material-ui-icons/src/LocalLaundryService.js b/packages/material-ui-icons/src/LocalLaundryService.js index b77959e132e1f7..5cc7780ef4c362 100644 --- a/packages/material-ui-icons/src/LocalLaundryService.js +++ b/packages/material-ui-icons/src/LocalLaundryService.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LocalLaundryService'); diff --git a/packages/material-ui-icons/src/LocalLaundryServiceOutlined.js b/packages/material-ui-icons/src/LocalLaundryServiceOutlined.js new file mode 100644 index 00000000000000..49008a7d377dfd --- /dev/null +++ b/packages/material-ui-icons/src/LocalLaundryServiceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalLaundryServiceOutlined'); diff --git a/packages/material-ui-icons/src/LocalLaundryServiceRounded.js b/packages/material-ui-icons/src/LocalLaundryServiceRounded.js new file mode 100644 index 00000000000000..dea3bd0efca141 --- /dev/null +++ b/packages/material-ui-icons/src/LocalLaundryServiceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalLaundryServiceRounded'); diff --git a/packages/material-ui-icons/src/LocalLaundryServiceSharp.js b/packages/material-ui-icons/src/LocalLaundryServiceSharp.js new file mode 100644 index 00000000000000..2d14c32b727f35 --- /dev/null +++ b/packages/material-ui-icons/src/LocalLaundryServiceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalLaundryServiceSharp'); diff --git a/packages/material-ui-icons/src/LocalLaundryServiceTwoTone.js b/packages/material-ui-icons/src/LocalLaundryServiceTwoTone.js new file mode 100644 index 00000000000000..59ec9bb106e9ed --- /dev/null +++ b/packages/material-ui-icons/src/LocalLaundryServiceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalLaundryServiceTwoTone'); diff --git a/packages/material-ui-icons/src/LocalLibraryOutlined.js b/packages/material-ui-icons/src/LocalLibraryOutlined.js new file mode 100644 index 00000000000000..da7171920dd38f --- /dev/null +++ b/packages/material-ui-icons/src/LocalLibraryOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalLibraryOutlined'); diff --git a/packages/material-ui-icons/src/LocalLibraryRounded.js b/packages/material-ui-icons/src/LocalLibraryRounded.js new file mode 100644 index 00000000000000..977a8f60dafae9 --- /dev/null +++ b/packages/material-ui-icons/src/LocalLibraryRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalLibraryRounded'); diff --git a/packages/material-ui-icons/src/LocalLibrarySharp.js b/packages/material-ui-icons/src/LocalLibrarySharp.js new file mode 100644 index 00000000000000..6d37b845e1efe3 --- /dev/null +++ b/packages/material-ui-icons/src/LocalLibrarySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalLibrarySharp'); diff --git a/packages/material-ui-icons/src/LocalLibraryTwoTone.js b/packages/material-ui-icons/src/LocalLibraryTwoTone.js new file mode 100644 index 00000000000000..b1ccbb04e0cd18 --- /dev/null +++ b/packages/material-ui-icons/src/LocalLibraryTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalLibraryTwoTone'); diff --git a/packages/material-ui-icons/src/LocalMallOutlined.js b/packages/material-ui-icons/src/LocalMallOutlined.js new file mode 100644 index 00000000000000..d84d6756662040 --- /dev/null +++ b/packages/material-ui-icons/src/LocalMallOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalMallOutlined'); diff --git a/packages/material-ui-icons/src/LocalMallRounded.js b/packages/material-ui-icons/src/LocalMallRounded.js new file mode 100644 index 00000000000000..b08836c82c5fe1 --- /dev/null +++ b/packages/material-ui-icons/src/LocalMallRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalMallRounded'); diff --git a/packages/material-ui-icons/src/LocalMallSharp.js b/packages/material-ui-icons/src/LocalMallSharp.js new file mode 100644 index 00000000000000..e4b4c508d381b6 --- /dev/null +++ b/packages/material-ui-icons/src/LocalMallSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalMallSharp'); diff --git a/packages/material-ui-icons/src/LocalMallTwoTone.js b/packages/material-ui-icons/src/LocalMallTwoTone.js new file mode 100644 index 00000000000000..620964636ac614 --- /dev/null +++ b/packages/material-ui-icons/src/LocalMallTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalMallTwoTone'); diff --git a/packages/material-ui-icons/src/LocalMoviesOutlined.js b/packages/material-ui-icons/src/LocalMoviesOutlined.js new file mode 100644 index 00000000000000..0befcecff366f9 --- /dev/null +++ b/packages/material-ui-icons/src/LocalMoviesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalMoviesOutlined'); diff --git a/packages/material-ui-icons/src/LocalMoviesRounded.js b/packages/material-ui-icons/src/LocalMoviesRounded.js new file mode 100644 index 00000000000000..8c962837a7fd09 --- /dev/null +++ b/packages/material-ui-icons/src/LocalMoviesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalMoviesRounded'); diff --git a/packages/material-ui-icons/src/LocalMoviesSharp.js b/packages/material-ui-icons/src/LocalMoviesSharp.js new file mode 100644 index 00000000000000..e7a28610a1c5e9 --- /dev/null +++ b/packages/material-ui-icons/src/LocalMoviesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalMoviesSharp'); diff --git a/packages/material-ui-icons/src/LocalMoviesTwoTone.js b/packages/material-ui-icons/src/LocalMoviesTwoTone.js new file mode 100644 index 00000000000000..a8feb73b6170b3 --- /dev/null +++ b/packages/material-ui-icons/src/LocalMoviesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalMoviesTwoTone'); diff --git a/packages/material-ui-icons/src/LocalOfferOutlined.js b/packages/material-ui-icons/src/LocalOfferOutlined.js new file mode 100644 index 00000000000000..d9ccbb1a1f48d4 --- /dev/null +++ b/packages/material-ui-icons/src/LocalOfferOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalOfferOutlined'); diff --git a/packages/material-ui-icons/src/LocalOfferRounded.js b/packages/material-ui-icons/src/LocalOfferRounded.js new file mode 100644 index 00000000000000..1c31581924e3f3 --- /dev/null +++ b/packages/material-ui-icons/src/LocalOfferRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalOfferRounded'); diff --git a/packages/material-ui-icons/src/LocalOfferSharp.js b/packages/material-ui-icons/src/LocalOfferSharp.js new file mode 100644 index 00000000000000..34953d227188b3 --- /dev/null +++ b/packages/material-ui-icons/src/LocalOfferSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalOfferSharp'); diff --git a/packages/material-ui-icons/src/LocalOfferTwoTone.js b/packages/material-ui-icons/src/LocalOfferTwoTone.js new file mode 100644 index 00000000000000..1a190c18178e91 --- /dev/null +++ b/packages/material-ui-icons/src/LocalOfferTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalOfferTwoTone'); diff --git a/packages/material-ui-icons/src/LocalParkingOutlined.js b/packages/material-ui-icons/src/LocalParkingOutlined.js new file mode 100644 index 00000000000000..804cc4cdb39eb0 --- /dev/null +++ b/packages/material-ui-icons/src/LocalParkingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalParkingOutlined'); diff --git a/packages/material-ui-icons/src/LocalParkingRounded.js b/packages/material-ui-icons/src/LocalParkingRounded.js new file mode 100644 index 00000000000000..5318f23102dd39 --- /dev/null +++ b/packages/material-ui-icons/src/LocalParkingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalParkingRounded'); diff --git a/packages/material-ui-icons/src/LocalParkingSharp.js b/packages/material-ui-icons/src/LocalParkingSharp.js new file mode 100644 index 00000000000000..2c9b6289b14975 --- /dev/null +++ b/packages/material-ui-icons/src/LocalParkingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalParkingSharp'); diff --git a/packages/material-ui-icons/src/LocalParkingTwoTone.js b/packages/material-ui-icons/src/LocalParkingTwoTone.js new file mode 100644 index 00000000000000..ab0d477a49999c --- /dev/null +++ b/packages/material-ui-icons/src/LocalParkingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalParkingTwoTone'); diff --git a/packages/material-ui-icons/src/LocalPharmacyOutlined.js b/packages/material-ui-icons/src/LocalPharmacyOutlined.js new file mode 100644 index 00000000000000..f142fe1b068b75 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPharmacyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPharmacyOutlined'); diff --git a/packages/material-ui-icons/src/LocalPharmacyRounded.js b/packages/material-ui-icons/src/LocalPharmacyRounded.js new file mode 100644 index 00000000000000..3acd00e903151e --- /dev/null +++ b/packages/material-ui-icons/src/LocalPharmacyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPharmacyRounded'); diff --git a/packages/material-ui-icons/src/LocalPharmacySharp.js b/packages/material-ui-icons/src/LocalPharmacySharp.js new file mode 100644 index 00000000000000..f8d298e5e40901 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPharmacySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPharmacySharp'); diff --git a/packages/material-ui-icons/src/LocalPharmacyTwoTone.js b/packages/material-ui-icons/src/LocalPharmacyTwoTone.js new file mode 100644 index 00000000000000..d0fb7184e6d898 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPharmacyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPharmacyTwoTone'); diff --git a/packages/material-ui-icons/src/LocalPhoneOutlined.js b/packages/material-ui-icons/src/LocalPhoneOutlined.js new file mode 100644 index 00000000000000..6e69dc4728df30 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPhoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPhoneOutlined'); diff --git a/packages/material-ui-icons/src/LocalPhoneRounded.js b/packages/material-ui-icons/src/LocalPhoneRounded.js new file mode 100644 index 00000000000000..78fcdd232bb723 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPhoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPhoneRounded'); diff --git a/packages/material-ui-icons/src/LocalPhoneSharp.js b/packages/material-ui-icons/src/LocalPhoneSharp.js new file mode 100644 index 00000000000000..bf35de0ad4345e --- /dev/null +++ b/packages/material-ui-icons/src/LocalPhoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPhoneSharp'); diff --git a/packages/material-ui-icons/src/LocalPhoneTwoTone.js b/packages/material-ui-icons/src/LocalPhoneTwoTone.js new file mode 100644 index 00000000000000..a682eb900eaf13 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPhoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPhoneTwoTone'); diff --git a/packages/material-ui-icons/src/LocalPizzaOutlined.js b/packages/material-ui-icons/src/LocalPizzaOutlined.js new file mode 100644 index 00000000000000..8451167d6e5b19 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPizzaOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPizzaOutlined'); diff --git a/packages/material-ui-icons/src/LocalPizzaRounded.js b/packages/material-ui-icons/src/LocalPizzaRounded.js new file mode 100644 index 00000000000000..7e5e448841f2ab --- /dev/null +++ b/packages/material-ui-icons/src/LocalPizzaRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPizzaRounded'); diff --git a/packages/material-ui-icons/src/LocalPizzaSharp.js b/packages/material-ui-icons/src/LocalPizzaSharp.js new file mode 100644 index 00000000000000..812239380e71e2 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPizzaSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPizzaSharp'); diff --git a/packages/material-ui-icons/src/LocalPizzaTwoTone.js b/packages/material-ui-icons/src/LocalPizzaTwoTone.js new file mode 100644 index 00000000000000..3fad4e5b961f1e --- /dev/null +++ b/packages/material-ui-icons/src/LocalPizzaTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPizzaTwoTone'); diff --git a/packages/material-ui-icons/src/LocalPlayOutlined.js b/packages/material-ui-icons/src/LocalPlayOutlined.js new file mode 100644 index 00000000000000..7d1ce4a1a3d919 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPlayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPlayOutlined'); diff --git a/packages/material-ui-icons/src/LocalPlayRounded.js b/packages/material-ui-icons/src/LocalPlayRounded.js new file mode 100644 index 00000000000000..cca57c5bf45bf5 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPlayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPlayRounded'); diff --git a/packages/material-ui-icons/src/LocalPlaySharp.js b/packages/material-ui-icons/src/LocalPlaySharp.js new file mode 100644 index 00000000000000..e6d251495b0ab1 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPlaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPlaySharp'); diff --git a/packages/material-ui-icons/src/LocalPlayTwoTone.js b/packages/material-ui-icons/src/LocalPlayTwoTone.js new file mode 100644 index 00000000000000..200278e15b29a6 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPlayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPlayTwoTone'); diff --git a/packages/material-ui-icons/src/LocalPostOfficeOutlined.js b/packages/material-ui-icons/src/LocalPostOfficeOutlined.js new file mode 100644 index 00000000000000..440936f395d80f --- /dev/null +++ b/packages/material-ui-icons/src/LocalPostOfficeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPostOfficeOutlined'); diff --git a/packages/material-ui-icons/src/LocalPostOfficeRounded.js b/packages/material-ui-icons/src/LocalPostOfficeRounded.js new file mode 100644 index 00000000000000..dc30bfa80da2dd --- /dev/null +++ b/packages/material-ui-icons/src/LocalPostOfficeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPostOfficeRounded'); diff --git a/packages/material-ui-icons/src/LocalPostOfficeSharp.js b/packages/material-ui-icons/src/LocalPostOfficeSharp.js new file mode 100644 index 00000000000000..a0334c55d47309 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPostOfficeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPostOfficeSharp'); diff --git a/packages/material-ui-icons/src/LocalPostOfficeTwoTone.js b/packages/material-ui-icons/src/LocalPostOfficeTwoTone.js new file mode 100644 index 00000000000000..9994a6bb1948a7 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPostOfficeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPostOfficeTwoTone'); diff --git a/packages/material-ui-icons/src/LocalPrintshopOutlined.js b/packages/material-ui-icons/src/LocalPrintshopOutlined.js new file mode 100644 index 00000000000000..040f9ec839ec88 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPrintshopOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPrintshopOutlined'); diff --git a/packages/material-ui-icons/src/LocalPrintshopRounded.js b/packages/material-ui-icons/src/LocalPrintshopRounded.js new file mode 100644 index 00000000000000..903f76b7dde9c4 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPrintshopRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPrintshopRounded'); diff --git a/packages/material-ui-icons/src/LocalPrintshopSharp.js b/packages/material-ui-icons/src/LocalPrintshopSharp.js new file mode 100644 index 00000000000000..04d3b70c359825 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPrintshopSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPrintshopSharp'); diff --git a/packages/material-ui-icons/src/LocalPrintshopTwoTone.js b/packages/material-ui-icons/src/LocalPrintshopTwoTone.js new file mode 100644 index 00000000000000..4b42763ba7b925 --- /dev/null +++ b/packages/material-ui-icons/src/LocalPrintshopTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalPrintshopTwoTone'); diff --git a/packages/material-ui-icons/src/LocalSeeOutlined.js b/packages/material-ui-icons/src/LocalSeeOutlined.js new file mode 100644 index 00000000000000..45a5869b5e9c5f --- /dev/null +++ b/packages/material-ui-icons/src/LocalSeeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalSeeOutlined'); diff --git a/packages/material-ui-icons/src/LocalSeeRounded.js b/packages/material-ui-icons/src/LocalSeeRounded.js new file mode 100644 index 00000000000000..4eb12f874687ef --- /dev/null +++ b/packages/material-ui-icons/src/LocalSeeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalSeeRounded'); diff --git a/packages/material-ui-icons/src/LocalSeeSharp.js b/packages/material-ui-icons/src/LocalSeeSharp.js new file mode 100644 index 00000000000000..fe097e88bbed7e --- /dev/null +++ b/packages/material-ui-icons/src/LocalSeeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalSeeSharp'); diff --git a/packages/material-ui-icons/src/LocalSeeTwoTone.js b/packages/material-ui-icons/src/LocalSeeTwoTone.js new file mode 100644 index 00000000000000..b1808d7d6d59e3 --- /dev/null +++ b/packages/material-ui-icons/src/LocalSeeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalSeeTwoTone'); diff --git a/packages/material-ui-icons/src/LocalShippingOutlined.js b/packages/material-ui-icons/src/LocalShippingOutlined.js new file mode 100644 index 00000000000000..c609520a138e30 --- /dev/null +++ b/packages/material-ui-icons/src/LocalShippingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalShippingOutlined'); diff --git a/packages/material-ui-icons/src/LocalShippingRounded.js b/packages/material-ui-icons/src/LocalShippingRounded.js new file mode 100644 index 00000000000000..8eb6c5553c5447 --- /dev/null +++ b/packages/material-ui-icons/src/LocalShippingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalShippingRounded'); diff --git a/packages/material-ui-icons/src/LocalShippingSharp.js b/packages/material-ui-icons/src/LocalShippingSharp.js new file mode 100644 index 00000000000000..b08d88f5b23280 --- /dev/null +++ b/packages/material-ui-icons/src/LocalShippingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalShippingSharp'); diff --git a/packages/material-ui-icons/src/LocalShippingTwoTone.js b/packages/material-ui-icons/src/LocalShippingTwoTone.js new file mode 100644 index 00000000000000..dd2220be092edb --- /dev/null +++ b/packages/material-ui-icons/src/LocalShippingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalShippingTwoTone'); diff --git a/packages/material-ui-icons/src/LocalTaxiOutlined.js b/packages/material-ui-icons/src/LocalTaxiOutlined.js new file mode 100644 index 00000000000000..862d341eb55019 --- /dev/null +++ b/packages/material-ui-icons/src/LocalTaxiOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalTaxiOutlined'); diff --git a/packages/material-ui-icons/src/LocalTaxiRounded.js b/packages/material-ui-icons/src/LocalTaxiRounded.js new file mode 100644 index 00000000000000..4e40ef0c96f5f7 --- /dev/null +++ b/packages/material-ui-icons/src/LocalTaxiRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalTaxiRounded'); diff --git a/packages/material-ui-icons/src/LocalTaxiSharp.js b/packages/material-ui-icons/src/LocalTaxiSharp.js new file mode 100644 index 00000000000000..3f10c1c8cc687f --- /dev/null +++ b/packages/material-ui-icons/src/LocalTaxiSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalTaxiSharp'); diff --git a/packages/material-ui-icons/src/LocalTaxiTwoTone.js b/packages/material-ui-icons/src/LocalTaxiTwoTone.js new file mode 100644 index 00000000000000..e8bf4b627a64fd --- /dev/null +++ b/packages/material-ui-icons/src/LocalTaxiTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocalTaxiTwoTone'); diff --git a/packages/material-ui-icons/src/LocationCityOutlined.js b/packages/material-ui-icons/src/LocationCityOutlined.js new file mode 100644 index 00000000000000..0e05dbaa3b657d --- /dev/null +++ b/packages/material-ui-icons/src/LocationCityOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationCityOutlined'); diff --git a/packages/material-ui-icons/src/LocationCityRounded.js b/packages/material-ui-icons/src/LocationCityRounded.js new file mode 100644 index 00000000000000..54acd198d4a233 --- /dev/null +++ b/packages/material-ui-icons/src/LocationCityRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationCityRounded'); diff --git a/packages/material-ui-icons/src/LocationCitySharp.js b/packages/material-ui-icons/src/LocationCitySharp.js new file mode 100644 index 00000000000000..f091b6dc17a4e5 --- /dev/null +++ b/packages/material-ui-icons/src/LocationCitySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationCitySharp'); diff --git a/packages/material-ui-icons/src/LocationCityTwoTone.js b/packages/material-ui-icons/src/LocationCityTwoTone.js new file mode 100644 index 00000000000000..f63a7bccfc9781 --- /dev/null +++ b/packages/material-ui-icons/src/LocationCityTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationCityTwoTone'); diff --git a/packages/material-ui-icons/src/LocationDisabled.js b/packages/material-ui-icons/src/LocationDisabled.js index 42221c8cd223a6..2f1a9bd1458553 100644 --- a/packages/material-ui-icons/src/LocationDisabled.js +++ b/packages/material-ui-icons/src/LocationDisabled.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LocationDisabled'); diff --git a/packages/material-ui-icons/src/LocationDisabledOutlined.js b/packages/material-ui-icons/src/LocationDisabledOutlined.js new file mode 100644 index 00000000000000..1e9f244c9314b5 --- /dev/null +++ b/packages/material-ui-icons/src/LocationDisabledOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationDisabledOutlined'); diff --git a/packages/material-ui-icons/src/LocationDisabledRounded.js b/packages/material-ui-icons/src/LocationDisabledRounded.js new file mode 100644 index 00000000000000..2cc37666ffb82d --- /dev/null +++ b/packages/material-ui-icons/src/LocationDisabledRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationDisabledRounded'); diff --git a/packages/material-ui-icons/src/LocationDisabledSharp.js b/packages/material-ui-icons/src/LocationDisabledSharp.js new file mode 100644 index 00000000000000..9f06a8e57e001a --- /dev/null +++ b/packages/material-ui-icons/src/LocationDisabledSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationDisabledSharp'); diff --git a/packages/material-ui-icons/src/LocationDisabledTwoTone.js b/packages/material-ui-icons/src/LocationDisabledTwoTone.js new file mode 100644 index 00000000000000..8253d13da08817 --- /dev/null +++ b/packages/material-ui-icons/src/LocationDisabledTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationDisabledTwoTone'); diff --git a/packages/material-ui-icons/src/LocationOff.js b/packages/material-ui-icons/src/LocationOff.js index 868d17b60352b1..5701a611cb2b35 100644 --- a/packages/material-ui-icons/src/LocationOff.js +++ b/packages/material-ui-icons/src/LocationOff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LocationOff'); diff --git a/packages/material-ui-icons/src/LocationOffOutlined.js b/packages/material-ui-icons/src/LocationOffOutlined.js new file mode 100644 index 00000000000000..7e70b2e95f6d85 --- /dev/null +++ b/packages/material-ui-icons/src/LocationOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationOffOutlined'); diff --git a/packages/material-ui-icons/src/LocationOffRounded.js b/packages/material-ui-icons/src/LocationOffRounded.js new file mode 100644 index 00000000000000..30b3bd3f88db18 --- /dev/null +++ b/packages/material-ui-icons/src/LocationOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationOffRounded'); diff --git a/packages/material-ui-icons/src/LocationOffSharp.js b/packages/material-ui-icons/src/LocationOffSharp.js new file mode 100644 index 00000000000000..7cf430a4d22694 --- /dev/null +++ b/packages/material-ui-icons/src/LocationOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationOffSharp'); diff --git a/packages/material-ui-icons/src/LocationOffTwoTone.js b/packages/material-ui-icons/src/LocationOffTwoTone.js new file mode 100644 index 00000000000000..3ba3cebbcd553b --- /dev/null +++ b/packages/material-ui-icons/src/LocationOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationOffTwoTone'); diff --git a/packages/material-ui-icons/src/LocationOn.js b/packages/material-ui-icons/src/LocationOn.js index 0bc08ccb749505..bdd449a1430144 100644 --- a/packages/material-ui-icons/src/LocationOn.js +++ b/packages/material-ui-icons/src/LocationOn.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LocationOn'); diff --git a/packages/material-ui-icons/src/LocationOnOutlined.js b/packages/material-ui-icons/src/LocationOnOutlined.js new file mode 100644 index 00000000000000..93d228bb8d4113 --- /dev/null +++ b/packages/material-ui-icons/src/LocationOnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationOnOutlined'); diff --git a/packages/material-ui-icons/src/LocationOnRounded.js b/packages/material-ui-icons/src/LocationOnRounded.js new file mode 100644 index 00000000000000..292f4801c61004 --- /dev/null +++ b/packages/material-ui-icons/src/LocationOnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationOnRounded'); diff --git a/packages/material-ui-icons/src/LocationOnSharp.js b/packages/material-ui-icons/src/LocationOnSharp.js new file mode 100644 index 00000000000000..a6347b42e016d3 --- /dev/null +++ b/packages/material-ui-icons/src/LocationOnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationOnSharp'); diff --git a/packages/material-ui-icons/src/LocationOnTwoTone.js b/packages/material-ui-icons/src/LocationOnTwoTone.js new file mode 100644 index 00000000000000..25f342ab6acc5f --- /dev/null +++ b/packages/material-ui-icons/src/LocationOnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationOnTwoTone'); diff --git a/packages/material-ui-icons/src/LocationSearching.js b/packages/material-ui-icons/src/LocationSearching.js index 9c9285af16d1ce..da825b9a220728 100644 --- a/packages/material-ui-icons/src/LocationSearching.js +++ b/packages/material-ui-icons/src/LocationSearching.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LocationSearching'); diff --git a/packages/material-ui-icons/src/LocationSearchingOutlined.js b/packages/material-ui-icons/src/LocationSearchingOutlined.js new file mode 100644 index 00000000000000..4a777a06fada42 --- /dev/null +++ b/packages/material-ui-icons/src/LocationSearchingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationSearchingOutlined'); diff --git a/packages/material-ui-icons/src/LocationSearchingRounded.js b/packages/material-ui-icons/src/LocationSearchingRounded.js new file mode 100644 index 00000000000000..d87466ac9a95fa --- /dev/null +++ b/packages/material-ui-icons/src/LocationSearchingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationSearchingRounded'); diff --git a/packages/material-ui-icons/src/LocationSearchingSharp.js b/packages/material-ui-icons/src/LocationSearchingSharp.js new file mode 100644 index 00000000000000..8cd283541557d4 --- /dev/null +++ b/packages/material-ui-icons/src/LocationSearchingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationSearchingSharp'); diff --git a/packages/material-ui-icons/src/LocationSearchingTwoTone.js b/packages/material-ui-icons/src/LocationSearchingTwoTone.js new file mode 100644 index 00000000000000..ce786276b96f7f --- /dev/null +++ b/packages/material-ui-icons/src/LocationSearchingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LocationSearchingTwoTone'); diff --git a/packages/material-ui-icons/src/LockOpenOutlined.js b/packages/material-ui-icons/src/LockOpenOutlined.js new file mode 100644 index 00000000000000..ce50841540fdd4 --- /dev/null +++ b/packages/material-ui-icons/src/LockOpenOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LockOpenOutlined'); diff --git a/packages/material-ui-icons/src/LockOpenRounded.js b/packages/material-ui-icons/src/LockOpenRounded.js new file mode 100644 index 00000000000000..74dd292a58ef24 --- /dev/null +++ b/packages/material-ui-icons/src/LockOpenRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LockOpenRounded'); diff --git a/packages/material-ui-icons/src/LockOpenSharp.js b/packages/material-ui-icons/src/LockOpenSharp.js new file mode 100644 index 00000000000000..82eeab199ac249 --- /dev/null +++ b/packages/material-ui-icons/src/LockOpenSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LockOpenSharp'); diff --git a/packages/material-ui-icons/src/LockOpenTwoTone.js b/packages/material-ui-icons/src/LockOpenTwoTone.js new file mode 100644 index 00000000000000..73bf9f38d1f455 --- /dev/null +++ b/packages/material-ui-icons/src/LockOpenTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LockOpenTwoTone'); diff --git a/packages/material-ui-icons/src/LockOutline.js b/packages/material-ui-icons/src/LockOutline.js deleted file mode 100644 index 14eef81f503ade..00000000000000 --- a/packages/material-ui-icons/src/LockOutline.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'LockOutline'); diff --git a/packages/material-ui-icons/src/LockOutlined.js b/packages/material-ui-icons/src/LockOutlined.js new file mode 100644 index 00000000000000..feeab3930eefc5 --- /dev/null +++ b/packages/material-ui-icons/src/LockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LockOutlined'); diff --git a/packages/material-ui-icons/src/LockRounded.js b/packages/material-ui-icons/src/LockRounded.js new file mode 100644 index 00000000000000..f942574cb38998 --- /dev/null +++ b/packages/material-ui-icons/src/LockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LockRounded'); diff --git a/packages/material-ui-icons/src/LockSharp.js b/packages/material-ui-icons/src/LockSharp.js new file mode 100644 index 00000000000000..867daf636a67a4 --- /dev/null +++ b/packages/material-ui-icons/src/LockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LockSharp'); diff --git a/packages/material-ui-icons/src/LockTwoTone.js b/packages/material-ui-icons/src/LockTwoTone.js new file mode 100644 index 00000000000000..c66ecd3494d649 --- /dev/null +++ b/packages/material-ui-icons/src/LockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LockTwoTone'); diff --git a/packages/material-ui-icons/src/Looks3.js b/packages/material-ui-icons/src/Looks3.js index 5cab5a8ad42e95..1af2b9fc410319 100644 --- a/packages/material-ui-icons/src/Looks3.js +++ b/packages/material-ui-icons/src/Looks3.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Looks3'); diff --git a/packages/material-ui-icons/src/Looks3Outlined.js b/packages/material-ui-icons/src/Looks3Outlined.js new file mode 100644 index 00000000000000..8040e7c38f75ca --- /dev/null +++ b/packages/material-ui-icons/src/Looks3Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks3Outlined'); diff --git a/packages/material-ui-icons/src/Looks3Rounded.js b/packages/material-ui-icons/src/Looks3Rounded.js new file mode 100644 index 00000000000000..232512be44cb6c --- /dev/null +++ b/packages/material-ui-icons/src/Looks3Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks3Rounded'); diff --git a/packages/material-ui-icons/src/Looks3Sharp.js b/packages/material-ui-icons/src/Looks3Sharp.js new file mode 100644 index 00000000000000..00124c89c408ea --- /dev/null +++ b/packages/material-ui-icons/src/Looks3Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks3Sharp'); diff --git a/packages/material-ui-icons/src/Looks3TwoTone.js b/packages/material-ui-icons/src/Looks3TwoTone.js new file mode 100644 index 00000000000000..943be663b5d19d --- /dev/null +++ b/packages/material-ui-icons/src/Looks3TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks3TwoTone'); diff --git a/packages/material-ui-icons/src/Looks4Outlined.js b/packages/material-ui-icons/src/Looks4Outlined.js new file mode 100644 index 00000000000000..6cea058c6734fb --- /dev/null +++ b/packages/material-ui-icons/src/Looks4Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks4Outlined'); diff --git a/packages/material-ui-icons/src/Looks4Rounded.js b/packages/material-ui-icons/src/Looks4Rounded.js new file mode 100644 index 00000000000000..55f30c7fcaad9b --- /dev/null +++ b/packages/material-ui-icons/src/Looks4Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks4Rounded'); diff --git a/packages/material-ui-icons/src/Looks4Sharp.js b/packages/material-ui-icons/src/Looks4Sharp.js new file mode 100644 index 00000000000000..9b475b6e195587 --- /dev/null +++ b/packages/material-ui-icons/src/Looks4Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks4Sharp'); diff --git a/packages/material-ui-icons/src/Looks4TwoTone.js b/packages/material-ui-icons/src/Looks4TwoTone.js new file mode 100644 index 00000000000000..3ee4a24adc6604 --- /dev/null +++ b/packages/material-ui-icons/src/Looks4TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks4TwoTone'); diff --git a/packages/material-ui-icons/src/Looks5.js b/packages/material-ui-icons/src/Looks5.js index b94e70d05e1e9a..f169ddc1143793 100644 --- a/packages/material-ui-icons/src/Looks5.js +++ b/packages/material-ui-icons/src/Looks5.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Looks5'); diff --git a/packages/material-ui-icons/src/Looks5Outlined.js b/packages/material-ui-icons/src/Looks5Outlined.js new file mode 100644 index 00000000000000..04db70fc777139 --- /dev/null +++ b/packages/material-ui-icons/src/Looks5Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks5Outlined'); diff --git a/packages/material-ui-icons/src/Looks5Rounded.js b/packages/material-ui-icons/src/Looks5Rounded.js new file mode 100644 index 00000000000000..d9ff6d98984b73 --- /dev/null +++ b/packages/material-ui-icons/src/Looks5Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks5Rounded'); diff --git a/packages/material-ui-icons/src/Looks5Sharp.js b/packages/material-ui-icons/src/Looks5Sharp.js new file mode 100644 index 00000000000000..10129cc5ad7b4d --- /dev/null +++ b/packages/material-ui-icons/src/Looks5Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks5Sharp'); diff --git a/packages/material-ui-icons/src/Looks5TwoTone.js b/packages/material-ui-icons/src/Looks5TwoTone.js new file mode 100644 index 00000000000000..aebdb0b7259754 --- /dev/null +++ b/packages/material-ui-icons/src/Looks5TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks5TwoTone'); diff --git a/packages/material-ui-icons/src/Looks6.js b/packages/material-ui-icons/src/Looks6.js index d187a9ff00f6cc..c6ca824b4d4679 100644 --- a/packages/material-ui-icons/src/Looks6.js +++ b/packages/material-ui-icons/src/Looks6.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Looks6'); diff --git a/packages/material-ui-icons/src/Looks6Outlined.js b/packages/material-ui-icons/src/Looks6Outlined.js new file mode 100644 index 00000000000000..eed87b79472a9c --- /dev/null +++ b/packages/material-ui-icons/src/Looks6Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks6Outlined'); diff --git a/packages/material-ui-icons/src/Looks6Rounded.js b/packages/material-ui-icons/src/Looks6Rounded.js new file mode 100644 index 00000000000000..88854565da4442 --- /dev/null +++ b/packages/material-ui-icons/src/Looks6Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks6Rounded'); diff --git a/packages/material-ui-icons/src/Looks6Sharp.js b/packages/material-ui-icons/src/Looks6Sharp.js new file mode 100644 index 00000000000000..933fc27fd8667f --- /dev/null +++ b/packages/material-ui-icons/src/Looks6Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks6Sharp'); diff --git a/packages/material-ui-icons/src/Looks6TwoTone.js b/packages/material-ui-icons/src/Looks6TwoTone.js new file mode 100644 index 00000000000000..05da3c0350c498 --- /dev/null +++ b/packages/material-ui-icons/src/Looks6TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Looks6TwoTone'); diff --git a/packages/material-ui-icons/src/LooksOneOutlined.js b/packages/material-ui-icons/src/LooksOneOutlined.js new file mode 100644 index 00000000000000..d863bd9e66ac6b --- /dev/null +++ b/packages/material-ui-icons/src/LooksOneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksOneOutlined'); diff --git a/packages/material-ui-icons/src/LooksOneRounded.js b/packages/material-ui-icons/src/LooksOneRounded.js new file mode 100644 index 00000000000000..c6c94ccf1b17e3 --- /dev/null +++ b/packages/material-ui-icons/src/LooksOneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksOneRounded'); diff --git a/packages/material-ui-icons/src/LooksOneSharp.js b/packages/material-ui-icons/src/LooksOneSharp.js new file mode 100644 index 00000000000000..62be24600a6a42 --- /dev/null +++ b/packages/material-ui-icons/src/LooksOneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksOneSharp'); diff --git a/packages/material-ui-icons/src/LooksOneTwoTone.js b/packages/material-ui-icons/src/LooksOneTwoTone.js new file mode 100644 index 00000000000000..2bf78344c45cbc --- /dev/null +++ b/packages/material-ui-icons/src/LooksOneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksOneTwoTone'); diff --git a/packages/material-ui-icons/src/LooksOutlined.js b/packages/material-ui-icons/src/LooksOutlined.js new file mode 100644 index 00000000000000..6ce73c36b32b55 --- /dev/null +++ b/packages/material-ui-icons/src/LooksOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksOutlined'); diff --git a/packages/material-ui-icons/src/LooksRounded.js b/packages/material-ui-icons/src/LooksRounded.js new file mode 100644 index 00000000000000..6409fc96f73f8f --- /dev/null +++ b/packages/material-ui-icons/src/LooksRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksRounded'); diff --git a/packages/material-ui-icons/src/LooksSharp.js b/packages/material-ui-icons/src/LooksSharp.js new file mode 100644 index 00000000000000..537c80eb46cf86 --- /dev/null +++ b/packages/material-ui-icons/src/LooksSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksSharp'); diff --git a/packages/material-ui-icons/src/LooksTwo.js b/packages/material-ui-icons/src/LooksTwo.js index afe419fe963569..b224ead6943751 100644 --- a/packages/material-ui-icons/src/LooksTwo.js +++ b/packages/material-ui-icons/src/LooksTwo.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'LooksTwo'); diff --git a/packages/material-ui-icons/src/LooksTwoOutlined.js b/packages/material-ui-icons/src/LooksTwoOutlined.js new file mode 100644 index 00000000000000..4144233a0b0116 --- /dev/null +++ b/packages/material-ui-icons/src/LooksTwoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksTwoOutlined'); diff --git a/packages/material-ui-icons/src/LooksTwoRounded.js b/packages/material-ui-icons/src/LooksTwoRounded.js new file mode 100644 index 00000000000000..94aba62ae79695 --- /dev/null +++ b/packages/material-ui-icons/src/LooksTwoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksTwoRounded'); diff --git a/packages/material-ui-icons/src/LooksTwoSharp.js b/packages/material-ui-icons/src/LooksTwoSharp.js new file mode 100644 index 00000000000000..725e93694e5a3f --- /dev/null +++ b/packages/material-ui-icons/src/LooksTwoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksTwoSharp'); diff --git a/packages/material-ui-icons/src/LooksTwoTone.js b/packages/material-ui-icons/src/LooksTwoTone.js new file mode 100644 index 00000000000000..d2c664a39e7e93 --- /dev/null +++ b/packages/material-ui-icons/src/LooksTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksTwoTone'); diff --git a/packages/material-ui-icons/src/LooksTwoTwoTone.js b/packages/material-ui-icons/src/LooksTwoTwoTone.js new file mode 100644 index 00000000000000..5397fd43fe4496 --- /dev/null +++ b/packages/material-ui-icons/src/LooksTwoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LooksTwoTwoTone'); diff --git a/packages/material-ui-icons/src/Loop.js b/packages/material-ui-icons/src/Loop.js index cb3bf6ee026f14..ea22a938aa9f59 100644 --- a/packages/material-ui-icons/src/Loop.js +++ b/packages/material-ui-icons/src/Loop.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Loop'); diff --git a/packages/material-ui-icons/src/LoopOutlined.js b/packages/material-ui-icons/src/LoopOutlined.js new file mode 100644 index 00000000000000..38b867f00865fa --- /dev/null +++ b/packages/material-ui-icons/src/LoopOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoopOutlined'); diff --git a/packages/material-ui-icons/src/LoopRounded.js b/packages/material-ui-icons/src/LoopRounded.js new file mode 100644 index 00000000000000..42faf61d97d29e --- /dev/null +++ b/packages/material-ui-icons/src/LoopRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoopRounded'); diff --git a/packages/material-ui-icons/src/LoopSharp.js b/packages/material-ui-icons/src/LoopSharp.js new file mode 100644 index 00000000000000..1cae6344b19082 --- /dev/null +++ b/packages/material-ui-icons/src/LoopSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoopSharp'); diff --git a/packages/material-ui-icons/src/LoopTwoTone.js b/packages/material-ui-icons/src/LoopTwoTone.js new file mode 100644 index 00000000000000..eed7b2338e8afc --- /dev/null +++ b/packages/material-ui-icons/src/LoopTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoopTwoTone'); diff --git a/packages/material-ui-icons/src/LoupeOutlined.js b/packages/material-ui-icons/src/LoupeOutlined.js new file mode 100644 index 00000000000000..bcb77e847f81f0 --- /dev/null +++ b/packages/material-ui-icons/src/LoupeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoupeOutlined'); diff --git a/packages/material-ui-icons/src/LoupeRounded.js b/packages/material-ui-icons/src/LoupeRounded.js new file mode 100644 index 00000000000000..d09dcff89a0647 --- /dev/null +++ b/packages/material-ui-icons/src/LoupeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoupeRounded'); diff --git a/packages/material-ui-icons/src/LoupeSharp.js b/packages/material-ui-icons/src/LoupeSharp.js new file mode 100644 index 00000000000000..79f6bdfca0a065 --- /dev/null +++ b/packages/material-ui-icons/src/LoupeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoupeSharp'); diff --git a/packages/material-ui-icons/src/LoupeTwoTone.js b/packages/material-ui-icons/src/LoupeTwoTone.js new file mode 100644 index 00000000000000..96834fe3107758 --- /dev/null +++ b/packages/material-ui-icons/src/LoupeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoupeTwoTone'); diff --git a/packages/material-ui-icons/src/LowPriorityOutlined.js b/packages/material-ui-icons/src/LowPriorityOutlined.js new file mode 100644 index 00000000000000..c38958ff6472e4 --- /dev/null +++ b/packages/material-ui-icons/src/LowPriorityOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LowPriorityOutlined'); diff --git a/packages/material-ui-icons/src/LowPriorityRounded.js b/packages/material-ui-icons/src/LowPriorityRounded.js new file mode 100644 index 00000000000000..89bb9fac9771af --- /dev/null +++ b/packages/material-ui-icons/src/LowPriorityRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LowPriorityRounded'); diff --git a/packages/material-ui-icons/src/LowPrioritySharp.js b/packages/material-ui-icons/src/LowPrioritySharp.js new file mode 100644 index 00000000000000..af2d922f341364 --- /dev/null +++ b/packages/material-ui-icons/src/LowPrioritySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LowPrioritySharp'); diff --git a/packages/material-ui-icons/src/LowPriorityTwoTone.js b/packages/material-ui-icons/src/LowPriorityTwoTone.js new file mode 100644 index 00000000000000..faa3dbea0dddb0 --- /dev/null +++ b/packages/material-ui-icons/src/LowPriorityTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LowPriorityTwoTone'); diff --git a/packages/material-ui-icons/src/Loyalty.js b/packages/material-ui-icons/src/Loyalty.js index 89d5874e2f0670..f6591e94aec7ab 100644 --- a/packages/material-ui-icons/src/Loyalty.js +++ b/packages/material-ui-icons/src/Loyalty.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Loyalty'); diff --git a/packages/material-ui-icons/src/LoyaltyOutlined.js b/packages/material-ui-icons/src/LoyaltyOutlined.js new file mode 100644 index 00000000000000..d101fae4357e36 --- /dev/null +++ b/packages/material-ui-icons/src/LoyaltyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoyaltyOutlined'); diff --git a/packages/material-ui-icons/src/LoyaltyRounded.js b/packages/material-ui-icons/src/LoyaltyRounded.js new file mode 100644 index 00000000000000..96e461292ac9be --- /dev/null +++ b/packages/material-ui-icons/src/LoyaltyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoyaltyRounded'); diff --git a/packages/material-ui-icons/src/LoyaltySharp.js b/packages/material-ui-icons/src/LoyaltySharp.js new file mode 100644 index 00000000000000..bc23c783ce8fff --- /dev/null +++ b/packages/material-ui-icons/src/LoyaltySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoyaltySharp'); diff --git a/packages/material-ui-icons/src/LoyaltyTwoTone.js b/packages/material-ui-icons/src/LoyaltyTwoTone.js new file mode 100644 index 00000000000000..a29ed1058765d2 --- /dev/null +++ b/packages/material-ui-icons/src/LoyaltyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'LoyaltyTwoTone'); diff --git a/packages/material-ui-icons/src/MailOutlineOutlined.js b/packages/material-ui-icons/src/MailOutlineOutlined.js new file mode 100644 index 00000000000000..e5802ced6ddc3e --- /dev/null +++ b/packages/material-ui-icons/src/MailOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MailOutlineOutlined'); diff --git a/packages/material-ui-icons/src/MailOutlineRounded.js b/packages/material-ui-icons/src/MailOutlineRounded.js new file mode 100644 index 00000000000000..ec5aebb85d632b --- /dev/null +++ b/packages/material-ui-icons/src/MailOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MailOutlineRounded'); diff --git a/packages/material-ui-icons/src/MailOutlineSharp.js b/packages/material-ui-icons/src/MailOutlineSharp.js new file mode 100644 index 00000000000000..9e8df310070e71 --- /dev/null +++ b/packages/material-ui-icons/src/MailOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MailOutlineSharp'); diff --git a/packages/material-ui-icons/src/MailOutlineTwoTone.js b/packages/material-ui-icons/src/MailOutlineTwoTone.js new file mode 100644 index 00000000000000..a814d8e366e973 --- /dev/null +++ b/packages/material-ui-icons/src/MailOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MailOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/MailOutlined.js b/packages/material-ui-icons/src/MailOutlined.js new file mode 100644 index 00000000000000..7dff279df817cd --- /dev/null +++ b/packages/material-ui-icons/src/MailOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MailOutlined'); diff --git a/packages/material-ui-icons/src/MailRounded.js b/packages/material-ui-icons/src/MailRounded.js new file mode 100644 index 00000000000000..408938eea60920 --- /dev/null +++ b/packages/material-ui-icons/src/MailRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MailRounded'); diff --git a/packages/material-ui-icons/src/MailSharp.js b/packages/material-ui-icons/src/MailSharp.js new file mode 100644 index 00000000000000..a0127ca5bff226 --- /dev/null +++ b/packages/material-ui-icons/src/MailSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MailSharp'); diff --git a/packages/material-ui-icons/src/MailTwoTone.js b/packages/material-ui-icons/src/MailTwoTone.js new file mode 100644 index 00000000000000..41b7b16556ab32 --- /dev/null +++ b/packages/material-ui-icons/src/MailTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MailTwoTone'); diff --git a/packages/material-ui-icons/src/MapOutlined.js b/packages/material-ui-icons/src/MapOutlined.js new file mode 100644 index 00000000000000..92f9e3555b6547 --- /dev/null +++ b/packages/material-ui-icons/src/MapOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MapOutlined'); diff --git a/packages/material-ui-icons/src/MapRounded.js b/packages/material-ui-icons/src/MapRounded.js new file mode 100644 index 00000000000000..7a403cd1108169 --- /dev/null +++ b/packages/material-ui-icons/src/MapRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MapRounded'); diff --git a/packages/material-ui-icons/src/MapSharp.js b/packages/material-ui-icons/src/MapSharp.js new file mode 100644 index 00000000000000..269e248b21854d --- /dev/null +++ b/packages/material-ui-icons/src/MapSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MapSharp'); diff --git a/packages/material-ui-icons/src/MapTwoTone.js b/packages/material-ui-icons/src/MapTwoTone.js new file mode 100644 index 00000000000000..ad74c77583791d --- /dev/null +++ b/packages/material-ui-icons/src/MapTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MapTwoTone'); diff --git a/packages/material-ui-icons/src/MarkunreadMailboxOutlined.js b/packages/material-ui-icons/src/MarkunreadMailboxOutlined.js new file mode 100644 index 00000000000000..19115b55d0ac9c --- /dev/null +++ b/packages/material-ui-icons/src/MarkunreadMailboxOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MarkunreadMailboxOutlined'); diff --git a/packages/material-ui-icons/src/MarkunreadMailboxRounded.js b/packages/material-ui-icons/src/MarkunreadMailboxRounded.js new file mode 100644 index 00000000000000..9f5c4bddbb0dc0 --- /dev/null +++ b/packages/material-ui-icons/src/MarkunreadMailboxRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MarkunreadMailboxRounded'); diff --git a/packages/material-ui-icons/src/MarkunreadMailboxSharp.js b/packages/material-ui-icons/src/MarkunreadMailboxSharp.js new file mode 100644 index 00000000000000..58c6b775618a2a --- /dev/null +++ b/packages/material-ui-icons/src/MarkunreadMailboxSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MarkunreadMailboxSharp'); diff --git a/packages/material-ui-icons/src/MarkunreadMailboxTwoTone.js b/packages/material-ui-icons/src/MarkunreadMailboxTwoTone.js new file mode 100644 index 00000000000000..a7d03a70932ba9 --- /dev/null +++ b/packages/material-ui-icons/src/MarkunreadMailboxTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MarkunreadMailboxTwoTone'); diff --git a/packages/material-ui-icons/src/MarkunreadOutlined.js b/packages/material-ui-icons/src/MarkunreadOutlined.js new file mode 100644 index 00000000000000..f66648826a890b --- /dev/null +++ b/packages/material-ui-icons/src/MarkunreadOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MarkunreadOutlined'); diff --git a/packages/material-ui-icons/src/MarkunreadRounded.js b/packages/material-ui-icons/src/MarkunreadRounded.js new file mode 100644 index 00000000000000..1145002c2c9570 --- /dev/null +++ b/packages/material-ui-icons/src/MarkunreadRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MarkunreadRounded'); diff --git a/packages/material-ui-icons/src/MarkunreadSharp.js b/packages/material-ui-icons/src/MarkunreadSharp.js new file mode 100644 index 00000000000000..c4bf5de8fdb604 --- /dev/null +++ b/packages/material-ui-icons/src/MarkunreadSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MarkunreadSharp'); diff --git a/packages/material-ui-icons/src/MarkunreadTwoTone.js b/packages/material-ui-icons/src/MarkunreadTwoTone.js new file mode 100644 index 00000000000000..04c48b36a615aa --- /dev/null +++ b/packages/material-ui-icons/src/MarkunreadTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MarkunreadTwoTone'); diff --git a/packages/material-ui-icons/src/Maximize.js b/packages/material-ui-icons/src/Maximize.js new file mode 100644 index 00000000000000..80d20afa8cfa40 --- /dev/null +++ b/packages/material-ui-icons/src/Maximize.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Maximize'); diff --git a/packages/material-ui-icons/src/MaximizeOutlined.js b/packages/material-ui-icons/src/MaximizeOutlined.js new file mode 100644 index 00000000000000..69592cc2da316d --- /dev/null +++ b/packages/material-ui-icons/src/MaximizeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MaximizeOutlined'); diff --git a/packages/material-ui-icons/src/MaximizeRounded.js b/packages/material-ui-icons/src/MaximizeRounded.js new file mode 100644 index 00000000000000..e02b4bd995e96c --- /dev/null +++ b/packages/material-ui-icons/src/MaximizeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MaximizeRounded'); diff --git a/packages/material-ui-icons/src/MaximizeSharp.js b/packages/material-ui-icons/src/MaximizeSharp.js new file mode 100644 index 00000000000000..de9e264dc99b03 --- /dev/null +++ b/packages/material-ui-icons/src/MaximizeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MaximizeSharp'); diff --git a/packages/material-ui-icons/src/MaximizeTwoTone.js b/packages/material-ui-icons/src/MaximizeTwoTone.js new file mode 100644 index 00000000000000..4df62198abdd6e --- /dev/null +++ b/packages/material-ui-icons/src/MaximizeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MaximizeTwoTone'); diff --git a/packages/material-ui-icons/src/MeetingRoom.js b/packages/material-ui-icons/src/MeetingRoom.js new file mode 100644 index 00000000000000..cb2729a52770bd --- /dev/null +++ b/packages/material-ui-icons/src/MeetingRoom.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MeetingRoom'); diff --git a/packages/material-ui-icons/src/MeetingRoomOutlined.js b/packages/material-ui-icons/src/MeetingRoomOutlined.js new file mode 100644 index 00000000000000..6be6075e56f21a --- /dev/null +++ b/packages/material-ui-icons/src/MeetingRoomOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MeetingRoomOutlined'); diff --git a/packages/material-ui-icons/src/MeetingRoomRounded.js b/packages/material-ui-icons/src/MeetingRoomRounded.js new file mode 100644 index 00000000000000..d5f0cdb9e59e6c --- /dev/null +++ b/packages/material-ui-icons/src/MeetingRoomRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MeetingRoomRounded'); diff --git a/packages/material-ui-icons/src/MeetingRoomSharp.js b/packages/material-ui-icons/src/MeetingRoomSharp.js new file mode 100644 index 00000000000000..2cd28a9f39f63d --- /dev/null +++ b/packages/material-ui-icons/src/MeetingRoomSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MeetingRoomSharp'); diff --git a/packages/material-ui-icons/src/MeetingRoomTwoTone.js b/packages/material-ui-icons/src/MeetingRoomTwoTone.js new file mode 100644 index 00000000000000..d9ee8d813d8599 --- /dev/null +++ b/packages/material-ui-icons/src/MeetingRoomTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MeetingRoomTwoTone'); diff --git a/packages/material-ui-icons/src/MemoryOutlined.js b/packages/material-ui-icons/src/MemoryOutlined.js new file mode 100644 index 00000000000000..9a391ac52fb7de --- /dev/null +++ b/packages/material-ui-icons/src/MemoryOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MemoryOutlined'); diff --git a/packages/material-ui-icons/src/MemoryRounded.js b/packages/material-ui-icons/src/MemoryRounded.js new file mode 100644 index 00000000000000..22d49631773d51 --- /dev/null +++ b/packages/material-ui-icons/src/MemoryRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MemoryRounded'); diff --git a/packages/material-ui-icons/src/MemorySharp.js b/packages/material-ui-icons/src/MemorySharp.js new file mode 100644 index 00000000000000..b28ec3233156b0 --- /dev/null +++ b/packages/material-ui-icons/src/MemorySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MemorySharp'); diff --git a/packages/material-ui-icons/src/MemoryTwoTone.js b/packages/material-ui-icons/src/MemoryTwoTone.js new file mode 100644 index 00000000000000..e0c25d20604ea4 --- /dev/null +++ b/packages/material-ui-icons/src/MemoryTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MemoryTwoTone'); diff --git a/packages/material-ui-icons/src/MenuOutlined.js b/packages/material-ui-icons/src/MenuOutlined.js new file mode 100644 index 00000000000000..9a90a21bc32da2 --- /dev/null +++ b/packages/material-ui-icons/src/MenuOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MenuOutlined'); diff --git a/packages/material-ui-icons/src/MenuRounded.js b/packages/material-ui-icons/src/MenuRounded.js new file mode 100644 index 00000000000000..196c2b6e6051e0 --- /dev/null +++ b/packages/material-ui-icons/src/MenuRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MenuRounded'); diff --git a/packages/material-ui-icons/src/MenuSharp.js b/packages/material-ui-icons/src/MenuSharp.js new file mode 100644 index 00000000000000..c7346dade92e36 --- /dev/null +++ b/packages/material-ui-icons/src/MenuSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MenuSharp'); diff --git a/packages/material-ui-icons/src/MenuTwoTone.js b/packages/material-ui-icons/src/MenuTwoTone.js new file mode 100644 index 00000000000000..3816559b628802 --- /dev/null +++ b/packages/material-ui-icons/src/MenuTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MenuTwoTone'); diff --git a/packages/material-ui-icons/src/MergeTypeOutlined.js b/packages/material-ui-icons/src/MergeTypeOutlined.js new file mode 100644 index 00000000000000..0ff1c25c167330 --- /dev/null +++ b/packages/material-ui-icons/src/MergeTypeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MergeTypeOutlined'); diff --git a/packages/material-ui-icons/src/MergeTypeRounded.js b/packages/material-ui-icons/src/MergeTypeRounded.js new file mode 100644 index 00000000000000..454accf5fa7f87 --- /dev/null +++ b/packages/material-ui-icons/src/MergeTypeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MergeTypeRounded'); diff --git a/packages/material-ui-icons/src/MergeTypeSharp.js b/packages/material-ui-icons/src/MergeTypeSharp.js new file mode 100644 index 00000000000000..40cbc87c77d9e3 --- /dev/null +++ b/packages/material-ui-icons/src/MergeTypeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MergeTypeSharp'); diff --git a/packages/material-ui-icons/src/MergeTypeTwoTone.js b/packages/material-ui-icons/src/MergeTypeTwoTone.js new file mode 100644 index 00000000000000..329bfa6cce4307 --- /dev/null +++ b/packages/material-ui-icons/src/MergeTypeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MergeTypeTwoTone'); diff --git a/packages/material-ui-icons/src/MessageOutlined.js b/packages/material-ui-icons/src/MessageOutlined.js new file mode 100644 index 00000000000000..72672515e571d8 --- /dev/null +++ b/packages/material-ui-icons/src/MessageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MessageOutlined'); diff --git a/packages/material-ui-icons/src/MessageRounded.js b/packages/material-ui-icons/src/MessageRounded.js new file mode 100644 index 00000000000000..33eb234bfe4b31 --- /dev/null +++ b/packages/material-ui-icons/src/MessageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MessageRounded'); diff --git a/packages/material-ui-icons/src/MessageSharp.js b/packages/material-ui-icons/src/MessageSharp.js new file mode 100644 index 00000000000000..769d6687525031 --- /dev/null +++ b/packages/material-ui-icons/src/MessageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MessageSharp'); diff --git a/packages/material-ui-icons/src/MessageTwoTone.js b/packages/material-ui-icons/src/MessageTwoTone.js new file mode 100644 index 00000000000000..f6bcd7f4b68452 --- /dev/null +++ b/packages/material-ui-icons/src/MessageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MessageTwoTone'); diff --git a/packages/material-ui-icons/src/MicNoneOutlined.js b/packages/material-ui-icons/src/MicNoneOutlined.js new file mode 100644 index 00000000000000..df92a26d1f87ed --- /dev/null +++ b/packages/material-ui-icons/src/MicNoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicNoneOutlined'); diff --git a/packages/material-ui-icons/src/MicNoneRounded.js b/packages/material-ui-icons/src/MicNoneRounded.js new file mode 100644 index 00000000000000..a3bdac4ca3ebac --- /dev/null +++ b/packages/material-ui-icons/src/MicNoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicNoneRounded'); diff --git a/packages/material-ui-icons/src/MicNoneSharp.js b/packages/material-ui-icons/src/MicNoneSharp.js new file mode 100644 index 00000000000000..1bcb1f95e4079b --- /dev/null +++ b/packages/material-ui-icons/src/MicNoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicNoneSharp'); diff --git a/packages/material-ui-icons/src/MicNoneTwoTone.js b/packages/material-ui-icons/src/MicNoneTwoTone.js new file mode 100644 index 00000000000000..6559124a87d1a9 --- /dev/null +++ b/packages/material-ui-icons/src/MicNoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicNoneTwoTone'); diff --git a/packages/material-ui-icons/src/MicOffOutlined.js b/packages/material-ui-icons/src/MicOffOutlined.js new file mode 100644 index 00000000000000..b2e56b616607d6 --- /dev/null +++ b/packages/material-ui-icons/src/MicOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicOffOutlined'); diff --git a/packages/material-ui-icons/src/MicOffRounded.js b/packages/material-ui-icons/src/MicOffRounded.js new file mode 100644 index 00000000000000..d2fc09162fc45f --- /dev/null +++ b/packages/material-ui-icons/src/MicOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicOffRounded'); diff --git a/packages/material-ui-icons/src/MicOffSharp.js b/packages/material-ui-icons/src/MicOffSharp.js new file mode 100644 index 00000000000000..699259f18b40dc --- /dev/null +++ b/packages/material-ui-icons/src/MicOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicOffSharp'); diff --git a/packages/material-ui-icons/src/MicOffTwoTone.js b/packages/material-ui-icons/src/MicOffTwoTone.js new file mode 100644 index 00000000000000..967079d533bd07 --- /dev/null +++ b/packages/material-ui-icons/src/MicOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicOffTwoTone'); diff --git a/packages/material-ui-icons/src/MicOutlined.js b/packages/material-ui-icons/src/MicOutlined.js new file mode 100644 index 00000000000000..97d6145aac6e48 --- /dev/null +++ b/packages/material-ui-icons/src/MicOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicOutlined'); diff --git a/packages/material-ui-icons/src/MicRounded.js b/packages/material-ui-icons/src/MicRounded.js new file mode 100644 index 00000000000000..cb00ea1d19d530 --- /dev/null +++ b/packages/material-ui-icons/src/MicRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicRounded'); diff --git a/packages/material-ui-icons/src/MicSharp.js b/packages/material-ui-icons/src/MicSharp.js new file mode 100644 index 00000000000000..ac2f5a4691bc74 --- /dev/null +++ b/packages/material-ui-icons/src/MicSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicSharp'); diff --git a/packages/material-ui-icons/src/MicTwoTone.js b/packages/material-ui-icons/src/MicTwoTone.js new file mode 100644 index 00000000000000..b8dfb0c9a2a55d --- /dev/null +++ b/packages/material-ui-icons/src/MicTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MicTwoTone'); diff --git a/packages/material-ui-icons/src/Minimize.js b/packages/material-ui-icons/src/Minimize.js new file mode 100644 index 00000000000000..562ec8438cab4d --- /dev/null +++ b/packages/material-ui-icons/src/Minimize.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Minimize'); diff --git a/packages/material-ui-icons/src/MinimizeOutlined.js b/packages/material-ui-icons/src/MinimizeOutlined.js new file mode 100644 index 00000000000000..6d03551a7d6e77 --- /dev/null +++ b/packages/material-ui-icons/src/MinimizeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MinimizeOutlined'); diff --git a/packages/material-ui-icons/src/MinimizeRounded.js b/packages/material-ui-icons/src/MinimizeRounded.js new file mode 100644 index 00000000000000..e426baabcf6def --- /dev/null +++ b/packages/material-ui-icons/src/MinimizeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MinimizeRounded'); diff --git a/packages/material-ui-icons/src/MinimizeSharp.js b/packages/material-ui-icons/src/MinimizeSharp.js new file mode 100644 index 00000000000000..091abea59a9cd6 --- /dev/null +++ b/packages/material-ui-icons/src/MinimizeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MinimizeSharp'); diff --git a/packages/material-ui-icons/src/MinimizeTwoTone.js b/packages/material-ui-icons/src/MinimizeTwoTone.js new file mode 100644 index 00000000000000..42b942c28e2684 --- /dev/null +++ b/packages/material-ui-icons/src/MinimizeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MinimizeTwoTone'); diff --git a/packages/material-ui-icons/src/MissedVideoCall.js b/packages/material-ui-icons/src/MissedVideoCall.js new file mode 100644 index 00000000000000..0825fb077b4f9b --- /dev/null +++ b/packages/material-ui-icons/src/MissedVideoCall.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MissedVideoCall'); diff --git a/packages/material-ui-icons/src/MissedVideoCallOutlined.js b/packages/material-ui-icons/src/MissedVideoCallOutlined.js new file mode 100644 index 00000000000000..cfb3e8feb1be0b --- /dev/null +++ b/packages/material-ui-icons/src/MissedVideoCallOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MissedVideoCallOutlined'); diff --git a/packages/material-ui-icons/src/MissedVideoCallRounded.js b/packages/material-ui-icons/src/MissedVideoCallRounded.js new file mode 100644 index 00000000000000..8eb16ce688c75c --- /dev/null +++ b/packages/material-ui-icons/src/MissedVideoCallRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MissedVideoCallRounded'); diff --git a/packages/material-ui-icons/src/MissedVideoCallSharp.js b/packages/material-ui-icons/src/MissedVideoCallSharp.js new file mode 100644 index 00000000000000..9b3385542e409d --- /dev/null +++ b/packages/material-ui-icons/src/MissedVideoCallSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MissedVideoCallSharp'); diff --git a/packages/material-ui-icons/src/MissedVideoCallTwoTone.js b/packages/material-ui-icons/src/MissedVideoCallTwoTone.js new file mode 100644 index 00000000000000..34f9e1dd6f7a90 --- /dev/null +++ b/packages/material-ui-icons/src/MissedVideoCallTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MissedVideoCallTwoTone'); diff --git a/packages/material-ui-icons/src/MmsOutlined.js b/packages/material-ui-icons/src/MmsOutlined.js new file mode 100644 index 00000000000000..818c55fa90e173 --- /dev/null +++ b/packages/material-ui-icons/src/MmsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MmsOutlined'); diff --git a/packages/material-ui-icons/src/MmsRounded.js b/packages/material-ui-icons/src/MmsRounded.js new file mode 100644 index 00000000000000..8434d227b599c1 --- /dev/null +++ b/packages/material-ui-icons/src/MmsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MmsRounded'); diff --git a/packages/material-ui-icons/src/MmsSharp.js b/packages/material-ui-icons/src/MmsSharp.js new file mode 100644 index 00000000000000..ea0892c92d7a9e --- /dev/null +++ b/packages/material-ui-icons/src/MmsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MmsSharp'); diff --git a/packages/material-ui-icons/src/MmsTwoTone.js b/packages/material-ui-icons/src/MmsTwoTone.js new file mode 100644 index 00000000000000..26dadf24402d37 --- /dev/null +++ b/packages/material-ui-icons/src/MmsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MmsTwoTone'); diff --git a/packages/material-ui-icons/src/MobileFriendly.js b/packages/material-ui-icons/src/MobileFriendly.js new file mode 100644 index 00000000000000..bc470eb021be44 --- /dev/null +++ b/packages/material-ui-icons/src/MobileFriendly.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileFriendly'); diff --git a/packages/material-ui-icons/src/MobileFriendlyOutlined.js b/packages/material-ui-icons/src/MobileFriendlyOutlined.js new file mode 100644 index 00000000000000..f9398d71486707 --- /dev/null +++ b/packages/material-ui-icons/src/MobileFriendlyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileFriendlyOutlined'); diff --git a/packages/material-ui-icons/src/MobileFriendlyRounded.js b/packages/material-ui-icons/src/MobileFriendlyRounded.js new file mode 100644 index 00000000000000..fde69c6d944ead --- /dev/null +++ b/packages/material-ui-icons/src/MobileFriendlyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileFriendlyRounded'); diff --git a/packages/material-ui-icons/src/MobileFriendlySharp.js b/packages/material-ui-icons/src/MobileFriendlySharp.js new file mode 100644 index 00000000000000..8719623005fd30 --- /dev/null +++ b/packages/material-ui-icons/src/MobileFriendlySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileFriendlySharp'); diff --git a/packages/material-ui-icons/src/MobileFriendlyTwoTone.js b/packages/material-ui-icons/src/MobileFriendlyTwoTone.js new file mode 100644 index 00000000000000..f73c6d8462dced --- /dev/null +++ b/packages/material-ui-icons/src/MobileFriendlyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileFriendlyTwoTone'); diff --git a/packages/material-ui-icons/src/MobileOff.js b/packages/material-ui-icons/src/MobileOff.js new file mode 100644 index 00000000000000..6a27316a819821 --- /dev/null +++ b/packages/material-ui-icons/src/MobileOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileOff'); diff --git a/packages/material-ui-icons/src/MobileOffOutlined.js b/packages/material-ui-icons/src/MobileOffOutlined.js new file mode 100644 index 00000000000000..3dc440fb423905 --- /dev/null +++ b/packages/material-ui-icons/src/MobileOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileOffOutlined'); diff --git a/packages/material-ui-icons/src/MobileOffRounded.js b/packages/material-ui-icons/src/MobileOffRounded.js new file mode 100644 index 00000000000000..58e19fc29d6b34 --- /dev/null +++ b/packages/material-ui-icons/src/MobileOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileOffRounded'); diff --git a/packages/material-ui-icons/src/MobileOffSharp.js b/packages/material-ui-icons/src/MobileOffSharp.js new file mode 100644 index 00000000000000..f5d3dcfad570e2 --- /dev/null +++ b/packages/material-ui-icons/src/MobileOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileOffSharp'); diff --git a/packages/material-ui-icons/src/MobileOffTwoTone.js b/packages/material-ui-icons/src/MobileOffTwoTone.js new file mode 100644 index 00000000000000..f6a8564b85fe7b --- /dev/null +++ b/packages/material-ui-icons/src/MobileOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileOffTwoTone'); diff --git a/packages/material-ui-icons/src/MobileScreenShare.js b/packages/material-ui-icons/src/MobileScreenShare.js new file mode 100644 index 00000000000000..416a8ad6040973 --- /dev/null +++ b/packages/material-ui-icons/src/MobileScreenShare.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileScreenShare'); diff --git a/packages/material-ui-icons/src/MobileScreenShareOutlined.js b/packages/material-ui-icons/src/MobileScreenShareOutlined.js new file mode 100644 index 00000000000000..d9c4a6306c3178 --- /dev/null +++ b/packages/material-ui-icons/src/MobileScreenShareOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileScreenShareOutlined'); diff --git a/packages/material-ui-icons/src/MobileScreenShareRounded.js b/packages/material-ui-icons/src/MobileScreenShareRounded.js new file mode 100644 index 00000000000000..93fd301e383557 --- /dev/null +++ b/packages/material-ui-icons/src/MobileScreenShareRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileScreenShareRounded'); diff --git a/packages/material-ui-icons/src/MobileScreenShareSharp.js b/packages/material-ui-icons/src/MobileScreenShareSharp.js new file mode 100644 index 00000000000000..8e634c255c71f5 --- /dev/null +++ b/packages/material-ui-icons/src/MobileScreenShareSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileScreenShareSharp'); diff --git a/packages/material-ui-icons/src/MobileScreenShareTwoTone.js b/packages/material-ui-icons/src/MobileScreenShareTwoTone.js new file mode 100644 index 00000000000000..e5281e3b12a51a --- /dev/null +++ b/packages/material-ui-icons/src/MobileScreenShareTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MobileScreenShareTwoTone'); diff --git a/packages/material-ui-icons/src/ModeCommentOutlined.js b/packages/material-ui-icons/src/ModeCommentOutlined.js new file mode 100644 index 00000000000000..d8f599cf9c1a4b --- /dev/null +++ b/packages/material-ui-icons/src/ModeCommentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ModeCommentOutlined'); diff --git a/packages/material-ui-icons/src/ModeCommentRounded.js b/packages/material-ui-icons/src/ModeCommentRounded.js new file mode 100644 index 00000000000000..7977acd521a31c --- /dev/null +++ b/packages/material-ui-icons/src/ModeCommentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ModeCommentRounded'); diff --git a/packages/material-ui-icons/src/ModeCommentSharp.js b/packages/material-ui-icons/src/ModeCommentSharp.js new file mode 100644 index 00000000000000..da29368ae1665e --- /dev/null +++ b/packages/material-ui-icons/src/ModeCommentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ModeCommentSharp'); diff --git a/packages/material-ui-icons/src/ModeCommentTwoTone.js b/packages/material-ui-icons/src/ModeCommentTwoTone.js new file mode 100644 index 00000000000000..67a3954e0b54fe --- /dev/null +++ b/packages/material-ui-icons/src/ModeCommentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ModeCommentTwoTone'); diff --git a/packages/material-ui-icons/src/ModeEdit.js b/packages/material-ui-icons/src/ModeEdit.js deleted file mode 100644 index 7532ab2d869b10..00000000000000 --- a/packages/material-ui-icons/src/ModeEdit.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'ModeEdit'); diff --git a/packages/material-ui-icons/src/MonetizationOnOutlined.js b/packages/material-ui-icons/src/MonetizationOnOutlined.js new file mode 100644 index 00000000000000..e60136e3291804 --- /dev/null +++ b/packages/material-ui-icons/src/MonetizationOnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MonetizationOnOutlined'); diff --git a/packages/material-ui-icons/src/MonetizationOnRounded.js b/packages/material-ui-icons/src/MonetizationOnRounded.js new file mode 100644 index 00000000000000..a668175f7b1f67 --- /dev/null +++ b/packages/material-ui-icons/src/MonetizationOnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MonetizationOnRounded'); diff --git a/packages/material-ui-icons/src/MonetizationOnSharp.js b/packages/material-ui-icons/src/MonetizationOnSharp.js new file mode 100644 index 00000000000000..05b87c412e5a24 --- /dev/null +++ b/packages/material-ui-icons/src/MonetizationOnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MonetizationOnSharp'); diff --git a/packages/material-ui-icons/src/MonetizationOnTwoTone.js b/packages/material-ui-icons/src/MonetizationOnTwoTone.js new file mode 100644 index 00000000000000..f47d895ef90d81 --- /dev/null +++ b/packages/material-ui-icons/src/MonetizationOnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MonetizationOnTwoTone'); diff --git a/packages/material-ui-icons/src/Money.js b/packages/material-ui-icons/src/Money.js new file mode 100644 index 00000000000000..bbbc5db50dc5e3 --- /dev/null +++ b/packages/material-ui-icons/src/Money.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Money'); diff --git a/packages/material-ui-icons/src/MoneyOffOutlined.js b/packages/material-ui-icons/src/MoneyOffOutlined.js new file mode 100644 index 00000000000000..c8d44dc0af6495 --- /dev/null +++ b/packages/material-ui-icons/src/MoneyOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoneyOffOutlined'); diff --git a/packages/material-ui-icons/src/MoneyOffRounded.js b/packages/material-ui-icons/src/MoneyOffRounded.js new file mode 100644 index 00000000000000..9b8d42c5c4e94f --- /dev/null +++ b/packages/material-ui-icons/src/MoneyOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoneyOffRounded'); diff --git a/packages/material-ui-icons/src/MoneyOffSharp.js b/packages/material-ui-icons/src/MoneyOffSharp.js new file mode 100644 index 00000000000000..480298c3c506c4 --- /dev/null +++ b/packages/material-ui-icons/src/MoneyOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoneyOffSharp'); diff --git a/packages/material-ui-icons/src/MoneyOffTwoTone.js b/packages/material-ui-icons/src/MoneyOffTwoTone.js new file mode 100644 index 00000000000000..74b5838c058b75 --- /dev/null +++ b/packages/material-ui-icons/src/MoneyOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoneyOffTwoTone'); diff --git a/packages/material-ui-icons/src/MoneyOutlined.js b/packages/material-ui-icons/src/MoneyOutlined.js new file mode 100644 index 00000000000000..754d5fcfbf6225 --- /dev/null +++ b/packages/material-ui-icons/src/MoneyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoneyOutlined'); diff --git a/packages/material-ui-icons/src/MoneyRounded.js b/packages/material-ui-icons/src/MoneyRounded.js new file mode 100644 index 00000000000000..f57e96d4e206de --- /dev/null +++ b/packages/material-ui-icons/src/MoneyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoneyRounded'); diff --git a/packages/material-ui-icons/src/MoneySharp.js b/packages/material-ui-icons/src/MoneySharp.js new file mode 100644 index 00000000000000..8543d3283502e9 --- /dev/null +++ b/packages/material-ui-icons/src/MoneySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoneySharp'); diff --git a/packages/material-ui-icons/src/MoneyTwoTone.js b/packages/material-ui-icons/src/MoneyTwoTone.js new file mode 100644 index 00000000000000..7d26046f6e16aa --- /dev/null +++ b/packages/material-ui-icons/src/MoneyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoneyTwoTone'); diff --git a/packages/material-ui-icons/src/MonochromePhotos.js b/packages/material-ui-icons/src/MonochromePhotos.js index 2f70b9ac7a964c..46624119d07da6 100644 --- a/packages/material-ui-icons/src/MonochromePhotos.js +++ b/packages/material-ui-icons/src/MonochromePhotos.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'MonochromePhotos'); diff --git a/packages/material-ui-icons/src/MonochromePhotosOutlined.js b/packages/material-ui-icons/src/MonochromePhotosOutlined.js new file mode 100644 index 00000000000000..10407bb947b38c --- /dev/null +++ b/packages/material-ui-icons/src/MonochromePhotosOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MonochromePhotosOutlined'); diff --git a/packages/material-ui-icons/src/MonochromePhotosRounded.js b/packages/material-ui-icons/src/MonochromePhotosRounded.js new file mode 100644 index 00000000000000..b57cf3babadb37 --- /dev/null +++ b/packages/material-ui-icons/src/MonochromePhotosRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MonochromePhotosRounded'); diff --git a/packages/material-ui-icons/src/MonochromePhotosSharp.js b/packages/material-ui-icons/src/MonochromePhotosSharp.js new file mode 100644 index 00000000000000..94a93d34df9f8c --- /dev/null +++ b/packages/material-ui-icons/src/MonochromePhotosSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MonochromePhotosSharp'); diff --git a/packages/material-ui-icons/src/MonochromePhotosTwoTone.js b/packages/material-ui-icons/src/MonochromePhotosTwoTone.js new file mode 100644 index 00000000000000..86ad272e4ff8f8 --- /dev/null +++ b/packages/material-ui-icons/src/MonochromePhotosTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MonochromePhotosTwoTone'); diff --git a/packages/material-ui-icons/src/MoodBadOutlined.js b/packages/material-ui-icons/src/MoodBadOutlined.js new file mode 100644 index 00000000000000..ef9949ca95269a --- /dev/null +++ b/packages/material-ui-icons/src/MoodBadOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoodBadOutlined'); diff --git a/packages/material-ui-icons/src/MoodBadRounded.js b/packages/material-ui-icons/src/MoodBadRounded.js new file mode 100644 index 00000000000000..a52d71386198f3 --- /dev/null +++ b/packages/material-ui-icons/src/MoodBadRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoodBadRounded'); diff --git a/packages/material-ui-icons/src/MoodBadSharp.js b/packages/material-ui-icons/src/MoodBadSharp.js new file mode 100644 index 00000000000000..9f5575f1306345 --- /dev/null +++ b/packages/material-ui-icons/src/MoodBadSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoodBadSharp'); diff --git a/packages/material-ui-icons/src/MoodBadTwoTone.js b/packages/material-ui-icons/src/MoodBadTwoTone.js new file mode 100644 index 00000000000000..a93910555a4286 --- /dev/null +++ b/packages/material-ui-icons/src/MoodBadTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoodBadTwoTone'); diff --git a/packages/material-ui-icons/src/MoodOutlined.js b/packages/material-ui-icons/src/MoodOutlined.js new file mode 100644 index 00000000000000..9bc64544dfeab1 --- /dev/null +++ b/packages/material-ui-icons/src/MoodOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoodOutlined'); diff --git a/packages/material-ui-icons/src/MoodRounded.js b/packages/material-ui-icons/src/MoodRounded.js new file mode 100644 index 00000000000000..842b691910703e --- /dev/null +++ b/packages/material-ui-icons/src/MoodRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoodRounded'); diff --git a/packages/material-ui-icons/src/MoodSharp.js b/packages/material-ui-icons/src/MoodSharp.js new file mode 100644 index 00000000000000..02679e7f865222 --- /dev/null +++ b/packages/material-ui-icons/src/MoodSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoodSharp'); diff --git a/packages/material-ui-icons/src/MoodTwoTone.js b/packages/material-ui-icons/src/MoodTwoTone.js new file mode 100644 index 00000000000000..d6fa3c385d875b --- /dev/null +++ b/packages/material-ui-icons/src/MoodTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoodTwoTone'); diff --git a/packages/material-ui-icons/src/MoreHorizOutlined.js b/packages/material-ui-icons/src/MoreHorizOutlined.js new file mode 100644 index 00000000000000..49939335d5baf2 --- /dev/null +++ b/packages/material-ui-icons/src/MoreHorizOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreHorizOutlined'); diff --git a/packages/material-ui-icons/src/MoreHorizRounded.js b/packages/material-ui-icons/src/MoreHorizRounded.js new file mode 100644 index 00000000000000..79736552aa4cfc --- /dev/null +++ b/packages/material-ui-icons/src/MoreHorizRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreHorizRounded'); diff --git a/packages/material-ui-icons/src/MoreHorizSharp.js b/packages/material-ui-icons/src/MoreHorizSharp.js new file mode 100644 index 00000000000000..cafb184ece784c --- /dev/null +++ b/packages/material-ui-icons/src/MoreHorizSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreHorizSharp'); diff --git a/packages/material-ui-icons/src/MoreHorizTwoTone.js b/packages/material-ui-icons/src/MoreHorizTwoTone.js new file mode 100644 index 00000000000000..0d24356dbdb05a --- /dev/null +++ b/packages/material-ui-icons/src/MoreHorizTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreHorizTwoTone'); diff --git a/packages/material-ui-icons/src/MoreOutlined.js b/packages/material-ui-icons/src/MoreOutlined.js new file mode 100644 index 00000000000000..327a69af3db182 --- /dev/null +++ b/packages/material-ui-icons/src/MoreOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreOutlined'); diff --git a/packages/material-ui-icons/src/MoreRounded.js b/packages/material-ui-icons/src/MoreRounded.js new file mode 100644 index 00000000000000..b89ac68bf8cb39 --- /dev/null +++ b/packages/material-ui-icons/src/MoreRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreRounded'); diff --git a/packages/material-ui-icons/src/MoreSharp.js b/packages/material-ui-icons/src/MoreSharp.js new file mode 100644 index 00000000000000..296987364a2eaa --- /dev/null +++ b/packages/material-ui-icons/src/MoreSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreSharp'); diff --git a/packages/material-ui-icons/src/MoreTwoTone.js b/packages/material-ui-icons/src/MoreTwoTone.js new file mode 100644 index 00000000000000..04c890fd94efe9 --- /dev/null +++ b/packages/material-ui-icons/src/MoreTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreTwoTone'); diff --git a/packages/material-ui-icons/src/MoreVertOutlined.js b/packages/material-ui-icons/src/MoreVertOutlined.js new file mode 100644 index 00000000000000..5bc524e75363d0 --- /dev/null +++ b/packages/material-ui-icons/src/MoreVertOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreVertOutlined'); diff --git a/packages/material-ui-icons/src/MoreVertRounded.js b/packages/material-ui-icons/src/MoreVertRounded.js new file mode 100644 index 00000000000000..cd746ec9690181 --- /dev/null +++ b/packages/material-ui-icons/src/MoreVertRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreVertRounded'); diff --git a/packages/material-ui-icons/src/MoreVertSharp.js b/packages/material-ui-icons/src/MoreVertSharp.js new file mode 100644 index 00000000000000..54da5be6b37bfd --- /dev/null +++ b/packages/material-ui-icons/src/MoreVertSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreVertSharp'); diff --git a/packages/material-ui-icons/src/MoreVertTwoTone.js b/packages/material-ui-icons/src/MoreVertTwoTone.js new file mode 100644 index 00000000000000..ce77ee79161263 --- /dev/null +++ b/packages/material-ui-icons/src/MoreVertTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoreVertTwoTone'); diff --git a/packages/material-ui-icons/src/Motorcycle.js b/packages/material-ui-icons/src/Motorcycle.js index 233da57ce6d0db..8bcb2efe2ad652 100644 --- a/packages/material-ui-icons/src/Motorcycle.js +++ b/packages/material-ui-icons/src/Motorcycle.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Motorcycle'); diff --git a/packages/material-ui-icons/src/MotorcycleOutlined.js b/packages/material-ui-icons/src/MotorcycleOutlined.js new file mode 100644 index 00000000000000..2079a07c178916 --- /dev/null +++ b/packages/material-ui-icons/src/MotorcycleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MotorcycleOutlined'); diff --git a/packages/material-ui-icons/src/MotorcycleRounded.js b/packages/material-ui-icons/src/MotorcycleRounded.js new file mode 100644 index 00000000000000..0e91f680e34b42 --- /dev/null +++ b/packages/material-ui-icons/src/MotorcycleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MotorcycleRounded'); diff --git a/packages/material-ui-icons/src/MotorcycleSharp.js b/packages/material-ui-icons/src/MotorcycleSharp.js new file mode 100644 index 00000000000000..9309c611664d3d --- /dev/null +++ b/packages/material-ui-icons/src/MotorcycleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MotorcycleSharp'); diff --git a/packages/material-ui-icons/src/MotorcycleTwoTone.js b/packages/material-ui-icons/src/MotorcycleTwoTone.js new file mode 100644 index 00000000000000..889a336e947683 --- /dev/null +++ b/packages/material-ui-icons/src/MotorcycleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MotorcycleTwoTone'); diff --git a/packages/material-ui-icons/src/MouseOutlined.js b/packages/material-ui-icons/src/MouseOutlined.js new file mode 100644 index 00000000000000..0efc35c6c6ab7c --- /dev/null +++ b/packages/material-ui-icons/src/MouseOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MouseOutlined'); diff --git a/packages/material-ui-icons/src/MouseRounded.js b/packages/material-ui-icons/src/MouseRounded.js new file mode 100644 index 00000000000000..8b4eb016f908a7 --- /dev/null +++ b/packages/material-ui-icons/src/MouseRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MouseRounded'); diff --git a/packages/material-ui-icons/src/MouseSharp.js b/packages/material-ui-icons/src/MouseSharp.js new file mode 100644 index 00000000000000..ac91ddb537bbff --- /dev/null +++ b/packages/material-ui-icons/src/MouseSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MouseSharp'); diff --git a/packages/material-ui-icons/src/MouseTwoTone.js b/packages/material-ui-icons/src/MouseTwoTone.js new file mode 100644 index 00000000000000..27d6a3c6757e66 --- /dev/null +++ b/packages/material-ui-icons/src/MouseTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MouseTwoTone'); diff --git a/packages/material-ui-icons/src/MoveToInboxOutlined.js b/packages/material-ui-icons/src/MoveToInboxOutlined.js new file mode 100644 index 00000000000000..0920d770f98646 --- /dev/null +++ b/packages/material-ui-icons/src/MoveToInboxOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoveToInboxOutlined'); diff --git a/packages/material-ui-icons/src/MoveToInboxRounded.js b/packages/material-ui-icons/src/MoveToInboxRounded.js new file mode 100644 index 00000000000000..e9eac26aaf91c8 --- /dev/null +++ b/packages/material-ui-icons/src/MoveToInboxRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoveToInboxRounded'); diff --git a/packages/material-ui-icons/src/MoveToInboxSharp.js b/packages/material-ui-icons/src/MoveToInboxSharp.js new file mode 100644 index 00000000000000..8f6f8132ad0425 --- /dev/null +++ b/packages/material-ui-icons/src/MoveToInboxSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoveToInboxSharp'); diff --git a/packages/material-ui-icons/src/MoveToInboxTwoTone.js b/packages/material-ui-icons/src/MoveToInboxTwoTone.js new file mode 100644 index 00000000000000..bf52bd4f4fc49f --- /dev/null +++ b/packages/material-ui-icons/src/MoveToInboxTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MoveToInboxTwoTone'); diff --git a/packages/material-ui-icons/src/MovieCreationOutlined.js b/packages/material-ui-icons/src/MovieCreationOutlined.js new file mode 100644 index 00000000000000..66651d740e1c9e --- /dev/null +++ b/packages/material-ui-icons/src/MovieCreationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieCreationOutlined'); diff --git a/packages/material-ui-icons/src/MovieCreationRounded.js b/packages/material-ui-icons/src/MovieCreationRounded.js new file mode 100644 index 00000000000000..bc0c2139cefae3 --- /dev/null +++ b/packages/material-ui-icons/src/MovieCreationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieCreationRounded'); diff --git a/packages/material-ui-icons/src/MovieCreationSharp.js b/packages/material-ui-icons/src/MovieCreationSharp.js new file mode 100644 index 00000000000000..58341aaf4ec57b --- /dev/null +++ b/packages/material-ui-icons/src/MovieCreationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieCreationSharp'); diff --git a/packages/material-ui-icons/src/MovieCreationTwoTone.js b/packages/material-ui-icons/src/MovieCreationTwoTone.js new file mode 100644 index 00000000000000..d545a11b79f98d --- /dev/null +++ b/packages/material-ui-icons/src/MovieCreationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieCreationTwoTone'); diff --git a/packages/material-ui-icons/src/MovieFilterOutlined.js b/packages/material-ui-icons/src/MovieFilterOutlined.js new file mode 100644 index 00000000000000..8cc8a829efe8db --- /dev/null +++ b/packages/material-ui-icons/src/MovieFilterOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieFilterOutlined'); diff --git a/packages/material-ui-icons/src/MovieFilterRounded.js b/packages/material-ui-icons/src/MovieFilterRounded.js new file mode 100644 index 00000000000000..76e8a0a04ea985 --- /dev/null +++ b/packages/material-ui-icons/src/MovieFilterRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieFilterRounded'); diff --git a/packages/material-ui-icons/src/MovieFilterSharp.js b/packages/material-ui-icons/src/MovieFilterSharp.js new file mode 100644 index 00000000000000..793f79fbf73b6f --- /dev/null +++ b/packages/material-ui-icons/src/MovieFilterSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieFilterSharp'); diff --git a/packages/material-ui-icons/src/MovieFilterTwoTone.js b/packages/material-ui-icons/src/MovieFilterTwoTone.js new file mode 100644 index 00000000000000..d4d039033d1e8f --- /dev/null +++ b/packages/material-ui-icons/src/MovieFilterTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieFilterTwoTone'); diff --git a/packages/material-ui-icons/src/MovieOutlined.js b/packages/material-ui-icons/src/MovieOutlined.js new file mode 100644 index 00000000000000..7fc698b2d427ec --- /dev/null +++ b/packages/material-ui-icons/src/MovieOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieOutlined'); diff --git a/packages/material-ui-icons/src/MovieRounded.js b/packages/material-ui-icons/src/MovieRounded.js new file mode 100644 index 00000000000000..4b3e4a20f48604 --- /dev/null +++ b/packages/material-ui-icons/src/MovieRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieRounded'); diff --git a/packages/material-ui-icons/src/MovieSharp.js b/packages/material-ui-icons/src/MovieSharp.js new file mode 100644 index 00000000000000..19e0aac6d7b9df --- /dev/null +++ b/packages/material-ui-icons/src/MovieSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieSharp'); diff --git a/packages/material-ui-icons/src/MovieTwoTone.js b/packages/material-ui-icons/src/MovieTwoTone.js new file mode 100644 index 00000000000000..73317bcb1170cd --- /dev/null +++ b/packages/material-ui-icons/src/MovieTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MovieTwoTone'); diff --git a/packages/material-ui-icons/src/MultilineChartOutlined.js b/packages/material-ui-icons/src/MultilineChartOutlined.js new file mode 100644 index 00000000000000..a639d5ce9e9ad0 --- /dev/null +++ b/packages/material-ui-icons/src/MultilineChartOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MultilineChartOutlined'); diff --git a/packages/material-ui-icons/src/MultilineChartRounded.js b/packages/material-ui-icons/src/MultilineChartRounded.js new file mode 100644 index 00000000000000..c10f3fb406a6cd --- /dev/null +++ b/packages/material-ui-icons/src/MultilineChartRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MultilineChartRounded'); diff --git a/packages/material-ui-icons/src/MultilineChartSharp.js b/packages/material-ui-icons/src/MultilineChartSharp.js new file mode 100644 index 00000000000000..d910214b7a7f03 --- /dev/null +++ b/packages/material-ui-icons/src/MultilineChartSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MultilineChartSharp'); diff --git a/packages/material-ui-icons/src/MultilineChartTwoTone.js b/packages/material-ui-icons/src/MultilineChartTwoTone.js new file mode 100644 index 00000000000000..ea3793cc876fa0 --- /dev/null +++ b/packages/material-ui-icons/src/MultilineChartTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MultilineChartTwoTone'); diff --git a/packages/material-ui-icons/src/MusicNoteOutlined.js b/packages/material-ui-icons/src/MusicNoteOutlined.js new file mode 100644 index 00000000000000..1c29828a79ac29 --- /dev/null +++ b/packages/material-ui-icons/src/MusicNoteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicNoteOutlined'); diff --git a/packages/material-ui-icons/src/MusicNoteRounded.js b/packages/material-ui-icons/src/MusicNoteRounded.js new file mode 100644 index 00000000000000..2e8236abcc1f50 --- /dev/null +++ b/packages/material-ui-icons/src/MusicNoteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicNoteRounded'); diff --git a/packages/material-ui-icons/src/MusicNoteSharp.js b/packages/material-ui-icons/src/MusicNoteSharp.js new file mode 100644 index 00000000000000..7534b318023ed6 --- /dev/null +++ b/packages/material-ui-icons/src/MusicNoteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicNoteSharp'); diff --git a/packages/material-ui-icons/src/MusicNoteTwoTone.js b/packages/material-ui-icons/src/MusicNoteTwoTone.js new file mode 100644 index 00000000000000..5b2ae7e1ccbd96 --- /dev/null +++ b/packages/material-ui-icons/src/MusicNoteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicNoteTwoTone'); diff --git a/packages/material-ui-icons/src/MusicOff.js b/packages/material-ui-icons/src/MusicOff.js new file mode 100644 index 00000000000000..a768152d104442 --- /dev/null +++ b/packages/material-ui-icons/src/MusicOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicOff'); diff --git a/packages/material-ui-icons/src/MusicOffOutlined.js b/packages/material-ui-icons/src/MusicOffOutlined.js new file mode 100644 index 00000000000000..144fdbd8f5feaa --- /dev/null +++ b/packages/material-ui-icons/src/MusicOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicOffOutlined'); diff --git a/packages/material-ui-icons/src/MusicOffRounded.js b/packages/material-ui-icons/src/MusicOffRounded.js new file mode 100644 index 00000000000000..a35476f435417b --- /dev/null +++ b/packages/material-ui-icons/src/MusicOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicOffRounded'); diff --git a/packages/material-ui-icons/src/MusicOffSharp.js b/packages/material-ui-icons/src/MusicOffSharp.js new file mode 100644 index 00000000000000..15c8b7d64c043d --- /dev/null +++ b/packages/material-ui-icons/src/MusicOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicOffSharp'); diff --git a/packages/material-ui-icons/src/MusicOffTwoTone.js b/packages/material-ui-icons/src/MusicOffTwoTone.js new file mode 100644 index 00000000000000..e9ccfba47ada5e --- /dev/null +++ b/packages/material-ui-icons/src/MusicOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicOffTwoTone'); diff --git a/packages/material-ui-icons/src/MusicVideo.js b/packages/material-ui-icons/src/MusicVideo.js index 5d6d8d76cc414a..e1d9a82d2bc75a 100644 --- a/packages/material-ui-icons/src/MusicVideo.js +++ b/packages/material-ui-icons/src/MusicVideo.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'MusicVideo'); diff --git a/packages/material-ui-icons/src/MusicVideoOutlined.js b/packages/material-ui-icons/src/MusicVideoOutlined.js new file mode 100644 index 00000000000000..f887b343a59f39 --- /dev/null +++ b/packages/material-ui-icons/src/MusicVideoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicVideoOutlined'); diff --git a/packages/material-ui-icons/src/MusicVideoRounded.js b/packages/material-ui-icons/src/MusicVideoRounded.js new file mode 100644 index 00000000000000..7fbb4e686c5658 --- /dev/null +++ b/packages/material-ui-icons/src/MusicVideoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicVideoRounded'); diff --git a/packages/material-ui-icons/src/MusicVideoSharp.js b/packages/material-ui-icons/src/MusicVideoSharp.js new file mode 100644 index 00000000000000..6ed8eed795d28c --- /dev/null +++ b/packages/material-ui-icons/src/MusicVideoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicVideoSharp'); diff --git a/packages/material-ui-icons/src/MusicVideoTwoTone.js b/packages/material-ui-icons/src/MusicVideoTwoTone.js new file mode 100644 index 00000000000000..99b24a98dd910f --- /dev/null +++ b/packages/material-ui-icons/src/MusicVideoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MusicVideoTwoTone'); diff --git a/packages/material-ui-icons/src/MyLocation.js b/packages/material-ui-icons/src/MyLocation.js index c1c167e0de126c..68e277716a248b 100644 --- a/packages/material-ui-icons/src/MyLocation.js +++ b/packages/material-ui-icons/src/MyLocation.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'MyLocation'); diff --git a/packages/material-ui-icons/src/MyLocationOutlined.js b/packages/material-ui-icons/src/MyLocationOutlined.js new file mode 100644 index 00000000000000..4cc4907c747678 --- /dev/null +++ b/packages/material-ui-icons/src/MyLocationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MyLocationOutlined'); diff --git a/packages/material-ui-icons/src/MyLocationRounded.js b/packages/material-ui-icons/src/MyLocationRounded.js new file mode 100644 index 00000000000000..01c5d2766c4b50 --- /dev/null +++ b/packages/material-ui-icons/src/MyLocationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MyLocationRounded'); diff --git a/packages/material-ui-icons/src/MyLocationSharp.js b/packages/material-ui-icons/src/MyLocationSharp.js new file mode 100644 index 00000000000000..fc3e192b896e6b --- /dev/null +++ b/packages/material-ui-icons/src/MyLocationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MyLocationSharp'); diff --git a/packages/material-ui-icons/src/MyLocationTwoTone.js b/packages/material-ui-icons/src/MyLocationTwoTone.js new file mode 100644 index 00000000000000..9a074b53f74d44 --- /dev/null +++ b/packages/material-ui-icons/src/MyLocationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'MyLocationTwoTone'); diff --git a/packages/material-ui-icons/src/Nature.js b/packages/material-ui-icons/src/Nature.js index 9051655ad89745..06aa2d3c62da94 100644 --- a/packages/material-ui-icons/src/Nature.js +++ b/packages/material-ui-icons/src/Nature.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Nature'); diff --git a/packages/material-ui-icons/src/NatureOutlined.js b/packages/material-ui-icons/src/NatureOutlined.js new file mode 100644 index 00000000000000..3c970db3007b4d --- /dev/null +++ b/packages/material-ui-icons/src/NatureOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NatureOutlined'); diff --git a/packages/material-ui-icons/src/NaturePeople.js b/packages/material-ui-icons/src/NaturePeople.js index c5ae268e6d87cc..33be54bb5815ef 100644 --- a/packages/material-ui-icons/src/NaturePeople.js +++ b/packages/material-ui-icons/src/NaturePeople.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'NaturePeople'); diff --git a/packages/material-ui-icons/src/NaturePeopleOutlined.js b/packages/material-ui-icons/src/NaturePeopleOutlined.js new file mode 100644 index 00000000000000..2c68b40897069a --- /dev/null +++ b/packages/material-ui-icons/src/NaturePeopleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NaturePeopleOutlined'); diff --git a/packages/material-ui-icons/src/NaturePeopleRounded.js b/packages/material-ui-icons/src/NaturePeopleRounded.js new file mode 100644 index 00000000000000..bb748b9259d028 --- /dev/null +++ b/packages/material-ui-icons/src/NaturePeopleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NaturePeopleRounded'); diff --git a/packages/material-ui-icons/src/NaturePeopleSharp.js b/packages/material-ui-icons/src/NaturePeopleSharp.js new file mode 100644 index 00000000000000..acf16bb2d9723c --- /dev/null +++ b/packages/material-ui-icons/src/NaturePeopleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NaturePeopleSharp'); diff --git a/packages/material-ui-icons/src/NaturePeopleTwoTone.js b/packages/material-ui-icons/src/NaturePeopleTwoTone.js new file mode 100644 index 00000000000000..255e410e1686f1 --- /dev/null +++ b/packages/material-ui-icons/src/NaturePeopleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NaturePeopleTwoTone'); diff --git a/packages/material-ui-icons/src/NatureRounded.js b/packages/material-ui-icons/src/NatureRounded.js new file mode 100644 index 00000000000000..2475bc01854f9d --- /dev/null +++ b/packages/material-ui-icons/src/NatureRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NatureRounded'); diff --git a/packages/material-ui-icons/src/NatureSharp.js b/packages/material-ui-icons/src/NatureSharp.js new file mode 100644 index 00000000000000..5f8bd2c2f78439 --- /dev/null +++ b/packages/material-ui-icons/src/NatureSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NatureSharp'); diff --git a/packages/material-ui-icons/src/NatureTwoTone.js b/packages/material-ui-icons/src/NatureTwoTone.js new file mode 100644 index 00000000000000..88129cdebf825c --- /dev/null +++ b/packages/material-ui-icons/src/NatureTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NatureTwoTone'); diff --git a/packages/material-ui-icons/src/NavigateBeforeOutlined.js b/packages/material-ui-icons/src/NavigateBeforeOutlined.js new file mode 100644 index 00000000000000..06b2a3faa24da4 --- /dev/null +++ b/packages/material-ui-icons/src/NavigateBeforeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigateBeforeOutlined'); diff --git a/packages/material-ui-icons/src/NavigateBeforeRounded.js b/packages/material-ui-icons/src/NavigateBeforeRounded.js new file mode 100644 index 00000000000000..274772a7ed5906 --- /dev/null +++ b/packages/material-ui-icons/src/NavigateBeforeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigateBeforeRounded'); diff --git a/packages/material-ui-icons/src/NavigateBeforeSharp.js b/packages/material-ui-icons/src/NavigateBeforeSharp.js new file mode 100644 index 00000000000000..c860a3670b6577 --- /dev/null +++ b/packages/material-ui-icons/src/NavigateBeforeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigateBeforeSharp'); diff --git a/packages/material-ui-icons/src/NavigateBeforeTwoTone.js b/packages/material-ui-icons/src/NavigateBeforeTwoTone.js new file mode 100644 index 00000000000000..5a97ff734f0ca6 --- /dev/null +++ b/packages/material-ui-icons/src/NavigateBeforeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigateBeforeTwoTone'); diff --git a/packages/material-ui-icons/src/NavigateNextOutlined.js b/packages/material-ui-icons/src/NavigateNextOutlined.js new file mode 100644 index 00000000000000..d8db17d1cb4428 --- /dev/null +++ b/packages/material-ui-icons/src/NavigateNextOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigateNextOutlined'); diff --git a/packages/material-ui-icons/src/NavigateNextRounded.js b/packages/material-ui-icons/src/NavigateNextRounded.js new file mode 100644 index 00000000000000..9ae5475c809429 --- /dev/null +++ b/packages/material-ui-icons/src/NavigateNextRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigateNextRounded'); diff --git a/packages/material-ui-icons/src/NavigateNextSharp.js b/packages/material-ui-icons/src/NavigateNextSharp.js new file mode 100644 index 00000000000000..fb8eb07c4c95a8 --- /dev/null +++ b/packages/material-ui-icons/src/NavigateNextSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigateNextSharp'); diff --git a/packages/material-ui-icons/src/NavigateNextTwoTone.js b/packages/material-ui-icons/src/NavigateNextTwoTone.js new file mode 100644 index 00000000000000..0a2e8629a40e4f --- /dev/null +++ b/packages/material-ui-icons/src/NavigateNextTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigateNextTwoTone'); diff --git a/packages/material-ui-icons/src/NavigationOutlined.js b/packages/material-ui-icons/src/NavigationOutlined.js new file mode 100644 index 00000000000000..fb29c6794bb9d6 --- /dev/null +++ b/packages/material-ui-icons/src/NavigationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigationOutlined'); diff --git a/packages/material-ui-icons/src/NavigationRounded.js b/packages/material-ui-icons/src/NavigationRounded.js new file mode 100644 index 00000000000000..898c3607a0a733 --- /dev/null +++ b/packages/material-ui-icons/src/NavigationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigationRounded'); diff --git a/packages/material-ui-icons/src/NavigationSharp.js b/packages/material-ui-icons/src/NavigationSharp.js new file mode 100644 index 00000000000000..61f5aa3d0a8241 --- /dev/null +++ b/packages/material-ui-icons/src/NavigationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigationSharp'); diff --git a/packages/material-ui-icons/src/NavigationTwoTone.js b/packages/material-ui-icons/src/NavigationTwoTone.js new file mode 100644 index 00000000000000..ff632d81a1e635 --- /dev/null +++ b/packages/material-ui-icons/src/NavigationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NavigationTwoTone'); diff --git a/packages/material-ui-icons/src/NearMeOutlined.js b/packages/material-ui-icons/src/NearMeOutlined.js new file mode 100644 index 00000000000000..9f93db788ea6fe --- /dev/null +++ b/packages/material-ui-icons/src/NearMeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NearMeOutlined'); diff --git a/packages/material-ui-icons/src/NearMeRounded.js b/packages/material-ui-icons/src/NearMeRounded.js new file mode 100644 index 00000000000000..23db9f280c58d0 --- /dev/null +++ b/packages/material-ui-icons/src/NearMeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NearMeRounded'); diff --git a/packages/material-ui-icons/src/NearMeSharp.js b/packages/material-ui-icons/src/NearMeSharp.js new file mode 100644 index 00000000000000..0bdb16b66146df --- /dev/null +++ b/packages/material-ui-icons/src/NearMeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NearMeSharp'); diff --git a/packages/material-ui-icons/src/NearMeTwoTone.js b/packages/material-ui-icons/src/NearMeTwoTone.js new file mode 100644 index 00000000000000..b135d7acb25280 --- /dev/null +++ b/packages/material-ui-icons/src/NearMeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NearMeTwoTone'); diff --git a/packages/material-ui-icons/src/NetworkCellOutlined.js b/packages/material-ui-icons/src/NetworkCellOutlined.js new file mode 100644 index 00000000000000..e39fcb4469e503 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkCellOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkCellOutlined'); diff --git a/packages/material-ui-icons/src/NetworkCellRounded.js b/packages/material-ui-icons/src/NetworkCellRounded.js new file mode 100644 index 00000000000000..b0c5511750cab5 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkCellRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkCellRounded'); diff --git a/packages/material-ui-icons/src/NetworkCellSharp.js b/packages/material-ui-icons/src/NetworkCellSharp.js new file mode 100644 index 00000000000000..0780c39c02aa46 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkCellSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkCellSharp'); diff --git a/packages/material-ui-icons/src/NetworkCellTwoTone.js b/packages/material-ui-icons/src/NetworkCellTwoTone.js new file mode 100644 index 00000000000000..e53a3b290cdbf4 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkCellTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkCellTwoTone'); diff --git a/packages/material-ui-icons/src/NetworkCheck.js b/packages/material-ui-icons/src/NetworkCheck.js index 84c02a424956e4..cdaab5ed145534 100644 --- a/packages/material-ui-icons/src/NetworkCheck.js +++ b/packages/material-ui-icons/src/NetworkCheck.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'NetworkCheck'); diff --git a/packages/material-ui-icons/src/NetworkCheckOutlined.js b/packages/material-ui-icons/src/NetworkCheckOutlined.js new file mode 100644 index 00000000000000..3b637c93007808 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkCheckOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkCheckOutlined'); diff --git a/packages/material-ui-icons/src/NetworkCheckRounded.js b/packages/material-ui-icons/src/NetworkCheckRounded.js new file mode 100644 index 00000000000000..ba496d0940c8ea --- /dev/null +++ b/packages/material-ui-icons/src/NetworkCheckRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkCheckRounded'); diff --git a/packages/material-ui-icons/src/NetworkCheckSharp.js b/packages/material-ui-icons/src/NetworkCheckSharp.js new file mode 100644 index 00000000000000..dbc312ccaa7ff3 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkCheckSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkCheckSharp'); diff --git a/packages/material-ui-icons/src/NetworkCheckTwoTone.js b/packages/material-ui-icons/src/NetworkCheckTwoTone.js new file mode 100644 index 00000000000000..4ecd47de5589a2 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkCheckTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkCheckTwoTone'); diff --git a/packages/material-ui-icons/src/NetworkLocked.js b/packages/material-ui-icons/src/NetworkLocked.js index 3e22eb4148605e..f1aa1a80a10a0e 100644 --- a/packages/material-ui-icons/src/NetworkLocked.js +++ b/packages/material-ui-icons/src/NetworkLocked.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'NetworkLocked'); diff --git a/packages/material-ui-icons/src/NetworkLockedOutlined.js b/packages/material-ui-icons/src/NetworkLockedOutlined.js new file mode 100644 index 00000000000000..7300f5e3a997a3 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkLockedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkLockedOutlined'); diff --git a/packages/material-ui-icons/src/NetworkLockedRounded.js b/packages/material-ui-icons/src/NetworkLockedRounded.js new file mode 100644 index 00000000000000..055b3791edc861 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkLockedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkLockedRounded'); diff --git a/packages/material-ui-icons/src/NetworkLockedSharp.js b/packages/material-ui-icons/src/NetworkLockedSharp.js new file mode 100644 index 00000000000000..6c99dce7f2f9b0 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkLockedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkLockedSharp'); diff --git a/packages/material-ui-icons/src/NetworkLockedTwoTone.js b/packages/material-ui-icons/src/NetworkLockedTwoTone.js new file mode 100644 index 00000000000000..4da91f3d56cb33 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkLockedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkLockedTwoTone'); diff --git a/packages/material-ui-icons/src/NetworkWifiOutlined.js b/packages/material-ui-icons/src/NetworkWifiOutlined.js new file mode 100644 index 00000000000000..da983b2c11646b --- /dev/null +++ b/packages/material-ui-icons/src/NetworkWifiOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkWifiOutlined'); diff --git a/packages/material-ui-icons/src/NetworkWifiRounded.js b/packages/material-ui-icons/src/NetworkWifiRounded.js new file mode 100644 index 00000000000000..271eeca56405b3 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkWifiRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkWifiRounded'); diff --git a/packages/material-ui-icons/src/NetworkWifiSharp.js b/packages/material-ui-icons/src/NetworkWifiSharp.js new file mode 100644 index 00000000000000..3c1ded1b90a948 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkWifiSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkWifiSharp'); diff --git a/packages/material-ui-icons/src/NetworkWifiTwoTone.js b/packages/material-ui-icons/src/NetworkWifiTwoTone.js new file mode 100644 index 00000000000000..1d228a3fefe8f7 --- /dev/null +++ b/packages/material-ui-icons/src/NetworkWifiTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NetworkWifiTwoTone'); diff --git a/packages/material-ui-icons/src/NewReleasesOutlined.js b/packages/material-ui-icons/src/NewReleasesOutlined.js new file mode 100644 index 00000000000000..07a9fb91516c4e --- /dev/null +++ b/packages/material-ui-icons/src/NewReleasesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NewReleasesOutlined'); diff --git a/packages/material-ui-icons/src/NewReleasesRounded.js b/packages/material-ui-icons/src/NewReleasesRounded.js new file mode 100644 index 00000000000000..1ac71d92abcb4e --- /dev/null +++ b/packages/material-ui-icons/src/NewReleasesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NewReleasesRounded'); diff --git a/packages/material-ui-icons/src/NewReleasesSharp.js b/packages/material-ui-icons/src/NewReleasesSharp.js new file mode 100644 index 00000000000000..864f65f5537fc9 --- /dev/null +++ b/packages/material-ui-icons/src/NewReleasesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NewReleasesSharp'); diff --git a/packages/material-ui-icons/src/NewReleasesTwoTone.js b/packages/material-ui-icons/src/NewReleasesTwoTone.js new file mode 100644 index 00000000000000..dd43efa4176e96 --- /dev/null +++ b/packages/material-ui-icons/src/NewReleasesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NewReleasesTwoTone'); diff --git a/packages/material-ui-icons/src/NextWeek.js b/packages/material-ui-icons/src/NextWeek.js index b80451d5924921..7c6d8eafa60a03 100644 --- a/packages/material-ui-icons/src/NextWeek.js +++ b/packages/material-ui-icons/src/NextWeek.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'NextWeek'); diff --git a/packages/material-ui-icons/src/NextWeekOutlined.js b/packages/material-ui-icons/src/NextWeekOutlined.js new file mode 100644 index 00000000000000..977340c18abf4c --- /dev/null +++ b/packages/material-ui-icons/src/NextWeekOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NextWeekOutlined'); diff --git a/packages/material-ui-icons/src/NextWeekRounded.js b/packages/material-ui-icons/src/NextWeekRounded.js new file mode 100644 index 00000000000000..84936a1ab33d5e --- /dev/null +++ b/packages/material-ui-icons/src/NextWeekRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NextWeekRounded'); diff --git a/packages/material-ui-icons/src/NextWeekSharp.js b/packages/material-ui-icons/src/NextWeekSharp.js new file mode 100644 index 00000000000000..00fd405c61f474 --- /dev/null +++ b/packages/material-ui-icons/src/NextWeekSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NextWeekSharp'); diff --git a/packages/material-ui-icons/src/NextWeekTwoTone.js b/packages/material-ui-icons/src/NextWeekTwoTone.js new file mode 100644 index 00000000000000..fd70de44c547c9 --- /dev/null +++ b/packages/material-ui-icons/src/NextWeekTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NextWeekTwoTone'); diff --git a/packages/material-ui-icons/src/Nfc.js b/packages/material-ui-icons/src/Nfc.js index a117239cb1b30f..391972cd407ace 100644 --- a/packages/material-ui-icons/src/Nfc.js +++ b/packages/material-ui-icons/src/Nfc.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Nfc'); diff --git a/packages/material-ui-icons/src/NfcOutlined.js b/packages/material-ui-icons/src/NfcOutlined.js new file mode 100644 index 00000000000000..45ee1ae59dc163 --- /dev/null +++ b/packages/material-ui-icons/src/NfcOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NfcOutlined'); diff --git a/packages/material-ui-icons/src/NfcRounded.js b/packages/material-ui-icons/src/NfcRounded.js new file mode 100644 index 00000000000000..78249996281732 --- /dev/null +++ b/packages/material-ui-icons/src/NfcRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NfcRounded'); diff --git a/packages/material-ui-icons/src/NfcSharp.js b/packages/material-ui-icons/src/NfcSharp.js new file mode 100644 index 00000000000000..e1e684658e78f5 --- /dev/null +++ b/packages/material-ui-icons/src/NfcSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NfcSharp'); diff --git a/packages/material-ui-icons/src/NfcTwoTone.js b/packages/material-ui-icons/src/NfcTwoTone.js new file mode 100644 index 00000000000000..232309cd7e4126 --- /dev/null +++ b/packages/material-ui-icons/src/NfcTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NfcTwoTone'); diff --git a/packages/material-ui-icons/src/NoEncryptionOutlined.js b/packages/material-ui-icons/src/NoEncryptionOutlined.js new file mode 100644 index 00000000000000..a9cde2e0ab3a26 --- /dev/null +++ b/packages/material-ui-icons/src/NoEncryptionOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoEncryptionOutlined'); diff --git a/packages/material-ui-icons/src/NoEncryptionRounded.js b/packages/material-ui-icons/src/NoEncryptionRounded.js new file mode 100644 index 00000000000000..dbe56f780f7967 --- /dev/null +++ b/packages/material-ui-icons/src/NoEncryptionRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoEncryptionRounded'); diff --git a/packages/material-ui-icons/src/NoEncryptionSharp.js b/packages/material-ui-icons/src/NoEncryptionSharp.js new file mode 100644 index 00000000000000..6696c1594bc906 --- /dev/null +++ b/packages/material-ui-icons/src/NoEncryptionSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoEncryptionSharp'); diff --git a/packages/material-ui-icons/src/NoEncryptionTwoTone.js b/packages/material-ui-icons/src/NoEncryptionTwoTone.js new file mode 100644 index 00000000000000..8fdd28aefd8842 --- /dev/null +++ b/packages/material-ui-icons/src/NoEncryptionTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoEncryptionTwoTone'); diff --git a/packages/material-ui-icons/src/NoMeetingRoom.js b/packages/material-ui-icons/src/NoMeetingRoom.js new file mode 100644 index 00000000000000..101b0b70a22903 --- /dev/null +++ b/packages/material-ui-icons/src/NoMeetingRoom.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoMeetingRoom'); diff --git a/packages/material-ui-icons/src/NoMeetingRoomOutlined.js b/packages/material-ui-icons/src/NoMeetingRoomOutlined.js new file mode 100644 index 00000000000000..7b1b3b67b9ea73 --- /dev/null +++ b/packages/material-ui-icons/src/NoMeetingRoomOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoMeetingRoomOutlined'); diff --git a/packages/material-ui-icons/src/NoMeetingRoomRounded.js b/packages/material-ui-icons/src/NoMeetingRoomRounded.js new file mode 100644 index 00000000000000..e6b336314856b7 --- /dev/null +++ b/packages/material-ui-icons/src/NoMeetingRoomRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoMeetingRoomRounded'); diff --git a/packages/material-ui-icons/src/NoMeetingRoomSharp.js b/packages/material-ui-icons/src/NoMeetingRoomSharp.js new file mode 100644 index 00000000000000..47c86648aa6977 --- /dev/null +++ b/packages/material-ui-icons/src/NoMeetingRoomSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoMeetingRoomSharp'); diff --git a/packages/material-ui-icons/src/NoMeetingRoomTwoTone.js b/packages/material-ui-icons/src/NoMeetingRoomTwoTone.js new file mode 100644 index 00000000000000..b068efdab094f4 --- /dev/null +++ b/packages/material-ui-icons/src/NoMeetingRoomTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoMeetingRoomTwoTone'); diff --git a/packages/material-ui-icons/src/NoSimOutlined.js b/packages/material-ui-icons/src/NoSimOutlined.js new file mode 100644 index 00000000000000..a9a32f6c25c6ec --- /dev/null +++ b/packages/material-ui-icons/src/NoSimOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoSimOutlined'); diff --git a/packages/material-ui-icons/src/NoSimRounded.js b/packages/material-ui-icons/src/NoSimRounded.js new file mode 100644 index 00000000000000..e709dfbb1aa3de --- /dev/null +++ b/packages/material-ui-icons/src/NoSimRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoSimRounded'); diff --git a/packages/material-ui-icons/src/NoSimSharp.js b/packages/material-ui-icons/src/NoSimSharp.js new file mode 100644 index 00000000000000..d43d782601d38d --- /dev/null +++ b/packages/material-ui-icons/src/NoSimSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoSimSharp'); diff --git a/packages/material-ui-icons/src/NoSimTwoTone.js b/packages/material-ui-icons/src/NoSimTwoTone.js new file mode 100644 index 00000000000000..354cb9164528e3 --- /dev/null +++ b/packages/material-ui-icons/src/NoSimTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoSimTwoTone'); diff --git a/packages/material-ui-icons/src/NotInterested.js b/packages/material-ui-icons/src/NotInterested.js index 1742a79c657189..98854eee690e6b 100644 --- a/packages/material-ui-icons/src/NotInterested.js +++ b/packages/material-ui-icons/src/NotInterested.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'NotInterested'); diff --git a/packages/material-ui-icons/src/NotInterestedOutlined.js b/packages/material-ui-icons/src/NotInterestedOutlined.js new file mode 100644 index 00000000000000..10705c8b2bca41 --- /dev/null +++ b/packages/material-ui-icons/src/NotInterestedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotInterestedOutlined'); diff --git a/packages/material-ui-icons/src/NotInterestedRounded.js b/packages/material-ui-icons/src/NotInterestedRounded.js new file mode 100644 index 00000000000000..cebfb80678445e --- /dev/null +++ b/packages/material-ui-icons/src/NotInterestedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotInterestedRounded'); diff --git a/packages/material-ui-icons/src/DoNotDisturb.js b/packages/material-ui-icons/src/NotInterestedSharp.js similarity index 60% rename from packages/material-ui-icons/src/DoNotDisturb.js rename to packages/material-ui-icons/src/NotInterestedSharp.js index b359f1ea280a48..e7ecf50e0a382a 100644 --- a/packages/material-ui-icons/src/DoNotDisturb.js +++ b/packages/material-ui-icons/src/NotInterestedSharp.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - -, 'DoNotDisturb'); + +, 'NotInterestedSharp'); diff --git a/packages/material-ui-icons/src/NotInterestedTwoTone.js b/packages/material-ui-icons/src/NotInterestedTwoTone.js new file mode 100644 index 00000000000000..26db9fed6b9398 --- /dev/null +++ b/packages/material-ui-icons/src/NotInterestedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotInterestedTwoTone'); diff --git a/packages/material-ui-icons/src/NotListedLocation.js b/packages/material-ui-icons/src/NotListedLocation.js new file mode 100644 index 00000000000000..b7d4abc6b7b9d0 --- /dev/null +++ b/packages/material-ui-icons/src/NotListedLocation.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotListedLocation'); diff --git a/packages/material-ui-icons/src/NotListedLocationOutlined.js b/packages/material-ui-icons/src/NotListedLocationOutlined.js new file mode 100644 index 00000000000000..bb6e82417c3525 --- /dev/null +++ b/packages/material-ui-icons/src/NotListedLocationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotListedLocationOutlined'); diff --git a/packages/material-ui-icons/src/NotListedLocationRounded.js b/packages/material-ui-icons/src/NotListedLocationRounded.js new file mode 100644 index 00000000000000..121385af0fb932 --- /dev/null +++ b/packages/material-ui-icons/src/NotListedLocationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotListedLocationRounded'); diff --git a/packages/material-ui-icons/src/NotListedLocationSharp.js b/packages/material-ui-icons/src/NotListedLocationSharp.js new file mode 100644 index 00000000000000..e1b43341f66aa9 --- /dev/null +++ b/packages/material-ui-icons/src/NotListedLocationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotListedLocationSharp'); diff --git a/packages/material-ui-icons/src/NotListedLocationTwoTone.js b/packages/material-ui-icons/src/NotListedLocationTwoTone.js new file mode 100644 index 00000000000000..0b6cc72de3d4d3 --- /dev/null +++ b/packages/material-ui-icons/src/NotListedLocationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotListedLocationTwoTone'); diff --git a/packages/material-ui-icons/src/NoteAddOutlined.js b/packages/material-ui-icons/src/NoteAddOutlined.js new file mode 100644 index 00000000000000..daa056809c4f3c --- /dev/null +++ b/packages/material-ui-icons/src/NoteAddOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoteAddOutlined'); diff --git a/packages/material-ui-icons/src/NoteAddRounded.js b/packages/material-ui-icons/src/NoteAddRounded.js new file mode 100644 index 00000000000000..ec6185f7308d3a --- /dev/null +++ b/packages/material-ui-icons/src/NoteAddRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoteAddRounded'); diff --git a/packages/material-ui-icons/src/NoteAddSharp.js b/packages/material-ui-icons/src/NoteAddSharp.js new file mode 100644 index 00000000000000..88ca34231debf2 --- /dev/null +++ b/packages/material-ui-icons/src/NoteAddSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoteAddSharp'); diff --git a/packages/material-ui-icons/src/NoteAddTwoTone.js b/packages/material-ui-icons/src/NoteAddTwoTone.js new file mode 100644 index 00000000000000..5fdc7ae9337405 --- /dev/null +++ b/packages/material-ui-icons/src/NoteAddTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoteAddTwoTone'); diff --git a/packages/material-ui-icons/src/NoteOutlined.js b/packages/material-ui-icons/src/NoteOutlined.js new file mode 100644 index 00000000000000..627f5fad927af5 --- /dev/null +++ b/packages/material-ui-icons/src/NoteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoteOutlined'); diff --git a/packages/material-ui-icons/src/NoteRounded.js b/packages/material-ui-icons/src/NoteRounded.js new file mode 100644 index 00000000000000..10a39551bfec05 --- /dev/null +++ b/packages/material-ui-icons/src/NoteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoteRounded'); diff --git a/packages/material-ui-icons/src/NoteSharp.js b/packages/material-ui-icons/src/NoteSharp.js new file mode 100644 index 00000000000000..f49116ac2561b2 --- /dev/null +++ b/packages/material-ui-icons/src/NoteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoteSharp'); diff --git a/packages/material-ui-icons/src/NoteTwoTone.js b/packages/material-ui-icons/src/NoteTwoTone.js new file mode 100644 index 00000000000000..3106c3d3463257 --- /dev/null +++ b/packages/material-ui-icons/src/NoteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NoteTwoTone'); diff --git a/packages/material-ui-icons/src/Notes.js b/packages/material-ui-icons/src/Notes.js new file mode 100644 index 00000000000000..5813cbf40c0e25 --- /dev/null +++ b/packages/material-ui-icons/src/Notes.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Notes'); diff --git a/packages/material-ui-icons/src/NotesOutlined.js b/packages/material-ui-icons/src/NotesOutlined.js new file mode 100644 index 00000000000000..0dfb27a0c20ddc --- /dev/null +++ b/packages/material-ui-icons/src/NotesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotesOutlined'); diff --git a/packages/material-ui-icons/src/NotesRounded.js b/packages/material-ui-icons/src/NotesRounded.js new file mode 100644 index 00000000000000..fb3b1aede46da2 --- /dev/null +++ b/packages/material-ui-icons/src/NotesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotesRounded'); diff --git a/packages/material-ui-icons/src/NotesSharp.js b/packages/material-ui-icons/src/NotesSharp.js new file mode 100644 index 00000000000000..3ecc2eba0de0b3 --- /dev/null +++ b/packages/material-ui-icons/src/NotesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotesSharp'); diff --git a/packages/material-ui-icons/src/NotesTwoTone.js b/packages/material-ui-icons/src/NotesTwoTone.js new file mode 100644 index 00000000000000..c2c6ff5ad79566 --- /dev/null +++ b/packages/material-ui-icons/src/NotesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotesTwoTone'); diff --git a/packages/material-ui-icons/src/NotificationImportant.js b/packages/material-ui-icons/src/NotificationImportant.js new file mode 100644 index 00000000000000..fe85cbdf641101 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationImportant.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationImportant'); diff --git a/packages/material-ui-icons/src/NotificationImportantOutlined.js b/packages/material-ui-icons/src/NotificationImportantOutlined.js new file mode 100644 index 00000000000000..6bbfdc6f36b63e --- /dev/null +++ b/packages/material-ui-icons/src/NotificationImportantOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationImportantOutlined'); diff --git a/packages/material-ui-icons/src/NotificationImportantRounded.js b/packages/material-ui-icons/src/NotificationImportantRounded.js new file mode 100644 index 00000000000000..e5c09a3684711f --- /dev/null +++ b/packages/material-ui-icons/src/NotificationImportantRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationImportantRounded'); diff --git a/packages/material-ui-icons/src/NotificationImportantSharp.js b/packages/material-ui-icons/src/NotificationImportantSharp.js new file mode 100644 index 00000000000000..24db4c89e88b1a --- /dev/null +++ b/packages/material-ui-icons/src/NotificationImportantSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationImportantSharp'); diff --git a/packages/material-ui-icons/src/NotificationImportantTwoTone.js b/packages/material-ui-icons/src/NotificationImportantTwoTone.js new file mode 100644 index 00000000000000..3c9842826be542 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationImportantTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationImportantTwoTone'); diff --git a/packages/material-ui-icons/src/Notifications.js b/packages/material-ui-icons/src/Notifications.js index cc54219dfdef19..0b4dc5e545d430 100644 --- a/packages/material-ui-icons/src/Notifications.js +++ b/packages/material-ui-icons/src/Notifications.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Notifications'); diff --git a/packages/material-ui-icons/src/NotificationsActive.js b/packages/material-ui-icons/src/NotificationsActive.js index ff4314110af848..ef3279ccb2e74b 100644 --- a/packages/material-ui-icons/src/NotificationsActive.js +++ b/packages/material-ui-icons/src/NotificationsActive.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'NotificationsActive'); diff --git a/packages/material-ui-icons/src/NotificationsActiveOutlined.js b/packages/material-ui-icons/src/NotificationsActiveOutlined.js new file mode 100644 index 00000000000000..322caf7fa53e66 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsActiveOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsActiveOutlined'); diff --git a/packages/material-ui-icons/src/NotificationsActiveRounded.js b/packages/material-ui-icons/src/NotificationsActiveRounded.js new file mode 100644 index 00000000000000..7d672bf66879e1 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsActiveRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsActiveRounded'); diff --git a/packages/material-ui-icons/src/NotificationsActiveSharp.js b/packages/material-ui-icons/src/NotificationsActiveSharp.js new file mode 100644 index 00000000000000..bd3e881b1f8e86 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsActiveSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsActiveSharp'); diff --git a/packages/material-ui-icons/src/NotificationsActiveTwoTone.js b/packages/material-ui-icons/src/NotificationsActiveTwoTone.js new file mode 100644 index 00000000000000..6ec56578e93782 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsActiveTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsActiveTwoTone'); diff --git a/packages/material-ui-icons/src/NotificationsNoneOutlined.js b/packages/material-ui-icons/src/NotificationsNoneOutlined.js new file mode 100644 index 00000000000000..070c822d60473a --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsNoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsNoneOutlined'); diff --git a/packages/material-ui-icons/src/NotificationsNoneRounded.js b/packages/material-ui-icons/src/NotificationsNoneRounded.js new file mode 100644 index 00000000000000..7f7f9c0caaf0c8 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsNoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsNoneRounded'); diff --git a/packages/material-ui-icons/src/NotificationsNoneSharp.js b/packages/material-ui-icons/src/NotificationsNoneSharp.js new file mode 100644 index 00000000000000..d39bed052daddf --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsNoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsNoneSharp'); diff --git a/packages/material-ui-icons/src/NotificationsNoneTwoTone.js b/packages/material-ui-icons/src/NotificationsNoneTwoTone.js new file mode 100644 index 00000000000000..2f0f3d986ab1aa --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsNoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsNoneTwoTone'); diff --git a/packages/material-ui-icons/src/NotificationsOffOutlined.js b/packages/material-ui-icons/src/NotificationsOffOutlined.js new file mode 100644 index 00000000000000..f720d84a55d691 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsOffOutlined'); diff --git a/packages/material-ui-icons/src/NotificationsOffRounded.js b/packages/material-ui-icons/src/NotificationsOffRounded.js new file mode 100644 index 00000000000000..f6e60c229c88c3 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsOffRounded'); diff --git a/packages/material-ui-icons/src/NotificationsOffSharp.js b/packages/material-ui-icons/src/NotificationsOffSharp.js new file mode 100644 index 00000000000000..971202c339a702 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsOffSharp'); diff --git a/packages/material-ui-icons/src/NotificationsOffTwoTone.js b/packages/material-ui-icons/src/NotificationsOffTwoTone.js new file mode 100644 index 00000000000000..7163ffd01a7763 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsOffTwoTone'); diff --git a/packages/material-ui-icons/src/NotificationsOutlined.js b/packages/material-ui-icons/src/NotificationsOutlined.js new file mode 100644 index 00000000000000..2f0f6dc3af956c --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsOutlined'); diff --git a/packages/material-ui-icons/src/NotificationsPaused.js b/packages/material-ui-icons/src/NotificationsPaused.js index b7e709e37432db..cdd1b12212664e 100644 --- a/packages/material-ui-icons/src/NotificationsPaused.js +++ b/packages/material-ui-icons/src/NotificationsPaused.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'NotificationsPaused'); diff --git a/packages/material-ui-icons/src/NotificationsPausedOutlined.js b/packages/material-ui-icons/src/NotificationsPausedOutlined.js new file mode 100644 index 00000000000000..8f9ef6ee7bc670 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsPausedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsPausedOutlined'); diff --git a/packages/material-ui-icons/src/NotificationsPausedRounded.js b/packages/material-ui-icons/src/NotificationsPausedRounded.js new file mode 100644 index 00000000000000..cb04830e745660 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsPausedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsPausedRounded'); diff --git a/packages/material-ui-icons/src/NotificationsPausedSharp.js b/packages/material-ui-icons/src/NotificationsPausedSharp.js new file mode 100644 index 00000000000000..2c8e9475edb6ff --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsPausedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsPausedSharp'); diff --git a/packages/material-ui-icons/src/NotificationsPausedTwoTone.js b/packages/material-ui-icons/src/NotificationsPausedTwoTone.js new file mode 100644 index 00000000000000..58510879561b05 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsPausedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsPausedTwoTone'); diff --git a/packages/material-ui-icons/src/NotificationsRounded.js b/packages/material-ui-icons/src/NotificationsRounded.js new file mode 100644 index 00000000000000..108ec81a2d7452 --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsRounded'); diff --git a/packages/material-ui-icons/src/NotificationsSharp.js b/packages/material-ui-icons/src/NotificationsSharp.js new file mode 100644 index 00000000000000..3ea289892b522f --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsSharp'); diff --git a/packages/material-ui-icons/src/NotificationsTwoTone.js b/packages/material-ui-icons/src/NotificationsTwoTone.js new file mode 100644 index 00000000000000..fc5b4035ea395e --- /dev/null +++ b/packages/material-ui-icons/src/NotificationsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'NotificationsTwoTone'); diff --git a/packages/material-ui-icons/src/OfflineBolt.js b/packages/material-ui-icons/src/OfflineBolt.js new file mode 100644 index 00000000000000..1e0524ee376bfe --- /dev/null +++ b/packages/material-ui-icons/src/OfflineBolt.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OfflineBolt'); diff --git a/packages/material-ui-icons/src/OfflineBoltOutlined.js b/packages/material-ui-icons/src/OfflineBoltOutlined.js new file mode 100644 index 00000000000000..d8f620cf378344 --- /dev/null +++ b/packages/material-ui-icons/src/OfflineBoltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OfflineBoltOutlined'); diff --git a/packages/material-ui-icons/src/OfflineBoltRounded.js b/packages/material-ui-icons/src/OfflineBoltRounded.js new file mode 100644 index 00000000000000..bf9a1720f90d93 --- /dev/null +++ b/packages/material-ui-icons/src/OfflineBoltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OfflineBoltRounded'); diff --git a/packages/material-ui-icons/src/OfflineBoltSharp.js b/packages/material-ui-icons/src/OfflineBoltSharp.js new file mode 100644 index 00000000000000..51f8c9c3678ab4 --- /dev/null +++ b/packages/material-ui-icons/src/OfflineBoltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OfflineBoltSharp'); diff --git a/packages/material-ui-icons/src/OfflineBoltTwoTone.js b/packages/material-ui-icons/src/OfflineBoltTwoTone.js new file mode 100644 index 00000000000000..c3399053a2914f --- /dev/null +++ b/packages/material-ui-icons/src/OfflineBoltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OfflineBoltTwoTone'); diff --git a/packages/material-ui-icons/src/OfflinePin.js b/packages/material-ui-icons/src/OfflinePin.js index 1830291e4d89f9..16c1087b97a01b 100644 --- a/packages/material-ui-icons/src/OfflinePin.js +++ b/packages/material-ui-icons/src/OfflinePin.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'OfflinePin'); diff --git a/packages/material-ui-icons/src/OfflinePinOutlined.js b/packages/material-ui-icons/src/OfflinePinOutlined.js new file mode 100644 index 00000000000000..052c2d224d9fb2 --- /dev/null +++ b/packages/material-ui-icons/src/OfflinePinOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OfflinePinOutlined'); diff --git a/packages/material-ui-icons/src/OfflinePinRounded.js b/packages/material-ui-icons/src/OfflinePinRounded.js new file mode 100644 index 00000000000000..9576c978312ca9 --- /dev/null +++ b/packages/material-ui-icons/src/OfflinePinRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OfflinePinRounded'); diff --git a/packages/material-ui-icons/src/OfflinePinSharp.js b/packages/material-ui-icons/src/OfflinePinSharp.js new file mode 100644 index 00000000000000..c0abeb0857cae9 --- /dev/null +++ b/packages/material-ui-icons/src/OfflinePinSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OfflinePinSharp'); diff --git a/packages/material-ui-icons/src/OfflinePinTwoTone.js b/packages/material-ui-icons/src/OfflinePinTwoTone.js new file mode 100644 index 00000000000000..d7d014efb7f2b4 --- /dev/null +++ b/packages/material-ui-icons/src/OfflinePinTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OfflinePinTwoTone'); diff --git a/packages/material-ui-icons/src/OndemandVideo.js b/packages/material-ui-icons/src/OndemandVideo.js index 764535d300681f..289344e76dcd3e 100644 --- a/packages/material-ui-icons/src/OndemandVideo.js +++ b/packages/material-ui-icons/src/OndemandVideo.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'OndemandVideo'); diff --git a/packages/material-ui-icons/src/OndemandVideoOutlined.js b/packages/material-ui-icons/src/OndemandVideoOutlined.js new file mode 100644 index 00000000000000..6e060ca600ba89 --- /dev/null +++ b/packages/material-ui-icons/src/OndemandVideoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OndemandVideoOutlined'); diff --git a/packages/material-ui-icons/src/OndemandVideoRounded.js b/packages/material-ui-icons/src/OndemandVideoRounded.js new file mode 100644 index 00000000000000..385978b715eef7 --- /dev/null +++ b/packages/material-ui-icons/src/OndemandVideoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OndemandVideoRounded'); diff --git a/packages/material-ui-icons/src/OndemandVideoSharp.js b/packages/material-ui-icons/src/OndemandVideoSharp.js new file mode 100644 index 00000000000000..f1fe967d5c8c5c --- /dev/null +++ b/packages/material-ui-icons/src/OndemandVideoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OndemandVideoSharp'); diff --git a/packages/material-ui-icons/src/OndemandVideoTwoTone.js b/packages/material-ui-icons/src/OndemandVideoTwoTone.js new file mode 100644 index 00000000000000..4d97bef66538ba --- /dev/null +++ b/packages/material-ui-icons/src/OndemandVideoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OndemandVideoTwoTone'); diff --git a/packages/material-ui-icons/src/Opacity.js b/packages/material-ui-icons/src/Opacity.js index e480efb9fc70d9..481c6cf5157eca 100644 --- a/packages/material-ui-icons/src/Opacity.js +++ b/packages/material-ui-icons/src/Opacity.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Opacity'); diff --git a/packages/material-ui-icons/src/OpacityOutlined.js b/packages/material-ui-icons/src/OpacityOutlined.js new file mode 100644 index 00000000000000..aa8827c8d8d770 --- /dev/null +++ b/packages/material-ui-icons/src/OpacityOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpacityOutlined'); diff --git a/packages/material-ui-icons/src/OpacityRounded.js b/packages/material-ui-icons/src/OpacityRounded.js new file mode 100644 index 00000000000000..4af8a1e639a89a --- /dev/null +++ b/packages/material-ui-icons/src/OpacityRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpacityRounded'); diff --git a/packages/material-ui-icons/src/OpacitySharp.js b/packages/material-ui-icons/src/OpacitySharp.js new file mode 100644 index 00000000000000..8d2983c60925d9 --- /dev/null +++ b/packages/material-ui-icons/src/OpacitySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpacitySharp'); diff --git a/packages/material-ui-icons/src/OpacityTwoTone.js b/packages/material-ui-icons/src/OpacityTwoTone.js new file mode 100644 index 00000000000000..dd56de9ee6df89 --- /dev/null +++ b/packages/material-ui-icons/src/OpacityTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpacityTwoTone'); diff --git a/packages/material-ui-icons/src/OpenInBrowser.js b/packages/material-ui-icons/src/OpenInBrowser.js index d64200b5a29fb7..efc626a71029f5 100644 --- a/packages/material-ui-icons/src/OpenInBrowser.js +++ b/packages/material-ui-icons/src/OpenInBrowser.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'OpenInBrowser'); diff --git a/packages/material-ui-icons/src/OpenInBrowserOutlined.js b/packages/material-ui-icons/src/OpenInBrowserOutlined.js new file mode 100644 index 00000000000000..334ef8d33dfd00 --- /dev/null +++ b/packages/material-ui-icons/src/OpenInBrowserOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenInBrowserOutlined'); diff --git a/packages/material-ui-icons/src/OpenInBrowserRounded.js b/packages/material-ui-icons/src/OpenInBrowserRounded.js new file mode 100644 index 00000000000000..2b8a59b438a4f1 --- /dev/null +++ b/packages/material-ui-icons/src/OpenInBrowserRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenInBrowserRounded'); diff --git a/packages/material-ui-icons/src/OpenInBrowserSharp.js b/packages/material-ui-icons/src/OpenInBrowserSharp.js new file mode 100644 index 00000000000000..502ea7e6a5ecae --- /dev/null +++ b/packages/material-ui-icons/src/OpenInBrowserSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenInBrowserSharp'); diff --git a/packages/material-ui-icons/src/OpenInBrowserTwoTone.js b/packages/material-ui-icons/src/OpenInBrowserTwoTone.js new file mode 100644 index 00000000000000..66c237d27cb089 --- /dev/null +++ b/packages/material-ui-icons/src/OpenInBrowserTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenInBrowserTwoTone'); diff --git a/packages/material-ui-icons/src/OpenInNew.js b/packages/material-ui-icons/src/OpenInNew.js index 5bc4cb7383af57..fe7ebf38d5341b 100644 --- a/packages/material-ui-icons/src/OpenInNew.js +++ b/packages/material-ui-icons/src/OpenInNew.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'OpenInNew'); diff --git a/packages/material-ui-icons/src/OpenInNewOutlined.js b/packages/material-ui-icons/src/OpenInNewOutlined.js new file mode 100644 index 00000000000000..2084a56aa0d902 --- /dev/null +++ b/packages/material-ui-icons/src/OpenInNewOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenInNewOutlined'); diff --git a/packages/material-ui-icons/src/OpenInNewRounded.js b/packages/material-ui-icons/src/OpenInNewRounded.js new file mode 100644 index 00000000000000..4c06dbdf913689 --- /dev/null +++ b/packages/material-ui-icons/src/OpenInNewRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenInNewRounded'); diff --git a/packages/material-ui-icons/src/OpenInNewSharp.js b/packages/material-ui-icons/src/OpenInNewSharp.js new file mode 100644 index 00000000000000..fc90d2a9480ba4 --- /dev/null +++ b/packages/material-ui-icons/src/OpenInNewSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenInNewSharp'); diff --git a/packages/material-ui-icons/src/OpenInNewTwoTone.js b/packages/material-ui-icons/src/OpenInNewTwoTone.js new file mode 100644 index 00000000000000..2e1775f91b8b7f --- /dev/null +++ b/packages/material-ui-icons/src/OpenInNewTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenInNewTwoTone'); diff --git a/packages/material-ui-icons/src/OpenWithOutlined.js b/packages/material-ui-icons/src/OpenWithOutlined.js new file mode 100644 index 00000000000000..f8ad4be059a5ab --- /dev/null +++ b/packages/material-ui-icons/src/OpenWithOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenWithOutlined'); diff --git a/packages/material-ui-icons/src/OpenWithRounded.js b/packages/material-ui-icons/src/OpenWithRounded.js new file mode 100644 index 00000000000000..4f805af56801b1 --- /dev/null +++ b/packages/material-ui-icons/src/OpenWithRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenWithRounded'); diff --git a/packages/material-ui-icons/src/OpenWithSharp.js b/packages/material-ui-icons/src/OpenWithSharp.js new file mode 100644 index 00000000000000..9188370409ccdf --- /dev/null +++ b/packages/material-ui-icons/src/OpenWithSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenWithSharp'); diff --git a/packages/material-ui-icons/src/OpenWithTwoTone.js b/packages/material-ui-icons/src/OpenWithTwoTone.js new file mode 100644 index 00000000000000..d2e66ec6d6ff37 --- /dev/null +++ b/packages/material-ui-icons/src/OpenWithTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OpenWithTwoTone'); diff --git a/packages/material-ui-icons/src/OutlinedFlag.js b/packages/material-ui-icons/src/OutlinedFlag.js new file mode 100644 index 00000000000000..b1921023c97720 --- /dev/null +++ b/packages/material-ui-icons/src/OutlinedFlag.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OutlinedFlag'); diff --git a/packages/material-ui-icons/src/OutlinedFlagOutlined.js b/packages/material-ui-icons/src/OutlinedFlagOutlined.js new file mode 100644 index 00000000000000..1dd09d1cd3b20c --- /dev/null +++ b/packages/material-ui-icons/src/OutlinedFlagOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OutlinedFlagOutlined'); diff --git a/packages/material-ui-icons/src/OutlinedFlagRounded.js b/packages/material-ui-icons/src/OutlinedFlagRounded.js new file mode 100644 index 00000000000000..d5c18c26a5b559 --- /dev/null +++ b/packages/material-ui-icons/src/OutlinedFlagRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OutlinedFlagRounded'); diff --git a/packages/material-ui-icons/src/OutlinedFlagSharp.js b/packages/material-ui-icons/src/OutlinedFlagSharp.js new file mode 100644 index 00000000000000..d815c9d6bb12a1 --- /dev/null +++ b/packages/material-ui-icons/src/OutlinedFlagSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OutlinedFlagSharp'); diff --git a/packages/material-ui-icons/src/OutlinedFlagTwoTone.js b/packages/material-ui-icons/src/OutlinedFlagTwoTone.js new file mode 100644 index 00000000000000..81607ed439cc2a --- /dev/null +++ b/packages/material-ui-icons/src/OutlinedFlagTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'OutlinedFlagTwoTone'); diff --git a/packages/material-ui-icons/src/PagesOutlined.js b/packages/material-ui-icons/src/PagesOutlined.js new file mode 100644 index 00000000000000..c2a5547d02d51f --- /dev/null +++ b/packages/material-ui-icons/src/PagesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PagesOutlined'); diff --git a/packages/material-ui-icons/src/PagesRounded.js b/packages/material-ui-icons/src/PagesRounded.js new file mode 100644 index 00000000000000..14461c1fc3aa9e --- /dev/null +++ b/packages/material-ui-icons/src/PagesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PagesRounded'); diff --git a/packages/material-ui-icons/src/PagesSharp.js b/packages/material-ui-icons/src/PagesSharp.js new file mode 100644 index 00000000000000..472176fc6ce53d --- /dev/null +++ b/packages/material-ui-icons/src/PagesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PagesSharp'); diff --git a/packages/material-ui-icons/src/PagesTwoTone.js b/packages/material-ui-icons/src/PagesTwoTone.js new file mode 100644 index 00000000000000..efc144c9710d69 --- /dev/null +++ b/packages/material-ui-icons/src/PagesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PagesTwoTone'); diff --git a/packages/material-ui-icons/src/Pageview.js b/packages/material-ui-icons/src/Pageview.js index e83aa818b35006..2127702703a036 100644 --- a/packages/material-ui-icons/src/Pageview.js +++ b/packages/material-ui-icons/src/Pageview.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Pageview'); diff --git a/packages/material-ui-icons/src/PageviewOutlined.js b/packages/material-ui-icons/src/PageviewOutlined.js new file mode 100644 index 00000000000000..84cc953031bdf5 --- /dev/null +++ b/packages/material-ui-icons/src/PageviewOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PageviewOutlined'); diff --git a/packages/material-ui-icons/src/PageviewRounded.js b/packages/material-ui-icons/src/PageviewRounded.js new file mode 100644 index 00000000000000..634aa89cf481a4 --- /dev/null +++ b/packages/material-ui-icons/src/PageviewRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PageviewRounded'); diff --git a/packages/material-ui-icons/src/PageviewSharp.js b/packages/material-ui-icons/src/PageviewSharp.js new file mode 100644 index 00000000000000..1da3066c62af94 --- /dev/null +++ b/packages/material-ui-icons/src/PageviewSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PageviewSharp'); diff --git a/packages/material-ui-icons/src/PageviewTwoTone.js b/packages/material-ui-icons/src/PageviewTwoTone.js new file mode 100644 index 00000000000000..009bb7147c1f5f --- /dev/null +++ b/packages/material-ui-icons/src/PageviewTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PageviewTwoTone'); diff --git a/packages/material-ui-icons/src/Palette.js b/packages/material-ui-icons/src/Palette.js index 19a0766693e521..3f1900da8a70a9 100644 --- a/packages/material-ui-icons/src/Palette.js +++ b/packages/material-ui-icons/src/Palette.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Palette'); diff --git a/packages/material-ui-icons/src/PaletteOutlined.js b/packages/material-ui-icons/src/PaletteOutlined.js new file mode 100644 index 00000000000000..a79f027a8d5a4c --- /dev/null +++ b/packages/material-ui-icons/src/PaletteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PaletteOutlined'); diff --git a/packages/material-ui-icons/src/PaletteRounded.js b/packages/material-ui-icons/src/PaletteRounded.js new file mode 100644 index 00000000000000..81700326157369 --- /dev/null +++ b/packages/material-ui-icons/src/PaletteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PaletteRounded'); diff --git a/packages/material-ui-icons/src/PaletteSharp.js b/packages/material-ui-icons/src/PaletteSharp.js new file mode 100644 index 00000000000000..8065e63ba22f35 --- /dev/null +++ b/packages/material-ui-icons/src/PaletteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PaletteSharp'); diff --git a/packages/material-ui-icons/src/PaletteTwoTone.js b/packages/material-ui-icons/src/PaletteTwoTone.js new file mode 100644 index 00000000000000..21043144e3fe17 --- /dev/null +++ b/packages/material-ui-icons/src/PaletteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PaletteTwoTone'); diff --git a/packages/material-ui-icons/src/PanTool.js b/packages/material-ui-icons/src/PanTool.js index 4137e66d726175..a4b6d4f34b539a 100644 --- a/packages/material-ui-icons/src/PanTool.js +++ b/packages/material-ui-icons/src/PanTool.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PanTool'); diff --git a/packages/material-ui-icons/src/PanToolOutlined.js b/packages/material-ui-icons/src/PanToolOutlined.js new file mode 100644 index 00000000000000..15c4b02e07447e --- /dev/null +++ b/packages/material-ui-icons/src/PanToolOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanToolOutlined'); diff --git a/packages/material-ui-icons/src/PanToolRounded.js b/packages/material-ui-icons/src/PanToolRounded.js new file mode 100644 index 00000000000000..c6b371f933f588 --- /dev/null +++ b/packages/material-ui-icons/src/PanToolRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanToolRounded'); diff --git a/packages/material-ui-icons/src/PanToolSharp.js b/packages/material-ui-icons/src/PanToolSharp.js new file mode 100644 index 00000000000000..c8e732450fa3e5 --- /dev/null +++ b/packages/material-ui-icons/src/PanToolSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanToolSharp'); diff --git a/packages/material-ui-icons/src/PanToolTwoTone.js b/packages/material-ui-icons/src/PanToolTwoTone.js new file mode 100644 index 00000000000000..c4e10dffa6e1ec --- /dev/null +++ b/packages/material-ui-icons/src/PanToolTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanToolTwoTone'); diff --git a/packages/material-ui-icons/src/PanoramaFishEyeOutlined.js b/packages/material-ui-icons/src/PanoramaFishEyeOutlined.js new file mode 100644 index 00000000000000..708b559d1c41bf --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaFishEyeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaFishEyeOutlined'); diff --git a/packages/material-ui-icons/src/PanoramaFishEyeRounded.js b/packages/material-ui-icons/src/PanoramaFishEyeRounded.js new file mode 100644 index 00000000000000..d833c0f0e07151 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaFishEyeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaFishEyeRounded'); diff --git a/packages/material-ui-icons/src/PanoramaFishEyeSharp.js b/packages/material-ui-icons/src/PanoramaFishEyeSharp.js new file mode 100644 index 00000000000000..c3b776051615c0 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaFishEyeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaFishEyeSharp'); diff --git a/packages/material-ui-icons/src/PanoramaFishEyeTwoTone.js b/packages/material-ui-icons/src/PanoramaFishEyeTwoTone.js new file mode 100644 index 00000000000000..7518f4ec4552b3 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaFishEyeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaFishEyeTwoTone'); diff --git a/packages/material-ui-icons/src/PanoramaHorizontal.js b/packages/material-ui-icons/src/PanoramaHorizontal.js index dc94dfc4699fb8..e2cb5ed1626cd2 100644 --- a/packages/material-ui-icons/src/PanoramaHorizontal.js +++ b/packages/material-ui-icons/src/PanoramaHorizontal.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PanoramaHorizontal'); diff --git a/packages/material-ui-icons/src/PanoramaHorizontalOutlined.js b/packages/material-ui-icons/src/PanoramaHorizontalOutlined.js new file mode 100644 index 00000000000000..d251b1eb08d46f --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaHorizontalOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaHorizontalOutlined'); diff --git a/packages/material-ui-icons/src/PanoramaHorizontalRounded.js b/packages/material-ui-icons/src/PanoramaHorizontalRounded.js new file mode 100644 index 00000000000000..0bc480e2627e70 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaHorizontalRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaHorizontalRounded'); diff --git a/packages/material-ui-icons/src/PanoramaHorizontalSharp.js b/packages/material-ui-icons/src/PanoramaHorizontalSharp.js new file mode 100644 index 00000000000000..107c577c0a292f --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaHorizontalSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaHorizontalSharp'); diff --git a/packages/material-ui-icons/src/PanoramaHorizontalTwoTone.js b/packages/material-ui-icons/src/PanoramaHorizontalTwoTone.js new file mode 100644 index 00000000000000..e5694f080314ee --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaHorizontalTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaHorizontalTwoTone'); diff --git a/packages/material-ui-icons/src/PanoramaOutlined.js b/packages/material-ui-icons/src/PanoramaOutlined.js new file mode 100644 index 00000000000000..e84333ad22569d --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaOutlined'); diff --git a/packages/material-ui-icons/src/PanoramaRounded.js b/packages/material-ui-icons/src/PanoramaRounded.js new file mode 100644 index 00000000000000..bae49cd15cd938 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaRounded'); diff --git a/packages/material-ui-icons/src/PanoramaSharp.js b/packages/material-ui-icons/src/PanoramaSharp.js new file mode 100644 index 00000000000000..b5e689f9b82196 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaSharp'); diff --git a/packages/material-ui-icons/src/PanoramaTwoTone.js b/packages/material-ui-icons/src/PanoramaTwoTone.js new file mode 100644 index 00000000000000..a7adf82e313f92 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaTwoTone'); diff --git a/packages/material-ui-icons/src/PanoramaVertical.js b/packages/material-ui-icons/src/PanoramaVertical.js index e1815c3f5f0cfc..3dd9e54f930da1 100644 --- a/packages/material-ui-icons/src/PanoramaVertical.js +++ b/packages/material-ui-icons/src/PanoramaVertical.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PanoramaVertical'); diff --git a/packages/material-ui-icons/src/PanoramaVerticalOutlined.js b/packages/material-ui-icons/src/PanoramaVerticalOutlined.js new file mode 100644 index 00000000000000..972bd271d1918b --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaVerticalOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaVerticalOutlined'); diff --git a/packages/material-ui-icons/src/PanoramaVerticalRounded.js b/packages/material-ui-icons/src/PanoramaVerticalRounded.js new file mode 100644 index 00000000000000..7887b78888cbbf --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaVerticalRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaVerticalRounded'); diff --git a/packages/material-ui-icons/src/PanoramaVerticalSharp.js b/packages/material-ui-icons/src/PanoramaVerticalSharp.js new file mode 100644 index 00000000000000..b9acbf6b8c6a22 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaVerticalSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaVerticalSharp'); diff --git a/packages/material-ui-icons/src/PanoramaVerticalTwoTone.js b/packages/material-ui-icons/src/PanoramaVerticalTwoTone.js new file mode 100644 index 00000000000000..c9d755227ab4c6 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaVerticalTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaVerticalTwoTone'); diff --git a/packages/material-ui-icons/src/PanoramaWideAngle.js b/packages/material-ui-icons/src/PanoramaWideAngle.js index ea986775b2a233..6313b310f95b01 100644 --- a/packages/material-ui-icons/src/PanoramaWideAngle.js +++ b/packages/material-ui-icons/src/PanoramaWideAngle.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PanoramaWideAngle'); diff --git a/packages/material-ui-icons/src/PanoramaWideAngleOutlined.js b/packages/material-ui-icons/src/PanoramaWideAngleOutlined.js new file mode 100644 index 00000000000000..49f7cdff6fe9fb --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaWideAngleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaWideAngleOutlined'); diff --git a/packages/material-ui-icons/src/PanoramaWideAngleRounded.js b/packages/material-ui-icons/src/PanoramaWideAngleRounded.js new file mode 100644 index 00000000000000..259da05699fe14 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaWideAngleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaWideAngleRounded'); diff --git a/packages/material-ui-icons/src/PanoramaWideAngleSharp.js b/packages/material-ui-icons/src/PanoramaWideAngleSharp.js new file mode 100644 index 00000000000000..d685a05d901c07 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaWideAngleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaWideAngleSharp'); diff --git a/packages/material-ui-icons/src/PanoramaWideAngleTwoTone.js b/packages/material-ui-icons/src/PanoramaWideAngleTwoTone.js new file mode 100644 index 00000000000000..2edb51c98911c4 --- /dev/null +++ b/packages/material-ui-icons/src/PanoramaWideAngleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PanoramaWideAngleTwoTone'); diff --git a/packages/material-ui-icons/src/PartyMode.js b/packages/material-ui-icons/src/PartyMode.js index 7577324b80e19d..8ee238addf2c9e 100644 --- a/packages/material-ui-icons/src/PartyMode.js +++ b/packages/material-ui-icons/src/PartyMode.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PartyMode'); diff --git a/packages/material-ui-icons/src/PartyModeOutlined.js b/packages/material-ui-icons/src/PartyModeOutlined.js new file mode 100644 index 00000000000000..9d3a14fd453952 --- /dev/null +++ b/packages/material-ui-icons/src/PartyModeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PartyModeOutlined'); diff --git a/packages/material-ui-icons/src/PartyModeRounded.js b/packages/material-ui-icons/src/PartyModeRounded.js new file mode 100644 index 00000000000000..4624e330f7410a --- /dev/null +++ b/packages/material-ui-icons/src/PartyModeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PartyModeRounded'); diff --git a/packages/material-ui-icons/src/PartyModeSharp.js b/packages/material-ui-icons/src/PartyModeSharp.js new file mode 100644 index 00000000000000..d43f46d3a5e6ac --- /dev/null +++ b/packages/material-ui-icons/src/PartyModeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PartyModeSharp'); diff --git a/packages/material-ui-icons/src/PartyModeTwoTone.js b/packages/material-ui-icons/src/PartyModeTwoTone.js new file mode 100644 index 00000000000000..b42c380a189492 --- /dev/null +++ b/packages/material-ui-icons/src/PartyModeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PartyModeTwoTone'); diff --git a/packages/material-ui-icons/src/PauseCircleFilledOutlined.js b/packages/material-ui-icons/src/PauseCircleFilledOutlined.js new file mode 100644 index 00000000000000..b98d7e2076c3ff --- /dev/null +++ b/packages/material-ui-icons/src/PauseCircleFilledOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseCircleFilledOutlined'); diff --git a/packages/material-ui-icons/src/PauseCircleFilledRounded.js b/packages/material-ui-icons/src/PauseCircleFilledRounded.js new file mode 100644 index 00000000000000..eb0d7d44d0e150 --- /dev/null +++ b/packages/material-ui-icons/src/PauseCircleFilledRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseCircleFilledRounded'); diff --git a/packages/material-ui-icons/src/PauseCircleFilledSharp.js b/packages/material-ui-icons/src/PauseCircleFilledSharp.js new file mode 100644 index 00000000000000..52ef38a5d29c24 --- /dev/null +++ b/packages/material-ui-icons/src/PauseCircleFilledSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseCircleFilledSharp'); diff --git a/packages/material-ui-icons/src/PauseCircleFilledTwoTone.js b/packages/material-ui-icons/src/PauseCircleFilledTwoTone.js new file mode 100644 index 00000000000000..3b6801770b9e93 --- /dev/null +++ b/packages/material-ui-icons/src/PauseCircleFilledTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseCircleFilledTwoTone'); diff --git a/packages/material-ui-icons/src/PauseCircleOutlineOutlined.js b/packages/material-ui-icons/src/PauseCircleOutlineOutlined.js new file mode 100644 index 00000000000000..693c93ff62166b --- /dev/null +++ b/packages/material-ui-icons/src/PauseCircleOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseCircleOutlineOutlined'); diff --git a/packages/material-ui-icons/src/PauseCircleOutlineRounded.js b/packages/material-ui-icons/src/PauseCircleOutlineRounded.js new file mode 100644 index 00000000000000..841ffd2e5e22f3 --- /dev/null +++ b/packages/material-ui-icons/src/PauseCircleOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseCircleOutlineRounded'); diff --git a/packages/material-ui-icons/src/PauseCircleOutlineSharp.js b/packages/material-ui-icons/src/PauseCircleOutlineSharp.js new file mode 100644 index 00000000000000..92a1c8c990ecb3 --- /dev/null +++ b/packages/material-ui-icons/src/PauseCircleOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseCircleOutlineSharp'); diff --git a/packages/material-ui-icons/src/PauseCircleOutlineTwoTone.js b/packages/material-ui-icons/src/PauseCircleOutlineTwoTone.js new file mode 100644 index 00000000000000..a0d91abb86f06e --- /dev/null +++ b/packages/material-ui-icons/src/PauseCircleOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseCircleOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/PauseOutlined.js b/packages/material-ui-icons/src/PauseOutlined.js new file mode 100644 index 00000000000000..784cfc4d608d6c --- /dev/null +++ b/packages/material-ui-icons/src/PauseOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseOutlined'); diff --git a/packages/material-ui-icons/src/PausePresentation.js b/packages/material-ui-icons/src/PausePresentation.js new file mode 100644 index 00000000000000..18d07efd9eddda --- /dev/null +++ b/packages/material-ui-icons/src/PausePresentation.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PausePresentation'); diff --git a/packages/material-ui-icons/src/PausePresentationOutlined.js b/packages/material-ui-icons/src/PausePresentationOutlined.js new file mode 100644 index 00000000000000..4503dea1cbde38 --- /dev/null +++ b/packages/material-ui-icons/src/PausePresentationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PausePresentationOutlined'); diff --git a/packages/material-ui-icons/src/PausePresentationRounded.js b/packages/material-ui-icons/src/PausePresentationRounded.js new file mode 100644 index 00000000000000..b05aecaa7581dc --- /dev/null +++ b/packages/material-ui-icons/src/PausePresentationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PausePresentationRounded'); diff --git a/packages/material-ui-icons/src/PausePresentationSharp.js b/packages/material-ui-icons/src/PausePresentationSharp.js new file mode 100644 index 00000000000000..dd6f03cb298166 --- /dev/null +++ b/packages/material-ui-icons/src/PausePresentationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PausePresentationSharp'); diff --git a/packages/material-ui-icons/src/PausePresentationTwoTone.js b/packages/material-ui-icons/src/PausePresentationTwoTone.js new file mode 100644 index 00000000000000..ec66997a27727d --- /dev/null +++ b/packages/material-ui-icons/src/PausePresentationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PausePresentationTwoTone'); diff --git a/packages/material-ui-icons/src/PauseRounded.js b/packages/material-ui-icons/src/PauseRounded.js new file mode 100644 index 00000000000000..cd34bbd600d083 --- /dev/null +++ b/packages/material-ui-icons/src/PauseRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseRounded'); diff --git a/packages/material-ui-icons/src/PauseSharp.js b/packages/material-ui-icons/src/PauseSharp.js new file mode 100644 index 00000000000000..47dc13da9a75b5 --- /dev/null +++ b/packages/material-ui-icons/src/PauseSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseSharp'); diff --git a/packages/material-ui-icons/src/PauseTwoTone.js b/packages/material-ui-icons/src/PauseTwoTone.js new file mode 100644 index 00000000000000..55f5ecaaf2f477 --- /dev/null +++ b/packages/material-ui-icons/src/PauseTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PauseTwoTone'); diff --git a/packages/material-ui-icons/src/PaymentOutlined.js b/packages/material-ui-icons/src/PaymentOutlined.js new file mode 100644 index 00000000000000..895763608df8a1 --- /dev/null +++ b/packages/material-ui-icons/src/PaymentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PaymentOutlined'); diff --git a/packages/material-ui-icons/src/PaymentRounded.js b/packages/material-ui-icons/src/PaymentRounded.js new file mode 100644 index 00000000000000..34b582d9be8151 --- /dev/null +++ b/packages/material-ui-icons/src/PaymentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PaymentRounded'); diff --git a/packages/material-ui-icons/src/PaymentSharp.js b/packages/material-ui-icons/src/PaymentSharp.js new file mode 100644 index 00000000000000..d2135d943affa1 --- /dev/null +++ b/packages/material-ui-icons/src/PaymentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PaymentSharp'); diff --git a/packages/material-ui-icons/src/PaymentTwoTone.js b/packages/material-ui-icons/src/PaymentTwoTone.js new file mode 100644 index 00000000000000..31c5a72dc62552 --- /dev/null +++ b/packages/material-ui-icons/src/PaymentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PaymentTwoTone'); diff --git a/packages/material-ui-icons/src/PeopleOutlineOutlined.js b/packages/material-ui-icons/src/PeopleOutlineOutlined.js new file mode 100644 index 00000000000000..ccc33dc279aed8 --- /dev/null +++ b/packages/material-ui-icons/src/PeopleOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PeopleOutlineOutlined'); diff --git a/packages/material-ui-icons/src/PeopleOutlineRounded.js b/packages/material-ui-icons/src/PeopleOutlineRounded.js new file mode 100644 index 00000000000000..6a5bba5df38958 --- /dev/null +++ b/packages/material-ui-icons/src/PeopleOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PeopleOutlineRounded'); diff --git a/packages/material-ui-icons/src/PeopleOutlineSharp.js b/packages/material-ui-icons/src/PeopleOutlineSharp.js new file mode 100644 index 00000000000000..96fb01a68855b2 --- /dev/null +++ b/packages/material-ui-icons/src/PeopleOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PeopleOutlineSharp'); diff --git a/packages/material-ui-icons/src/PeopleOutlineTwoTone.js b/packages/material-ui-icons/src/PeopleOutlineTwoTone.js new file mode 100644 index 00000000000000..278df2a0067068 --- /dev/null +++ b/packages/material-ui-icons/src/PeopleOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PeopleOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/PeopleOutlined.js b/packages/material-ui-icons/src/PeopleOutlined.js new file mode 100644 index 00000000000000..a2da77d17d1004 --- /dev/null +++ b/packages/material-ui-icons/src/PeopleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PeopleOutlined'); diff --git a/packages/material-ui-icons/src/PeopleRounded.js b/packages/material-ui-icons/src/PeopleRounded.js new file mode 100644 index 00000000000000..0eb470ee65d5fb --- /dev/null +++ b/packages/material-ui-icons/src/PeopleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PeopleRounded'); diff --git a/packages/material-ui-icons/src/PeopleSharp.js b/packages/material-ui-icons/src/PeopleSharp.js new file mode 100644 index 00000000000000..ecf0748f8a838f --- /dev/null +++ b/packages/material-ui-icons/src/PeopleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PeopleSharp'); diff --git a/packages/material-ui-icons/src/PeopleTwoTone.js b/packages/material-ui-icons/src/PeopleTwoTone.js new file mode 100644 index 00000000000000..9c4770a689f227 --- /dev/null +++ b/packages/material-ui-icons/src/PeopleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PeopleTwoTone'); diff --git a/packages/material-ui-icons/src/PermCameraMicOutlined.js b/packages/material-ui-icons/src/PermCameraMicOutlined.js new file mode 100644 index 00000000000000..5cc65500b0fa63 --- /dev/null +++ b/packages/material-ui-icons/src/PermCameraMicOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermCameraMicOutlined'); diff --git a/packages/material-ui-icons/src/PermCameraMicRounded.js b/packages/material-ui-icons/src/PermCameraMicRounded.js new file mode 100644 index 00000000000000..daa86f72641c7f --- /dev/null +++ b/packages/material-ui-icons/src/PermCameraMicRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermCameraMicRounded'); diff --git a/packages/material-ui-icons/src/PermCameraMicSharp.js b/packages/material-ui-icons/src/PermCameraMicSharp.js new file mode 100644 index 00000000000000..76e78e8857e3b8 --- /dev/null +++ b/packages/material-ui-icons/src/PermCameraMicSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermCameraMicSharp'); diff --git a/packages/material-ui-icons/src/PermCameraMicTwoTone.js b/packages/material-ui-icons/src/PermCameraMicTwoTone.js new file mode 100644 index 00000000000000..fb04927123dfd8 --- /dev/null +++ b/packages/material-ui-icons/src/PermCameraMicTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermCameraMicTwoTone'); diff --git a/packages/material-ui-icons/src/PermContactCalendar.js b/packages/material-ui-icons/src/PermContactCalendar.js index 709067fed49008..0a5dbafff616e7 100644 --- a/packages/material-ui-icons/src/PermContactCalendar.js +++ b/packages/material-ui-icons/src/PermContactCalendar.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PermContactCalendar'); diff --git a/packages/material-ui-icons/src/PermContactCalendarOutlined.js b/packages/material-ui-icons/src/PermContactCalendarOutlined.js new file mode 100644 index 00000000000000..4269a91537254e --- /dev/null +++ b/packages/material-ui-icons/src/PermContactCalendarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermContactCalendarOutlined'); diff --git a/packages/material-ui-icons/src/PermContactCalendarRounded.js b/packages/material-ui-icons/src/PermContactCalendarRounded.js new file mode 100644 index 00000000000000..7af8e3fb5cc9ba --- /dev/null +++ b/packages/material-ui-icons/src/PermContactCalendarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermContactCalendarRounded'); diff --git a/packages/material-ui-icons/src/PermContactCalendarSharp.js b/packages/material-ui-icons/src/PermContactCalendarSharp.js new file mode 100644 index 00000000000000..df23a73313cdf0 --- /dev/null +++ b/packages/material-ui-icons/src/PermContactCalendarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermContactCalendarSharp'); diff --git a/packages/material-ui-icons/src/PermContactCalendarTwoTone.js b/packages/material-ui-icons/src/PermContactCalendarTwoTone.js new file mode 100644 index 00000000000000..ce837cb6d595b3 --- /dev/null +++ b/packages/material-ui-icons/src/PermContactCalendarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermContactCalendarTwoTone'); diff --git a/packages/material-ui-icons/src/PermDataSetting.js b/packages/material-ui-icons/src/PermDataSetting.js index eafa78b33f4107..29d6184013b12c 100644 --- a/packages/material-ui-icons/src/PermDataSetting.js +++ b/packages/material-ui-icons/src/PermDataSetting.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PermDataSetting'); diff --git a/packages/material-ui-icons/src/PermDataSettingOutlined.js b/packages/material-ui-icons/src/PermDataSettingOutlined.js new file mode 100644 index 00000000000000..8d6ca55071cc96 --- /dev/null +++ b/packages/material-ui-icons/src/PermDataSettingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermDataSettingOutlined'); diff --git a/packages/material-ui-icons/src/PermDataSettingRounded.js b/packages/material-ui-icons/src/PermDataSettingRounded.js new file mode 100644 index 00000000000000..f926e35eebb8fa --- /dev/null +++ b/packages/material-ui-icons/src/PermDataSettingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermDataSettingRounded'); diff --git a/packages/material-ui-icons/src/PermDataSettingSharp.js b/packages/material-ui-icons/src/PermDataSettingSharp.js new file mode 100644 index 00000000000000..88e5defe521314 --- /dev/null +++ b/packages/material-ui-icons/src/PermDataSettingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermDataSettingSharp'); diff --git a/packages/material-ui-icons/src/PermDataSettingTwoTone.js b/packages/material-ui-icons/src/PermDataSettingTwoTone.js new file mode 100644 index 00000000000000..2ea4d4c602f9eb --- /dev/null +++ b/packages/material-ui-icons/src/PermDataSettingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermDataSettingTwoTone'); diff --git a/packages/material-ui-icons/src/PermDeviceInformationOutlined.js b/packages/material-ui-icons/src/PermDeviceInformationOutlined.js new file mode 100644 index 00000000000000..097aa0f664c018 --- /dev/null +++ b/packages/material-ui-icons/src/PermDeviceInformationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermDeviceInformationOutlined'); diff --git a/packages/material-ui-icons/src/PermDeviceInformationRounded.js b/packages/material-ui-icons/src/PermDeviceInformationRounded.js new file mode 100644 index 00000000000000..8ba3777ee7a97d --- /dev/null +++ b/packages/material-ui-icons/src/PermDeviceInformationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermDeviceInformationRounded'); diff --git a/packages/material-ui-icons/src/PermDeviceInformationSharp.js b/packages/material-ui-icons/src/PermDeviceInformationSharp.js new file mode 100644 index 00000000000000..4ef01c96b47fde --- /dev/null +++ b/packages/material-ui-icons/src/PermDeviceInformationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermDeviceInformationSharp'); diff --git a/packages/material-ui-icons/src/PermDeviceInformationTwoTone.js b/packages/material-ui-icons/src/PermDeviceInformationTwoTone.js new file mode 100644 index 00000000000000..073f1d28c99227 --- /dev/null +++ b/packages/material-ui-icons/src/PermDeviceInformationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermDeviceInformationTwoTone'); diff --git a/packages/material-ui-icons/src/PermIdentity.js b/packages/material-ui-icons/src/PermIdentity.js index d16d62973ab703..26644056f0d120 100644 --- a/packages/material-ui-icons/src/PermIdentity.js +++ b/packages/material-ui-icons/src/PermIdentity.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PermIdentity'); diff --git a/packages/material-ui-icons/src/PermIdentityOutlined.js b/packages/material-ui-icons/src/PermIdentityOutlined.js new file mode 100644 index 00000000000000..3a77279e119b15 --- /dev/null +++ b/packages/material-ui-icons/src/PermIdentityOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermIdentityOutlined'); diff --git a/packages/material-ui-icons/src/PermIdentityRounded.js b/packages/material-ui-icons/src/PermIdentityRounded.js new file mode 100644 index 00000000000000..3635a7d9342a14 --- /dev/null +++ b/packages/material-ui-icons/src/PermIdentityRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermIdentityRounded'); diff --git a/packages/material-ui-icons/src/PermIdentitySharp.js b/packages/material-ui-icons/src/PermIdentitySharp.js new file mode 100644 index 00000000000000..ad6def79c19aaa --- /dev/null +++ b/packages/material-ui-icons/src/PermIdentitySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermIdentitySharp'); diff --git a/packages/material-ui-icons/src/PermIdentityTwoTone.js b/packages/material-ui-icons/src/PermIdentityTwoTone.js new file mode 100644 index 00000000000000..215dd45be8e8e2 --- /dev/null +++ b/packages/material-ui-icons/src/PermIdentityTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermIdentityTwoTone'); diff --git a/packages/material-ui-icons/src/PermMediaOutlined.js b/packages/material-ui-icons/src/PermMediaOutlined.js new file mode 100644 index 00000000000000..19e7472c514f65 --- /dev/null +++ b/packages/material-ui-icons/src/PermMediaOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermMediaOutlined'); diff --git a/packages/material-ui-icons/src/PermMediaRounded.js b/packages/material-ui-icons/src/PermMediaRounded.js new file mode 100644 index 00000000000000..b9f035a16ade4c --- /dev/null +++ b/packages/material-ui-icons/src/PermMediaRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermMediaRounded'); diff --git a/packages/material-ui-icons/src/PermMediaSharp.js b/packages/material-ui-icons/src/PermMediaSharp.js new file mode 100644 index 00000000000000..96caccbdb92640 --- /dev/null +++ b/packages/material-ui-icons/src/PermMediaSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermMediaSharp'); diff --git a/packages/material-ui-icons/src/PermMediaTwoTone.js b/packages/material-ui-icons/src/PermMediaTwoTone.js new file mode 100644 index 00000000000000..a813b44a8e0cec --- /dev/null +++ b/packages/material-ui-icons/src/PermMediaTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermMediaTwoTone'); diff --git a/packages/material-ui-icons/src/PermPhoneMsg.js b/packages/material-ui-icons/src/PermPhoneMsg.js index 1bb80fef4d045b..92601886d39919 100644 --- a/packages/material-ui-icons/src/PermPhoneMsg.js +++ b/packages/material-ui-icons/src/PermPhoneMsg.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PermPhoneMsg'); diff --git a/packages/material-ui-icons/src/PermPhoneMsgOutlined.js b/packages/material-ui-icons/src/PermPhoneMsgOutlined.js new file mode 100644 index 00000000000000..3a8a4e974cbc08 --- /dev/null +++ b/packages/material-ui-icons/src/PermPhoneMsgOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermPhoneMsgOutlined'); diff --git a/packages/material-ui-icons/src/PermPhoneMsgRounded.js b/packages/material-ui-icons/src/PermPhoneMsgRounded.js new file mode 100644 index 00000000000000..47df2955e16ba0 --- /dev/null +++ b/packages/material-ui-icons/src/PermPhoneMsgRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermPhoneMsgRounded'); diff --git a/packages/material-ui-icons/src/PermPhoneMsgSharp.js b/packages/material-ui-icons/src/PermPhoneMsgSharp.js new file mode 100644 index 00000000000000..f81cc2fdbb5747 --- /dev/null +++ b/packages/material-ui-icons/src/PermPhoneMsgSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermPhoneMsgSharp'); diff --git a/packages/material-ui-icons/src/PermPhoneMsgTwoTone.js b/packages/material-ui-icons/src/PermPhoneMsgTwoTone.js new file mode 100644 index 00000000000000..d30afb5559fa0a --- /dev/null +++ b/packages/material-ui-icons/src/PermPhoneMsgTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermPhoneMsgTwoTone'); diff --git a/packages/material-ui-icons/src/PermScanWifiOutlined.js b/packages/material-ui-icons/src/PermScanWifiOutlined.js new file mode 100644 index 00000000000000..369681894c145a --- /dev/null +++ b/packages/material-ui-icons/src/PermScanWifiOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermScanWifiOutlined'); diff --git a/packages/material-ui-icons/src/PermScanWifiRounded.js b/packages/material-ui-icons/src/PermScanWifiRounded.js new file mode 100644 index 00000000000000..085ffb7c234dfc --- /dev/null +++ b/packages/material-ui-icons/src/PermScanWifiRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermScanWifiRounded'); diff --git a/packages/material-ui-icons/src/PermScanWifiSharp.js b/packages/material-ui-icons/src/PermScanWifiSharp.js new file mode 100644 index 00000000000000..e8892c7336bcbe --- /dev/null +++ b/packages/material-ui-icons/src/PermScanWifiSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermScanWifiSharp'); diff --git a/packages/material-ui-icons/src/PermScanWifiTwoTone.js b/packages/material-ui-icons/src/PermScanWifiTwoTone.js new file mode 100644 index 00000000000000..9ddcc381beffcc --- /dev/null +++ b/packages/material-ui-icons/src/PermScanWifiTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PermScanWifiTwoTone'); diff --git a/packages/material-ui-icons/src/PersonAddDisabled.js b/packages/material-ui-icons/src/PersonAddDisabled.js new file mode 100644 index 00000000000000..de269e9400b3a0 --- /dev/null +++ b/packages/material-ui-icons/src/PersonAddDisabled.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonAddDisabled'); diff --git a/packages/material-ui-icons/src/PersonAddDisabledOutlined.js b/packages/material-ui-icons/src/PersonAddDisabledOutlined.js new file mode 100644 index 00000000000000..20734d818390e3 --- /dev/null +++ b/packages/material-ui-icons/src/PersonAddDisabledOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonAddDisabledOutlined'); diff --git a/packages/material-ui-icons/src/PersonAddDisabledRounded.js b/packages/material-ui-icons/src/PersonAddDisabledRounded.js new file mode 100644 index 00000000000000..1b686b6767065c --- /dev/null +++ b/packages/material-ui-icons/src/PersonAddDisabledRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonAddDisabledRounded'); diff --git a/packages/material-ui-icons/src/PersonAddDisabledSharp.js b/packages/material-ui-icons/src/PersonAddDisabledSharp.js new file mode 100644 index 00000000000000..6ec63ca88abc94 --- /dev/null +++ b/packages/material-ui-icons/src/PersonAddDisabledSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonAddDisabledSharp'); diff --git a/packages/material-ui-icons/src/PersonAddDisabledTwoTone.js b/packages/material-ui-icons/src/PersonAddDisabledTwoTone.js new file mode 100644 index 00000000000000..5fa2051a81d0c4 --- /dev/null +++ b/packages/material-ui-icons/src/PersonAddDisabledTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonAddDisabledTwoTone'); diff --git a/packages/material-ui-icons/src/PersonAddOutlined.js b/packages/material-ui-icons/src/PersonAddOutlined.js new file mode 100644 index 00000000000000..1ab10161990d9c --- /dev/null +++ b/packages/material-ui-icons/src/PersonAddOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonAddOutlined'); diff --git a/packages/material-ui-icons/src/PersonAddRounded.js b/packages/material-ui-icons/src/PersonAddRounded.js new file mode 100644 index 00000000000000..1fbb412b0cd617 --- /dev/null +++ b/packages/material-ui-icons/src/PersonAddRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonAddRounded'); diff --git a/packages/material-ui-icons/src/PersonAddSharp.js b/packages/material-ui-icons/src/PersonAddSharp.js new file mode 100644 index 00000000000000..da97860f5df3ff --- /dev/null +++ b/packages/material-ui-icons/src/PersonAddSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonAddSharp'); diff --git a/packages/material-ui-icons/src/PersonAddTwoTone.js b/packages/material-ui-icons/src/PersonAddTwoTone.js new file mode 100644 index 00000000000000..1fdb47c8be0522 --- /dev/null +++ b/packages/material-ui-icons/src/PersonAddTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonAddTwoTone'); diff --git a/packages/material-ui-icons/src/PersonOutline.js b/packages/material-ui-icons/src/PersonOutline.js index 3a5291e59c3943..e44d4ac3c21877 100644 --- a/packages/material-ui-icons/src/PersonOutline.js +++ b/packages/material-ui-icons/src/PersonOutline.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PersonOutline'); diff --git a/packages/material-ui-icons/src/PersonOutlineOutlined.js b/packages/material-ui-icons/src/PersonOutlineOutlined.js new file mode 100644 index 00000000000000..f0db8a97a0fd92 --- /dev/null +++ b/packages/material-ui-icons/src/PersonOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonOutlineOutlined'); diff --git a/packages/material-ui-icons/src/PersonOutlineRounded.js b/packages/material-ui-icons/src/PersonOutlineRounded.js new file mode 100644 index 00000000000000..578d42374e6b4e --- /dev/null +++ b/packages/material-ui-icons/src/PersonOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonOutlineRounded'); diff --git a/packages/material-ui-icons/src/PersonOutlineSharp.js b/packages/material-ui-icons/src/PersonOutlineSharp.js new file mode 100644 index 00000000000000..1e77c213c83930 --- /dev/null +++ b/packages/material-ui-icons/src/PersonOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonOutlineSharp'); diff --git a/packages/material-ui-icons/src/PersonOutlineTwoTone.js b/packages/material-ui-icons/src/PersonOutlineTwoTone.js new file mode 100644 index 00000000000000..36906bc8301869 --- /dev/null +++ b/packages/material-ui-icons/src/PersonOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/PersonOutlined.js b/packages/material-ui-icons/src/PersonOutlined.js new file mode 100644 index 00000000000000..1657a6ff5c9ade --- /dev/null +++ b/packages/material-ui-icons/src/PersonOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonOutlined'); diff --git a/packages/material-ui-icons/src/PersonPin.js b/packages/material-ui-icons/src/PersonPin.js index ec0213b7d6250a..ac56b00ef90c42 100644 --- a/packages/material-ui-icons/src/PersonPin.js +++ b/packages/material-ui-icons/src/PersonPin.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PersonPin'); diff --git a/packages/material-ui-icons/src/PersonPinCircle.js b/packages/material-ui-icons/src/PersonPinCircle.js index f1d25e8059b434..71902dc7abc308 100644 --- a/packages/material-ui-icons/src/PersonPinCircle.js +++ b/packages/material-ui-icons/src/PersonPinCircle.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PersonPinCircle'); diff --git a/packages/material-ui-icons/src/PersonPinCircleOutlined.js b/packages/material-ui-icons/src/PersonPinCircleOutlined.js new file mode 100644 index 00000000000000..baf052904ade80 --- /dev/null +++ b/packages/material-ui-icons/src/PersonPinCircleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonPinCircleOutlined'); diff --git a/packages/material-ui-icons/src/PersonPinCircleRounded.js b/packages/material-ui-icons/src/PersonPinCircleRounded.js new file mode 100644 index 00000000000000..0b946af0ad9848 --- /dev/null +++ b/packages/material-ui-icons/src/PersonPinCircleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonPinCircleRounded'); diff --git a/packages/material-ui-icons/src/PersonPinCircleSharp.js b/packages/material-ui-icons/src/PersonPinCircleSharp.js new file mode 100644 index 00000000000000..484435513111f6 --- /dev/null +++ b/packages/material-ui-icons/src/PersonPinCircleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonPinCircleSharp'); diff --git a/packages/material-ui-icons/src/PersonPinCircleTwoTone.js b/packages/material-ui-icons/src/PersonPinCircleTwoTone.js new file mode 100644 index 00000000000000..d87c0ec74b5235 --- /dev/null +++ b/packages/material-ui-icons/src/PersonPinCircleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonPinCircleTwoTone'); diff --git a/packages/material-ui-icons/src/PersonPinOutlined.js b/packages/material-ui-icons/src/PersonPinOutlined.js new file mode 100644 index 00000000000000..867b08005f1351 --- /dev/null +++ b/packages/material-ui-icons/src/PersonPinOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonPinOutlined'); diff --git a/packages/material-ui-icons/src/PersonPinRounded.js b/packages/material-ui-icons/src/PersonPinRounded.js new file mode 100644 index 00000000000000..caecb61ad26329 --- /dev/null +++ b/packages/material-ui-icons/src/PersonPinRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonPinRounded'); diff --git a/packages/material-ui-icons/src/PersonPinSharp.js b/packages/material-ui-icons/src/PersonPinSharp.js new file mode 100644 index 00000000000000..8e72017be040bd --- /dev/null +++ b/packages/material-ui-icons/src/PersonPinSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonPinSharp'); diff --git a/packages/material-ui-icons/src/PersonPinTwoTone.js b/packages/material-ui-icons/src/PersonPinTwoTone.js new file mode 100644 index 00000000000000..359c5508af4691 --- /dev/null +++ b/packages/material-ui-icons/src/PersonPinTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonPinTwoTone'); diff --git a/packages/material-ui-icons/src/PersonRounded.js b/packages/material-ui-icons/src/PersonRounded.js new file mode 100644 index 00000000000000..23854a2261da1a --- /dev/null +++ b/packages/material-ui-icons/src/PersonRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonRounded'); diff --git a/packages/material-ui-icons/src/PersonSharp.js b/packages/material-ui-icons/src/PersonSharp.js new file mode 100644 index 00000000000000..ae107250611081 --- /dev/null +++ b/packages/material-ui-icons/src/PersonSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonSharp'); diff --git a/packages/material-ui-icons/src/PersonTwoTone.js b/packages/material-ui-icons/src/PersonTwoTone.js new file mode 100644 index 00000000000000..169a51d3cb7277 --- /dev/null +++ b/packages/material-ui-icons/src/PersonTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonTwoTone'); diff --git a/packages/material-ui-icons/src/PersonalVideo.js b/packages/material-ui-icons/src/PersonalVideo.js index a94b65a705e05c..4b8465ee8094a1 100644 --- a/packages/material-ui-icons/src/PersonalVideo.js +++ b/packages/material-ui-icons/src/PersonalVideo.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PersonalVideo'); diff --git a/packages/material-ui-icons/src/PersonalVideoOutlined.js b/packages/material-ui-icons/src/PersonalVideoOutlined.js new file mode 100644 index 00000000000000..26b3751ea6f02d --- /dev/null +++ b/packages/material-ui-icons/src/PersonalVideoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonalVideoOutlined'); diff --git a/packages/material-ui-icons/src/PersonalVideoRounded.js b/packages/material-ui-icons/src/PersonalVideoRounded.js new file mode 100644 index 00000000000000..93ef25d14847ca --- /dev/null +++ b/packages/material-ui-icons/src/PersonalVideoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonalVideoRounded'); diff --git a/packages/material-ui-icons/src/PersonalVideoSharp.js b/packages/material-ui-icons/src/PersonalVideoSharp.js new file mode 100644 index 00000000000000..a45a73e6e02888 --- /dev/null +++ b/packages/material-ui-icons/src/PersonalVideoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonalVideoSharp'); diff --git a/packages/material-ui-icons/src/PersonalVideoTwoTone.js b/packages/material-ui-icons/src/PersonalVideoTwoTone.js new file mode 100644 index 00000000000000..abc41b1b0e97ea --- /dev/null +++ b/packages/material-ui-icons/src/PersonalVideoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PersonalVideoTwoTone'); diff --git a/packages/material-ui-icons/src/PetsOutlined.js b/packages/material-ui-icons/src/PetsOutlined.js new file mode 100644 index 00000000000000..dd6dc7fcf679ee --- /dev/null +++ b/packages/material-ui-icons/src/PetsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PetsOutlined'); diff --git a/packages/material-ui-icons/src/PetsRounded.js b/packages/material-ui-icons/src/PetsRounded.js new file mode 100644 index 00000000000000..85efe7cf34e052 --- /dev/null +++ b/packages/material-ui-icons/src/PetsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PetsRounded'); diff --git a/packages/material-ui-icons/src/PetsSharp.js b/packages/material-ui-icons/src/PetsSharp.js new file mode 100644 index 00000000000000..bd828260a15f12 --- /dev/null +++ b/packages/material-ui-icons/src/PetsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PetsSharp'); diff --git a/packages/material-ui-icons/src/PetsTwoTone.js b/packages/material-ui-icons/src/PetsTwoTone.js new file mode 100644 index 00000000000000..3f2e45ff560949 --- /dev/null +++ b/packages/material-ui-icons/src/PetsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PetsTwoTone'); diff --git a/packages/material-ui-icons/src/PhoneAndroidOutlined.js b/packages/material-ui-icons/src/PhoneAndroidOutlined.js new file mode 100644 index 00000000000000..93a0966f7a7db0 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneAndroidOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneAndroidOutlined'); diff --git a/packages/material-ui-icons/src/PhoneAndroidRounded.js b/packages/material-ui-icons/src/PhoneAndroidRounded.js new file mode 100644 index 00000000000000..4c41161c38178e --- /dev/null +++ b/packages/material-ui-icons/src/PhoneAndroidRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneAndroidRounded'); diff --git a/packages/material-ui-icons/src/PhoneAndroidSharp.js b/packages/material-ui-icons/src/PhoneAndroidSharp.js new file mode 100644 index 00000000000000..394328c700af91 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneAndroidSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneAndroidSharp'); diff --git a/packages/material-ui-icons/src/PhoneAndroidTwoTone.js b/packages/material-ui-icons/src/PhoneAndroidTwoTone.js new file mode 100644 index 00000000000000..7a0e600dc8a376 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneAndroidTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneAndroidTwoTone'); diff --git a/packages/material-ui-icons/src/PhoneBluetoothSpeaker.js b/packages/material-ui-icons/src/PhoneBluetoothSpeaker.js index e19ea49d773f75..c86e4f3f4571bb 100644 --- a/packages/material-ui-icons/src/PhoneBluetoothSpeaker.js +++ b/packages/material-ui-icons/src/PhoneBluetoothSpeaker.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PhoneBluetoothSpeaker'); diff --git a/packages/material-ui-icons/src/PhoneBluetoothSpeakerOutlined.js b/packages/material-ui-icons/src/PhoneBluetoothSpeakerOutlined.js new file mode 100644 index 00000000000000..a219acf914a222 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneBluetoothSpeakerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneBluetoothSpeakerOutlined'); diff --git a/packages/material-ui-icons/src/PhoneBluetoothSpeakerRounded.js b/packages/material-ui-icons/src/PhoneBluetoothSpeakerRounded.js new file mode 100644 index 00000000000000..c2cef58c090d49 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneBluetoothSpeakerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneBluetoothSpeakerRounded'); diff --git a/packages/material-ui-icons/src/PhoneBluetoothSpeakerSharp.js b/packages/material-ui-icons/src/PhoneBluetoothSpeakerSharp.js new file mode 100644 index 00000000000000..afbd1cf1baeb0d --- /dev/null +++ b/packages/material-ui-icons/src/PhoneBluetoothSpeakerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneBluetoothSpeakerSharp'); diff --git a/packages/material-ui-icons/src/PhoneBluetoothSpeakerTwoTone.js b/packages/material-ui-icons/src/PhoneBluetoothSpeakerTwoTone.js new file mode 100644 index 00000000000000..100dc55cca7539 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneBluetoothSpeakerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneBluetoothSpeakerTwoTone'); diff --git a/packages/material-ui-icons/src/PhoneCallback.js b/packages/material-ui-icons/src/PhoneCallback.js new file mode 100644 index 00000000000000..f48014e50a184a --- /dev/null +++ b/packages/material-ui-icons/src/PhoneCallback.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneCallback'); diff --git a/packages/material-ui-icons/src/PhoneCallbackOutlined.js b/packages/material-ui-icons/src/PhoneCallbackOutlined.js new file mode 100644 index 00000000000000..dbdd8e5965d24a --- /dev/null +++ b/packages/material-ui-icons/src/PhoneCallbackOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneCallbackOutlined'); diff --git a/packages/material-ui-icons/src/PhoneCallbackRounded.js b/packages/material-ui-icons/src/PhoneCallbackRounded.js new file mode 100644 index 00000000000000..76650bf57aa95a --- /dev/null +++ b/packages/material-ui-icons/src/PhoneCallbackRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneCallbackRounded'); diff --git a/packages/material-ui-icons/src/PhoneCallbackSharp.js b/packages/material-ui-icons/src/PhoneCallbackSharp.js new file mode 100644 index 00000000000000..1cecd54fe7ce4b --- /dev/null +++ b/packages/material-ui-icons/src/PhoneCallbackSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneCallbackSharp'); diff --git a/packages/material-ui-icons/src/PhoneCallbackTwoTone.js b/packages/material-ui-icons/src/PhoneCallbackTwoTone.js new file mode 100644 index 00000000000000..10b01af84c9dd0 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneCallbackTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneCallbackTwoTone'); diff --git a/packages/material-ui-icons/src/PhoneForwarded.js b/packages/material-ui-icons/src/PhoneForwarded.js index 268cd86c2b9902..6c5472032aab46 100644 --- a/packages/material-ui-icons/src/PhoneForwarded.js +++ b/packages/material-ui-icons/src/PhoneForwarded.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PhoneForwarded'); diff --git a/packages/material-ui-icons/src/PhoneForwardedOutlined.js b/packages/material-ui-icons/src/PhoneForwardedOutlined.js new file mode 100644 index 00000000000000..26868a642bc190 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneForwardedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneForwardedOutlined'); diff --git a/packages/material-ui-icons/src/PhoneForwardedRounded.js b/packages/material-ui-icons/src/PhoneForwardedRounded.js new file mode 100644 index 00000000000000..8f2289c7f5bd4b --- /dev/null +++ b/packages/material-ui-icons/src/PhoneForwardedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneForwardedRounded'); diff --git a/packages/material-ui-icons/src/PhoneForwardedSharp.js b/packages/material-ui-icons/src/PhoneForwardedSharp.js new file mode 100644 index 00000000000000..a7e4e649d7d648 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneForwardedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneForwardedSharp'); diff --git a/packages/material-ui-icons/src/PhoneForwardedTwoTone.js b/packages/material-ui-icons/src/PhoneForwardedTwoTone.js new file mode 100644 index 00000000000000..da4aaa4abd374f --- /dev/null +++ b/packages/material-ui-icons/src/PhoneForwardedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneForwardedTwoTone'); diff --git a/packages/material-ui-icons/src/PhoneInTalk.js b/packages/material-ui-icons/src/PhoneInTalk.js index c5f823b2fffa4b..19c803778e240e 100644 --- a/packages/material-ui-icons/src/PhoneInTalk.js +++ b/packages/material-ui-icons/src/PhoneInTalk.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PhoneInTalk'); diff --git a/packages/material-ui-icons/src/PhoneInTalkOutlined.js b/packages/material-ui-icons/src/PhoneInTalkOutlined.js new file mode 100644 index 00000000000000..b2ca66a2e9bb85 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneInTalkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneInTalkOutlined'); diff --git a/packages/material-ui-icons/src/PhoneInTalkRounded.js b/packages/material-ui-icons/src/PhoneInTalkRounded.js new file mode 100644 index 00000000000000..cc73d6f2a29473 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneInTalkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneInTalkRounded'); diff --git a/packages/material-ui-icons/src/PhoneInTalkSharp.js b/packages/material-ui-icons/src/PhoneInTalkSharp.js new file mode 100644 index 00000000000000..9bd3cdcf087aca --- /dev/null +++ b/packages/material-ui-icons/src/PhoneInTalkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneInTalkSharp'); diff --git a/packages/material-ui-icons/src/PhoneInTalkTwoTone.js b/packages/material-ui-icons/src/PhoneInTalkTwoTone.js new file mode 100644 index 00000000000000..0762e9cc133dd2 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneInTalkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneInTalkTwoTone'); diff --git a/packages/material-ui-icons/src/PhoneIphone.js b/packages/material-ui-icons/src/PhoneIphone.js index 0e8f7abfcdcdde..09ae7cef97e810 100644 --- a/packages/material-ui-icons/src/PhoneIphone.js +++ b/packages/material-ui-icons/src/PhoneIphone.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PhoneIphone'); diff --git a/packages/material-ui-icons/src/PhoneIphoneOutlined.js b/packages/material-ui-icons/src/PhoneIphoneOutlined.js new file mode 100644 index 00000000000000..0f68aa3ec7a1c7 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneIphoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneIphoneOutlined'); diff --git a/packages/material-ui-icons/src/PhoneIphoneRounded.js b/packages/material-ui-icons/src/PhoneIphoneRounded.js new file mode 100644 index 00000000000000..b95a105c259865 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneIphoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneIphoneRounded'); diff --git a/packages/material-ui-icons/src/PhoneIphoneSharp.js b/packages/material-ui-icons/src/PhoneIphoneSharp.js new file mode 100644 index 00000000000000..140d91e1b81326 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneIphoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneIphoneSharp'); diff --git a/packages/material-ui-icons/src/PhoneIphoneTwoTone.js b/packages/material-ui-icons/src/PhoneIphoneTwoTone.js new file mode 100644 index 00000000000000..4a29878e362c8b --- /dev/null +++ b/packages/material-ui-icons/src/PhoneIphoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneIphoneTwoTone'); diff --git a/packages/material-ui-icons/src/PhoneLocked.js b/packages/material-ui-icons/src/PhoneLocked.js index b68ced6c8173c8..ca948d426c2254 100644 --- a/packages/material-ui-icons/src/PhoneLocked.js +++ b/packages/material-ui-icons/src/PhoneLocked.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PhoneLocked'); diff --git a/packages/material-ui-icons/src/PhoneLockedOutlined.js b/packages/material-ui-icons/src/PhoneLockedOutlined.js new file mode 100644 index 00000000000000..a0dd5a35b7d660 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneLockedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneLockedOutlined'); diff --git a/packages/material-ui-icons/src/PhoneLockedRounded.js b/packages/material-ui-icons/src/PhoneLockedRounded.js new file mode 100644 index 00000000000000..887cb2fc937d92 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneLockedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneLockedRounded'); diff --git a/packages/material-ui-icons/src/PhoneLockedSharp.js b/packages/material-ui-icons/src/PhoneLockedSharp.js new file mode 100644 index 00000000000000..bcdf5fac903a84 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneLockedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneLockedSharp'); diff --git a/packages/material-ui-icons/src/PhoneLockedTwoTone.js b/packages/material-ui-icons/src/PhoneLockedTwoTone.js new file mode 100644 index 00000000000000..fbcce0fe00e1f1 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneLockedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneLockedTwoTone'); diff --git a/packages/material-ui-icons/src/PhoneMissed.js b/packages/material-ui-icons/src/PhoneMissed.js index 8b46f08367ce0e..ad00ef27641706 100644 --- a/packages/material-ui-icons/src/PhoneMissed.js +++ b/packages/material-ui-icons/src/PhoneMissed.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PhoneMissed'); diff --git a/packages/material-ui-icons/src/PhoneMissedOutlined.js b/packages/material-ui-icons/src/PhoneMissedOutlined.js new file mode 100644 index 00000000000000..4466cb4e07d5c6 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneMissedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneMissedOutlined'); diff --git a/packages/material-ui-icons/src/PhoneMissedRounded.js b/packages/material-ui-icons/src/PhoneMissedRounded.js new file mode 100644 index 00000000000000..7fef12d45a1311 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneMissedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneMissedRounded'); diff --git a/packages/material-ui-icons/src/PhoneMissedSharp.js b/packages/material-ui-icons/src/PhoneMissedSharp.js new file mode 100644 index 00000000000000..99f05677b221c1 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneMissedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneMissedSharp'); diff --git a/packages/material-ui-icons/src/PhoneMissedTwoTone.js b/packages/material-ui-icons/src/PhoneMissedTwoTone.js new file mode 100644 index 00000000000000..05b8d13e6f291d --- /dev/null +++ b/packages/material-ui-icons/src/PhoneMissedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneMissedTwoTone'); diff --git a/packages/material-ui-icons/src/PhoneOutlined.js b/packages/material-ui-icons/src/PhoneOutlined.js new file mode 100644 index 00000000000000..79d027529136a8 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneOutlined'); diff --git a/packages/material-ui-icons/src/PhonePaused.js b/packages/material-ui-icons/src/PhonePaused.js index 003f1bdca69d8e..5fac33bbdc97c1 100644 --- a/packages/material-ui-icons/src/PhonePaused.js +++ b/packages/material-ui-icons/src/PhonePaused.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PhonePaused'); diff --git a/packages/material-ui-icons/src/PhonePausedOutlined.js b/packages/material-ui-icons/src/PhonePausedOutlined.js new file mode 100644 index 00000000000000..c8f314960e56e4 --- /dev/null +++ b/packages/material-ui-icons/src/PhonePausedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonePausedOutlined'); diff --git a/packages/material-ui-icons/src/PhonePausedRounded.js b/packages/material-ui-icons/src/PhonePausedRounded.js new file mode 100644 index 00000000000000..524dbc08626337 --- /dev/null +++ b/packages/material-ui-icons/src/PhonePausedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonePausedRounded'); diff --git a/packages/material-ui-icons/src/PhonePausedSharp.js b/packages/material-ui-icons/src/PhonePausedSharp.js new file mode 100644 index 00000000000000..143e3da94a4ad6 --- /dev/null +++ b/packages/material-ui-icons/src/PhonePausedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonePausedSharp'); diff --git a/packages/material-ui-icons/src/PhonePausedTwoTone.js b/packages/material-ui-icons/src/PhonePausedTwoTone.js new file mode 100644 index 00000000000000..7b03766573366c --- /dev/null +++ b/packages/material-ui-icons/src/PhonePausedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonePausedTwoTone'); diff --git a/packages/material-ui-icons/src/PhoneRounded.js b/packages/material-ui-icons/src/PhoneRounded.js new file mode 100644 index 00000000000000..ccdd34ca08ebc8 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneRounded'); diff --git a/packages/material-ui-icons/src/PhoneSharp.js b/packages/material-ui-icons/src/PhoneSharp.js new file mode 100644 index 00000000000000..ac81ba3b3d219e --- /dev/null +++ b/packages/material-ui-icons/src/PhoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneSharp'); diff --git a/packages/material-ui-icons/src/PhoneTwoTone.js b/packages/material-ui-icons/src/PhoneTwoTone.js new file mode 100644 index 00000000000000..27d61a19de2ee6 --- /dev/null +++ b/packages/material-ui-icons/src/PhoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhoneTwoTone'); diff --git a/packages/material-ui-icons/src/PhonelinkEraseOutlined.js b/packages/material-ui-icons/src/PhonelinkEraseOutlined.js new file mode 100644 index 00000000000000..359b125fc9d05e --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkEraseOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkEraseOutlined'); diff --git a/packages/material-ui-icons/src/PhonelinkEraseRounded.js b/packages/material-ui-icons/src/PhonelinkEraseRounded.js new file mode 100644 index 00000000000000..cc9d83cd7c7212 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkEraseRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkEraseRounded'); diff --git a/packages/material-ui-icons/src/PhonelinkEraseSharp.js b/packages/material-ui-icons/src/PhonelinkEraseSharp.js new file mode 100644 index 00000000000000..89589ca06b54b7 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkEraseSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkEraseSharp'); diff --git a/packages/material-ui-icons/src/PhonelinkEraseTwoTone.js b/packages/material-ui-icons/src/PhonelinkEraseTwoTone.js new file mode 100644 index 00000000000000..9d5be4411247d1 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkEraseTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkEraseTwoTone'); diff --git a/packages/material-ui-icons/src/PhonelinkLockOutlined.js b/packages/material-ui-icons/src/PhonelinkLockOutlined.js new file mode 100644 index 00000000000000..f864b286e2469f --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkLockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkLockOutlined'); diff --git a/packages/material-ui-icons/src/PhonelinkLockRounded.js b/packages/material-ui-icons/src/PhonelinkLockRounded.js new file mode 100644 index 00000000000000..b2ef66e6f0eb47 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkLockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkLockRounded'); diff --git a/packages/material-ui-icons/src/PhonelinkLockSharp.js b/packages/material-ui-icons/src/PhonelinkLockSharp.js new file mode 100644 index 00000000000000..bb00d5cf2a91e6 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkLockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkLockSharp'); diff --git a/packages/material-ui-icons/src/PhonelinkLockTwoTone.js b/packages/material-ui-icons/src/PhonelinkLockTwoTone.js new file mode 100644 index 00000000000000..61d087a7a8f0a4 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkLockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkLockTwoTone'); diff --git a/packages/material-ui-icons/src/PhonelinkOffOutlined.js b/packages/material-ui-icons/src/PhonelinkOffOutlined.js new file mode 100644 index 00000000000000..3dfb1476fbc695 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkOffOutlined'); diff --git a/packages/material-ui-icons/src/PhonelinkOffRounded.js b/packages/material-ui-icons/src/PhonelinkOffRounded.js new file mode 100644 index 00000000000000..92ca39438b352b --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkOffRounded'); diff --git a/packages/material-ui-icons/src/PhonelinkOffSharp.js b/packages/material-ui-icons/src/PhonelinkOffSharp.js new file mode 100644 index 00000000000000..1ebf985dad1f4b --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkOffSharp'); diff --git a/packages/material-ui-icons/src/PhonelinkOffTwoTone.js b/packages/material-ui-icons/src/PhonelinkOffTwoTone.js new file mode 100644 index 00000000000000..08de3d42d361cc --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkOffTwoTone'); diff --git a/packages/material-ui-icons/src/PhonelinkOutlined.js b/packages/material-ui-icons/src/PhonelinkOutlined.js new file mode 100644 index 00000000000000..2842d350396c6d --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkOutlined'); diff --git a/packages/material-ui-icons/src/PhonelinkRingOutlined.js b/packages/material-ui-icons/src/PhonelinkRingOutlined.js new file mode 100644 index 00000000000000..da9114f3dc4d6b --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkRingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkRingOutlined'); diff --git a/packages/material-ui-icons/src/PhonelinkRingRounded.js b/packages/material-ui-icons/src/PhonelinkRingRounded.js new file mode 100644 index 00000000000000..e9afc7191f17d0 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkRingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkRingRounded'); diff --git a/packages/material-ui-icons/src/PhonelinkRingSharp.js b/packages/material-ui-icons/src/PhonelinkRingSharp.js new file mode 100644 index 00000000000000..b772857ed35c94 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkRingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkRingSharp'); diff --git a/packages/material-ui-icons/src/PhonelinkRingTwoTone.js b/packages/material-ui-icons/src/PhonelinkRingTwoTone.js new file mode 100644 index 00000000000000..4a87e27597baa5 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkRingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkRingTwoTone'); diff --git a/packages/material-ui-icons/src/PhonelinkRounded.js b/packages/material-ui-icons/src/PhonelinkRounded.js new file mode 100644 index 00000000000000..5728becc36555c --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkRounded'); diff --git a/packages/material-ui-icons/src/PhonelinkSetup.js b/packages/material-ui-icons/src/PhonelinkSetup.js index e1021c61309255..977555ac1f568b 100644 --- a/packages/material-ui-icons/src/PhonelinkSetup.js +++ b/packages/material-ui-icons/src/PhonelinkSetup.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PhonelinkSetup'); diff --git a/packages/material-ui-icons/src/PhonelinkSetupOutlined.js b/packages/material-ui-icons/src/PhonelinkSetupOutlined.js new file mode 100644 index 00000000000000..de932bffb80322 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkSetupOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkSetupOutlined'); diff --git a/packages/material-ui-icons/src/PhonelinkSetupRounded.js b/packages/material-ui-icons/src/PhonelinkSetupRounded.js new file mode 100644 index 00000000000000..c67a8820fb354c --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkSetupRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkSetupRounded'); diff --git a/packages/material-ui-icons/src/PhonelinkSetupSharp.js b/packages/material-ui-icons/src/PhonelinkSetupSharp.js new file mode 100644 index 00000000000000..a32c7f144b7748 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkSetupSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkSetupSharp'); diff --git a/packages/material-ui-icons/src/PhonelinkSetupTwoTone.js b/packages/material-ui-icons/src/PhonelinkSetupTwoTone.js new file mode 100644 index 00000000000000..44f0b02954e7cc --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkSetupTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkSetupTwoTone'); diff --git a/packages/material-ui-icons/src/PhonelinkSharp.js b/packages/material-ui-icons/src/PhonelinkSharp.js new file mode 100644 index 00000000000000..0f2fec5527e95d --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkSharp'); diff --git a/packages/material-ui-icons/src/PhonelinkTwoTone.js b/packages/material-ui-icons/src/PhonelinkTwoTone.js new file mode 100644 index 00000000000000..954cdebe640951 --- /dev/null +++ b/packages/material-ui-icons/src/PhonelinkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhonelinkTwoTone'); diff --git a/packages/material-ui-icons/src/PhotoAlbumOutlined.js b/packages/material-ui-icons/src/PhotoAlbumOutlined.js new file mode 100644 index 00000000000000..81f83a065d041d --- /dev/null +++ b/packages/material-ui-icons/src/PhotoAlbumOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoAlbumOutlined'); diff --git a/packages/material-ui-icons/src/PhotoAlbumRounded.js b/packages/material-ui-icons/src/PhotoAlbumRounded.js new file mode 100644 index 00000000000000..f28d32ae1daca5 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoAlbumRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoAlbumRounded'); diff --git a/packages/material-ui-icons/src/PhotoAlbumSharp.js b/packages/material-ui-icons/src/PhotoAlbumSharp.js new file mode 100644 index 00000000000000..e0768417e25cf5 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoAlbumSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoAlbumSharp'); diff --git a/packages/material-ui-icons/src/PhotoAlbumTwoTone.js b/packages/material-ui-icons/src/PhotoAlbumTwoTone.js new file mode 100644 index 00000000000000..5c18a5b60afacf --- /dev/null +++ b/packages/material-ui-icons/src/PhotoAlbumTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoAlbumTwoTone'); diff --git a/packages/material-ui-icons/src/PhotoCameraOutlined.js b/packages/material-ui-icons/src/PhotoCameraOutlined.js new file mode 100644 index 00000000000000..892751a21881d9 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoCameraOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoCameraOutlined'); diff --git a/packages/material-ui-icons/src/PhotoCameraRounded.js b/packages/material-ui-icons/src/PhotoCameraRounded.js new file mode 100644 index 00000000000000..9ebd000256b96b --- /dev/null +++ b/packages/material-ui-icons/src/PhotoCameraRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoCameraRounded'); diff --git a/packages/material-ui-icons/src/PhotoCameraSharp.js b/packages/material-ui-icons/src/PhotoCameraSharp.js new file mode 100644 index 00000000000000..d85982a79779ec --- /dev/null +++ b/packages/material-ui-icons/src/PhotoCameraSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoCameraSharp'); diff --git a/packages/material-ui-icons/src/PhotoCameraTwoTone.js b/packages/material-ui-icons/src/PhotoCameraTwoTone.js new file mode 100644 index 00000000000000..e00502ecbcec40 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoCameraTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoCameraTwoTone'); diff --git a/packages/material-ui-icons/src/PhotoFilterOutlined.js b/packages/material-ui-icons/src/PhotoFilterOutlined.js new file mode 100644 index 00000000000000..ca2306bdc439f1 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoFilterOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoFilterOutlined'); diff --git a/packages/material-ui-icons/src/PhotoFilterRounded.js b/packages/material-ui-icons/src/PhotoFilterRounded.js new file mode 100644 index 00000000000000..1917531a3ac907 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoFilterRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoFilterRounded'); diff --git a/packages/material-ui-icons/src/PhotoFilterSharp.js b/packages/material-ui-icons/src/PhotoFilterSharp.js new file mode 100644 index 00000000000000..0b3f889d47733c --- /dev/null +++ b/packages/material-ui-icons/src/PhotoFilterSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoFilterSharp'); diff --git a/packages/material-ui-icons/src/PhotoFilterTwoTone.js b/packages/material-ui-icons/src/PhotoFilterTwoTone.js new file mode 100644 index 00000000000000..463ffcad01f4b3 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoFilterTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoFilterTwoTone'); diff --git a/packages/material-ui-icons/src/PhotoLibraryOutlined.js b/packages/material-ui-icons/src/PhotoLibraryOutlined.js new file mode 100644 index 00000000000000..9a4c7e88ff87f3 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoLibraryOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoLibraryOutlined'); diff --git a/packages/material-ui-icons/src/PhotoLibraryRounded.js b/packages/material-ui-icons/src/PhotoLibraryRounded.js new file mode 100644 index 00000000000000..173e2c78eeb113 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoLibraryRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoLibraryRounded'); diff --git a/packages/material-ui-icons/src/PhotoLibrarySharp.js b/packages/material-ui-icons/src/PhotoLibrarySharp.js new file mode 100644 index 00000000000000..65a6050fb8b99c --- /dev/null +++ b/packages/material-ui-icons/src/PhotoLibrarySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoLibrarySharp'); diff --git a/packages/material-ui-icons/src/PhotoLibraryTwoTone.js b/packages/material-ui-icons/src/PhotoLibraryTwoTone.js new file mode 100644 index 00000000000000..66b6e1375c9993 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoLibraryTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoLibraryTwoTone'); diff --git a/packages/material-ui-icons/src/PhotoOutlined.js b/packages/material-ui-icons/src/PhotoOutlined.js new file mode 100644 index 00000000000000..6e5307371785f1 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoOutlined'); diff --git a/packages/material-ui-icons/src/PhotoRounded.js b/packages/material-ui-icons/src/PhotoRounded.js new file mode 100644 index 00000000000000..f5bdd25c3df4a2 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoRounded'); diff --git a/packages/material-ui-icons/src/PhotoSharp.js b/packages/material-ui-icons/src/PhotoSharp.js new file mode 100644 index 00000000000000..497f2044a4f749 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSharp'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectActualOutlined.js b/packages/material-ui-icons/src/PhotoSizeSelectActualOutlined.js new file mode 100644 index 00000000000000..0348e091b712aa --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectActualOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectActualOutlined'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectActualRounded.js b/packages/material-ui-icons/src/PhotoSizeSelectActualRounded.js new file mode 100644 index 00000000000000..bd5dda87fdd682 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectActualRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectActualRounded'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectActualSharp.js b/packages/material-ui-icons/src/PhotoSizeSelectActualSharp.js new file mode 100644 index 00000000000000..a92d1289f1d9a4 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectActualSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectActualSharp'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectActualTwoTone.js b/packages/material-ui-icons/src/PhotoSizeSelectActualTwoTone.js new file mode 100644 index 00000000000000..10e584123c2fa0 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectActualTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectActualTwoTone'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectLargeOutlined.js b/packages/material-ui-icons/src/PhotoSizeSelectLargeOutlined.js new file mode 100644 index 00000000000000..bb472590ea2fbb --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectLargeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectLargeOutlined'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectLargeRounded.js b/packages/material-ui-icons/src/PhotoSizeSelectLargeRounded.js new file mode 100644 index 00000000000000..26f99cf4bad2a3 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectLargeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectLargeRounded'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectLargeSharp.js b/packages/material-ui-icons/src/PhotoSizeSelectLargeSharp.js new file mode 100644 index 00000000000000..9ace8a476fb72e --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectLargeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectLargeSharp'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectLargeTwoTone.js b/packages/material-ui-icons/src/PhotoSizeSelectLargeTwoTone.js new file mode 100644 index 00000000000000..18f94745ec22aa --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectLargeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectLargeTwoTone'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectSmallOutlined.js b/packages/material-ui-icons/src/PhotoSizeSelectSmallOutlined.js new file mode 100644 index 00000000000000..80c16eb9123739 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectSmallOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectSmallOutlined'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectSmallRounded.js b/packages/material-ui-icons/src/PhotoSizeSelectSmallRounded.js new file mode 100644 index 00000000000000..81fa7f18ed6f5f --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectSmallRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectSmallRounded'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectSmallSharp.js b/packages/material-ui-icons/src/PhotoSizeSelectSmallSharp.js new file mode 100644 index 00000000000000..ac6ea4b5031619 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectSmallSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectSmallSharp'); diff --git a/packages/material-ui-icons/src/PhotoSizeSelectSmallTwoTone.js b/packages/material-ui-icons/src/PhotoSizeSelectSmallTwoTone.js new file mode 100644 index 00000000000000..7f06a7fabf7be4 --- /dev/null +++ b/packages/material-ui-icons/src/PhotoSizeSelectSmallTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoSizeSelectSmallTwoTone'); diff --git a/packages/material-ui-icons/src/PhotoTwoTone.js b/packages/material-ui-icons/src/PhotoTwoTone.js new file mode 100644 index 00000000000000..42a403502f60ce --- /dev/null +++ b/packages/material-ui-icons/src/PhotoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PhotoTwoTone'); diff --git a/packages/material-ui-icons/src/PictureAsPdfOutlined.js b/packages/material-ui-icons/src/PictureAsPdfOutlined.js new file mode 100644 index 00000000000000..a4651ef8b50e92 --- /dev/null +++ b/packages/material-ui-icons/src/PictureAsPdfOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureAsPdfOutlined'); diff --git a/packages/material-ui-icons/src/PictureAsPdfRounded.js b/packages/material-ui-icons/src/PictureAsPdfRounded.js new file mode 100644 index 00000000000000..e9c92b7435cc53 --- /dev/null +++ b/packages/material-ui-icons/src/PictureAsPdfRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureAsPdfRounded'); diff --git a/packages/material-ui-icons/src/PictureAsPdfSharp.js b/packages/material-ui-icons/src/PictureAsPdfSharp.js new file mode 100644 index 00000000000000..00504509c08fdc --- /dev/null +++ b/packages/material-ui-icons/src/PictureAsPdfSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureAsPdfSharp'); diff --git a/packages/material-ui-icons/src/PictureAsPdfTwoTone.js b/packages/material-ui-icons/src/PictureAsPdfTwoTone.js new file mode 100644 index 00000000000000..40dee51753a0c2 --- /dev/null +++ b/packages/material-ui-icons/src/PictureAsPdfTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureAsPdfTwoTone'); diff --git a/packages/material-ui-icons/src/PictureInPictureAltOutlined.js b/packages/material-ui-icons/src/PictureInPictureAltOutlined.js new file mode 100644 index 00000000000000..601622463088c4 --- /dev/null +++ b/packages/material-ui-icons/src/PictureInPictureAltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureInPictureAltOutlined'); diff --git a/packages/material-ui-icons/src/PictureInPictureAltRounded.js b/packages/material-ui-icons/src/PictureInPictureAltRounded.js new file mode 100644 index 00000000000000..dfd4bad9e74f90 --- /dev/null +++ b/packages/material-ui-icons/src/PictureInPictureAltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureInPictureAltRounded'); diff --git a/packages/material-ui-icons/src/PictureInPictureAltSharp.js b/packages/material-ui-icons/src/PictureInPictureAltSharp.js new file mode 100644 index 00000000000000..d74fdf3fb42b67 --- /dev/null +++ b/packages/material-ui-icons/src/PictureInPictureAltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureInPictureAltSharp'); diff --git a/packages/material-ui-icons/src/PictureInPictureAltTwoTone.js b/packages/material-ui-icons/src/PictureInPictureAltTwoTone.js new file mode 100644 index 00000000000000..797f7ebb662f77 --- /dev/null +++ b/packages/material-ui-icons/src/PictureInPictureAltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureInPictureAltTwoTone'); diff --git a/packages/material-ui-icons/src/PictureInPictureOutlined.js b/packages/material-ui-icons/src/PictureInPictureOutlined.js new file mode 100644 index 00000000000000..7dc491d2367024 --- /dev/null +++ b/packages/material-ui-icons/src/PictureInPictureOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureInPictureOutlined'); diff --git a/packages/material-ui-icons/src/PictureInPictureRounded.js b/packages/material-ui-icons/src/PictureInPictureRounded.js new file mode 100644 index 00000000000000..2ecd3fc5bfbd9a --- /dev/null +++ b/packages/material-ui-icons/src/PictureInPictureRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureInPictureRounded'); diff --git a/packages/material-ui-icons/src/PictureInPictureSharp.js b/packages/material-ui-icons/src/PictureInPictureSharp.js new file mode 100644 index 00000000000000..7dafa63ae9093e --- /dev/null +++ b/packages/material-ui-icons/src/PictureInPictureSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureInPictureSharp'); diff --git a/packages/material-ui-icons/src/PictureInPictureTwoTone.js b/packages/material-ui-icons/src/PictureInPictureTwoTone.js new file mode 100644 index 00000000000000..393aaf4b7b0d4d --- /dev/null +++ b/packages/material-ui-icons/src/PictureInPictureTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PictureInPictureTwoTone'); diff --git a/packages/material-ui-icons/src/PieChartOutlined.js b/packages/material-ui-icons/src/PieChartOutlined.js index 33145bf795be86..954a0ebffc741e 100644 --- a/packages/material-ui-icons/src/PieChartOutlined.js +++ b/packages/material-ui-icons/src/PieChartOutlined.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PieChartOutlined'); diff --git a/packages/material-ui-icons/src/PieChartRounded.js b/packages/material-ui-icons/src/PieChartRounded.js new file mode 100644 index 00000000000000..26cf487ba17263 --- /dev/null +++ b/packages/material-ui-icons/src/PieChartRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PieChartRounded'); diff --git a/packages/material-ui-icons/src/PieChartSharp.js b/packages/material-ui-icons/src/PieChartSharp.js new file mode 100644 index 00000000000000..fb895aa97b9a2a --- /dev/null +++ b/packages/material-ui-icons/src/PieChartSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PieChartSharp'); diff --git a/packages/material-ui-icons/src/PieChartTwoTone.js b/packages/material-ui-icons/src/PieChartTwoTone.js new file mode 100644 index 00000000000000..c011456defefec --- /dev/null +++ b/packages/material-ui-icons/src/PieChartTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PieChartTwoTone'); diff --git a/packages/material-ui-icons/src/PinDrop.js b/packages/material-ui-icons/src/PinDrop.js index ee2acdd87a195b..f96226df03aa86 100644 --- a/packages/material-ui-icons/src/PinDrop.js +++ b/packages/material-ui-icons/src/PinDrop.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PinDrop'); diff --git a/packages/material-ui-icons/src/PinDropOutlined.js b/packages/material-ui-icons/src/PinDropOutlined.js new file mode 100644 index 00000000000000..310e3552dc0800 --- /dev/null +++ b/packages/material-ui-icons/src/PinDropOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PinDropOutlined'); diff --git a/packages/material-ui-icons/src/PinDropRounded.js b/packages/material-ui-icons/src/PinDropRounded.js new file mode 100644 index 00000000000000..7b14330598230e --- /dev/null +++ b/packages/material-ui-icons/src/PinDropRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PinDropRounded'); diff --git a/packages/material-ui-icons/src/PinDropSharp.js b/packages/material-ui-icons/src/PinDropSharp.js new file mode 100644 index 00000000000000..cf483256f2eeca --- /dev/null +++ b/packages/material-ui-icons/src/PinDropSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PinDropSharp'); diff --git a/packages/material-ui-icons/src/PinDropTwoTone.js b/packages/material-ui-icons/src/PinDropTwoTone.js new file mode 100644 index 00000000000000..00b17e91b3c512 --- /dev/null +++ b/packages/material-ui-icons/src/PinDropTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PinDropTwoTone'); diff --git a/packages/material-ui-icons/src/Place.js b/packages/material-ui-icons/src/Place.js index e9cfbb0ed94ce5..6bc22d36603b55 100644 --- a/packages/material-ui-icons/src/Place.js +++ b/packages/material-ui-icons/src/Place.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Place'); diff --git a/packages/material-ui-icons/src/PlaceOutlined.js b/packages/material-ui-icons/src/PlaceOutlined.js new file mode 100644 index 00000000000000..372b25a559d1c0 --- /dev/null +++ b/packages/material-ui-icons/src/PlaceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaceOutlined'); diff --git a/packages/material-ui-icons/src/PlaceRounded.js b/packages/material-ui-icons/src/PlaceRounded.js new file mode 100644 index 00000000000000..44357af71e1aee --- /dev/null +++ b/packages/material-ui-icons/src/PlaceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaceRounded'); diff --git a/packages/material-ui-icons/src/PlaceSharp.js b/packages/material-ui-icons/src/PlaceSharp.js new file mode 100644 index 00000000000000..ac47f5ec380633 --- /dev/null +++ b/packages/material-ui-icons/src/PlaceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaceSharp'); diff --git a/packages/material-ui-icons/src/PlaceTwoTone.js b/packages/material-ui-icons/src/PlaceTwoTone.js new file mode 100644 index 00000000000000..b6a7c69599d048 --- /dev/null +++ b/packages/material-ui-icons/src/PlaceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaceTwoTone'); diff --git a/packages/material-ui-icons/src/PlayArrowOutlined.js b/packages/material-ui-icons/src/PlayArrowOutlined.js new file mode 100644 index 00000000000000..45faadc748b7b4 --- /dev/null +++ b/packages/material-ui-icons/src/PlayArrowOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayArrowOutlined'); diff --git a/packages/material-ui-icons/src/PlayArrowRounded.js b/packages/material-ui-icons/src/PlayArrowRounded.js new file mode 100644 index 00000000000000..899d31b5acc4bd --- /dev/null +++ b/packages/material-ui-icons/src/PlayArrowRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayArrowRounded'); diff --git a/packages/material-ui-icons/src/PlayArrowSharp.js b/packages/material-ui-icons/src/PlayArrowSharp.js new file mode 100644 index 00000000000000..81a61586ac7f56 --- /dev/null +++ b/packages/material-ui-icons/src/PlayArrowSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayArrowSharp'); diff --git a/packages/material-ui-icons/src/PlayArrowTwoTone.js b/packages/material-ui-icons/src/PlayArrowTwoTone.js new file mode 100644 index 00000000000000..6273b15cc24392 --- /dev/null +++ b/packages/material-ui-icons/src/PlayArrowTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayArrowTwoTone'); diff --git a/packages/material-ui-icons/src/PlayCircleFilledOutlined.js b/packages/material-ui-icons/src/PlayCircleFilledOutlined.js new file mode 100644 index 00000000000000..28d2c628c1a642 --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleFilledOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleFilledOutlined'); diff --git a/packages/material-ui-icons/src/PlayCircleFilledRounded.js b/packages/material-ui-icons/src/PlayCircleFilledRounded.js new file mode 100644 index 00000000000000..7071f9f12fcdcb --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleFilledRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleFilledRounded'); diff --git a/packages/material-ui-icons/src/PlayCircleFilledSharp.js b/packages/material-ui-icons/src/PlayCircleFilledSharp.js new file mode 100644 index 00000000000000..2348ce53c91735 --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleFilledSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleFilledSharp'); diff --git a/packages/material-ui-icons/src/PlayCircleFilledTwoTone.js b/packages/material-ui-icons/src/PlayCircleFilledTwoTone.js new file mode 100644 index 00000000000000..d38c0f4fb5e000 --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleFilledTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleFilledTwoTone'); diff --git a/packages/material-ui-icons/src/PlayCircleFilledWhiteOutlined.js b/packages/material-ui-icons/src/PlayCircleFilledWhiteOutlined.js new file mode 100644 index 00000000000000..81b4f2807891d1 --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleFilledWhiteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleFilledWhiteOutlined'); diff --git a/packages/material-ui-icons/src/PlayCircleFilledWhiteRounded.js b/packages/material-ui-icons/src/PlayCircleFilledWhiteRounded.js new file mode 100644 index 00000000000000..c9f75852c44ce3 --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleFilledWhiteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleFilledWhiteRounded'); diff --git a/packages/material-ui-icons/src/PlayCircleFilledWhiteSharp.js b/packages/material-ui-icons/src/PlayCircleFilledWhiteSharp.js new file mode 100644 index 00000000000000..d6314bb8f4ecf3 --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleFilledWhiteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleFilledWhiteSharp'); diff --git a/packages/material-ui-icons/src/PlayCircleFilledWhiteTwoTone.js b/packages/material-ui-icons/src/PlayCircleFilledWhiteTwoTone.js new file mode 100644 index 00000000000000..5ccf6543d86310 --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleFilledWhiteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleFilledWhiteTwoTone'); diff --git a/packages/material-ui-icons/src/PlayCircleOutlineOutlined.js b/packages/material-ui-icons/src/PlayCircleOutlineOutlined.js new file mode 100644 index 00000000000000..5e0e47dfed04be --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleOutlineOutlined'); diff --git a/packages/material-ui-icons/src/PlayCircleOutlineRounded.js b/packages/material-ui-icons/src/PlayCircleOutlineRounded.js new file mode 100644 index 00000000000000..3131bf3449979a --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleOutlineRounded'); diff --git a/packages/material-ui-icons/src/PlayCircleOutlineSharp.js b/packages/material-ui-icons/src/PlayCircleOutlineSharp.js new file mode 100644 index 00000000000000..6339c88547fc1b --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleOutlineSharp'); diff --git a/packages/material-ui-icons/src/PlayCircleOutlineTwoTone.js b/packages/material-ui-icons/src/PlayCircleOutlineTwoTone.js new file mode 100644 index 00000000000000..bad2ecdff29546 --- /dev/null +++ b/packages/material-ui-icons/src/PlayCircleOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayCircleOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/PlayForWorkOutlined.js b/packages/material-ui-icons/src/PlayForWorkOutlined.js new file mode 100644 index 00000000000000..fd94713764e5c3 --- /dev/null +++ b/packages/material-ui-icons/src/PlayForWorkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayForWorkOutlined'); diff --git a/packages/material-ui-icons/src/PlayForWorkRounded.js b/packages/material-ui-icons/src/PlayForWorkRounded.js new file mode 100644 index 00000000000000..afae54ec63fe45 --- /dev/null +++ b/packages/material-ui-icons/src/PlayForWorkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayForWorkRounded'); diff --git a/packages/material-ui-icons/src/PlayForWorkSharp.js b/packages/material-ui-icons/src/PlayForWorkSharp.js new file mode 100644 index 00000000000000..ed7a9465977653 --- /dev/null +++ b/packages/material-ui-icons/src/PlayForWorkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayForWorkSharp'); diff --git a/packages/material-ui-icons/src/PlayForWorkTwoTone.js b/packages/material-ui-icons/src/PlayForWorkTwoTone.js new file mode 100644 index 00000000000000..de402556877543 --- /dev/null +++ b/packages/material-ui-icons/src/PlayForWorkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlayForWorkTwoTone'); diff --git a/packages/material-ui-icons/src/PlaylistAddCheck.js b/packages/material-ui-icons/src/PlaylistAddCheck.js index f129ef4e900091..df372ec798f739 100644 --- a/packages/material-ui-icons/src/PlaylistAddCheck.js +++ b/packages/material-ui-icons/src/PlaylistAddCheck.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PlaylistAddCheck'); diff --git a/packages/material-ui-icons/src/PlaylistAddCheckOutlined.js b/packages/material-ui-icons/src/PlaylistAddCheckOutlined.js new file mode 100644 index 00000000000000..83d9d395bdd269 --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistAddCheckOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistAddCheckOutlined'); diff --git a/packages/material-ui-icons/src/PlaylistAddCheckRounded.js b/packages/material-ui-icons/src/PlaylistAddCheckRounded.js new file mode 100644 index 00000000000000..dab5b637173477 --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistAddCheckRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistAddCheckRounded'); diff --git a/packages/material-ui-icons/src/PlaylistAddCheckSharp.js b/packages/material-ui-icons/src/PlaylistAddCheckSharp.js new file mode 100644 index 00000000000000..b65aa76e0f2899 --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistAddCheckSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistAddCheckSharp'); diff --git a/packages/material-ui-icons/src/PlaylistAddCheckTwoTone.js b/packages/material-ui-icons/src/PlaylistAddCheckTwoTone.js new file mode 100644 index 00000000000000..a2d2871aeda68f --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistAddCheckTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistAddCheckTwoTone'); diff --git a/packages/material-ui-icons/src/PlaylistAddOutlined.js b/packages/material-ui-icons/src/PlaylistAddOutlined.js new file mode 100644 index 00000000000000..a7f932b8a72be7 --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistAddOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistAddOutlined'); diff --git a/packages/material-ui-icons/src/PlaylistAddRounded.js b/packages/material-ui-icons/src/PlaylistAddRounded.js new file mode 100644 index 00000000000000..b3c771cd2be488 --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistAddRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistAddRounded'); diff --git a/packages/material-ui-icons/src/PlaylistAddSharp.js b/packages/material-ui-icons/src/PlaylistAddSharp.js new file mode 100644 index 00000000000000..6ef4c2a0b79970 --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistAddSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistAddSharp'); diff --git a/packages/material-ui-icons/src/PlaylistAddTwoTone.js b/packages/material-ui-icons/src/PlaylistAddTwoTone.js new file mode 100644 index 00000000000000..dac4f90968a336 --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistAddTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistAddTwoTone'); diff --git a/packages/material-ui-icons/src/PlaylistPlay.js b/packages/material-ui-icons/src/PlaylistPlay.js index 05e27c95a27173..ab47ac9b6a7151 100644 --- a/packages/material-ui-icons/src/PlaylistPlay.js +++ b/packages/material-ui-icons/src/PlaylistPlay.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PlaylistPlay'); diff --git a/packages/material-ui-icons/src/PlaylistPlayOutlined.js b/packages/material-ui-icons/src/PlaylistPlayOutlined.js new file mode 100644 index 00000000000000..9d27f631193fd4 --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistPlayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistPlayOutlined'); diff --git a/packages/material-ui-icons/src/PlaylistPlayRounded.js b/packages/material-ui-icons/src/PlaylistPlayRounded.js new file mode 100644 index 00000000000000..3eac1a37d716bd --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistPlayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistPlayRounded'); diff --git a/packages/material-ui-icons/src/PlaylistPlaySharp.js b/packages/material-ui-icons/src/PlaylistPlaySharp.js new file mode 100644 index 00000000000000..794b2ebb8d238a --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistPlaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistPlaySharp'); diff --git a/packages/material-ui-icons/src/PlaylistPlayTwoTone.js b/packages/material-ui-icons/src/PlaylistPlayTwoTone.js new file mode 100644 index 00000000000000..f340e84f687c64 --- /dev/null +++ b/packages/material-ui-icons/src/PlaylistPlayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlaylistPlayTwoTone'); diff --git a/packages/material-ui-icons/src/PlusOneOutlined.js b/packages/material-ui-icons/src/PlusOneOutlined.js new file mode 100644 index 00000000000000..7b04abf9dd1b18 --- /dev/null +++ b/packages/material-ui-icons/src/PlusOneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlusOneOutlined'); diff --git a/packages/material-ui-icons/src/PlusOneRounded.js b/packages/material-ui-icons/src/PlusOneRounded.js new file mode 100644 index 00000000000000..012b64cac38be3 --- /dev/null +++ b/packages/material-ui-icons/src/PlusOneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlusOneRounded'); diff --git a/packages/material-ui-icons/src/PlusOneSharp.js b/packages/material-ui-icons/src/PlusOneSharp.js new file mode 100644 index 00000000000000..85144166a15ed5 --- /dev/null +++ b/packages/material-ui-icons/src/PlusOneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlusOneSharp'); diff --git a/packages/material-ui-icons/src/PlusOneTwoTone.js b/packages/material-ui-icons/src/PlusOneTwoTone.js new file mode 100644 index 00000000000000..1c041f695c3571 --- /dev/null +++ b/packages/material-ui-icons/src/PlusOneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PlusOneTwoTone'); diff --git a/packages/material-ui-icons/src/PollOutlined.js b/packages/material-ui-icons/src/PollOutlined.js new file mode 100644 index 00000000000000..5d5d7ac568eb85 --- /dev/null +++ b/packages/material-ui-icons/src/PollOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PollOutlined'); diff --git a/packages/material-ui-icons/src/PollRounded.js b/packages/material-ui-icons/src/PollRounded.js new file mode 100644 index 00000000000000..69ab2e0f27fb8a --- /dev/null +++ b/packages/material-ui-icons/src/PollRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PollRounded'); diff --git a/packages/material-ui-icons/src/PollSharp.js b/packages/material-ui-icons/src/PollSharp.js new file mode 100644 index 00000000000000..794b699d23ce47 --- /dev/null +++ b/packages/material-ui-icons/src/PollSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PollSharp'); diff --git a/packages/material-ui-icons/src/PollTwoTone.js b/packages/material-ui-icons/src/PollTwoTone.js new file mode 100644 index 00000000000000..99e5136f5ea408 --- /dev/null +++ b/packages/material-ui-icons/src/PollTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PollTwoTone'); diff --git a/packages/material-ui-icons/src/PolymerOutlined.js b/packages/material-ui-icons/src/PolymerOutlined.js new file mode 100644 index 00000000000000..fc5e6118490fdd --- /dev/null +++ b/packages/material-ui-icons/src/PolymerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PolymerOutlined'); diff --git a/packages/material-ui-icons/src/PolymerRounded.js b/packages/material-ui-icons/src/PolymerRounded.js new file mode 100644 index 00000000000000..30779b83a48598 --- /dev/null +++ b/packages/material-ui-icons/src/PolymerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PolymerRounded'); diff --git a/packages/material-ui-icons/src/PolymerSharp.js b/packages/material-ui-icons/src/PolymerSharp.js new file mode 100644 index 00000000000000..31993135cef917 --- /dev/null +++ b/packages/material-ui-icons/src/PolymerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PolymerSharp'); diff --git a/packages/material-ui-icons/src/PolymerTwoTone.js b/packages/material-ui-icons/src/PolymerTwoTone.js new file mode 100644 index 00000000000000..73ed81d129936c --- /dev/null +++ b/packages/material-ui-icons/src/PolymerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PolymerTwoTone'); diff --git a/packages/material-ui-icons/src/PoolOutlined.js b/packages/material-ui-icons/src/PoolOutlined.js new file mode 100644 index 00000000000000..5242321dd4bad3 --- /dev/null +++ b/packages/material-ui-icons/src/PoolOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PoolOutlined'); diff --git a/packages/material-ui-icons/src/PoolRounded.js b/packages/material-ui-icons/src/PoolRounded.js new file mode 100644 index 00000000000000..e1713599c9a1c3 --- /dev/null +++ b/packages/material-ui-icons/src/PoolRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PoolRounded'); diff --git a/packages/material-ui-icons/src/PoolSharp.js b/packages/material-ui-icons/src/PoolSharp.js new file mode 100644 index 00000000000000..5c9bedefa6381d --- /dev/null +++ b/packages/material-ui-icons/src/PoolSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PoolSharp'); diff --git a/packages/material-ui-icons/src/PoolTwoTone.js b/packages/material-ui-icons/src/PoolTwoTone.js new file mode 100644 index 00000000000000..bf859f63c333d6 --- /dev/null +++ b/packages/material-ui-icons/src/PoolTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PoolTwoTone'); diff --git a/packages/material-ui-icons/src/PortableWifiOff.js b/packages/material-ui-icons/src/PortableWifiOff.js index 89092c7b710c15..7289044ddbdfed 100644 --- a/packages/material-ui-icons/src/PortableWifiOff.js +++ b/packages/material-ui-icons/src/PortableWifiOff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PortableWifiOff'); diff --git a/packages/material-ui-icons/src/PortableWifiOffOutlined.js b/packages/material-ui-icons/src/PortableWifiOffOutlined.js new file mode 100644 index 00000000000000..bf8c916fb76e26 --- /dev/null +++ b/packages/material-ui-icons/src/PortableWifiOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PortableWifiOffOutlined'); diff --git a/packages/material-ui-icons/src/PortableWifiOffRounded.js b/packages/material-ui-icons/src/PortableWifiOffRounded.js new file mode 100644 index 00000000000000..01cc3a44b4e667 --- /dev/null +++ b/packages/material-ui-icons/src/PortableWifiOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PortableWifiOffRounded'); diff --git a/packages/material-ui-icons/src/PortableWifiOffSharp.js b/packages/material-ui-icons/src/PortableWifiOffSharp.js new file mode 100644 index 00000000000000..f9c1b052daab99 --- /dev/null +++ b/packages/material-ui-icons/src/PortableWifiOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PortableWifiOffSharp'); diff --git a/packages/material-ui-icons/src/PortableWifiOffTwoTone.js b/packages/material-ui-icons/src/PortableWifiOffTwoTone.js new file mode 100644 index 00000000000000..c1466fbaa07e64 --- /dev/null +++ b/packages/material-ui-icons/src/PortableWifiOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PortableWifiOffTwoTone'); diff --git a/packages/material-ui-icons/src/PortraitOutlined.js b/packages/material-ui-icons/src/PortraitOutlined.js new file mode 100644 index 00000000000000..1dfd37f1940161 --- /dev/null +++ b/packages/material-ui-icons/src/PortraitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PortraitOutlined'); diff --git a/packages/material-ui-icons/src/PortraitRounded.js b/packages/material-ui-icons/src/PortraitRounded.js new file mode 100644 index 00000000000000..16fcbea01738fb --- /dev/null +++ b/packages/material-ui-icons/src/PortraitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PortraitRounded'); diff --git a/packages/material-ui-icons/src/PortraitSharp.js b/packages/material-ui-icons/src/PortraitSharp.js new file mode 100644 index 00000000000000..52e42c38d9f731 --- /dev/null +++ b/packages/material-ui-icons/src/PortraitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PortraitSharp'); diff --git a/packages/material-ui-icons/src/PortraitTwoTone.js b/packages/material-ui-icons/src/PortraitTwoTone.js new file mode 100644 index 00000000000000..173efcd6476cac --- /dev/null +++ b/packages/material-ui-icons/src/PortraitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PortraitTwoTone'); diff --git a/packages/material-ui-icons/src/PowerInputOutlined.js b/packages/material-ui-icons/src/PowerInputOutlined.js new file mode 100644 index 00000000000000..a03a4a8fc2e00c --- /dev/null +++ b/packages/material-ui-icons/src/PowerInputOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerInputOutlined'); diff --git a/packages/material-ui-icons/src/PowerInputRounded.js b/packages/material-ui-icons/src/PowerInputRounded.js new file mode 100644 index 00000000000000..b2ebc24e990a70 --- /dev/null +++ b/packages/material-ui-icons/src/PowerInputRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerInputRounded'); diff --git a/packages/material-ui-icons/src/PowerInputSharp.js b/packages/material-ui-icons/src/PowerInputSharp.js new file mode 100644 index 00000000000000..b7ee9c71d78817 --- /dev/null +++ b/packages/material-ui-icons/src/PowerInputSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerInputSharp'); diff --git a/packages/material-ui-icons/src/PowerInputTwoTone.js b/packages/material-ui-icons/src/PowerInputTwoTone.js new file mode 100644 index 00000000000000..b0ebfc89c14984 --- /dev/null +++ b/packages/material-ui-icons/src/PowerInputTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerInputTwoTone'); diff --git a/packages/material-ui-icons/src/PowerOff.js b/packages/material-ui-icons/src/PowerOff.js new file mode 100644 index 00000000000000..45f4334d6ca5a5 --- /dev/null +++ b/packages/material-ui-icons/src/PowerOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerOff'); diff --git a/packages/material-ui-icons/src/PowerOffOutlined.js b/packages/material-ui-icons/src/PowerOffOutlined.js new file mode 100644 index 00000000000000..08ae8d8130375a --- /dev/null +++ b/packages/material-ui-icons/src/PowerOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerOffOutlined'); diff --git a/packages/material-ui-icons/src/PowerOffRounded.js b/packages/material-ui-icons/src/PowerOffRounded.js new file mode 100644 index 00000000000000..e9037102338f72 --- /dev/null +++ b/packages/material-ui-icons/src/PowerOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerOffRounded'); diff --git a/packages/material-ui-icons/src/PowerOffSharp.js b/packages/material-ui-icons/src/PowerOffSharp.js new file mode 100644 index 00000000000000..84055b69d52d81 --- /dev/null +++ b/packages/material-ui-icons/src/PowerOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerOffSharp'); diff --git a/packages/material-ui-icons/src/PowerOffTwoTone.js b/packages/material-ui-icons/src/PowerOffTwoTone.js new file mode 100644 index 00000000000000..680dbd00b73b39 --- /dev/null +++ b/packages/material-ui-icons/src/PowerOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerOffTwoTone'); diff --git a/packages/material-ui-icons/src/PowerOutlined.js b/packages/material-ui-icons/src/PowerOutlined.js new file mode 100644 index 00000000000000..3c2752c8cc2197 --- /dev/null +++ b/packages/material-ui-icons/src/PowerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerOutlined'); diff --git a/packages/material-ui-icons/src/PowerRounded.js b/packages/material-ui-icons/src/PowerRounded.js new file mode 100644 index 00000000000000..ea1c92ed45fc9e --- /dev/null +++ b/packages/material-ui-icons/src/PowerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerRounded'); diff --git a/packages/material-ui-icons/src/PowerSettingsNew.js b/packages/material-ui-icons/src/PowerSettingsNew.js index 0718bbef8a91ba..eaaa750c3f6ee2 100644 --- a/packages/material-ui-icons/src/PowerSettingsNew.js +++ b/packages/material-ui-icons/src/PowerSettingsNew.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PowerSettingsNew'); diff --git a/packages/material-ui-icons/src/PowerSettingsNewOutlined.js b/packages/material-ui-icons/src/PowerSettingsNewOutlined.js new file mode 100644 index 00000000000000..f1ee2af51ab06a --- /dev/null +++ b/packages/material-ui-icons/src/PowerSettingsNewOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerSettingsNewOutlined'); diff --git a/packages/material-ui-icons/src/PowerSettingsNewRounded.js b/packages/material-ui-icons/src/PowerSettingsNewRounded.js new file mode 100644 index 00000000000000..a50e828bee1095 --- /dev/null +++ b/packages/material-ui-icons/src/PowerSettingsNewRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerSettingsNewRounded'); diff --git a/packages/material-ui-icons/src/PowerSettingsNewSharp.js b/packages/material-ui-icons/src/PowerSettingsNewSharp.js new file mode 100644 index 00000000000000..04f1fc7f133b5c --- /dev/null +++ b/packages/material-ui-icons/src/PowerSettingsNewSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerSettingsNewSharp'); diff --git a/packages/material-ui-icons/src/PowerSettingsNewTwoTone.js b/packages/material-ui-icons/src/PowerSettingsNewTwoTone.js new file mode 100644 index 00000000000000..30949779c4f7cc --- /dev/null +++ b/packages/material-ui-icons/src/PowerSettingsNewTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerSettingsNewTwoTone'); diff --git a/packages/material-ui-icons/src/PowerSharp.js b/packages/material-ui-icons/src/PowerSharp.js new file mode 100644 index 00000000000000..7f3b7ac5ccc548 --- /dev/null +++ b/packages/material-ui-icons/src/PowerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerSharp'); diff --git a/packages/material-ui-icons/src/PowerTwoTone.js b/packages/material-ui-icons/src/PowerTwoTone.js new file mode 100644 index 00000000000000..9beba1bd691c4c --- /dev/null +++ b/packages/material-ui-icons/src/PowerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PowerTwoTone'); diff --git a/packages/material-ui-icons/src/PregnantWoman.js b/packages/material-ui-icons/src/PregnantWoman.js index 75ba503e91d089..dd21976cf54f13 100644 --- a/packages/material-ui-icons/src/PregnantWoman.js +++ b/packages/material-ui-icons/src/PregnantWoman.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'PregnantWoman'); diff --git a/packages/material-ui-icons/src/PregnantWomanOutlined.js b/packages/material-ui-icons/src/PregnantWomanOutlined.js new file mode 100644 index 00000000000000..12aaf851593a7b --- /dev/null +++ b/packages/material-ui-icons/src/PregnantWomanOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PregnantWomanOutlined'); diff --git a/packages/material-ui-icons/src/PregnantWomanRounded.js b/packages/material-ui-icons/src/PregnantWomanRounded.js new file mode 100644 index 00000000000000..67b4a0947e9b26 --- /dev/null +++ b/packages/material-ui-icons/src/PregnantWomanRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PregnantWomanRounded'); diff --git a/packages/material-ui-icons/src/PregnantWomanSharp.js b/packages/material-ui-icons/src/PregnantWomanSharp.js new file mode 100644 index 00000000000000..343b3a8836d062 --- /dev/null +++ b/packages/material-ui-icons/src/PregnantWomanSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PregnantWomanSharp'); diff --git a/packages/material-ui-icons/src/PregnantWomanTwoTone.js b/packages/material-ui-icons/src/PregnantWomanTwoTone.js new file mode 100644 index 00000000000000..975fe6c744e894 --- /dev/null +++ b/packages/material-ui-icons/src/PregnantWomanTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PregnantWomanTwoTone'); diff --git a/packages/material-ui-icons/src/PresentToAllOutlined.js b/packages/material-ui-icons/src/PresentToAllOutlined.js new file mode 100644 index 00000000000000..cf0d6f3c438e2d --- /dev/null +++ b/packages/material-ui-icons/src/PresentToAllOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PresentToAllOutlined'); diff --git a/packages/material-ui-icons/src/PresentToAllRounded.js b/packages/material-ui-icons/src/PresentToAllRounded.js new file mode 100644 index 00000000000000..168fbdc9c87c83 --- /dev/null +++ b/packages/material-ui-icons/src/PresentToAllRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PresentToAllRounded'); diff --git a/packages/material-ui-icons/src/PresentToAllSharp.js b/packages/material-ui-icons/src/PresentToAllSharp.js new file mode 100644 index 00000000000000..88a9977e8bce4e --- /dev/null +++ b/packages/material-ui-icons/src/PresentToAllSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PresentToAllSharp'); diff --git a/packages/material-ui-icons/src/PresentToAllTwoTone.js b/packages/material-ui-icons/src/PresentToAllTwoTone.js new file mode 100644 index 00000000000000..488a4007db33ad --- /dev/null +++ b/packages/material-ui-icons/src/PresentToAllTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PresentToAllTwoTone'); diff --git a/packages/material-ui-icons/src/PrintDisabled.js b/packages/material-ui-icons/src/PrintDisabled.js new file mode 100644 index 00000000000000..5540b4801cbf19 --- /dev/null +++ b/packages/material-ui-icons/src/PrintDisabled.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PrintDisabled'); diff --git a/packages/material-ui-icons/src/PrintDisabledOutlined.js b/packages/material-ui-icons/src/PrintDisabledOutlined.js new file mode 100644 index 00000000000000..87c16a141fac6e --- /dev/null +++ b/packages/material-ui-icons/src/PrintDisabledOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PrintDisabledOutlined'); diff --git a/packages/material-ui-icons/src/PrintDisabledRounded.js b/packages/material-ui-icons/src/PrintDisabledRounded.js new file mode 100644 index 00000000000000..2bf9ed4e53f9a9 --- /dev/null +++ b/packages/material-ui-icons/src/PrintDisabledRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PrintDisabledRounded'); diff --git a/packages/material-ui-icons/src/PrintDisabledSharp.js b/packages/material-ui-icons/src/PrintDisabledSharp.js new file mode 100644 index 00000000000000..7ebb559d125cd2 --- /dev/null +++ b/packages/material-ui-icons/src/PrintDisabledSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PrintDisabledSharp'); diff --git a/packages/material-ui-icons/src/PrintDisabledTwoTone.js b/packages/material-ui-icons/src/PrintDisabledTwoTone.js new file mode 100644 index 00000000000000..fc71b83cb23fe7 --- /dev/null +++ b/packages/material-ui-icons/src/PrintDisabledTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PrintDisabledTwoTone'); diff --git a/packages/material-ui-icons/src/PrintOutlined.js b/packages/material-ui-icons/src/PrintOutlined.js new file mode 100644 index 00000000000000..5d89660d84f2bb --- /dev/null +++ b/packages/material-ui-icons/src/PrintOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PrintOutlined'); diff --git a/packages/material-ui-icons/src/PrintRounded.js b/packages/material-ui-icons/src/PrintRounded.js new file mode 100644 index 00000000000000..37e3912a4a78d1 --- /dev/null +++ b/packages/material-ui-icons/src/PrintRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PrintRounded'); diff --git a/packages/material-ui-icons/src/PrintSharp.js b/packages/material-ui-icons/src/PrintSharp.js new file mode 100644 index 00000000000000..e9a2b66ceb7c5f --- /dev/null +++ b/packages/material-ui-icons/src/PrintSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PrintSharp'); diff --git a/packages/material-ui-icons/src/PrintTwoTone.js b/packages/material-ui-icons/src/PrintTwoTone.js new file mode 100644 index 00000000000000..6cdf3d66edbbde --- /dev/null +++ b/packages/material-ui-icons/src/PrintTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PrintTwoTone'); diff --git a/packages/material-ui-icons/src/PriorityHighOutlined.js b/packages/material-ui-icons/src/PriorityHighOutlined.js new file mode 100644 index 00000000000000..e0f6f69beda511 --- /dev/null +++ b/packages/material-ui-icons/src/PriorityHighOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PriorityHighOutlined'); diff --git a/packages/material-ui-icons/src/PriorityHighRounded.js b/packages/material-ui-icons/src/PriorityHighRounded.js new file mode 100644 index 00000000000000..cffc60162008da --- /dev/null +++ b/packages/material-ui-icons/src/PriorityHighRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PriorityHighRounded'); diff --git a/packages/material-ui-icons/src/PriorityHighSharp.js b/packages/material-ui-icons/src/PriorityHighSharp.js new file mode 100644 index 00000000000000..0f01fde3784f43 --- /dev/null +++ b/packages/material-ui-icons/src/PriorityHighSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PriorityHighSharp'); diff --git a/packages/material-ui-icons/src/PriorityHighTwoTone.js b/packages/material-ui-icons/src/PriorityHighTwoTone.js new file mode 100644 index 00000000000000..37ce9450809903 --- /dev/null +++ b/packages/material-ui-icons/src/PriorityHighTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PriorityHighTwoTone'); diff --git a/packages/material-ui-icons/src/PublicOutlined.js b/packages/material-ui-icons/src/PublicOutlined.js new file mode 100644 index 00000000000000..0edd40e5863ade --- /dev/null +++ b/packages/material-ui-icons/src/PublicOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PublicOutlined'); diff --git a/packages/material-ui-icons/src/PublicRounded.js b/packages/material-ui-icons/src/PublicRounded.js new file mode 100644 index 00000000000000..ba9bd323628c34 --- /dev/null +++ b/packages/material-ui-icons/src/PublicRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PublicRounded'); diff --git a/packages/material-ui-icons/src/PublicSharp.js b/packages/material-ui-icons/src/PublicSharp.js new file mode 100644 index 00000000000000..3d93c248317486 --- /dev/null +++ b/packages/material-ui-icons/src/PublicSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PublicSharp'); diff --git a/packages/material-ui-icons/src/PublicTwoTone.js b/packages/material-ui-icons/src/PublicTwoTone.js new file mode 100644 index 00000000000000..eaebd128395277 --- /dev/null +++ b/packages/material-ui-icons/src/PublicTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PublicTwoTone'); diff --git a/packages/material-ui-icons/src/PublishOutlined.js b/packages/material-ui-icons/src/PublishOutlined.js new file mode 100644 index 00000000000000..e82fb99af4e5bd --- /dev/null +++ b/packages/material-ui-icons/src/PublishOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PublishOutlined'); diff --git a/packages/material-ui-icons/src/PublishRounded.js b/packages/material-ui-icons/src/PublishRounded.js new file mode 100644 index 00000000000000..53b6f29d0a3b98 --- /dev/null +++ b/packages/material-ui-icons/src/PublishRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PublishRounded'); diff --git a/packages/material-ui-icons/src/PublishSharp.js b/packages/material-ui-icons/src/PublishSharp.js new file mode 100644 index 00000000000000..2339fbb4a90608 --- /dev/null +++ b/packages/material-ui-icons/src/PublishSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PublishSharp'); diff --git a/packages/material-ui-icons/src/PublishTwoTone.js b/packages/material-ui-icons/src/PublishTwoTone.js new file mode 100644 index 00000000000000..0f1532940661cd --- /dev/null +++ b/packages/material-ui-icons/src/PublishTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'PublishTwoTone'); diff --git a/packages/material-ui-icons/src/QueryBuilder.js b/packages/material-ui-icons/src/QueryBuilder.js index 8282109523c339..713a71a8198a1d 100644 --- a/packages/material-ui-icons/src/QueryBuilder.js +++ b/packages/material-ui-icons/src/QueryBuilder.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'QueryBuilder'); diff --git a/packages/material-ui-icons/src/QueryBuilderOutlined.js b/packages/material-ui-icons/src/QueryBuilderOutlined.js new file mode 100644 index 00000000000000..8be5c6799104de --- /dev/null +++ b/packages/material-ui-icons/src/QueryBuilderOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueryBuilderOutlined'); diff --git a/packages/material-ui-icons/src/QueryBuilderRounded.js b/packages/material-ui-icons/src/QueryBuilderRounded.js new file mode 100644 index 00000000000000..ca6c4c590dbb6b --- /dev/null +++ b/packages/material-ui-icons/src/QueryBuilderRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueryBuilderRounded'); diff --git a/packages/material-ui-icons/src/QueryBuilderSharp.js b/packages/material-ui-icons/src/QueryBuilderSharp.js new file mode 100644 index 00000000000000..92cf51776217b1 --- /dev/null +++ b/packages/material-ui-icons/src/QueryBuilderSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueryBuilderSharp'); diff --git a/packages/material-ui-icons/src/QueryBuilderTwoTone.js b/packages/material-ui-icons/src/QueryBuilderTwoTone.js new file mode 100644 index 00000000000000..e9f2d5137fc81e --- /dev/null +++ b/packages/material-ui-icons/src/QueryBuilderTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueryBuilderTwoTone'); diff --git a/packages/material-ui-icons/src/QuestionAnswerOutlined.js b/packages/material-ui-icons/src/QuestionAnswerOutlined.js new file mode 100644 index 00000000000000..a002c39cace323 --- /dev/null +++ b/packages/material-ui-icons/src/QuestionAnswerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QuestionAnswerOutlined'); diff --git a/packages/material-ui-icons/src/QuestionAnswerRounded.js b/packages/material-ui-icons/src/QuestionAnswerRounded.js new file mode 100644 index 00000000000000..75f419197492ff --- /dev/null +++ b/packages/material-ui-icons/src/QuestionAnswerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QuestionAnswerRounded'); diff --git a/packages/material-ui-icons/src/QuestionAnswerSharp.js b/packages/material-ui-icons/src/QuestionAnswerSharp.js new file mode 100644 index 00000000000000..1bc6991560e5e8 --- /dev/null +++ b/packages/material-ui-icons/src/QuestionAnswerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QuestionAnswerSharp'); diff --git a/packages/material-ui-icons/src/QuestionAnswerTwoTone.js b/packages/material-ui-icons/src/QuestionAnswerTwoTone.js new file mode 100644 index 00000000000000..16e546aaabef70 --- /dev/null +++ b/packages/material-ui-icons/src/QuestionAnswerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QuestionAnswerTwoTone'); diff --git a/packages/material-ui-icons/src/QueueMusicOutlined.js b/packages/material-ui-icons/src/QueueMusicOutlined.js new file mode 100644 index 00000000000000..123e5dedd67503 --- /dev/null +++ b/packages/material-ui-icons/src/QueueMusicOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueueMusicOutlined'); diff --git a/packages/material-ui-icons/src/QueueMusicRounded.js b/packages/material-ui-icons/src/QueueMusicRounded.js new file mode 100644 index 00000000000000..dd3352b8a91994 --- /dev/null +++ b/packages/material-ui-icons/src/QueueMusicRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueueMusicRounded'); diff --git a/packages/material-ui-icons/src/QueueMusicSharp.js b/packages/material-ui-icons/src/QueueMusicSharp.js new file mode 100644 index 00000000000000..584d45d2bbbc7f --- /dev/null +++ b/packages/material-ui-icons/src/QueueMusicSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueueMusicSharp'); diff --git a/packages/material-ui-icons/src/QueueMusicTwoTone.js b/packages/material-ui-icons/src/QueueMusicTwoTone.js new file mode 100644 index 00000000000000..9732c9132c5727 --- /dev/null +++ b/packages/material-ui-icons/src/QueueMusicTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueueMusicTwoTone'); diff --git a/packages/material-ui-icons/src/QueueOutlined.js b/packages/material-ui-icons/src/QueueOutlined.js new file mode 100644 index 00000000000000..d3c6b2f728d967 --- /dev/null +++ b/packages/material-ui-icons/src/QueueOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueueOutlined'); diff --git a/packages/material-ui-icons/src/QueuePlayNext.js b/packages/material-ui-icons/src/QueuePlayNext.js index f32a2cea5e062f..6c0c8c0a4edc29 100644 --- a/packages/material-ui-icons/src/QueuePlayNext.js +++ b/packages/material-ui-icons/src/QueuePlayNext.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'QueuePlayNext'); diff --git a/packages/material-ui-icons/src/QueuePlayNextOutlined.js b/packages/material-ui-icons/src/QueuePlayNextOutlined.js new file mode 100644 index 00000000000000..09c60d86eba6e7 --- /dev/null +++ b/packages/material-ui-icons/src/QueuePlayNextOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueuePlayNextOutlined'); diff --git a/packages/material-ui-icons/src/QueuePlayNextRounded.js b/packages/material-ui-icons/src/QueuePlayNextRounded.js new file mode 100644 index 00000000000000..e4fc503f2b2342 --- /dev/null +++ b/packages/material-ui-icons/src/QueuePlayNextRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueuePlayNextRounded'); diff --git a/packages/material-ui-icons/src/QueuePlayNextSharp.js b/packages/material-ui-icons/src/QueuePlayNextSharp.js new file mode 100644 index 00000000000000..9a3a32f1350886 --- /dev/null +++ b/packages/material-ui-icons/src/QueuePlayNextSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueuePlayNextSharp'); diff --git a/packages/material-ui-icons/src/QueuePlayNextTwoTone.js b/packages/material-ui-icons/src/QueuePlayNextTwoTone.js new file mode 100644 index 00000000000000..37970f5bfdbb17 --- /dev/null +++ b/packages/material-ui-icons/src/QueuePlayNextTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueuePlayNextTwoTone'); diff --git a/packages/material-ui-icons/src/QueueRounded.js b/packages/material-ui-icons/src/QueueRounded.js new file mode 100644 index 00000000000000..25f3bd75bde97a --- /dev/null +++ b/packages/material-ui-icons/src/QueueRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueueRounded'); diff --git a/packages/material-ui-icons/src/QueueSharp.js b/packages/material-ui-icons/src/QueueSharp.js new file mode 100644 index 00000000000000..dc6e2fbde52d87 --- /dev/null +++ b/packages/material-ui-icons/src/QueueSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueueSharp'); diff --git a/packages/material-ui-icons/src/QueueTwoTone.js b/packages/material-ui-icons/src/QueueTwoTone.js new file mode 100644 index 00000000000000..14268127b45733 --- /dev/null +++ b/packages/material-ui-icons/src/QueueTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'QueueTwoTone'); diff --git a/packages/material-ui-icons/src/Radio.js b/packages/material-ui-icons/src/Radio.js index 2b0d2cf77bb749..bb9ef35aeb5e3f 100644 --- a/packages/material-ui-icons/src/Radio.js +++ b/packages/material-ui-icons/src/Radio.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Radio'); diff --git a/packages/material-ui-icons/src/RadioButtonCheckedOutlined.js b/packages/material-ui-icons/src/RadioButtonCheckedOutlined.js new file mode 100644 index 00000000000000..18094e2e38d695 --- /dev/null +++ b/packages/material-ui-icons/src/RadioButtonCheckedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioButtonCheckedOutlined'); diff --git a/packages/material-ui-icons/src/RadioButtonCheckedRounded.js b/packages/material-ui-icons/src/RadioButtonCheckedRounded.js new file mode 100644 index 00000000000000..7c0dd39b8f9ced --- /dev/null +++ b/packages/material-ui-icons/src/RadioButtonCheckedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioButtonCheckedRounded'); diff --git a/packages/material-ui-icons/src/RadioButtonCheckedSharp.js b/packages/material-ui-icons/src/RadioButtonCheckedSharp.js new file mode 100644 index 00000000000000..73056fe003b18d --- /dev/null +++ b/packages/material-ui-icons/src/RadioButtonCheckedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioButtonCheckedSharp'); diff --git a/packages/material-ui-icons/src/RadioButtonCheckedTwoTone.js b/packages/material-ui-icons/src/RadioButtonCheckedTwoTone.js new file mode 100644 index 00000000000000..e602762f64dee2 --- /dev/null +++ b/packages/material-ui-icons/src/RadioButtonCheckedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioButtonCheckedTwoTone'); diff --git a/packages/material-ui-icons/src/RadioButtonUncheckedOutlined.js b/packages/material-ui-icons/src/RadioButtonUncheckedOutlined.js new file mode 100644 index 00000000000000..b8766f5aa59efe --- /dev/null +++ b/packages/material-ui-icons/src/RadioButtonUncheckedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioButtonUncheckedOutlined'); diff --git a/packages/material-ui-icons/src/RadioButtonUncheckedRounded.js b/packages/material-ui-icons/src/RadioButtonUncheckedRounded.js new file mode 100644 index 00000000000000..5a5d9b9bcd5b73 --- /dev/null +++ b/packages/material-ui-icons/src/RadioButtonUncheckedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioButtonUncheckedRounded'); diff --git a/packages/material-ui-icons/src/RadioButtonUncheckedSharp.js b/packages/material-ui-icons/src/RadioButtonUncheckedSharp.js new file mode 100644 index 00000000000000..2e5dd74b278807 --- /dev/null +++ b/packages/material-ui-icons/src/RadioButtonUncheckedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioButtonUncheckedSharp'); diff --git a/packages/material-ui-icons/src/RadioButtonUncheckedTwoTone.js b/packages/material-ui-icons/src/RadioButtonUncheckedTwoTone.js new file mode 100644 index 00000000000000..77bf0476c3e803 --- /dev/null +++ b/packages/material-ui-icons/src/RadioButtonUncheckedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioButtonUncheckedTwoTone'); diff --git a/packages/material-ui-icons/src/RadioOutlined.js b/packages/material-ui-icons/src/RadioOutlined.js new file mode 100644 index 00000000000000..d87bbfa497575e --- /dev/null +++ b/packages/material-ui-icons/src/RadioOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioOutlined'); diff --git a/packages/material-ui-icons/src/RadioRounded.js b/packages/material-ui-icons/src/RadioRounded.js new file mode 100644 index 00000000000000..01de2606fade7f --- /dev/null +++ b/packages/material-ui-icons/src/RadioRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioRounded'); diff --git a/packages/material-ui-icons/src/RadioSharp.js b/packages/material-ui-icons/src/RadioSharp.js new file mode 100644 index 00000000000000..c334bfa4bd668f --- /dev/null +++ b/packages/material-ui-icons/src/RadioSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioSharp'); diff --git a/packages/material-ui-icons/src/RadioTwoTone.js b/packages/material-ui-icons/src/RadioTwoTone.js new file mode 100644 index 00000000000000..fa75bab46cd40d --- /dev/null +++ b/packages/material-ui-icons/src/RadioTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RadioTwoTone'); diff --git a/packages/material-ui-icons/src/RateReviewOutlined.js b/packages/material-ui-icons/src/RateReviewOutlined.js new file mode 100644 index 00000000000000..1944b8d1d8e54f --- /dev/null +++ b/packages/material-ui-icons/src/RateReviewOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RateReviewOutlined'); diff --git a/packages/material-ui-icons/src/RateReviewRounded.js b/packages/material-ui-icons/src/RateReviewRounded.js new file mode 100644 index 00000000000000..557451c9f96bfc --- /dev/null +++ b/packages/material-ui-icons/src/RateReviewRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RateReviewRounded'); diff --git a/packages/material-ui-icons/src/RateReviewSharp.js b/packages/material-ui-icons/src/RateReviewSharp.js new file mode 100644 index 00000000000000..60746e9fdd91f5 --- /dev/null +++ b/packages/material-ui-icons/src/RateReviewSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RateReviewSharp'); diff --git a/packages/material-ui-icons/src/RateReviewTwoTone.js b/packages/material-ui-icons/src/RateReviewTwoTone.js new file mode 100644 index 00000000000000..11fed53d5c5966 --- /dev/null +++ b/packages/material-ui-icons/src/RateReviewTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RateReviewTwoTone'); diff --git a/packages/material-ui-icons/src/ReceiptOutlined.js b/packages/material-ui-icons/src/ReceiptOutlined.js new file mode 100644 index 00000000000000..fc09289982522e --- /dev/null +++ b/packages/material-ui-icons/src/ReceiptOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReceiptOutlined'); diff --git a/packages/material-ui-icons/src/ReceiptRounded.js b/packages/material-ui-icons/src/ReceiptRounded.js new file mode 100644 index 00000000000000..cf87f9ed677958 --- /dev/null +++ b/packages/material-ui-icons/src/ReceiptRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReceiptRounded'); diff --git a/packages/material-ui-icons/src/ReceiptSharp.js b/packages/material-ui-icons/src/ReceiptSharp.js new file mode 100644 index 00000000000000..3e418a6c73b930 --- /dev/null +++ b/packages/material-ui-icons/src/ReceiptSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReceiptSharp'); diff --git a/packages/material-ui-icons/src/ReceiptTwoTone.js b/packages/material-ui-icons/src/ReceiptTwoTone.js new file mode 100644 index 00000000000000..7e7b89d05742d6 --- /dev/null +++ b/packages/material-ui-icons/src/ReceiptTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReceiptTwoTone'); diff --git a/packages/material-ui-icons/src/RecentActorsOutlined.js b/packages/material-ui-icons/src/RecentActorsOutlined.js new file mode 100644 index 00000000000000..8067e35a359b8c --- /dev/null +++ b/packages/material-ui-icons/src/RecentActorsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RecentActorsOutlined'); diff --git a/packages/material-ui-icons/src/RecentActorsRounded.js b/packages/material-ui-icons/src/RecentActorsRounded.js new file mode 100644 index 00000000000000..7e396a57a1daa7 --- /dev/null +++ b/packages/material-ui-icons/src/RecentActorsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RecentActorsRounded'); diff --git a/packages/material-ui-icons/src/RecentActorsSharp.js b/packages/material-ui-icons/src/RecentActorsSharp.js new file mode 100644 index 00000000000000..e826774fcfccf4 --- /dev/null +++ b/packages/material-ui-icons/src/RecentActorsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RecentActorsSharp'); diff --git a/packages/material-ui-icons/src/RecentActorsTwoTone.js b/packages/material-ui-icons/src/RecentActorsTwoTone.js new file mode 100644 index 00000000000000..ab54c1a4f26b71 --- /dev/null +++ b/packages/material-ui-icons/src/RecentActorsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RecentActorsTwoTone'); diff --git a/packages/material-ui-icons/src/RecordVoiceOverOutlined.js b/packages/material-ui-icons/src/RecordVoiceOverOutlined.js new file mode 100644 index 00000000000000..bc2446f982f829 --- /dev/null +++ b/packages/material-ui-icons/src/RecordVoiceOverOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RecordVoiceOverOutlined'); diff --git a/packages/material-ui-icons/src/RecordVoiceOverRounded.js b/packages/material-ui-icons/src/RecordVoiceOverRounded.js new file mode 100644 index 00000000000000..823c5fb0c66ef9 --- /dev/null +++ b/packages/material-ui-icons/src/RecordVoiceOverRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RecordVoiceOverRounded'); diff --git a/packages/material-ui-icons/src/RecordVoiceOverSharp.js b/packages/material-ui-icons/src/RecordVoiceOverSharp.js new file mode 100644 index 00000000000000..b68488041d85fa --- /dev/null +++ b/packages/material-ui-icons/src/RecordVoiceOverSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RecordVoiceOverSharp'); diff --git a/packages/material-ui-icons/src/RecordVoiceOverTwoTone.js b/packages/material-ui-icons/src/RecordVoiceOverTwoTone.js new file mode 100644 index 00000000000000..01b065fbe040d4 --- /dev/null +++ b/packages/material-ui-icons/src/RecordVoiceOverTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RecordVoiceOverTwoTone'); diff --git a/packages/material-ui-icons/src/Redeem.js b/packages/material-ui-icons/src/Redeem.js index 89d3fbcbc3fb8a..4357b47c101809 100644 --- a/packages/material-ui-icons/src/Redeem.js +++ b/packages/material-ui-icons/src/Redeem.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Redeem'); diff --git a/packages/material-ui-icons/src/RedeemOutlined.js b/packages/material-ui-icons/src/RedeemOutlined.js new file mode 100644 index 00000000000000..b23ed7361d64ff --- /dev/null +++ b/packages/material-ui-icons/src/RedeemOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RedeemOutlined'); diff --git a/packages/material-ui-icons/src/RedeemRounded.js b/packages/material-ui-icons/src/RedeemRounded.js new file mode 100644 index 00000000000000..b1cfea7e918358 --- /dev/null +++ b/packages/material-ui-icons/src/RedeemRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RedeemRounded'); diff --git a/packages/material-ui-icons/src/RedeemSharp.js b/packages/material-ui-icons/src/RedeemSharp.js new file mode 100644 index 00000000000000..b5b567f1b34c0d --- /dev/null +++ b/packages/material-ui-icons/src/RedeemSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RedeemSharp'); diff --git a/packages/material-ui-icons/src/RedeemTwoTone.js b/packages/material-ui-icons/src/RedeemTwoTone.js new file mode 100644 index 00000000000000..8a4d933228aa50 --- /dev/null +++ b/packages/material-ui-icons/src/RedeemTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RedeemTwoTone'); diff --git a/packages/material-ui-icons/src/Redo.js b/packages/material-ui-icons/src/Redo.js index 7e8a468c5f6ff3..70e5a9ffb8805b 100644 --- a/packages/material-ui-icons/src/Redo.js +++ b/packages/material-ui-icons/src/Redo.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Redo'); diff --git a/packages/material-ui-icons/src/RedoOutlined.js b/packages/material-ui-icons/src/RedoOutlined.js new file mode 100644 index 00000000000000..79cf2727f72184 --- /dev/null +++ b/packages/material-ui-icons/src/RedoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RedoOutlined'); diff --git a/packages/material-ui-icons/src/RedoRounded.js b/packages/material-ui-icons/src/RedoRounded.js new file mode 100644 index 00000000000000..a6fbdd07b2d9ed --- /dev/null +++ b/packages/material-ui-icons/src/RedoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RedoRounded'); diff --git a/packages/material-ui-icons/src/RedoSharp.js b/packages/material-ui-icons/src/RedoSharp.js new file mode 100644 index 00000000000000..29c55646c1622a --- /dev/null +++ b/packages/material-ui-icons/src/RedoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RedoSharp'); diff --git a/packages/material-ui-icons/src/RedoTwoTone.js b/packages/material-ui-icons/src/RedoTwoTone.js new file mode 100644 index 00000000000000..0ddf88df629b94 --- /dev/null +++ b/packages/material-ui-icons/src/RedoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RedoTwoTone'); diff --git a/packages/material-ui-icons/src/Refresh.js b/packages/material-ui-icons/src/Refresh.js index 6c084698cbb26d..99ec38dc5e9efc 100644 --- a/packages/material-ui-icons/src/Refresh.js +++ b/packages/material-ui-icons/src/Refresh.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Refresh'); diff --git a/packages/material-ui-icons/src/RefreshOutlined.js b/packages/material-ui-icons/src/RefreshOutlined.js new file mode 100644 index 00000000000000..977b502d6a46cd --- /dev/null +++ b/packages/material-ui-icons/src/RefreshOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RefreshOutlined'); diff --git a/packages/material-ui-icons/src/RefreshRounded.js b/packages/material-ui-icons/src/RefreshRounded.js new file mode 100644 index 00000000000000..6643783de194c6 --- /dev/null +++ b/packages/material-ui-icons/src/RefreshRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RefreshRounded'); diff --git a/packages/material-ui-icons/src/RefreshSharp.js b/packages/material-ui-icons/src/RefreshSharp.js new file mode 100644 index 00000000000000..1ab8905a84294a --- /dev/null +++ b/packages/material-ui-icons/src/RefreshSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RefreshSharp'); diff --git a/packages/material-ui-icons/src/RefreshTwoTone.js b/packages/material-ui-icons/src/RefreshTwoTone.js new file mode 100644 index 00000000000000..efd8eb5fc4a4f8 --- /dev/null +++ b/packages/material-ui-icons/src/RefreshTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RefreshTwoTone'); diff --git a/packages/material-ui-icons/src/RemoveCircleOutlineOutlined.js b/packages/material-ui-icons/src/RemoveCircleOutlineOutlined.js new file mode 100644 index 00000000000000..ae37dea9ad652b --- /dev/null +++ b/packages/material-ui-icons/src/RemoveCircleOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveCircleOutlineOutlined'); diff --git a/packages/material-ui-icons/src/RemoveCircleOutlineRounded.js b/packages/material-ui-icons/src/RemoveCircleOutlineRounded.js new file mode 100644 index 00000000000000..7bde65d0cb5885 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveCircleOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveCircleOutlineRounded'); diff --git a/packages/material-ui-icons/src/RemoveCircleOutlineSharp.js b/packages/material-ui-icons/src/RemoveCircleOutlineSharp.js new file mode 100644 index 00000000000000..adec29c2194f99 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveCircleOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveCircleOutlineSharp'); diff --git a/packages/material-ui-icons/src/RemoveCircleOutlineTwoTone.js b/packages/material-ui-icons/src/RemoveCircleOutlineTwoTone.js new file mode 100644 index 00000000000000..baf0177210b435 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveCircleOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveCircleOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/RemoveCircleOutlined.js b/packages/material-ui-icons/src/RemoveCircleOutlined.js new file mode 100644 index 00000000000000..bbf95cd9466ba2 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveCircleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveCircleOutlined'); diff --git a/packages/material-ui-icons/src/RemoveCircleRounded.js b/packages/material-ui-icons/src/RemoveCircleRounded.js new file mode 100644 index 00000000000000..55f4a15fc0f186 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveCircleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveCircleRounded'); diff --git a/packages/material-ui-icons/src/DoNotDisturbOn.js b/packages/material-ui-icons/src/RemoveCircleSharp.js similarity index 89% rename from packages/material-ui-icons/src/DoNotDisturbOn.js rename to packages/material-ui-icons/src/RemoveCircleSharp.js index 3825eefa70e150..672693eae5d98a 100644 --- a/packages/material-ui-icons/src/DoNotDisturbOn.js +++ b/packages/material-ui-icons/src/RemoveCircleSharp.js @@ -3,4 +3,4 @@ import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( -, 'DoNotDisturbOn'); +, 'RemoveCircleSharp'); diff --git a/packages/material-ui-icons/src/RemoveCircleTwoTone.js b/packages/material-ui-icons/src/RemoveCircleTwoTone.js new file mode 100644 index 00000000000000..72be057f1463e9 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveCircleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveCircleTwoTone'); diff --git a/packages/material-ui-icons/src/RemoveFromQueue.js b/packages/material-ui-icons/src/RemoveFromQueue.js index dc630acfcd8fe9..63201040e4a564 100644 --- a/packages/material-ui-icons/src/RemoveFromQueue.js +++ b/packages/material-ui-icons/src/RemoveFromQueue.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'RemoveFromQueue'); diff --git a/packages/material-ui-icons/src/RemoveFromQueueOutlined.js b/packages/material-ui-icons/src/RemoveFromQueueOutlined.js new file mode 100644 index 00000000000000..69ba53c496f460 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveFromQueueOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveFromQueueOutlined'); diff --git a/packages/material-ui-icons/src/RemoveFromQueueRounded.js b/packages/material-ui-icons/src/RemoveFromQueueRounded.js new file mode 100644 index 00000000000000..91c3b63e121fe3 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveFromQueueRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveFromQueueRounded'); diff --git a/packages/material-ui-icons/src/RemoveFromQueueSharp.js b/packages/material-ui-icons/src/RemoveFromQueueSharp.js new file mode 100644 index 00000000000000..784f36c54f528e --- /dev/null +++ b/packages/material-ui-icons/src/RemoveFromQueueSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveFromQueueSharp'); diff --git a/packages/material-ui-icons/src/RemoveFromQueueTwoTone.js b/packages/material-ui-icons/src/RemoveFromQueueTwoTone.js new file mode 100644 index 00000000000000..de42f89ed65a4c --- /dev/null +++ b/packages/material-ui-icons/src/RemoveFromQueueTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveFromQueueTwoTone'); diff --git a/packages/material-ui-icons/src/RemoveOutlined.js b/packages/material-ui-icons/src/RemoveOutlined.js new file mode 100644 index 00000000000000..144ceec3c82d07 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveOutlined'); diff --git a/packages/material-ui-icons/src/RemoveRedEyeOutlined.js b/packages/material-ui-icons/src/RemoveRedEyeOutlined.js new file mode 100644 index 00000000000000..9259ec142963a8 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveRedEyeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveRedEyeOutlined'); diff --git a/packages/material-ui-icons/src/RemoveRedEyeRounded.js b/packages/material-ui-icons/src/RemoveRedEyeRounded.js new file mode 100644 index 00000000000000..0c3b9306b96297 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveRedEyeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveRedEyeRounded'); diff --git a/packages/material-ui-icons/src/RemoveRedEyeSharp.js b/packages/material-ui-icons/src/RemoveRedEyeSharp.js new file mode 100644 index 00000000000000..474839d838b1eb --- /dev/null +++ b/packages/material-ui-icons/src/RemoveRedEyeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveRedEyeSharp'); diff --git a/packages/material-ui-icons/src/RemoveRedEyeTwoTone.js b/packages/material-ui-icons/src/RemoveRedEyeTwoTone.js new file mode 100644 index 00000000000000..88ed563ab0bc73 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveRedEyeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveRedEyeTwoTone'); diff --git a/packages/material-ui-icons/src/RemoveRounded.js b/packages/material-ui-icons/src/RemoveRounded.js new file mode 100644 index 00000000000000..6be2d9dc9b056d --- /dev/null +++ b/packages/material-ui-icons/src/RemoveRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveRounded'); diff --git a/packages/material-ui-icons/src/RemoveSharp.js b/packages/material-ui-icons/src/RemoveSharp.js new file mode 100644 index 00000000000000..3a0a95bc4c2401 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveSharp'); diff --git a/packages/material-ui-icons/src/RemoveShoppingCart.js b/packages/material-ui-icons/src/RemoveShoppingCart.js index 8f918c858ef18d..6ce400847f14c3 100644 --- a/packages/material-ui-icons/src/RemoveShoppingCart.js +++ b/packages/material-ui-icons/src/RemoveShoppingCart.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'RemoveShoppingCart'); diff --git a/packages/material-ui-icons/src/RemoveShoppingCartOutlined.js b/packages/material-ui-icons/src/RemoveShoppingCartOutlined.js new file mode 100644 index 00000000000000..1d9e7cf24afa3f --- /dev/null +++ b/packages/material-ui-icons/src/RemoveShoppingCartOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveShoppingCartOutlined'); diff --git a/packages/material-ui-icons/src/RemoveShoppingCartRounded.js b/packages/material-ui-icons/src/RemoveShoppingCartRounded.js new file mode 100644 index 00000000000000..3ebe9a7d6e9323 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveShoppingCartRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveShoppingCartRounded'); diff --git a/packages/material-ui-icons/src/RemoveShoppingCartSharp.js b/packages/material-ui-icons/src/RemoveShoppingCartSharp.js new file mode 100644 index 00000000000000..ebe67787cc0a06 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveShoppingCartSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveShoppingCartSharp'); diff --git a/packages/material-ui-icons/src/RemoveShoppingCartTwoTone.js b/packages/material-ui-icons/src/RemoveShoppingCartTwoTone.js new file mode 100644 index 00000000000000..4c29902147ce6c --- /dev/null +++ b/packages/material-ui-icons/src/RemoveShoppingCartTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveShoppingCartTwoTone'); diff --git a/packages/material-ui-icons/src/RemoveTwoTone.js b/packages/material-ui-icons/src/RemoveTwoTone.js new file mode 100644 index 00000000000000..9fcc3eef407cc1 --- /dev/null +++ b/packages/material-ui-icons/src/RemoveTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RemoveTwoTone'); diff --git a/packages/material-ui-icons/src/ReorderOutlined.js b/packages/material-ui-icons/src/ReorderOutlined.js new file mode 100644 index 00000000000000..5a9e799a59265f --- /dev/null +++ b/packages/material-ui-icons/src/ReorderOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReorderOutlined'); diff --git a/packages/material-ui-icons/src/ReorderRounded.js b/packages/material-ui-icons/src/ReorderRounded.js new file mode 100644 index 00000000000000..5e2068465f172f --- /dev/null +++ b/packages/material-ui-icons/src/ReorderRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReorderRounded'); diff --git a/packages/material-ui-icons/src/ReorderSharp.js b/packages/material-ui-icons/src/ReorderSharp.js new file mode 100644 index 00000000000000..767e9f3486b335 --- /dev/null +++ b/packages/material-ui-icons/src/ReorderSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReorderSharp'); diff --git a/packages/material-ui-icons/src/ReorderTwoTone.js b/packages/material-ui-icons/src/ReorderTwoTone.js new file mode 100644 index 00000000000000..d9e99079d12b5d --- /dev/null +++ b/packages/material-ui-icons/src/ReorderTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReorderTwoTone'); diff --git a/packages/material-ui-icons/src/RepeatOneOutlined.js b/packages/material-ui-icons/src/RepeatOneOutlined.js new file mode 100644 index 00000000000000..8625c8c14e01fc --- /dev/null +++ b/packages/material-ui-icons/src/RepeatOneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RepeatOneOutlined'); diff --git a/packages/material-ui-icons/src/RepeatOneRounded.js b/packages/material-ui-icons/src/RepeatOneRounded.js new file mode 100644 index 00000000000000..cd5ed6d6a7fee4 --- /dev/null +++ b/packages/material-ui-icons/src/RepeatOneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RepeatOneRounded'); diff --git a/packages/material-ui-icons/src/RepeatOneSharp.js b/packages/material-ui-icons/src/RepeatOneSharp.js new file mode 100644 index 00000000000000..a42db3f9d72b0e --- /dev/null +++ b/packages/material-ui-icons/src/RepeatOneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RepeatOneSharp'); diff --git a/packages/material-ui-icons/src/RepeatOneTwoTone.js b/packages/material-ui-icons/src/RepeatOneTwoTone.js new file mode 100644 index 00000000000000..5fd1f78db5628e --- /dev/null +++ b/packages/material-ui-icons/src/RepeatOneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RepeatOneTwoTone'); diff --git a/packages/material-ui-icons/src/RepeatOutlined.js b/packages/material-ui-icons/src/RepeatOutlined.js new file mode 100644 index 00000000000000..9a567ea9214d4f --- /dev/null +++ b/packages/material-ui-icons/src/RepeatOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RepeatOutlined'); diff --git a/packages/material-ui-icons/src/RepeatRounded.js b/packages/material-ui-icons/src/RepeatRounded.js new file mode 100644 index 00000000000000..bea1344d713a0c --- /dev/null +++ b/packages/material-ui-icons/src/RepeatRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RepeatRounded'); diff --git a/packages/material-ui-icons/src/RepeatSharp.js b/packages/material-ui-icons/src/RepeatSharp.js new file mode 100644 index 00000000000000..0d08f8a9926736 --- /dev/null +++ b/packages/material-ui-icons/src/RepeatSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RepeatSharp'); diff --git a/packages/material-ui-icons/src/RepeatTwoTone.js b/packages/material-ui-icons/src/RepeatTwoTone.js new file mode 100644 index 00000000000000..af275630adf7e4 --- /dev/null +++ b/packages/material-ui-icons/src/RepeatTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RepeatTwoTone'); diff --git a/packages/material-ui-icons/src/Replay10.js b/packages/material-ui-icons/src/Replay10.js index 0ec63a318566cb..acabb7063b1277 100644 --- a/packages/material-ui-icons/src/Replay10.js +++ b/packages/material-ui-icons/src/Replay10.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Replay10'); diff --git a/packages/material-ui-icons/src/Replay10Outlined.js b/packages/material-ui-icons/src/Replay10Outlined.js new file mode 100644 index 00000000000000..4009f5ddf1a88f --- /dev/null +++ b/packages/material-ui-icons/src/Replay10Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay10Outlined'); diff --git a/packages/material-ui-icons/src/Replay10Rounded.js b/packages/material-ui-icons/src/Replay10Rounded.js new file mode 100644 index 00000000000000..b187625658b2bb --- /dev/null +++ b/packages/material-ui-icons/src/Replay10Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay10Rounded'); diff --git a/packages/material-ui-icons/src/Replay10Sharp.js b/packages/material-ui-icons/src/Replay10Sharp.js new file mode 100644 index 00000000000000..79539d7597a27b --- /dev/null +++ b/packages/material-ui-icons/src/Replay10Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay10Sharp'); diff --git a/packages/material-ui-icons/src/Replay10TwoTone.js b/packages/material-ui-icons/src/Replay10TwoTone.js new file mode 100644 index 00000000000000..e23173f45a3845 --- /dev/null +++ b/packages/material-ui-icons/src/Replay10TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay10TwoTone'); diff --git a/packages/material-ui-icons/src/Replay30.js b/packages/material-ui-icons/src/Replay30.js index a3ed12bb768da9..6163b0c87dd305 100644 --- a/packages/material-ui-icons/src/Replay30.js +++ b/packages/material-ui-icons/src/Replay30.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Replay30'); diff --git a/packages/material-ui-icons/src/Replay30Outlined.js b/packages/material-ui-icons/src/Replay30Outlined.js new file mode 100644 index 00000000000000..2b5723480fba1a --- /dev/null +++ b/packages/material-ui-icons/src/Replay30Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay30Outlined'); diff --git a/packages/material-ui-icons/src/Replay30Rounded.js b/packages/material-ui-icons/src/Replay30Rounded.js new file mode 100644 index 00000000000000..0563b3c17dd424 --- /dev/null +++ b/packages/material-ui-icons/src/Replay30Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay30Rounded'); diff --git a/packages/material-ui-icons/src/Replay30Sharp.js b/packages/material-ui-icons/src/Replay30Sharp.js new file mode 100644 index 00000000000000..c3cbdabe30fc1c --- /dev/null +++ b/packages/material-ui-icons/src/Replay30Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay30Sharp'); diff --git a/packages/material-ui-icons/src/Replay30TwoTone.js b/packages/material-ui-icons/src/Replay30TwoTone.js new file mode 100644 index 00000000000000..30de672252dcee --- /dev/null +++ b/packages/material-ui-icons/src/Replay30TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay30TwoTone'); diff --git a/packages/material-ui-icons/src/Replay5.js b/packages/material-ui-icons/src/Replay5.js index cfc947f48bc813..ac250f46e65cb4 100644 --- a/packages/material-ui-icons/src/Replay5.js +++ b/packages/material-ui-icons/src/Replay5.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Replay5'); diff --git a/packages/material-ui-icons/src/Replay5Outlined.js b/packages/material-ui-icons/src/Replay5Outlined.js new file mode 100644 index 00000000000000..2c294476946450 --- /dev/null +++ b/packages/material-ui-icons/src/Replay5Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay5Outlined'); diff --git a/packages/material-ui-icons/src/Replay5Rounded.js b/packages/material-ui-icons/src/Replay5Rounded.js new file mode 100644 index 00000000000000..846fc37299a4a8 --- /dev/null +++ b/packages/material-ui-icons/src/Replay5Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay5Rounded'); diff --git a/packages/material-ui-icons/src/Replay5Sharp.js b/packages/material-ui-icons/src/Replay5Sharp.js new file mode 100644 index 00000000000000..fab1b73dd1b900 --- /dev/null +++ b/packages/material-ui-icons/src/Replay5Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay5Sharp'); diff --git a/packages/material-ui-icons/src/Replay5TwoTone.js b/packages/material-ui-icons/src/Replay5TwoTone.js new file mode 100644 index 00000000000000..70f621148f6caf --- /dev/null +++ b/packages/material-ui-icons/src/Replay5TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Replay5TwoTone'); diff --git a/packages/material-ui-icons/src/ReplayOutlined.js b/packages/material-ui-icons/src/ReplayOutlined.js new file mode 100644 index 00000000000000..e6e2df75d36978 --- /dev/null +++ b/packages/material-ui-icons/src/ReplayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplayOutlined'); diff --git a/packages/material-ui-icons/src/ReplayRounded.js b/packages/material-ui-icons/src/ReplayRounded.js new file mode 100644 index 00000000000000..c28e55fd90540e --- /dev/null +++ b/packages/material-ui-icons/src/ReplayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplayRounded'); diff --git a/packages/material-ui-icons/src/ReplaySharp.js b/packages/material-ui-icons/src/ReplaySharp.js new file mode 100644 index 00000000000000..2c55941004a8da --- /dev/null +++ b/packages/material-ui-icons/src/ReplaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplaySharp'); diff --git a/packages/material-ui-icons/src/ReplayTwoTone.js b/packages/material-ui-icons/src/ReplayTwoTone.js new file mode 100644 index 00000000000000..f4acd7ec8cbf58 --- /dev/null +++ b/packages/material-ui-icons/src/ReplayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplayTwoTone'); diff --git a/packages/material-ui-icons/src/ReplyAllOutlined.js b/packages/material-ui-icons/src/ReplyAllOutlined.js new file mode 100644 index 00000000000000..0553f1bae09664 --- /dev/null +++ b/packages/material-ui-icons/src/ReplyAllOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplyAllOutlined'); diff --git a/packages/material-ui-icons/src/ReplyAllRounded.js b/packages/material-ui-icons/src/ReplyAllRounded.js new file mode 100644 index 00000000000000..5bf933f2b1bd75 --- /dev/null +++ b/packages/material-ui-icons/src/ReplyAllRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplyAllRounded'); diff --git a/packages/material-ui-icons/src/ReplyAllSharp.js b/packages/material-ui-icons/src/ReplyAllSharp.js new file mode 100644 index 00000000000000..70630ef226dc6d --- /dev/null +++ b/packages/material-ui-icons/src/ReplyAllSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplyAllSharp'); diff --git a/packages/material-ui-icons/src/ReplyAllTwoTone.js b/packages/material-ui-icons/src/ReplyAllTwoTone.js new file mode 100644 index 00000000000000..f234c53a0cd48a --- /dev/null +++ b/packages/material-ui-icons/src/ReplyAllTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplyAllTwoTone'); diff --git a/packages/material-ui-icons/src/ReplyOutlined.js b/packages/material-ui-icons/src/ReplyOutlined.js new file mode 100644 index 00000000000000..fb92442291550c --- /dev/null +++ b/packages/material-ui-icons/src/ReplyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplyOutlined'); diff --git a/packages/material-ui-icons/src/ReplyRounded.js b/packages/material-ui-icons/src/ReplyRounded.js new file mode 100644 index 00000000000000..119abcdfb8abd7 --- /dev/null +++ b/packages/material-ui-icons/src/ReplyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplyRounded'); diff --git a/packages/material-ui-icons/src/ReplySharp.js b/packages/material-ui-icons/src/ReplySharp.js new file mode 100644 index 00000000000000..a1aebf4cd23a83 --- /dev/null +++ b/packages/material-ui-icons/src/ReplySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplySharp'); diff --git a/packages/material-ui-icons/src/ReplyTwoTone.js b/packages/material-ui-icons/src/ReplyTwoTone.js new file mode 100644 index 00000000000000..ce6786696e4a24 --- /dev/null +++ b/packages/material-ui-icons/src/ReplyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReplyTwoTone'); diff --git a/packages/material-ui-icons/src/ReportOff.js b/packages/material-ui-icons/src/ReportOff.js new file mode 100644 index 00000000000000..f3893220b26d92 --- /dev/null +++ b/packages/material-ui-icons/src/ReportOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportOff'); diff --git a/packages/material-ui-icons/src/ReportOffOutlined.js b/packages/material-ui-icons/src/ReportOffOutlined.js new file mode 100644 index 00000000000000..5bbbdc738f5b99 --- /dev/null +++ b/packages/material-ui-icons/src/ReportOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportOffOutlined'); diff --git a/packages/material-ui-icons/src/ReportOffRounded.js b/packages/material-ui-icons/src/ReportOffRounded.js new file mode 100644 index 00000000000000..69738a77cb20ad --- /dev/null +++ b/packages/material-ui-icons/src/ReportOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportOffRounded'); diff --git a/packages/material-ui-icons/src/ReportOffSharp.js b/packages/material-ui-icons/src/ReportOffSharp.js new file mode 100644 index 00000000000000..c277f5a8799472 --- /dev/null +++ b/packages/material-ui-icons/src/ReportOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportOffSharp'); diff --git a/packages/material-ui-icons/src/ReportOffTwoTone.js b/packages/material-ui-icons/src/ReportOffTwoTone.js new file mode 100644 index 00000000000000..2f5e13ed758965 --- /dev/null +++ b/packages/material-ui-icons/src/ReportOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportOffTwoTone'); diff --git a/packages/material-ui-icons/src/ReportOutlined.js b/packages/material-ui-icons/src/ReportOutlined.js new file mode 100644 index 00000000000000..b1347b4f5fe97a --- /dev/null +++ b/packages/material-ui-icons/src/ReportOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportOutlined'); diff --git a/packages/material-ui-icons/src/ReportProblemOutlined.js b/packages/material-ui-icons/src/ReportProblemOutlined.js new file mode 100644 index 00000000000000..f85b97ddde5d1b --- /dev/null +++ b/packages/material-ui-icons/src/ReportProblemOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportProblemOutlined'); diff --git a/packages/material-ui-icons/src/ReportProblemRounded.js b/packages/material-ui-icons/src/ReportProblemRounded.js new file mode 100644 index 00000000000000..5861d10e8567a1 --- /dev/null +++ b/packages/material-ui-icons/src/ReportProblemRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportProblemRounded'); diff --git a/packages/material-ui-icons/src/ReportProblemSharp.js b/packages/material-ui-icons/src/ReportProblemSharp.js new file mode 100644 index 00000000000000..4fafc37bed1bb4 --- /dev/null +++ b/packages/material-ui-icons/src/ReportProblemSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportProblemSharp'); diff --git a/packages/material-ui-icons/src/ReportProblemTwoTone.js b/packages/material-ui-icons/src/ReportProblemTwoTone.js new file mode 100644 index 00000000000000..4d956cff0faf6f --- /dev/null +++ b/packages/material-ui-icons/src/ReportProblemTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportProblemTwoTone'); diff --git a/packages/material-ui-icons/src/ReportRounded.js b/packages/material-ui-icons/src/ReportRounded.js new file mode 100644 index 00000000000000..ba1493ff793f76 --- /dev/null +++ b/packages/material-ui-icons/src/ReportRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportRounded'); diff --git a/packages/material-ui-icons/src/ReportSharp.js b/packages/material-ui-icons/src/ReportSharp.js new file mode 100644 index 00000000000000..86bd40b0b27fa5 --- /dev/null +++ b/packages/material-ui-icons/src/ReportSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportSharp'); diff --git a/packages/material-ui-icons/src/ReportTwoTone.js b/packages/material-ui-icons/src/ReportTwoTone.js new file mode 100644 index 00000000000000..0a8ccbcdbf790e --- /dev/null +++ b/packages/material-ui-icons/src/ReportTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ReportTwoTone'); diff --git a/packages/material-ui-icons/src/RestaurantMenu.js b/packages/material-ui-icons/src/RestaurantMenu.js index 55b811386290e2..385ff8218c9f51 100644 --- a/packages/material-ui-icons/src/RestaurantMenu.js +++ b/packages/material-ui-icons/src/RestaurantMenu.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'RestaurantMenu'); diff --git a/packages/material-ui-icons/src/RestaurantMenuOutlined.js b/packages/material-ui-icons/src/RestaurantMenuOutlined.js new file mode 100644 index 00000000000000..fdc7b857fb100d --- /dev/null +++ b/packages/material-ui-icons/src/RestaurantMenuOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestaurantMenuOutlined'); diff --git a/packages/material-ui-icons/src/RestaurantMenuRounded.js b/packages/material-ui-icons/src/RestaurantMenuRounded.js new file mode 100644 index 00000000000000..51d165f05078f0 --- /dev/null +++ b/packages/material-ui-icons/src/RestaurantMenuRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestaurantMenuRounded'); diff --git a/packages/material-ui-icons/src/RestaurantMenuSharp.js b/packages/material-ui-icons/src/RestaurantMenuSharp.js new file mode 100644 index 00000000000000..377a609edd9227 --- /dev/null +++ b/packages/material-ui-icons/src/RestaurantMenuSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestaurantMenuSharp'); diff --git a/packages/material-ui-icons/src/RestaurantMenuTwoTone.js b/packages/material-ui-icons/src/RestaurantMenuTwoTone.js new file mode 100644 index 00000000000000..d7760a24ee2f5a --- /dev/null +++ b/packages/material-ui-icons/src/RestaurantMenuTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestaurantMenuTwoTone'); diff --git a/packages/material-ui-icons/src/RestaurantOutlined.js b/packages/material-ui-icons/src/RestaurantOutlined.js new file mode 100644 index 00000000000000..562a37dc870141 --- /dev/null +++ b/packages/material-ui-icons/src/RestaurantOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestaurantOutlined'); diff --git a/packages/material-ui-icons/src/RestaurantRounded.js b/packages/material-ui-icons/src/RestaurantRounded.js new file mode 100644 index 00000000000000..9c60e0b3b651cd --- /dev/null +++ b/packages/material-ui-icons/src/RestaurantRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestaurantRounded'); diff --git a/packages/material-ui-icons/src/RestaurantSharp.js b/packages/material-ui-icons/src/RestaurantSharp.js new file mode 100644 index 00000000000000..05b3fe90bc9002 --- /dev/null +++ b/packages/material-ui-icons/src/RestaurantSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestaurantSharp'); diff --git a/packages/material-ui-icons/src/RestaurantTwoTone.js b/packages/material-ui-icons/src/RestaurantTwoTone.js new file mode 100644 index 00000000000000..d6e8325f564021 --- /dev/null +++ b/packages/material-ui-icons/src/RestaurantTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestaurantTwoTone'); diff --git a/packages/material-ui-icons/src/Restore.js b/packages/material-ui-icons/src/Restore.js index 40cc3132612b93..49ab80dda7f2cc 100644 --- a/packages/material-ui-icons/src/Restore.js +++ b/packages/material-ui-icons/src/Restore.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Restore'); diff --git a/packages/material-ui-icons/src/RestoreFromTrash.js b/packages/material-ui-icons/src/RestoreFromTrash.js new file mode 100644 index 00000000000000..e6408e75059ffc --- /dev/null +++ b/packages/material-ui-icons/src/RestoreFromTrash.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestoreFromTrash'); diff --git a/packages/material-ui-icons/src/RestoreFromTrashOutlined.js b/packages/material-ui-icons/src/RestoreFromTrashOutlined.js new file mode 100644 index 00000000000000..b8d771fab664d5 --- /dev/null +++ b/packages/material-ui-icons/src/RestoreFromTrashOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestoreFromTrashOutlined'); diff --git a/packages/material-ui-icons/src/RestoreFromTrashRounded.js b/packages/material-ui-icons/src/RestoreFromTrashRounded.js new file mode 100644 index 00000000000000..459bb4ecd59a5f --- /dev/null +++ b/packages/material-ui-icons/src/RestoreFromTrashRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestoreFromTrashRounded'); diff --git a/packages/material-ui-icons/src/RestoreFromTrashSharp.js b/packages/material-ui-icons/src/RestoreFromTrashSharp.js new file mode 100644 index 00000000000000..46bca4ac6826a9 --- /dev/null +++ b/packages/material-ui-icons/src/RestoreFromTrashSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestoreFromTrashSharp'); diff --git a/packages/material-ui-icons/src/RestoreFromTrashTwoTone.js b/packages/material-ui-icons/src/RestoreFromTrashTwoTone.js new file mode 100644 index 00000000000000..cefd3cac5c1db5 --- /dev/null +++ b/packages/material-ui-icons/src/RestoreFromTrashTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestoreFromTrashTwoTone'); diff --git a/packages/material-ui-icons/src/RestoreOutlined.js b/packages/material-ui-icons/src/RestoreOutlined.js new file mode 100644 index 00000000000000..c3e81d433e4793 --- /dev/null +++ b/packages/material-ui-icons/src/RestoreOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestoreOutlined'); diff --git a/packages/material-ui-icons/src/RestorePage.js b/packages/material-ui-icons/src/RestorePage.js index 414e7fa5201872..e7b0ed60c465d8 100644 --- a/packages/material-ui-icons/src/RestorePage.js +++ b/packages/material-ui-icons/src/RestorePage.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'RestorePage'); diff --git a/packages/material-ui-icons/src/RestorePageOutlined.js b/packages/material-ui-icons/src/RestorePageOutlined.js new file mode 100644 index 00000000000000..e7cbf460cf743c --- /dev/null +++ b/packages/material-ui-icons/src/RestorePageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestorePageOutlined'); diff --git a/packages/material-ui-icons/src/RestorePageRounded.js b/packages/material-ui-icons/src/RestorePageRounded.js new file mode 100644 index 00000000000000..584db6954bc844 --- /dev/null +++ b/packages/material-ui-icons/src/RestorePageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestorePageRounded'); diff --git a/packages/material-ui-icons/src/RestorePageSharp.js b/packages/material-ui-icons/src/RestorePageSharp.js new file mode 100644 index 00000000000000..6967a8f8a3dd3c --- /dev/null +++ b/packages/material-ui-icons/src/RestorePageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestorePageSharp'); diff --git a/packages/material-ui-icons/src/RestorePageTwoTone.js b/packages/material-ui-icons/src/RestorePageTwoTone.js new file mode 100644 index 00000000000000..22c2c3be2326f0 --- /dev/null +++ b/packages/material-ui-icons/src/RestorePageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestorePageTwoTone'); diff --git a/packages/material-ui-icons/src/RestoreRounded.js b/packages/material-ui-icons/src/RestoreRounded.js new file mode 100644 index 00000000000000..5dedf58cff5736 --- /dev/null +++ b/packages/material-ui-icons/src/RestoreRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestoreRounded'); diff --git a/packages/material-ui-icons/src/RestoreSharp.js b/packages/material-ui-icons/src/RestoreSharp.js new file mode 100644 index 00000000000000..a6b3182d13f136 --- /dev/null +++ b/packages/material-ui-icons/src/RestoreSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestoreSharp'); diff --git a/packages/material-ui-icons/src/RestoreTwoTone.js b/packages/material-ui-icons/src/RestoreTwoTone.js new file mode 100644 index 00000000000000..d736935083b7a5 --- /dev/null +++ b/packages/material-ui-icons/src/RestoreTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RestoreTwoTone'); diff --git a/packages/material-ui-icons/src/RingVolume.js b/packages/material-ui-icons/src/RingVolume.js index 149dd363b79be5..467f35fc1a5c3f 100644 --- a/packages/material-ui-icons/src/RingVolume.js +++ b/packages/material-ui-icons/src/RingVolume.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'RingVolume'); diff --git a/packages/material-ui-icons/src/RingVolumeOutlined.js b/packages/material-ui-icons/src/RingVolumeOutlined.js new file mode 100644 index 00000000000000..1014ca2968135a --- /dev/null +++ b/packages/material-ui-icons/src/RingVolumeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RingVolumeOutlined'); diff --git a/packages/material-ui-icons/src/RingVolumeRounded.js b/packages/material-ui-icons/src/RingVolumeRounded.js new file mode 100644 index 00000000000000..44994c594c71d9 --- /dev/null +++ b/packages/material-ui-icons/src/RingVolumeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RingVolumeRounded'); diff --git a/packages/material-ui-icons/src/RingVolumeSharp.js b/packages/material-ui-icons/src/RingVolumeSharp.js new file mode 100644 index 00000000000000..bba75fa79ce08d --- /dev/null +++ b/packages/material-ui-icons/src/RingVolumeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RingVolumeSharp'); diff --git a/packages/material-ui-icons/src/RingVolumeTwoTone.js b/packages/material-ui-icons/src/RingVolumeTwoTone.js new file mode 100644 index 00000000000000..774e986264893a --- /dev/null +++ b/packages/material-ui-icons/src/RingVolumeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RingVolumeTwoTone'); diff --git a/packages/material-ui-icons/src/Room.js b/packages/material-ui-icons/src/Room.js index d83da07c679575..996cbf1c7e5fd9 100644 --- a/packages/material-ui-icons/src/Room.js +++ b/packages/material-ui-icons/src/Room.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Room'); diff --git a/packages/material-ui-icons/src/RoomOutlined.js b/packages/material-ui-icons/src/RoomOutlined.js new file mode 100644 index 00000000000000..b108e9033f49d1 --- /dev/null +++ b/packages/material-ui-icons/src/RoomOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoomOutlined'); diff --git a/packages/material-ui-icons/src/RoomRounded.js b/packages/material-ui-icons/src/RoomRounded.js new file mode 100644 index 00000000000000..6c5411dc12d7fc --- /dev/null +++ b/packages/material-ui-icons/src/RoomRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoomRounded'); diff --git a/packages/material-ui-icons/src/RoomService.js b/packages/material-ui-icons/src/RoomService.js index c06eb2c3699b14..077457456af24c 100644 --- a/packages/material-ui-icons/src/RoomService.js +++ b/packages/material-ui-icons/src/RoomService.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'RoomService'); diff --git a/packages/material-ui-icons/src/RoomServiceOutlined.js b/packages/material-ui-icons/src/RoomServiceOutlined.js new file mode 100644 index 00000000000000..b89abefe27c0da --- /dev/null +++ b/packages/material-ui-icons/src/RoomServiceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoomServiceOutlined'); diff --git a/packages/material-ui-icons/src/RoomServiceRounded.js b/packages/material-ui-icons/src/RoomServiceRounded.js new file mode 100644 index 00000000000000..9bfb99f4ef757c --- /dev/null +++ b/packages/material-ui-icons/src/RoomServiceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoomServiceRounded'); diff --git a/packages/material-ui-icons/src/RoomServiceSharp.js b/packages/material-ui-icons/src/RoomServiceSharp.js new file mode 100644 index 00000000000000..75edf28012b62b --- /dev/null +++ b/packages/material-ui-icons/src/RoomServiceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoomServiceSharp'); diff --git a/packages/material-ui-icons/src/RoomServiceTwoTone.js b/packages/material-ui-icons/src/RoomServiceTwoTone.js new file mode 100644 index 00000000000000..bb626fd4339921 --- /dev/null +++ b/packages/material-ui-icons/src/RoomServiceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoomServiceTwoTone'); diff --git a/packages/material-ui-icons/src/RoomSharp.js b/packages/material-ui-icons/src/RoomSharp.js new file mode 100644 index 00000000000000..0d20371f6895c4 --- /dev/null +++ b/packages/material-ui-icons/src/RoomSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoomSharp'); diff --git a/packages/material-ui-icons/src/RoomTwoTone.js b/packages/material-ui-icons/src/RoomTwoTone.js new file mode 100644 index 00000000000000..39644f87096420 --- /dev/null +++ b/packages/material-ui-icons/src/RoomTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoomTwoTone'); diff --git a/packages/material-ui-icons/src/Rotate90DegreesCcw.js b/packages/material-ui-icons/src/Rotate90DegreesCcw.js index 2702c51e5ff7b1..7b1a018390f47e 100644 --- a/packages/material-ui-icons/src/Rotate90DegreesCcw.js +++ b/packages/material-ui-icons/src/Rotate90DegreesCcw.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Rotate90DegreesCcw'); diff --git a/packages/material-ui-icons/src/Rotate90DegreesCcwOutlined.js b/packages/material-ui-icons/src/Rotate90DegreesCcwOutlined.js new file mode 100644 index 00000000000000..406a12517481a0 --- /dev/null +++ b/packages/material-ui-icons/src/Rotate90DegreesCcwOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Rotate90DegreesCcwOutlined'); diff --git a/packages/material-ui-icons/src/Rotate90DegreesCcwRounded.js b/packages/material-ui-icons/src/Rotate90DegreesCcwRounded.js new file mode 100644 index 00000000000000..d8cdf79f55dec8 --- /dev/null +++ b/packages/material-ui-icons/src/Rotate90DegreesCcwRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Rotate90DegreesCcwRounded'); diff --git a/packages/material-ui-icons/src/Rotate90DegreesCcwSharp.js b/packages/material-ui-icons/src/Rotate90DegreesCcwSharp.js new file mode 100644 index 00000000000000..4b153bc759bc57 --- /dev/null +++ b/packages/material-ui-icons/src/Rotate90DegreesCcwSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Rotate90DegreesCcwSharp'); diff --git a/packages/material-ui-icons/src/Rotate90DegreesCcwTwoTone.js b/packages/material-ui-icons/src/Rotate90DegreesCcwTwoTone.js new file mode 100644 index 00000000000000..2facc7e61eeda7 --- /dev/null +++ b/packages/material-ui-icons/src/Rotate90DegreesCcwTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Rotate90DegreesCcwTwoTone'); diff --git a/packages/material-ui-icons/src/RotateLeftOutlined.js b/packages/material-ui-icons/src/RotateLeftOutlined.js new file mode 100644 index 00000000000000..2ce6b59398ebd4 --- /dev/null +++ b/packages/material-ui-icons/src/RotateLeftOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RotateLeftOutlined'); diff --git a/packages/material-ui-icons/src/RotateLeftRounded.js b/packages/material-ui-icons/src/RotateLeftRounded.js new file mode 100644 index 00000000000000..dbef013227fea2 --- /dev/null +++ b/packages/material-ui-icons/src/RotateLeftRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RotateLeftRounded'); diff --git a/packages/material-ui-icons/src/RotateLeftSharp.js b/packages/material-ui-icons/src/RotateLeftSharp.js new file mode 100644 index 00000000000000..1c3f106b1ef9f0 --- /dev/null +++ b/packages/material-ui-icons/src/RotateLeftSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RotateLeftSharp'); diff --git a/packages/material-ui-icons/src/RotateLeftTwoTone.js b/packages/material-ui-icons/src/RotateLeftTwoTone.js new file mode 100644 index 00000000000000..6327e26cf7d6dd --- /dev/null +++ b/packages/material-ui-icons/src/RotateLeftTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RotateLeftTwoTone'); diff --git a/packages/material-ui-icons/src/RotateRight.js b/packages/material-ui-icons/src/RotateRight.js index 5daf0142909731..91fd0e4dff6139 100644 --- a/packages/material-ui-icons/src/RotateRight.js +++ b/packages/material-ui-icons/src/RotateRight.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'RotateRight'); diff --git a/packages/material-ui-icons/src/RotateRightOutlined.js b/packages/material-ui-icons/src/RotateRightOutlined.js new file mode 100644 index 00000000000000..63eca46615811a --- /dev/null +++ b/packages/material-ui-icons/src/RotateRightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RotateRightOutlined'); diff --git a/packages/material-ui-icons/src/RotateRightRounded.js b/packages/material-ui-icons/src/RotateRightRounded.js new file mode 100644 index 00000000000000..e88d2155d9a50e --- /dev/null +++ b/packages/material-ui-icons/src/RotateRightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RotateRightRounded'); diff --git a/packages/material-ui-icons/src/RotateRightSharp.js b/packages/material-ui-icons/src/RotateRightSharp.js new file mode 100644 index 00000000000000..1957d36546c569 --- /dev/null +++ b/packages/material-ui-icons/src/RotateRightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RotateRightSharp'); diff --git a/packages/material-ui-icons/src/RotateRightTwoTone.js b/packages/material-ui-icons/src/RotateRightTwoTone.js new file mode 100644 index 00000000000000..ecd92a99ad9f4d --- /dev/null +++ b/packages/material-ui-icons/src/RotateRightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RotateRightTwoTone'); diff --git a/packages/material-ui-icons/src/RoundedCorner.js b/packages/material-ui-icons/src/RoundedCorner.js index 23a1eed6b27074..0b813f2410a7fd 100644 --- a/packages/material-ui-icons/src/RoundedCorner.js +++ b/packages/material-ui-icons/src/RoundedCorner.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'RoundedCorner'); diff --git a/packages/material-ui-icons/src/RoundedCornerOutlined.js b/packages/material-ui-icons/src/RoundedCornerOutlined.js new file mode 100644 index 00000000000000..6a1f78facb23fa --- /dev/null +++ b/packages/material-ui-icons/src/RoundedCornerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoundedCornerOutlined'); diff --git a/packages/material-ui-icons/src/RoundedCornerRounded.js b/packages/material-ui-icons/src/RoundedCornerRounded.js new file mode 100644 index 00000000000000..0cc505fdd5ad57 --- /dev/null +++ b/packages/material-ui-icons/src/RoundedCornerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoundedCornerRounded'); diff --git a/packages/material-ui-icons/src/RoundedCornerSharp.js b/packages/material-ui-icons/src/RoundedCornerSharp.js new file mode 100644 index 00000000000000..105157bbcd5ad6 --- /dev/null +++ b/packages/material-ui-icons/src/RoundedCornerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoundedCornerSharp'); diff --git a/packages/material-ui-icons/src/RoundedCornerTwoTone.js b/packages/material-ui-icons/src/RoundedCornerTwoTone.js new file mode 100644 index 00000000000000..a8f6c0c964f19c --- /dev/null +++ b/packages/material-ui-icons/src/RoundedCornerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RoundedCornerTwoTone'); diff --git a/packages/material-ui-icons/src/RouterOutlined.js b/packages/material-ui-icons/src/RouterOutlined.js new file mode 100644 index 00000000000000..a1276b34a7ec19 --- /dev/null +++ b/packages/material-ui-icons/src/RouterOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RouterOutlined'); diff --git a/packages/material-ui-icons/src/RouterRounded.js b/packages/material-ui-icons/src/RouterRounded.js new file mode 100644 index 00000000000000..cfc41a2e5176ea --- /dev/null +++ b/packages/material-ui-icons/src/RouterRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RouterRounded'); diff --git a/packages/material-ui-icons/src/RouterSharp.js b/packages/material-ui-icons/src/RouterSharp.js new file mode 100644 index 00000000000000..7e36ff09501336 --- /dev/null +++ b/packages/material-ui-icons/src/RouterSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RouterSharp'); diff --git a/packages/material-ui-icons/src/RouterTwoTone.js b/packages/material-ui-icons/src/RouterTwoTone.js new file mode 100644 index 00000000000000..2dff0d022b7a32 --- /dev/null +++ b/packages/material-ui-icons/src/RouterTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RouterTwoTone'); diff --git a/packages/material-ui-icons/src/Rowing.js b/packages/material-ui-icons/src/Rowing.js index 9ff797779de9b2..5deca10aeffdca 100644 --- a/packages/material-ui-icons/src/Rowing.js +++ b/packages/material-ui-icons/src/Rowing.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Rowing'); diff --git a/packages/material-ui-icons/src/RowingOutlined.js b/packages/material-ui-icons/src/RowingOutlined.js new file mode 100644 index 00000000000000..4801fdb8c2ba03 --- /dev/null +++ b/packages/material-ui-icons/src/RowingOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RowingOutlined'); diff --git a/packages/material-ui-icons/src/RowingRounded.js b/packages/material-ui-icons/src/RowingRounded.js new file mode 100644 index 00000000000000..17bce792b83515 --- /dev/null +++ b/packages/material-ui-icons/src/RowingRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RowingRounded'); diff --git a/packages/material-ui-icons/src/RowingSharp.js b/packages/material-ui-icons/src/RowingSharp.js new file mode 100644 index 00000000000000..132459c562d9c8 --- /dev/null +++ b/packages/material-ui-icons/src/RowingSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RowingSharp'); diff --git a/packages/material-ui-icons/src/RowingTwoTone.js b/packages/material-ui-icons/src/RowingTwoTone.js new file mode 100644 index 00000000000000..1685cbc1086f1c --- /dev/null +++ b/packages/material-ui-icons/src/RowingTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RowingTwoTone'); diff --git a/packages/material-ui-icons/src/RssFeedOutlined.js b/packages/material-ui-icons/src/RssFeedOutlined.js new file mode 100644 index 00000000000000..bfedda1a5be252 --- /dev/null +++ b/packages/material-ui-icons/src/RssFeedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RssFeedOutlined'); diff --git a/packages/material-ui-icons/src/RssFeedRounded.js b/packages/material-ui-icons/src/RssFeedRounded.js new file mode 100644 index 00000000000000..0c0755f81a4acb --- /dev/null +++ b/packages/material-ui-icons/src/RssFeedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RssFeedRounded'); diff --git a/packages/material-ui-icons/src/RssFeedSharp.js b/packages/material-ui-icons/src/RssFeedSharp.js new file mode 100644 index 00000000000000..aea4e029d7ec61 --- /dev/null +++ b/packages/material-ui-icons/src/RssFeedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RssFeedSharp'); diff --git a/packages/material-ui-icons/src/RssFeedTwoTone.js b/packages/material-ui-icons/src/RssFeedTwoTone.js new file mode 100644 index 00000000000000..3e4efbb47846cc --- /dev/null +++ b/packages/material-ui-icons/src/RssFeedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RssFeedTwoTone'); diff --git a/packages/material-ui-icons/src/RvHookup.js b/packages/material-ui-icons/src/RvHookup.js index 51b8f68624a581..63819f1b82c415 100644 --- a/packages/material-ui-icons/src/RvHookup.js +++ b/packages/material-ui-icons/src/RvHookup.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'RvHookup'); diff --git a/packages/material-ui-icons/src/RvHookupOutlined.js b/packages/material-ui-icons/src/RvHookupOutlined.js new file mode 100644 index 00000000000000..0a050b6efd7b10 --- /dev/null +++ b/packages/material-ui-icons/src/RvHookupOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RvHookupOutlined'); diff --git a/packages/material-ui-icons/src/RvHookupRounded.js b/packages/material-ui-icons/src/RvHookupRounded.js new file mode 100644 index 00000000000000..5c7e413926a7f3 --- /dev/null +++ b/packages/material-ui-icons/src/RvHookupRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RvHookupRounded'); diff --git a/packages/material-ui-icons/src/RvHookupSharp.js b/packages/material-ui-icons/src/RvHookupSharp.js new file mode 100644 index 00000000000000..2e3e64fc415fd1 --- /dev/null +++ b/packages/material-ui-icons/src/RvHookupSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RvHookupSharp'); diff --git a/packages/material-ui-icons/src/RvHookupTwoTone.js b/packages/material-ui-icons/src/RvHookupTwoTone.js new file mode 100644 index 00000000000000..3892de3c30b78c --- /dev/null +++ b/packages/material-ui-icons/src/RvHookupTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'RvHookupTwoTone'); diff --git a/packages/material-ui-icons/src/SatelliteOutlined.js b/packages/material-ui-icons/src/SatelliteOutlined.js new file mode 100644 index 00000000000000..e073e9b45b1276 --- /dev/null +++ b/packages/material-ui-icons/src/SatelliteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SatelliteOutlined'); diff --git a/packages/material-ui-icons/src/SatelliteRounded.js b/packages/material-ui-icons/src/SatelliteRounded.js new file mode 100644 index 00000000000000..649af415c2e30e --- /dev/null +++ b/packages/material-ui-icons/src/SatelliteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SatelliteRounded'); diff --git a/packages/material-ui-icons/src/SatelliteSharp.js b/packages/material-ui-icons/src/SatelliteSharp.js new file mode 100644 index 00000000000000..f22c743f528b66 --- /dev/null +++ b/packages/material-ui-icons/src/SatelliteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SatelliteSharp'); diff --git a/packages/material-ui-icons/src/SatelliteTwoTone.js b/packages/material-ui-icons/src/SatelliteTwoTone.js new file mode 100644 index 00000000000000..d9a3b5155c6029 --- /dev/null +++ b/packages/material-ui-icons/src/SatelliteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SatelliteTwoTone'); diff --git a/packages/material-ui-icons/src/Save.js b/packages/material-ui-icons/src/Save.js index cef0578afd8782..e1938bbabea9f1 100644 --- a/packages/material-ui-icons/src/Save.js +++ b/packages/material-ui-icons/src/Save.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Save'); diff --git a/packages/material-ui-icons/src/SaveAlt.js b/packages/material-ui-icons/src/SaveAlt.js new file mode 100644 index 00000000000000..b9b8b54d4ac373 --- /dev/null +++ b/packages/material-ui-icons/src/SaveAlt.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SaveAlt'); diff --git a/packages/material-ui-icons/src/SaveAltOutlined.js b/packages/material-ui-icons/src/SaveAltOutlined.js new file mode 100644 index 00000000000000..a0869229007fa6 --- /dev/null +++ b/packages/material-ui-icons/src/SaveAltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SaveAltOutlined'); diff --git a/packages/material-ui-icons/src/SaveAltRounded.js b/packages/material-ui-icons/src/SaveAltRounded.js new file mode 100644 index 00000000000000..da47bd432cecb3 --- /dev/null +++ b/packages/material-ui-icons/src/SaveAltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SaveAltRounded'); diff --git a/packages/material-ui-icons/src/SaveAltSharp.js b/packages/material-ui-icons/src/SaveAltSharp.js new file mode 100644 index 00000000000000..0b62a0156f2641 --- /dev/null +++ b/packages/material-ui-icons/src/SaveAltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SaveAltSharp'); diff --git a/packages/material-ui-icons/src/SaveAltTwoTone.js b/packages/material-ui-icons/src/SaveAltTwoTone.js new file mode 100644 index 00000000000000..e6f11ea5f56ff0 --- /dev/null +++ b/packages/material-ui-icons/src/SaveAltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SaveAltTwoTone'); diff --git a/packages/material-ui-icons/src/SaveOutlined.js b/packages/material-ui-icons/src/SaveOutlined.js new file mode 100644 index 00000000000000..1e93871cbaa2d3 --- /dev/null +++ b/packages/material-ui-icons/src/SaveOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SaveOutlined'); diff --git a/packages/material-ui-icons/src/SaveRounded.js b/packages/material-ui-icons/src/SaveRounded.js new file mode 100644 index 00000000000000..69678631232587 --- /dev/null +++ b/packages/material-ui-icons/src/SaveRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SaveRounded'); diff --git a/packages/material-ui-icons/src/SaveSharp.js b/packages/material-ui-icons/src/SaveSharp.js new file mode 100644 index 00000000000000..8279e22fec6fcc --- /dev/null +++ b/packages/material-ui-icons/src/SaveSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SaveSharp'); diff --git a/packages/material-ui-icons/src/SaveTwoTone.js b/packages/material-ui-icons/src/SaveTwoTone.js new file mode 100644 index 00000000000000..7b195017b7d24a --- /dev/null +++ b/packages/material-ui-icons/src/SaveTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SaveTwoTone'); diff --git a/packages/material-ui-icons/src/ScannerOutlined.js b/packages/material-ui-icons/src/ScannerOutlined.js new file mode 100644 index 00000000000000..93c40a433b71e8 --- /dev/null +++ b/packages/material-ui-icons/src/ScannerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScannerOutlined'); diff --git a/packages/material-ui-icons/src/ScannerRounded.js b/packages/material-ui-icons/src/ScannerRounded.js new file mode 100644 index 00000000000000..240d7f3456aa29 --- /dev/null +++ b/packages/material-ui-icons/src/ScannerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScannerRounded'); diff --git a/packages/material-ui-icons/src/ScannerSharp.js b/packages/material-ui-icons/src/ScannerSharp.js new file mode 100644 index 00000000000000..ff10f6527f7ed5 --- /dev/null +++ b/packages/material-ui-icons/src/ScannerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScannerSharp'); diff --git a/packages/material-ui-icons/src/ScannerTwoTone.js b/packages/material-ui-icons/src/ScannerTwoTone.js new file mode 100644 index 00000000000000..f050c92eb0d7a4 --- /dev/null +++ b/packages/material-ui-icons/src/ScannerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScannerTwoTone'); diff --git a/packages/material-ui-icons/src/ScatterPlot.js b/packages/material-ui-icons/src/ScatterPlot.js new file mode 100644 index 00000000000000..8ba79825c77b3f --- /dev/null +++ b/packages/material-ui-icons/src/ScatterPlot.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScatterPlot'); diff --git a/packages/material-ui-icons/src/ScatterPlotOutlined.js b/packages/material-ui-icons/src/ScatterPlotOutlined.js new file mode 100644 index 00000000000000..f785cf5eb5d81b --- /dev/null +++ b/packages/material-ui-icons/src/ScatterPlotOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScatterPlotOutlined'); diff --git a/packages/material-ui-icons/src/ScatterPlotRounded.js b/packages/material-ui-icons/src/ScatterPlotRounded.js new file mode 100644 index 00000000000000..ab2227e9ed170b --- /dev/null +++ b/packages/material-ui-icons/src/ScatterPlotRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScatterPlotRounded'); diff --git a/packages/material-ui-icons/src/ScatterPlotSharp.js b/packages/material-ui-icons/src/ScatterPlotSharp.js new file mode 100644 index 00000000000000..ffd0830329fada --- /dev/null +++ b/packages/material-ui-icons/src/ScatterPlotSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScatterPlotSharp'); diff --git a/packages/material-ui-icons/src/ScatterPlotTwoTone.js b/packages/material-ui-icons/src/ScatterPlotTwoTone.js new file mode 100644 index 00000000000000..6755f03baa3cd7 --- /dev/null +++ b/packages/material-ui-icons/src/ScatterPlotTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScatterPlotTwoTone'); diff --git a/packages/material-ui-icons/src/Schedule.js b/packages/material-ui-icons/src/Schedule.js index b1e2135401fde3..b0091bf729f988 100644 --- a/packages/material-ui-icons/src/Schedule.js +++ b/packages/material-ui-icons/src/Schedule.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Schedule'); diff --git a/packages/material-ui-icons/src/ScheduleOutlined.js b/packages/material-ui-icons/src/ScheduleOutlined.js new file mode 100644 index 00000000000000..facbaaf2176137 --- /dev/null +++ b/packages/material-ui-icons/src/ScheduleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScheduleOutlined'); diff --git a/packages/material-ui-icons/src/ScheduleRounded.js b/packages/material-ui-icons/src/ScheduleRounded.js new file mode 100644 index 00000000000000..854eee1abfa2bf --- /dev/null +++ b/packages/material-ui-icons/src/ScheduleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScheduleRounded'); diff --git a/packages/material-ui-icons/src/ScheduleSharp.js b/packages/material-ui-icons/src/ScheduleSharp.js new file mode 100644 index 00000000000000..b23fbb794dcac6 --- /dev/null +++ b/packages/material-ui-icons/src/ScheduleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScheduleSharp'); diff --git a/packages/material-ui-icons/src/ScheduleTwoTone.js b/packages/material-ui-icons/src/ScheduleTwoTone.js new file mode 100644 index 00000000000000..4828cf6e853bd7 --- /dev/null +++ b/packages/material-ui-icons/src/ScheduleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScheduleTwoTone'); diff --git a/packages/material-ui-icons/src/SchoolOutlined.js b/packages/material-ui-icons/src/SchoolOutlined.js new file mode 100644 index 00000000000000..86739d781c7a89 --- /dev/null +++ b/packages/material-ui-icons/src/SchoolOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SchoolOutlined'); diff --git a/packages/material-ui-icons/src/SchoolRounded.js b/packages/material-ui-icons/src/SchoolRounded.js new file mode 100644 index 00000000000000..830f462e6e5509 --- /dev/null +++ b/packages/material-ui-icons/src/SchoolRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SchoolRounded'); diff --git a/packages/material-ui-icons/src/SchoolSharp.js b/packages/material-ui-icons/src/SchoolSharp.js new file mode 100644 index 00000000000000..8f5b8c58c81ffd --- /dev/null +++ b/packages/material-ui-icons/src/SchoolSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SchoolSharp'); diff --git a/packages/material-ui-icons/src/SchoolTwoTone.js b/packages/material-ui-icons/src/SchoolTwoTone.js new file mode 100644 index 00000000000000..843e883ca1e427 --- /dev/null +++ b/packages/material-ui-icons/src/SchoolTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SchoolTwoTone'); diff --git a/packages/material-ui-icons/src/Score.js b/packages/material-ui-icons/src/Score.js new file mode 100644 index 00000000000000..c46527cd2b690b --- /dev/null +++ b/packages/material-ui-icons/src/Score.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Score'); diff --git a/packages/material-ui-icons/src/ScoreOutlined.js b/packages/material-ui-icons/src/ScoreOutlined.js new file mode 100644 index 00000000000000..6fead04f0569ea --- /dev/null +++ b/packages/material-ui-icons/src/ScoreOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScoreOutlined'); diff --git a/packages/material-ui-icons/src/ScoreRounded.js b/packages/material-ui-icons/src/ScoreRounded.js new file mode 100644 index 00000000000000..64b45ae0ceeb52 --- /dev/null +++ b/packages/material-ui-icons/src/ScoreRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScoreRounded'); diff --git a/packages/material-ui-icons/src/ScoreSharp.js b/packages/material-ui-icons/src/ScoreSharp.js new file mode 100644 index 00000000000000..481c959ea65ba3 --- /dev/null +++ b/packages/material-ui-icons/src/ScoreSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScoreSharp'); diff --git a/packages/material-ui-icons/src/ScoreTwoTone.js b/packages/material-ui-icons/src/ScoreTwoTone.js new file mode 100644 index 00000000000000..514044bc8551ee --- /dev/null +++ b/packages/material-ui-icons/src/ScoreTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScoreTwoTone'); diff --git a/packages/material-ui-icons/src/ScreenLockLandscape.js b/packages/material-ui-icons/src/ScreenLockLandscape.js index b2151c775a4507..b42d16e04c1cc5 100644 --- a/packages/material-ui-icons/src/ScreenLockLandscape.js +++ b/packages/material-ui-icons/src/ScreenLockLandscape.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ScreenLockLandscape'); diff --git a/packages/material-ui-icons/src/ScreenLockLandscapeOutlined.js b/packages/material-ui-icons/src/ScreenLockLandscapeOutlined.js new file mode 100644 index 00000000000000..5011a7e8e8eee5 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockLandscapeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockLandscapeOutlined'); diff --git a/packages/material-ui-icons/src/ScreenLockLandscapeRounded.js b/packages/material-ui-icons/src/ScreenLockLandscapeRounded.js new file mode 100644 index 00000000000000..0cd493b27cd3f9 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockLandscapeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockLandscapeRounded'); diff --git a/packages/material-ui-icons/src/ScreenLockLandscapeSharp.js b/packages/material-ui-icons/src/ScreenLockLandscapeSharp.js new file mode 100644 index 00000000000000..2d3b4d127ca038 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockLandscapeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockLandscapeSharp'); diff --git a/packages/material-ui-icons/src/ScreenLockLandscapeTwoTone.js b/packages/material-ui-icons/src/ScreenLockLandscapeTwoTone.js new file mode 100644 index 00000000000000..7999d3f9904702 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockLandscapeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockLandscapeTwoTone'); diff --git a/packages/material-ui-icons/src/ScreenLockPortrait.js b/packages/material-ui-icons/src/ScreenLockPortrait.js index fbac7b8a4d8855..7a9a0e4172fa55 100644 --- a/packages/material-ui-icons/src/ScreenLockPortrait.js +++ b/packages/material-ui-icons/src/ScreenLockPortrait.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ScreenLockPortrait'); diff --git a/packages/material-ui-icons/src/ScreenLockPortraitOutlined.js b/packages/material-ui-icons/src/ScreenLockPortraitOutlined.js new file mode 100644 index 00000000000000..2dd19b449e8ee9 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockPortraitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockPortraitOutlined'); diff --git a/packages/material-ui-icons/src/ScreenLockPortraitRounded.js b/packages/material-ui-icons/src/ScreenLockPortraitRounded.js new file mode 100644 index 00000000000000..bc26bc67994e1a --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockPortraitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockPortraitRounded'); diff --git a/packages/material-ui-icons/src/ScreenLockPortraitSharp.js b/packages/material-ui-icons/src/ScreenLockPortraitSharp.js new file mode 100644 index 00000000000000..0d15a7f6d62ccb --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockPortraitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockPortraitSharp'); diff --git a/packages/material-ui-icons/src/ScreenLockPortraitTwoTone.js b/packages/material-ui-icons/src/ScreenLockPortraitTwoTone.js new file mode 100644 index 00000000000000..6345be58091eff --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockPortraitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockPortraitTwoTone'); diff --git a/packages/material-ui-icons/src/ScreenLockRotation.js b/packages/material-ui-icons/src/ScreenLockRotation.js index 1edadeb35748a3..0e0adff7af5e3b 100644 --- a/packages/material-ui-icons/src/ScreenLockRotation.js +++ b/packages/material-ui-icons/src/ScreenLockRotation.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ScreenLockRotation'); diff --git a/packages/material-ui-icons/src/ScreenLockRotationOutlined.js b/packages/material-ui-icons/src/ScreenLockRotationOutlined.js new file mode 100644 index 00000000000000..21939b9d7c163a --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockRotationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockRotationOutlined'); diff --git a/packages/material-ui-icons/src/ScreenLockRotationRounded.js b/packages/material-ui-icons/src/ScreenLockRotationRounded.js new file mode 100644 index 00000000000000..c5fbf20b6e7abb --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockRotationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockRotationRounded'); diff --git a/packages/material-ui-icons/src/ScreenLockRotationSharp.js b/packages/material-ui-icons/src/ScreenLockRotationSharp.js new file mode 100644 index 00000000000000..c7ae95ab4d164b --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockRotationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockRotationSharp'); diff --git a/packages/material-ui-icons/src/ScreenLockRotationTwoTone.js b/packages/material-ui-icons/src/ScreenLockRotationTwoTone.js new file mode 100644 index 00000000000000..77b008e658228c --- /dev/null +++ b/packages/material-ui-icons/src/ScreenLockRotationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenLockRotationTwoTone'); diff --git a/packages/material-ui-icons/src/ScreenRotation.js b/packages/material-ui-icons/src/ScreenRotation.js index 4685bcf1222e50..775ce38b3fb545 100644 --- a/packages/material-ui-icons/src/ScreenRotation.js +++ b/packages/material-ui-icons/src/ScreenRotation.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ScreenRotation'); diff --git a/packages/material-ui-icons/src/ScreenRotationOutlined.js b/packages/material-ui-icons/src/ScreenRotationOutlined.js new file mode 100644 index 00000000000000..efabd0334967a5 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenRotationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenRotationOutlined'); diff --git a/packages/material-ui-icons/src/ScreenRotationRounded.js b/packages/material-ui-icons/src/ScreenRotationRounded.js new file mode 100644 index 00000000000000..95d7eef6f1e626 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenRotationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenRotationRounded'); diff --git a/packages/material-ui-icons/src/ScreenRotationSharp.js b/packages/material-ui-icons/src/ScreenRotationSharp.js new file mode 100644 index 00000000000000..32d2bdfa2d2b77 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenRotationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenRotationSharp'); diff --git a/packages/material-ui-icons/src/ScreenRotationTwoTone.js b/packages/material-ui-icons/src/ScreenRotationTwoTone.js new file mode 100644 index 00000000000000..0467751bc5e856 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenRotationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenRotationTwoTone'); diff --git a/packages/material-ui-icons/src/ScreenShare.js b/packages/material-ui-icons/src/ScreenShare.js index b2d92d7d235033..782d364dc39d84 100644 --- a/packages/material-ui-icons/src/ScreenShare.js +++ b/packages/material-ui-icons/src/ScreenShare.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ScreenShare'); diff --git a/packages/material-ui-icons/src/ScreenShareOutlined.js b/packages/material-ui-icons/src/ScreenShareOutlined.js new file mode 100644 index 00000000000000..daec63c348ae50 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenShareOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenShareOutlined'); diff --git a/packages/material-ui-icons/src/ScreenShareRounded.js b/packages/material-ui-icons/src/ScreenShareRounded.js new file mode 100644 index 00000000000000..3adc539338df93 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenShareRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenShareRounded'); diff --git a/packages/material-ui-icons/src/ScreenShareSharp.js b/packages/material-ui-icons/src/ScreenShareSharp.js new file mode 100644 index 00000000000000..93f2a07f2c3fd6 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenShareSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenShareSharp'); diff --git a/packages/material-ui-icons/src/ScreenShareTwoTone.js b/packages/material-ui-icons/src/ScreenShareTwoTone.js new file mode 100644 index 00000000000000..50ec71b86df4f7 --- /dev/null +++ b/packages/material-ui-icons/src/ScreenShareTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ScreenShareTwoTone'); diff --git a/packages/material-ui-icons/src/SdCardOutlined.js b/packages/material-ui-icons/src/SdCardOutlined.js new file mode 100644 index 00000000000000..e66898bbad24fb --- /dev/null +++ b/packages/material-ui-icons/src/SdCardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SdCardOutlined'); diff --git a/packages/material-ui-icons/src/SdCardRounded.js b/packages/material-ui-icons/src/SdCardRounded.js new file mode 100644 index 00000000000000..1a56c8ccc1afbd --- /dev/null +++ b/packages/material-ui-icons/src/SdCardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SdCardRounded'); diff --git a/packages/material-ui-icons/src/SdCardSharp.js b/packages/material-ui-icons/src/SdCardSharp.js new file mode 100644 index 00000000000000..4de31f45d31a9b --- /dev/null +++ b/packages/material-ui-icons/src/SdCardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SdCardSharp'); diff --git a/packages/material-ui-icons/src/SdCardTwoTone.js b/packages/material-ui-icons/src/SdCardTwoTone.js new file mode 100644 index 00000000000000..b506bd446322d0 --- /dev/null +++ b/packages/material-ui-icons/src/SdCardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SdCardTwoTone'); diff --git a/packages/material-ui-icons/src/SdStorageOutlined.js b/packages/material-ui-icons/src/SdStorageOutlined.js new file mode 100644 index 00000000000000..727378011fe524 --- /dev/null +++ b/packages/material-ui-icons/src/SdStorageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SdStorageOutlined'); diff --git a/packages/material-ui-icons/src/SdStorageRounded.js b/packages/material-ui-icons/src/SdStorageRounded.js new file mode 100644 index 00000000000000..1897077cb6a6fa --- /dev/null +++ b/packages/material-ui-icons/src/SdStorageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SdStorageRounded'); diff --git a/packages/material-ui-icons/src/SdStorageSharp.js b/packages/material-ui-icons/src/SdStorageSharp.js new file mode 100644 index 00000000000000..cbfc0e5374aecb --- /dev/null +++ b/packages/material-ui-icons/src/SdStorageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SdStorageSharp'); diff --git a/packages/material-ui-icons/src/SdStorageTwoTone.js b/packages/material-ui-icons/src/SdStorageTwoTone.js new file mode 100644 index 00000000000000..fa4142b646602e --- /dev/null +++ b/packages/material-ui-icons/src/SdStorageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SdStorageTwoTone'); diff --git a/packages/material-ui-icons/src/Search.js b/packages/material-ui-icons/src/Search.js index bc2d6bd2e3a2f2..b4c6b4117135d3 100644 --- a/packages/material-ui-icons/src/Search.js +++ b/packages/material-ui-icons/src/Search.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Search'); diff --git a/packages/material-ui-icons/src/SearchOutlined.js b/packages/material-ui-icons/src/SearchOutlined.js new file mode 100644 index 00000000000000..f4871e2bc5efca --- /dev/null +++ b/packages/material-ui-icons/src/SearchOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SearchOutlined'); diff --git a/packages/material-ui-icons/src/SearchRounded.js b/packages/material-ui-icons/src/SearchRounded.js new file mode 100644 index 00000000000000..3bb73af0f03595 --- /dev/null +++ b/packages/material-ui-icons/src/SearchRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SearchRounded'); diff --git a/packages/material-ui-icons/src/SearchSharp.js b/packages/material-ui-icons/src/SearchSharp.js new file mode 100644 index 00000000000000..25c78938d070ff --- /dev/null +++ b/packages/material-ui-icons/src/SearchSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SearchSharp'); diff --git a/packages/material-ui-icons/src/SearchTwoTone.js b/packages/material-ui-icons/src/SearchTwoTone.js new file mode 100644 index 00000000000000..bc5a755c2aa5fb --- /dev/null +++ b/packages/material-ui-icons/src/SearchTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SearchTwoTone'); diff --git a/packages/material-ui-icons/src/SecurityOutlined.js b/packages/material-ui-icons/src/SecurityOutlined.js new file mode 100644 index 00000000000000..3c0fbe549dff05 --- /dev/null +++ b/packages/material-ui-icons/src/SecurityOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SecurityOutlined'); diff --git a/packages/material-ui-icons/src/SecurityRounded.js b/packages/material-ui-icons/src/SecurityRounded.js new file mode 100644 index 00000000000000..15cf88673e9373 --- /dev/null +++ b/packages/material-ui-icons/src/SecurityRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SecurityRounded'); diff --git a/packages/material-ui-icons/src/SecuritySharp.js b/packages/material-ui-icons/src/SecuritySharp.js new file mode 100644 index 00000000000000..f5277f77335b29 --- /dev/null +++ b/packages/material-ui-icons/src/SecuritySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SecuritySharp'); diff --git a/packages/material-ui-icons/src/SecurityTwoTone.js b/packages/material-ui-icons/src/SecurityTwoTone.js new file mode 100644 index 00000000000000..8dc18e189f9468 --- /dev/null +++ b/packages/material-ui-icons/src/SecurityTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SecurityTwoTone'); diff --git a/packages/material-ui-icons/src/SelectAllOutlined.js b/packages/material-ui-icons/src/SelectAllOutlined.js new file mode 100644 index 00000000000000..967a27fcffaff3 --- /dev/null +++ b/packages/material-ui-icons/src/SelectAllOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SelectAllOutlined'); diff --git a/packages/material-ui-icons/src/SelectAllRounded.js b/packages/material-ui-icons/src/SelectAllRounded.js new file mode 100644 index 00000000000000..25fcfdc7e8101f --- /dev/null +++ b/packages/material-ui-icons/src/SelectAllRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SelectAllRounded'); diff --git a/packages/material-ui-icons/src/SelectAllSharp.js b/packages/material-ui-icons/src/SelectAllSharp.js new file mode 100644 index 00000000000000..3cc66c8983efb1 --- /dev/null +++ b/packages/material-ui-icons/src/SelectAllSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SelectAllSharp'); diff --git a/packages/material-ui-icons/src/SelectAllTwoTone.js b/packages/material-ui-icons/src/SelectAllTwoTone.js new file mode 100644 index 00000000000000..22cce2c593218e --- /dev/null +++ b/packages/material-ui-icons/src/SelectAllTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SelectAllTwoTone'); diff --git a/packages/material-ui-icons/src/SendOutlined.js b/packages/material-ui-icons/src/SendOutlined.js new file mode 100644 index 00000000000000..cfd1b3a3db1cdc --- /dev/null +++ b/packages/material-ui-icons/src/SendOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SendOutlined'); diff --git a/packages/material-ui-icons/src/SendRounded.js b/packages/material-ui-icons/src/SendRounded.js new file mode 100644 index 00000000000000..5806a2a3b2b7f3 --- /dev/null +++ b/packages/material-ui-icons/src/SendRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SendRounded'); diff --git a/packages/material-ui-icons/src/SendSharp.js b/packages/material-ui-icons/src/SendSharp.js new file mode 100644 index 00000000000000..7aebd5597fdb7c --- /dev/null +++ b/packages/material-ui-icons/src/SendSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SendSharp'); diff --git a/packages/material-ui-icons/src/SendTwoTone.js b/packages/material-ui-icons/src/SendTwoTone.js new file mode 100644 index 00000000000000..12ea69629199fb --- /dev/null +++ b/packages/material-ui-icons/src/SendTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SendTwoTone'); diff --git a/packages/material-ui-icons/src/SentimentDissatisfied.js b/packages/material-ui-icons/src/SentimentDissatisfied.js index 52cafb71aa797f..fcbeed35e290d8 100644 --- a/packages/material-ui-icons/src/SentimentDissatisfied.js +++ b/packages/material-ui-icons/src/SentimentDissatisfied.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SentimentDissatisfied'); diff --git a/packages/material-ui-icons/src/SentimentDissatisfiedOutlined.js b/packages/material-ui-icons/src/SentimentDissatisfiedOutlined.js new file mode 100644 index 00000000000000..80a86f9bdc1b6e --- /dev/null +++ b/packages/material-ui-icons/src/SentimentDissatisfiedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentDissatisfiedOutlined'); diff --git a/packages/material-ui-icons/src/SentimentDissatisfiedRounded.js b/packages/material-ui-icons/src/SentimentDissatisfiedRounded.js new file mode 100644 index 00000000000000..c90d2763489827 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentDissatisfiedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentDissatisfiedRounded'); diff --git a/packages/material-ui-icons/src/SentimentDissatisfiedSharp.js b/packages/material-ui-icons/src/SentimentDissatisfiedSharp.js new file mode 100644 index 00000000000000..bb3c11cf9fc9f7 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentDissatisfiedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentDissatisfiedSharp'); diff --git a/packages/material-ui-icons/src/SentimentDissatisfiedTwoTone.js b/packages/material-ui-icons/src/SentimentDissatisfiedTwoTone.js new file mode 100644 index 00000000000000..cb364ca28dece7 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentDissatisfiedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentDissatisfiedTwoTone'); diff --git a/packages/material-ui-icons/src/SentimentNeutral.js b/packages/material-ui-icons/src/SentimentNeutral.js deleted file mode 100644 index 9578b6c1f08d60..00000000000000 --- a/packages/material-ui-icons/src/SentimentNeutral.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'SentimentNeutral'); diff --git a/packages/material-ui-icons/src/SentimentSatisfied.js b/packages/material-ui-icons/src/SentimentSatisfied.js index 129ecca6da04e4..0a566d3439fb7d 100644 --- a/packages/material-ui-icons/src/SentimentSatisfied.js +++ b/packages/material-ui-icons/src/SentimentSatisfied.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SentimentSatisfied'); diff --git a/packages/material-ui-icons/src/SentimentSatisfiedAlt.js b/packages/material-ui-icons/src/SentimentSatisfiedAlt.js new file mode 100644 index 00000000000000..34081fa20142e5 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentSatisfiedAlt.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentSatisfiedAlt'); diff --git a/packages/material-ui-icons/src/SentimentSatisfiedAltOutlined.js b/packages/material-ui-icons/src/SentimentSatisfiedAltOutlined.js new file mode 100644 index 00000000000000..13bc9cfc60c938 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentSatisfiedAltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentSatisfiedAltOutlined'); diff --git a/packages/material-ui-icons/src/SentimentSatisfiedAltRounded.js b/packages/material-ui-icons/src/SentimentSatisfiedAltRounded.js new file mode 100644 index 00000000000000..c5e4f2df64cb19 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentSatisfiedAltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentSatisfiedAltRounded'); diff --git a/packages/material-ui-icons/src/SentimentSatisfiedAltSharp.js b/packages/material-ui-icons/src/SentimentSatisfiedAltSharp.js new file mode 100644 index 00000000000000..b04adc44f75005 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentSatisfiedAltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentSatisfiedAltSharp'); diff --git a/packages/material-ui-icons/src/SentimentSatisfiedAltTwoTone.js b/packages/material-ui-icons/src/SentimentSatisfiedAltTwoTone.js new file mode 100644 index 00000000000000..f26dfc4e5cc8c8 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentSatisfiedAltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentSatisfiedAltTwoTone'); diff --git a/packages/material-ui-icons/src/SentimentSatisfiedOutlined.js b/packages/material-ui-icons/src/SentimentSatisfiedOutlined.js new file mode 100644 index 00000000000000..2bd3029068da36 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentSatisfiedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentSatisfiedOutlined'); diff --git a/packages/material-ui-icons/src/SentimentSatisfiedRounded.js b/packages/material-ui-icons/src/SentimentSatisfiedRounded.js new file mode 100644 index 00000000000000..bb0014b4b0124e --- /dev/null +++ b/packages/material-ui-icons/src/SentimentSatisfiedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentSatisfiedRounded'); diff --git a/packages/material-ui-icons/src/SentimentSatisfiedSharp.js b/packages/material-ui-icons/src/SentimentSatisfiedSharp.js new file mode 100644 index 00000000000000..5e9c681c5a6b89 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentSatisfiedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentSatisfiedSharp'); diff --git a/packages/material-ui-icons/src/SentimentSatisfiedTwoTone.js b/packages/material-ui-icons/src/SentimentSatisfiedTwoTone.js new file mode 100644 index 00000000000000..9cbcfefe9a8f21 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentSatisfiedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentSatisfiedTwoTone'); diff --git a/packages/material-ui-icons/src/SentimentVeryDissatisfied.js b/packages/material-ui-icons/src/SentimentVeryDissatisfied.js index 603d02d57ad346..13ab61c838878f 100644 --- a/packages/material-ui-icons/src/SentimentVeryDissatisfied.js +++ b/packages/material-ui-icons/src/SentimentVeryDissatisfied.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SentimentVeryDissatisfied'); diff --git a/packages/material-ui-icons/src/SentimentVeryDissatisfiedOutlined.js b/packages/material-ui-icons/src/SentimentVeryDissatisfiedOutlined.js new file mode 100644 index 00000000000000..e8479084803122 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentVeryDissatisfiedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentVeryDissatisfiedOutlined'); diff --git a/packages/material-ui-icons/src/SentimentVeryDissatisfiedRounded.js b/packages/material-ui-icons/src/SentimentVeryDissatisfiedRounded.js new file mode 100644 index 00000000000000..10f3094282c91f --- /dev/null +++ b/packages/material-ui-icons/src/SentimentVeryDissatisfiedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentVeryDissatisfiedRounded'); diff --git a/packages/material-ui-icons/src/SentimentVeryDissatisfiedSharp.js b/packages/material-ui-icons/src/SentimentVeryDissatisfiedSharp.js new file mode 100644 index 00000000000000..d870e138402c93 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentVeryDissatisfiedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentVeryDissatisfiedSharp'); diff --git a/packages/material-ui-icons/src/SentimentVeryDissatisfiedTwoTone.js b/packages/material-ui-icons/src/SentimentVeryDissatisfiedTwoTone.js new file mode 100644 index 00000000000000..7d4229a5a10f4b --- /dev/null +++ b/packages/material-ui-icons/src/SentimentVeryDissatisfiedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentVeryDissatisfiedTwoTone'); diff --git a/packages/material-ui-icons/src/SentimentVerySatisfied.js b/packages/material-ui-icons/src/SentimentVerySatisfied.js index d88db5bf4a43da..3c870c95895aa8 100644 --- a/packages/material-ui-icons/src/SentimentVerySatisfied.js +++ b/packages/material-ui-icons/src/SentimentVerySatisfied.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SentimentVerySatisfied'); diff --git a/packages/material-ui-icons/src/SentimentVerySatisfiedOutlined.js b/packages/material-ui-icons/src/SentimentVerySatisfiedOutlined.js new file mode 100644 index 00000000000000..b85a2841a0ba6d --- /dev/null +++ b/packages/material-ui-icons/src/SentimentVerySatisfiedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentVerySatisfiedOutlined'); diff --git a/packages/material-ui-icons/src/SentimentVerySatisfiedRounded.js b/packages/material-ui-icons/src/SentimentVerySatisfiedRounded.js new file mode 100644 index 00000000000000..49a200140a08a3 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentVerySatisfiedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentVerySatisfiedRounded'); diff --git a/packages/material-ui-icons/src/SentimentVerySatisfiedSharp.js b/packages/material-ui-icons/src/SentimentVerySatisfiedSharp.js new file mode 100644 index 00000000000000..d191aaf14464b6 --- /dev/null +++ b/packages/material-ui-icons/src/SentimentVerySatisfiedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentVerySatisfiedSharp'); diff --git a/packages/material-ui-icons/src/SentimentVerySatisfiedTwoTone.js b/packages/material-ui-icons/src/SentimentVerySatisfiedTwoTone.js new file mode 100644 index 00000000000000..c325b566fa346e --- /dev/null +++ b/packages/material-ui-icons/src/SentimentVerySatisfiedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SentimentVerySatisfiedTwoTone'); diff --git a/packages/material-ui-icons/src/Settings.js b/packages/material-ui-icons/src/Settings.js deleted file mode 100644 index 60c8611f7b9fb2..00000000000000 --- a/packages/material-ui-icons/src/Settings.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'Settings'); diff --git a/packages/material-ui-icons/src/SettingsApplications.js b/packages/material-ui-icons/src/SettingsApplications.js index f715ec07c2c9c8..d66d073f3eaff5 100644 --- a/packages/material-ui-icons/src/SettingsApplications.js +++ b/packages/material-ui-icons/src/SettingsApplications.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SettingsApplications'); diff --git a/packages/material-ui-icons/src/SettingsApplicationsOutlined.js b/packages/material-ui-icons/src/SettingsApplicationsOutlined.js new file mode 100644 index 00000000000000..dffdb8ded4e946 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsApplicationsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsApplicationsOutlined'); diff --git a/packages/material-ui-icons/src/SettingsApplicationsRounded.js b/packages/material-ui-icons/src/SettingsApplicationsRounded.js new file mode 100644 index 00000000000000..351c70213a1b7f --- /dev/null +++ b/packages/material-ui-icons/src/SettingsApplicationsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsApplicationsRounded'); diff --git a/packages/material-ui-icons/src/SettingsApplicationsSharp.js b/packages/material-ui-icons/src/SettingsApplicationsSharp.js new file mode 100644 index 00000000000000..cbd72cc2dbc9c3 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsApplicationsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsApplicationsSharp'); diff --git a/packages/material-ui-icons/src/SettingsApplicationsTwoTone.js b/packages/material-ui-icons/src/SettingsApplicationsTwoTone.js new file mode 100644 index 00000000000000..3e3540e22f60cb --- /dev/null +++ b/packages/material-ui-icons/src/SettingsApplicationsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsApplicationsTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsBackupRestore.js b/packages/material-ui-icons/src/SettingsBackupRestore.js index b99fdc9f4ecbc5..2264ca0151c3cb 100644 --- a/packages/material-ui-icons/src/SettingsBackupRestore.js +++ b/packages/material-ui-icons/src/SettingsBackupRestore.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SettingsBackupRestore'); diff --git a/packages/material-ui-icons/src/SettingsBackupRestoreOutlined.js b/packages/material-ui-icons/src/SettingsBackupRestoreOutlined.js new file mode 100644 index 00000000000000..0d8fb8d56b72d8 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBackupRestoreOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBackupRestoreOutlined'); diff --git a/packages/material-ui-icons/src/SettingsBackupRestoreRounded.js b/packages/material-ui-icons/src/SettingsBackupRestoreRounded.js new file mode 100644 index 00000000000000..592dc9a5526719 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBackupRestoreRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBackupRestoreRounded'); diff --git a/packages/material-ui-icons/src/SettingsBackupRestoreSharp.js b/packages/material-ui-icons/src/SettingsBackupRestoreSharp.js new file mode 100644 index 00000000000000..5fa89e68f0ffe6 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBackupRestoreSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBackupRestoreSharp'); diff --git a/packages/material-ui-icons/src/SettingsBackupRestoreTwoTone.js b/packages/material-ui-icons/src/SettingsBackupRestoreTwoTone.js new file mode 100644 index 00000000000000..d0a4a17d220141 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBackupRestoreTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBackupRestoreTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsBluetoothOutlined.js b/packages/material-ui-icons/src/SettingsBluetoothOutlined.js new file mode 100644 index 00000000000000..7e713fe2931f85 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBluetoothOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBluetoothOutlined'); diff --git a/packages/material-ui-icons/src/SettingsBluetoothRounded.js b/packages/material-ui-icons/src/SettingsBluetoothRounded.js new file mode 100644 index 00000000000000..1a36868838aae0 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBluetoothRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBluetoothRounded'); diff --git a/packages/material-ui-icons/src/SettingsBluetoothSharp.js b/packages/material-ui-icons/src/SettingsBluetoothSharp.js new file mode 100644 index 00000000000000..ec8ed0e48dddd8 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBluetoothSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBluetoothSharp'); diff --git a/packages/material-ui-icons/src/SettingsBluetoothTwoTone.js b/packages/material-ui-icons/src/SettingsBluetoothTwoTone.js new file mode 100644 index 00000000000000..5a3145f755b86d --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBluetoothTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBluetoothTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsBrightnessOutlined.js b/packages/material-ui-icons/src/SettingsBrightnessOutlined.js new file mode 100644 index 00000000000000..14e222f16911e8 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBrightnessOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBrightnessOutlined'); diff --git a/packages/material-ui-icons/src/SettingsBrightnessRounded.js b/packages/material-ui-icons/src/SettingsBrightnessRounded.js new file mode 100644 index 00000000000000..dd6a7f8055ea79 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBrightnessRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBrightnessRounded'); diff --git a/packages/material-ui-icons/src/SettingsBrightnessSharp.js b/packages/material-ui-icons/src/SettingsBrightnessSharp.js new file mode 100644 index 00000000000000..b377f89a69b30f --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBrightnessSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBrightnessSharp'); diff --git a/packages/material-ui-icons/src/SettingsBrightnessTwoTone.js b/packages/material-ui-icons/src/SettingsBrightnessTwoTone.js new file mode 100644 index 00000000000000..39233c7d5ad152 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsBrightnessTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsBrightnessTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsCellOutlined.js b/packages/material-ui-icons/src/SettingsCellOutlined.js new file mode 100644 index 00000000000000..7be32e8ed6e814 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsCellOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsCellOutlined'); diff --git a/packages/material-ui-icons/src/SettingsCellRounded.js b/packages/material-ui-icons/src/SettingsCellRounded.js new file mode 100644 index 00000000000000..b051c4041561d6 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsCellRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsCellRounded'); diff --git a/packages/material-ui-icons/src/SettingsCellSharp.js b/packages/material-ui-icons/src/SettingsCellSharp.js new file mode 100644 index 00000000000000..16a994d0ba920f --- /dev/null +++ b/packages/material-ui-icons/src/SettingsCellSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsCellSharp'); diff --git a/packages/material-ui-icons/src/SettingsCellTwoTone.js b/packages/material-ui-icons/src/SettingsCellTwoTone.js new file mode 100644 index 00000000000000..26d915bfe42939 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsCellTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsCellTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsEthernetOutlined.js b/packages/material-ui-icons/src/SettingsEthernetOutlined.js new file mode 100644 index 00000000000000..fa517840c8ad79 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsEthernetOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsEthernetOutlined'); diff --git a/packages/material-ui-icons/src/SettingsEthernetRounded.js b/packages/material-ui-icons/src/SettingsEthernetRounded.js new file mode 100644 index 00000000000000..9f07eeabb49204 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsEthernetRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsEthernetRounded'); diff --git a/packages/material-ui-icons/src/SettingsEthernetSharp.js b/packages/material-ui-icons/src/SettingsEthernetSharp.js new file mode 100644 index 00000000000000..22689e4c568c26 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsEthernetSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsEthernetSharp'); diff --git a/packages/material-ui-icons/src/SettingsEthernetTwoTone.js b/packages/material-ui-icons/src/SettingsEthernetTwoTone.js new file mode 100644 index 00000000000000..000e7499d41216 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsEthernetTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsEthernetTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsInputAntenna.js b/packages/material-ui-icons/src/SettingsInputAntenna.js index 3569da1ef1701c..eabae0a92fdbd7 100644 --- a/packages/material-ui-icons/src/SettingsInputAntenna.js +++ b/packages/material-ui-icons/src/SettingsInputAntenna.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SettingsInputAntenna'); diff --git a/packages/material-ui-icons/src/SettingsInputAntennaOutlined.js b/packages/material-ui-icons/src/SettingsInputAntennaOutlined.js new file mode 100644 index 00000000000000..6ad88a911900da --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputAntennaOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputAntennaOutlined'); diff --git a/packages/material-ui-icons/src/SettingsInputAntennaRounded.js b/packages/material-ui-icons/src/SettingsInputAntennaRounded.js new file mode 100644 index 00000000000000..aa20a9e2fbdddf --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputAntennaRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputAntennaRounded'); diff --git a/packages/material-ui-icons/src/SettingsInputAntennaSharp.js b/packages/material-ui-icons/src/SettingsInputAntennaSharp.js new file mode 100644 index 00000000000000..821c19f17adfeb --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputAntennaSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputAntennaSharp'); diff --git a/packages/material-ui-icons/src/SettingsInputAntennaTwoTone.js b/packages/material-ui-icons/src/SettingsInputAntennaTwoTone.js new file mode 100644 index 00000000000000..512ddb4d16ae19 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputAntennaTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputAntennaTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsInputComponentOutlined.js b/packages/material-ui-icons/src/SettingsInputComponentOutlined.js new file mode 100644 index 00000000000000..2169c036ee2b24 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputComponentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputComponentOutlined'); diff --git a/packages/material-ui-icons/src/SettingsInputComponentRounded.js b/packages/material-ui-icons/src/SettingsInputComponentRounded.js new file mode 100644 index 00000000000000..1e4c8680a75a64 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputComponentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputComponentRounded'); diff --git a/packages/material-ui-icons/src/SettingsInputComponentSharp.js b/packages/material-ui-icons/src/SettingsInputComponentSharp.js new file mode 100644 index 00000000000000..e5ed3cf8811fec --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputComponentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputComponentSharp'); diff --git a/packages/material-ui-icons/src/SettingsInputComponentTwoTone.js b/packages/material-ui-icons/src/SettingsInputComponentTwoTone.js new file mode 100644 index 00000000000000..5d1d0cf49afe4d --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputComponentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputComponentTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsInputCompositeOutlined.js b/packages/material-ui-icons/src/SettingsInputCompositeOutlined.js new file mode 100644 index 00000000000000..3388ff85e0d14b --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputCompositeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputCompositeOutlined'); diff --git a/packages/material-ui-icons/src/SettingsInputCompositeRounded.js b/packages/material-ui-icons/src/SettingsInputCompositeRounded.js new file mode 100644 index 00000000000000..0f0f3f48ea2456 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputCompositeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputCompositeRounded'); diff --git a/packages/material-ui-icons/src/SettingsInputCompositeSharp.js b/packages/material-ui-icons/src/SettingsInputCompositeSharp.js new file mode 100644 index 00000000000000..a742b386dfe847 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputCompositeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputCompositeSharp'); diff --git a/packages/material-ui-icons/src/SettingsInputCompositeTwoTone.js b/packages/material-ui-icons/src/SettingsInputCompositeTwoTone.js new file mode 100644 index 00000000000000..1f0cf392510f20 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputCompositeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputCompositeTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsInputHdmiOutlined.js b/packages/material-ui-icons/src/SettingsInputHdmiOutlined.js new file mode 100644 index 00000000000000..aa23e6be062d0d --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputHdmiOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputHdmiOutlined'); diff --git a/packages/material-ui-icons/src/SettingsInputHdmiRounded.js b/packages/material-ui-icons/src/SettingsInputHdmiRounded.js new file mode 100644 index 00000000000000..edd8d74e60f303 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputHdmiRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputHdmiRounded'); diff --git a/packages/material-ui-icons/src/SettingsInputHdmiSharp.js b/packages/material-ui-icons/src/SettingsInputHdmiSharp.js new file mode 100644 index 00000000000000..3169389cc1e076 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputHdmiSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputHdmiSharp'); diff --git a/packages/material-ui-icons/src/SettingsInputHdmiTwoTone.js b/packages/material-ui-icons/src/SettingsInputHdmiTwoTone.js new file mode 100644 index 00000000000000..1dd7c9eae40e3a --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputHdmiTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputHdmiTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsInputSvideoOutlined.js b/packages/material-ui-icons/src/SettingsInputSvideoOutlined.js new file mode 100644 index 00000000000000..ec65d3d92c0853 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputSvideoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputSvideoOutlined'); diff --git a/packages/material-ui-icons/src/SettingsInputSvideoRounded.js b/packages/material-ui-icons/src/SettingsInputSvideoRounded.js new file mode 100644 index 00000000000000..9f596b17a45528 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputSvideoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputSvideoRounded'); diff --git a/packages/material-ui-icons/src/SettingsInputSvideoSharp.js b/packages/material-ui-icons/src/SettingsInputSvideoSharp.js new file mode 100644 index 00000000000000..a7bba9d340e5e1 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputSvideoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputSvideoSharp'); diff --git a/packages/material-ui-icons/src/SettingsInputSvideoTwoTone.js b/packages/material-ui-icons/src/SettingsInputSvideoTwoTone.js new file mode 100644 index 00000000000000..b3215167dc64ce --- /dev/null +++ b/packages/material-ui-icons/src/SettingsInputSvideoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsInputSvideoTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsOutlined.js b/packages/material-ui-icons/src/SettingsOutlined.js new file mode 100644 index 00000000000000..7e7176b12460d5 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsOutlined'); diff --git a/packages/material-ui-icons/src/SettingsOverscanOutlined.js b/packages/material-ui-icons/src/SettingsOverscanOutlined.js new file mode 100644 index 00000000000000..62c1ea6a393260 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsOverscanOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsOverscanOutlined'); diff --git a/packages/material-ui-icons/src/SettingsOverscanRounded.js b/packages/material-ui-icons/src/SettingsOverscanRounded.js new file mode 100644 index 00000000000000..0607780e012ab7 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsOverscanRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsOverscanRounded'); diff --git a/packages/material-ui-icons/src/SettingsOverscanSharp.js b/packages/material-ui-icons/src/SettingsOverscanSharp.js new file mode 100644 index 00000000000000..77ce1a9536b543 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsOverscanSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsOverscanSharp'); diff --git a/packages/material-ui-icons/src/SettingsOverscanTwoTone.js b/packages/material-ui-icons/src/SettingsOverscanTwoTone.js new file mode 100644 index 00000000000000..8239222e1b4662 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsOverscanTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsOverscanTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsPhone.js b/packages/material-ui-icons/src/SettingsPhone.js index d4df75d1c5696f..c9a4330a83ab7d 100644 --- a/packages/material-ui-icons/src/SettingsPhone.js +++ b/packages/material-ui-icons/src/SettingsPhone.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SettingsPhone'); diff --git a/packages/material-ui-icons/src/SettingsPhoneOutlined.js b/packages/material-ui-icons/src/SettingsPhoneOutlined.js new file mode 100644 index 00000000000000..f4a070553f3980 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsPhoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsPhoneOutlined'); diff --git a/packages/material-ui-icons/src/SettingsPhoneRounded.js b/packages/material-ui-icons/src/SettingsPhoneRounded.js new file mode 100644 index 00000000000000..d2e576cd304f85 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsPhoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsPhoneRounded'); diff --git a/packages/material-ui-icons/src/SettingsPhoneSharp.js b/packages/material-ui-icons/src/SettingsPhoneSharp.js new file mode 100644 index 00000000000000..2b55f8a818a1c1 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsPhoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsPhoneSharp'); diff --git a/packages/material-ui-icons/src/SettingsPhoneTwoTone.js b/packages/material-ui-icons/src/SettingsPhoneTwoTone.js new file mode 100644 index 00000000000000..95183e30373abc --- /dev/null +++ b/packages/material-ui-icons/src/SettingsPhoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsPhoneTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsPower.js b/packages/material-ui-icons/src/SettingsPower.js index b1c11c1c0e1055..ebc4499cd6809d 100644 --- a/packages/material-ui-icons/src/SettingsPower.js +++ b/packages/material-ui-icons/src/SettingsPower.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SettingsPower'); diff --git a/packages/material-ui-icons/src/SettingsPowerOutlined.js b/packages/material-ui-icons/src/SettingsPowerOutlined.js new file mode 100644 index 00000000000000..35bd952954f636 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsPowerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsPowerOutlined'); diff --git a/packages/material-ui-icons/src/SettingsPowerRounded.js b/packages/material-ui-icons/src/SettingsPowerRounded.js new file mode 100644 index 00000000000000..23ae401420e246 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsPowerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsPowerRounded'); diff --git a/packages/material-ui-icons/src/SettingsPowerSharp.js b/packages/material-ui-icons/src/SettingsPowerSharp.js new file mode 100644 index 00000000000000..1db8a42d37c135 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsPowerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsPowerSharp'); diff --git a/packages/material-ui-icons/src/SettingsPowerTwoTone.js b/packages/material-ui-icons/src/SettingsPowerTwoTone.js new file mode 100644 index 00000000000000..bd8485b828b84a --- /dev/null +++ b/packages/material-ui-icons/src/SettingsPowerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsPowerTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsRemote.js b/packages/material-ui-icons/src/SettingsRemote.js index 33707badddd479..06492c907f93fb 100644 --- a/packages/material-ui-icons/src/SettingsRemote.js +++ b/packages/material-ui-icons/src/SettingsRemote.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SettingsRemote'); diff --git a/packages/material-ui-icons/src/SettingsRemoteOutlined.js b/packages/material-ui-icons/src/SettingsRemoteOutlined.js new file mode 100644 index 00000000000000..e10db13c108bc6 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsRemoteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsRemoteOutlined'); diff --git a/packages/material-ui-icons/src/SettingsRemoteRounded.js b/packages/material-ui-icons/src/SettingsRemoteRounded.js new file mode 100644 index 00000000000000..826ae034499e16 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsRemoteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsRemoteRounded'); diff --git a/packages/material-ui-icons/src/SettingsRemoteSharp.js b/packages/material-ui-icons/src/SettingsRemoteSharp.js new file mode 100644 index 00000000000000..f5bb5c684dae54 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsRemoteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsRemoteSharp'); diff --git a/packages/material-ui-icons/src/SettingsRemoteTwoTone.js b/packages/material-ui-icons/src/SettingsRemoteTwoTone.js new file mode 100644 index 00000000000000..d73d8cef6d2465 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsRemoteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsRemoteTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsRounded.js b/packages/material-ui-icons/src/SettingsRounded.js new file mode 100644 index 00000000000000..7d4df6b1273068 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsRounded'); diff --git a/packages/material-ui-icons/src/SettingsSharp.js b/packages/material-ui-icons/src/SettingsSharp.js new file mode 100644 index 00000000000000..2dd4f7e8676a02 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsSharp'); diff --git a/packages/material-ui-icons/src/SettingsSystemDaydream.js b/packages/material-ui-icons/src/SettingsSystemDaydream.js index 7d905811877ad5..60b69b1594aafa 100644 --- a/packages/material-ui-icons/src/SettingsSystemDaydream.js +++ b/packages/material-ui-icons/src/SettingsSystemDaydream.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SettingsSystemDaydream'); diff --git a/packages/material-ui-icons/src/SettingsSystemDaydreamOutlined.js b/packages/material-ui-icons/src/SettingsSystemDaydreamOutlined.js new file mode 100644 index 00000000000000..70840f1aae097a --- /dev/null +++ b/packages/material-ui-icons/src/SettingsSystemDaydreamOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsSystemDaydreamOutlined'); diff --git a/packages/material-ui-icons/src/SettingsSystemDaydreamRounded.js b/packages/material-ui-icons/src/SettingsSystemDaydreamRounded.js new file mode 100644 index 00000000000000..0bdfb88dbf1e5f --- /dev/null +++ b/packages/material-ui-icons/src/SettingsSystemDaydreamRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsSystemDaydreamRounded'); diff --git a/packages/material-ui-icons/src/SettingsSystemDaydreamSharp.js b/packages/material-ui-icons/src/SettingsSystemDaydreamSharp.js new file mode 100644 index 00000000000000..15f61d84fa2684 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsSystemDaydreamSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsSystemDaydreamSharp'); diff --git a/packages/material-ui-icons/src/SettingsSystemDaydreamTwoTone.js b/packages/material-ui-icons/src/SettingsSystemDaydreamTwoTone.js new file mode 100644 index 00000000000000..86b1e305ce9231 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsSystemDaydreamTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsSystemDaydreamTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsTwoTone.js b/packages/material-ui-icons/src/SettingsTwoTone.js new file mode 100644 index 00000000000000..34a7a605b601f4 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsTwoTone'); diff --git a/packages/material-ui-icons/src/SettingsVoiceOutlined.js b/packages/material-ui-icons/src/SettingsVoiceOutlined.js new file mode 100644 index 00000000000000..f367e932d6a0b1 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsVoiceOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsVoiceOutlined'); diff --git a/packages/material-ui-icons/src/SettingsVoiceRounded.js b/packages/material-ui-icons/src/SettingsVoiceRounded.js new file mode 100644 index 00000000000000..fea404a9bb8497 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsVoiceRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsVoiceRounded'); diff --git a/packages/material-ui-icons/src/SettingsVoiceSharp.js b/packages/material-ui-icons/src/SettingsVoiceSharp.js new file mode 100644 index 00000000000000..e541b65bb5b917 --- /dev/null +++ b/packages/material-ui-icons/src/SettingsVoiceSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsVoiceSharp'); diff --git a/packages/material-ui-icons/src/SettingsVoiceTwoTone.js b/packages/material-ui-icons/src/SettingsVoiceTwoTone.js new file mode 100644 index 00000000000000..60a047d77073dc --- /dev/null +++ b/packages/material-ui-icons/src/SettingsVoiceTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SettingsVoiceTwoTone'); diff --git a/packages/material-ui-icons/src/ShareOutlined.js b/packages/material-ui-icons/src/ShareOutlined.js new file mode 100644 index 00000000000000..08b649a82ff04a --- /dev/null +++ b/packages/material-ui-icons/src/ShareOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShareOutlined'); diff --git a/packages/material-ui-icons/src/ShareRounded.js b/packages/material-ui-icons/src/ShareRounded.js new file mode 100644 index 00000000000000..b0eecaaeb58706 --- /dev/null +++ b/packages/material-ui-icons/src/ShareRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShareRounded'); diff --git a/packages/material-ui-icons/src/ShareSharp.js b/packages/material-ui-icons/src/ShareSharp.js new file mode 100644 index 00000000000000..c4735bbba2b521 --- /dev/null +++ b/packages/material-ui-icons/src/ShareSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShareSharp'); diff --git a/packages/material-ui-icons/src/ShareTwoTone.js b/packages/material-ui-icons/src/ShareTwoTone.js new file mode 100644 index 00000000000000..5ec5735a5878d0 --- /dev/null +++ b/packages/material-ui-icons/src/ShareTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShareTwoTone'); diff --git a/packages/material-ui-icons/src/ShopOutlined.js b/packages/material-ui-icons/src/ShopOutlined.js new file mode 100644 index 00000000000000..d40a225c044f7a --- /dev/null +++ b/packages/material-ui-icons/src/ShopOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShopOutlined'); diff --git a/packages/material-ui-icons/src/ShopRounded.js b/packages/material-ui-icons/src/ShopRounded.js new file mode 100644 index 00000000000000..73a4154d668a4a --- /dev/null +++ b/packages/material-ui-icons/src/ShopRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShopRounded'); diff --git a/packages/material-ui-icons/src/ShopSharp.js b/packages/material-ui-icons/src/ShopSharp.js new file mode 100644 index 00000000000000..facd799db54659 --- /dev/null +++ b/packages/material-ui-icons/src/ShopSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShopSharp'); diff --git a/packages/material-ui-icons/src/ShopTwoOutlined.js b/packages/material-ui-icons/src/ShopTwoOutlined.js new file mode 100644 index 00000000000000..3459cff5789f74 --- /dev/null +++ b/packages/material-ui-icons/src/ShopTwoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShopTwoOutlined'); diff --git a/packages/material-ui-icons/src/ShopTwoRounded.js b/packages/material-ui-icons/src/ShopTwoRounded.js new file mode 100644 index 00000000000000..4b4de631a17bd4 --- /dev/null +++ b/packages/material-ui-icons/src/ShopTwoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShopTwoRounded'); diff --git a/packages/material-ui-icons/src/ShopTwoSharp.js b/packages/material-ui-icons/src/ShopTwoSharp.js new file mode 100644 index 00000000000000..730ec84f153d2f --- /dev/null +++ b/packages/material-ui-icons/src/ShopTwoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShopTwoSharp'); diff --git a/packages/material-ui-icons/src/ShopTwoTone.js b/packages/material-ui-icons/src/ShopTwoTone.js new file mode 100644 index 00000000000000..f30ee7aa8a3cef --- /dev/null +++ b/packages/material-ui-icons/src/ShopTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShopTwoTone'); diff --git a/packages/material-ui-icons/src/ShopTwoTwoTone.js b/packages/material-ui-icons/src/ShopTwoTwoTone.js new file mode 100644 index 00000000000000..466e7fd6e055b0 --- /dev/null +++ b/packages/material-ui-icons/src/ShopTwoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShopTwoTwoTone'); diff --git a/packages/material-ui-icons/src/ShoppingBasket.js b/packages/material-ui-icons/src/ShoppingBasket.js index 1326c8f156d428..212e77aecaee4b 100644 --- a/packages/material-ui-icons/src/ShoppingBasket.js +++ b/packages/material-ui-icons/src/ShoppingBasket.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ShoppingBasket'); diff --git a/packages/material-ui-icons/src/ShoppingBasketOutlined.js b/packages/material-ui-icons/src/ShoppingBasketOutlined.js new file mode 100644 index 00000000000000..6c68c0c5d58f96 --- /dev/null +++ b/packages/material-ui-icons/src/ShoppingBasketOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShoppingBasketOutlined'); diff --git a/packages/material-ui-icons/src/ShoppingBasketRounded.js b/packages/material-ui-icons/src/ShoppingBasketRounded.js new file mode 100644 index 00000000000000..b5a6ac8ffcab2d --- /dev/null +++ b/packages/material-ui-icons/src/ShoppingBasketRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShoppingBasketRounded'); diff --git a/packages/material-ui-icons/src/ShoppingBasketSharp.js b/packages/material-ui-icons/src/ShoppingBasketSharp.js new file mode 100644 index 00000000000000..7264fe3de0f3a3 --- /dev/null +++ b/packages/material-ui-icons/src/ShoppingBasketSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShoppingBasketSharp'); diff --git a/packages/material-ui-icons/src/ShoppingBasketTwoTone.js b/packages/material-ui-icons/src/ShoppingBasketTwoTone.js new file mode 100644 index 00000000000000..058f1a2fcf377c --- /dev/null +++ b/packages/material-ui-icons/src/ShoppingBasketTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShoppingBasketTwoTone'); diff --git a/packages/material-ui-icons/src/ShoppingCart.js b/packages/material-ui-icons/src/ShoppingCart.js index 3782187058cbb5..75ac8ba9c5d116 100644 --- a/packages/material-ui-icons/src/ShoppingCart.js +++ b/packages/material-ui-icons/src/ShoppingCart.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ShoppingCart'); diff --git a/packages/material-ui-icons/src/ShoppingCartOutlined.js b/packages/material-ui-icons/src/ShoppingCartOutlined.js new file mode 100644 index 00000000000000..8bd95a8c7de7be --- /dev/null +++ b/packages/material-ui-icons/src/ShoppingCartOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShoppingCartOutlined'); diff --git a/packages/material-ui-icons/src/ShoppingCartRounded.js b/packages/material-ui-icons/src/ShoppingCartRounded.js new file mode 100644 index 00000000000000..d861c4f4f9d6a0 --- /dev/null +++ b/packages/material-ui-icons/src/ShoppingCartRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShoppingCartRounded'); diff --git a/packages/material-ui-icons/src/ShoppingCartSharp.js b/packages/material-ui-icons/src/ShoppingCartSharp.js new file mode 100644 index 00000000000000..5f934e2f52ea4b --- /dev/null +++ b/packages/material-ui-icons/src/ShoppingCartSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShoppingCartSharp'); diff --git a/packages/material-ui-icons/src/ShoppingCartTwoTone.js b/packages/material-ui-icons/src/ShoppingCartTwoTone.js new file mode 100644 index 00000000000000..81b4b69d8752cb --- /dev/null +++ b/packages/material-ui-icons/src/ShoppingCartTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShoppingCartTwoTone'); diff --git a/packages/material-ui-icons/src/ShortText.js b/packages/material-ui-icons/src/ShortText.js index 9e0efbc2fff4cc..61a0480bd42ef1 100644 --- a/packages/material-ui-icons/src/ShortText.js +++ b/packages/material-ui-icons/src/ShortText.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ShortText'); diff --git a/packages/material-ui-icons/src/ShortTextOutlined.js b/packages/material-ui-icons/src/ShortTextOutlined.js new file mode 100644 index 00000000000000..554551ec104b26 --- /dev/null +++ b/packages/material-ui-icons/src/ShortTextOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShortTextOutlined'); diff --git a/packages/material-ui-icons/src/ShortTextRounded.js b/packages/material-ui-icons/src/ShortTextRounded.js new file mode 100644 index 00000000000000..ae2645de0731a2 --- /dev/null +++ b/packages/material-ui-icons/src/ShortTextRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShortTextRounded'); diff --git a/packages/material-ui-icons/src/ShortTextSharp.js b/packages/material-ui-icons/src/ShortTextSharp.js new file mode 100644 index 00000000000000..70c6d76506a54f --- /dev/null +++ b/packages/material-ui-icons/src/ShortTextSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShortTextSharp'); diff --git a/packages/material-ui-icons/src/ShortTextTwoTone.js b/packages/material-ui-icons/src/ShortTextTwoTone.js new file mode 100644 index 00000000000000..c398794a056b72 --- /dev/null +++ b/packages/material-ui-icons/src/ShortTextTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShortTextTwoTone'); diff --git a/packages/material-ui-icons/src/ShowChartOutlined.js b/packages/material-ui-icons/src/ShowChartOutlined.js new file mode 100644 index 00000000000000..cdd083254b28f7 --- /dev/null +++ b/packages/material-ui-icons/src/ShowChartOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShowChartOutlined'); diff --git a/packages/material-ui-icons/src/ShowChartRounded.js b/packages/material-ui-icons/src/ShowChartRounded.js new file mode 100644 index 00000000000000..660cbfabdfeebb --- /dev/null +++ b/packages/material-ui-icons/src/ShowChartRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShowChartRounded'); diff --git a/packages/material-ui-icons/src/ShowChartSharp.js b/packages/material-ui-icons/src/ShowChartSharp.js new file mode 100644 index 00000000000000..2ba0170956cb9f --- /dev/null +++ b/packages/material-ui-icons/src/ShowChartSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShowChartSharp'); diff --git a/packages/material-ui-icons/src/ShowChartTwoTone.js b/packages/material-ui-icons/src/ShowChartTwoTone.js new file mode 100644 index 00000000000000..6c6b8bce1f2eec --- /dev/null +++ b/packages/material-ui-icons/src/ShowChartTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShowChartTwoTone'); diff --git a/packages/material-ui-icons/src/ShuffleOutlined.js b/packages/material-ui-icons/src/ShuffleOutlined.js new file mode 100644 index 00000000000000..10854931391297 --- /dev/null +++ b/packages/material-ui-icons/src/ShuffleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShuffleOutlined'); diff --git a/packages/material-ui-icons/src/ShuffleRounded.js b/packages/material-ui-icons/src/ShuffleRounded.js new file mode 100644 index 00000000000000..ad8a98b9fa1e54 --- /dev/null +++ b/packages/material-ui-icons/src/ShuffleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShuffleRounded'); diff --git a/packages/material-ui-icons/src/ShuffleSharp.js b/packages/material-ui-icons/src/ShuffleSharp.js new file mode 100644 index 00000000000000..754ecc629fbf47 --- /dev/null +++ b/packages/material-ui-icons/src/ShuffleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShuffleSharp'); diff --git a/packages/material-ui-icons/src/ShuffleTwoTone.js b/packages/material-ui-icons/src/ShuffleTwoTone.js new file mode 100644 index 00000000000000..a53017ab1cd846 --- /dev/null +++ b/packages/material-ui-icons/src/ShuffleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShuffleTwoTone'); diff --git a/packages/material-ui-icons/src/ShutterSpeed.js b/packages/material-ui-icons/src/ShutterSpeed.js new file mode 100644 index 00000000000000..8b0c2859ecfc84 --- /dev/null +++ b/packages/material-ui-icons/src/ShutterSpeed.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShutterSpeed'); diff --git a/packages/material-ui-icons/src/ShutterSpeedOutlined.js b/packages/material-ui-icons/src/ShutterSpeedOutlined.js new file mode 100644 index 00000000000000..02d8b380e499b7 --- /dev/null +++ b/packages/material-ui-icons/src/ShutterSpeedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShutterSpeedOutlined'); diff --git a/packages/material-ui-icons/src/ShutterSpeedRounded.js b/packages/material-ui-icons/src/ShutterSpeedRounded.js new file mode 100644 index 00000000000000..f13ab082708632 --- /dev/null +++ b/packages/material-ui-icons/src/ShutterSpeedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShutterSpeedRounded'); diff --git a/packages/material-ui-icons/src/ShutterSpeedSharp.js b/packages/material-ui-icons/src/ShutterSpeedSharp.js new file mode 100644 index 00000000000000..a254fdbcb3203c --- /dev/null +++ b/packages/material-ui-icons/src/ShutterSpeedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShutterSpeedSharp'); diff --git a/packages/material-ui-icons/src/ShutterSpeedTwoTone.js b/packages/material-ui-icons/src/ShutterSpeedTwoTone.js new file mode 100644 index 00000000000000..27577fdd5b519d --- /dev/null +++ b/packages/material-ui-icons/src/ShutterSpeedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ShutterSpeedTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellular0BarOutlined.js b/packages/material-ui-icons/src/SignalCellular0BarOutlined.js new file mode 100644 index 00000000000000..b613b5a8437421 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular0BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular0BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellular0BarRounded.js b/packages/material-ui-icons/src/SignalCellular0BarRounded.js new file mode 100644 index 00000000000000..5b05ed92f8821b --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular0BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular0BarRounded'); diff --git a/packages/material-ui-icons/src/SignalCellular0BarSharp.js b/packages/material-ui-icons/src/SignalCellular0BarSharp.js new file mode 100644 index 00000000000000..f76ecd3ff78441 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular0BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular0BarSharp'); diff --git a/packages/material-ui-icons/src/SignalCellular0BarTwoTone.js b/packages/material-ui-icons/src/SignalCellular0BarTwoTone.js new file mode 100644 index 00000000000000..92651e2653786e --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular0BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular0BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellular1BarOutlined.js b/packages/material-ui-icons/src/SignalCellular1BarOutlined.js new file mode 100644 index 00000000000000..4dfe81710fe8e4 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular1BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular1BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellular1BarRounded.js b/packages/material-ui-icons/src/SignalCellular1BarRounded.js new file mode 100644 index 00000000000000..66f7285230695e --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular1BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular1BarRounded'); diff --git a/packages/material-ui-icons/src/SignalCellular1BarSharp.js b/packages/material-ui-icons/src/SignalCellular1BarSharp.js new file mode 100644 index 00000000000000..ff59c4346cc3fd --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular1BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular1BarSharp'); diff --git a/packages/material-ui-icons/src/SignalCellular1BarTwoTone.js b/packages/material-ui-icons/src/SignalCellular1BarTwoTone.js new file mode 100644 index 00000000000000..4755ef5f99a2da --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular1BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular1BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellular2BarOutlined.js b/packages/material-ui-icons/src/SignalCellular2BarOutlined.js new file mode 100644 index 00000000000000..cb17a0e36baaa9 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular2BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular2BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellular2BarRounded.js b/packages/material-ui-icons/src/SignalCellular2BarRounded.js new file mode 100644 index 00000000000000..63fb5b5e44ca8a --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular2BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular2BarRounded'); diff --git a/packages/material-ui-icons/src/SignalCellular2BarSharp.js b/packages/material-ui-icons/src/SignalCellular2BarSharp.js new file mode 100644 index 00000000000000..974f5647a8b550 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular2BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular2BarSharp'); diff --git a/packages/material-ui-icons/src/SignalCellular2BarTwoTone.js b/packages/material-ui-icons/src/SignalCellular2BarTwoTone.js new file mode 100644 index 00000000000000..6d4c8cceaaaa25 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular2BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular2BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellular3BarOutlined.js b/packages/material-ui-icons/src/SignalCellular3BarOutlined.js new file mode 100644 index 00000000000000..455c54186b2939 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular3BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular3BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellular3BarRounded.js b/packages/material-ui-icons/src/SignalCellular3BarRounded.js new file mode 100644 index 00000000000000..e46e79f1b4f363 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular3BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular3BarRounded'); diff --git a/packages/material-ui-icons/src/SignalCellular3BarSharp.js b/packages/material-ui-icons/src/SignalCellular3BarSharp.js new file mode 100644 index 00000000000000..b64e04209a03dd --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular3BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular3BarSharp'); diff --git a/packages/material-ui-icons/src/SignalCellular3BarTwoTone.js b/packages/material-ui-icons/src/SignalCellular3BarTwoTone.js new file mode 100644 index 00000000000000..589cfa3517c9c5 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular3BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular3BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellular4BarOutlined.js b/packages/material-ui-icons/src/SignalCellular4BarOutlined.js new file mode 100644 index 00000000000000..e548bc43edd339 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular4BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular4BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellular4BarRounded.js b/packages/material-ui-icons/src/SignalCellular4BarRounded.js new file mode 100644 index 00000000000000..0701a98f4340f0 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular4BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular4BarRounded'); diff --git a/packages/material-ui-icons/src/SignalCellular4BarSharp.js b/packages/material-ui-icons/src/SignalCellular4BarSharp.js new file mode 100644 index 00000000000000..c95febf7e74df9 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular4BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular4BarSharp'); diff --git a/packages/material-ui-icons/src/SignalCellular4BarTwoTone.js b/packages/material-ui-icons/src/SignalCellular4BarTwoTone.js new file mode 100644 index 00000000000000..7080314ff7c68a --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellular4BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellular4BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellularAlt.js b/packages/material-ui-icons/src/SignalCellularAlt.js new file mode 100644 index 00000000000000..00091d7385c7c0 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularAlt.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularAlt'); diff --git a/packages/material-ui-icons/src/SignalCellularAltOutlined.js b/packages/material-ui-icons/src/SignalCellularAltOutlined.js new file mode 100644 index 00000000000000..532d8bb6dfca8d --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularAltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularAltOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellularAltRounded.js b/packages/material-ui-icons/src/SignalCellularAltRounded.js new file mode 100644 index 00000000000000..14bb11b23d48c2 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularAltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularAltRounded'); diff --git a/packages/material-ui-icons/src/SignalCellularAltSharp.js b/packages/material-ui-icons/src/SignalCellularAltSharp.js new file mode 100644 index 00000000000000..ec6ccc3753dc78 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularAltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularAltSharp'); diff --git a/packages/material-ui-icons/src/SignalCellularAltTwoTone.js b/packages/material-ui-icons/src/SignalCellularAltTwoTone.js new file mode 100644 index 00000000000000..36f94887c2a3f0 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularAltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularAltTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarOutlined.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarOutlined.js new file mode 100644 index 00000000000000..b0ee1683ef92f6 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet0BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarRounded.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarRounded.js new file mode 100644 index 00000000000000..d9c582a5c3cef7 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet0BarRounded'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarSharp.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarSharp.js new file mode 100644 index 00000000000000..adafa69d50a4a5 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet0BarSharp'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarTwoTone.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarTwoTone.js new file mode 100644 index 00000000000000..32ca997a66dca5 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet0BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet0BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarOutlined.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarOutlined.js new file mode 100644 index 00000000000000..d453a2ffc44429 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet1BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarRounded.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarRounded.js new file mode 100644 index 00000000000000..79da1fcc0779d0 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet1BarRounded'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarSharp.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarSharp.js new file mode 100644 index 00000000000000..9013d205bd916f --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet1BarSharp'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarTwoTone.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarTwoTone.js new file mode 100644 index 00000000000000..500d12bb589e6e --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet1BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet1BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarOutlined.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarOutlined.js new file mode 100644 index 00000000000000..38b2550f540ea9 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet2BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarRounded.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarRounded.js new file mode 100644 index 00000000000000..d7e945cf3f6009 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet2BarRounded'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarSharp.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarSharp.js new file mode 100644 index 00000000000000..02a2df3c0b0478 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet2BarSharp'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarTwoTone.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarTwoTone.js new file mode 100644 index 00000000000000..240d64a676b11a --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet2BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet2BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarOutlined.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarOutlined.js new file mode 100644 index 00000000000000..fa3b0eafca562a --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet3BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarRounded.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarRounded.js new file mode 100644 index 00000000000000..672abf7b101818 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet3BarRounded'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarSharp.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarSharp.js new file mode 100644 index 00000000000000..fea0dca1732130 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet3BarSharp'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarTwoTone.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarTwoTone.js new file mode 100644 index 00000000000000..c2d9f3573054b2 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet3BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet3BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarOutlined.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarOutlined.js new file mode 100644 index 00000000000000..dc284a9f5d2fe4 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet4BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarRounded.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarRounded.js new file mode 100644 index 00000000000000..774b59ae7bb639 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet4BarRounded'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarSharp.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarSharp.js new file mode 100644 index 00000000000000..9f92c812e3d9ce --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet4BarSharp'); diff --git a/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarTwoTone.js b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarTwoTone.js new file mode 100644 index 00000000000000..6c59687a43764c --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularConnectedNoInternet4BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularConnectedNoInternet4BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellularNoSimOutlined.js b/packages/material-ui-icons/src/SignalCellularNoSimOutlined.js new file mode 100644 index 00000000000000..a540c4bfbb760d --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularNoSimOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularNoSimOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellularNoSimRounded.js b/packages/material-ui-icons/src/SignalCellularNoSimRounded.js new file mode 100644 index 00000000000000..f66a51fff77a1d --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularNoSimRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularNoSimRounded'); diff --git a/packages/material-ui-icons/src/SignalCellularNoSimSharp.js b/packages/material-ui-icons/src/SignalCellularNoSimSharp.js new file mode 100644 index 00000000000000..452555ecd22855 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularNoSimSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularNoSimSharp'); diff --git a/packages/material-ui-icons/src/SignalCellularNoSimTwoTone.js b/packages/material-ui-icons/src/SignalCellularNoSimTwoTone.js new file mode 100644 index 00000000000000..000a2bd907bf81 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularNoSimTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularNoSimTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellularNullOutlined.js b/packages/material-ui-icons/src/SignalCellularNullOutlined.js new file mode 100644 index 00000000000000..b25bb95975f4bc --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularNullOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularNullOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellularNullRounded.js b/packages/material-ui-icons/src/SignalCellularNullRounded.js new file mode 100644 index 00000000000000..20734a90c3bb1d --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularNullRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularNullRounded'); diff --git a/packages/material-ui-icons/src/SignalCellularNullSharp.js b/packages/material-ui-icons/src/SignalCellularNullSharp.js new file mode 100644 index 00000000000000..9bfe72d4bbe32d --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularNullSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularNullSharp'); diff --git a/packages/material-ui-icons/src/SignalCellularNullTwoTone.js b/packages/material-ui-icons/src/SignalCellularNullTwoTone.js new file mode 100644 index 00000000000000..ad127bf8b3adc7 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularNullTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularNullTwoTone'); diff --git a/packages/material-ui-icons/src/SignalCellularOffOutlined.js b/packages/material-ui-icons/src/SignalCellularOffOutlined.js new file mode 100644 index 00000000000000..2bed25ce8246a1 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularOffOutlined'); diff --git a/packages/material-ui-icons/src/SignalCellularOffRounded.js b/packages/material-ui-icons/src/SignalCellularOffRounded.js new file mode 100644 index 00000000000000..6b0f11c2fed1f1 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularOffRounded'); diff --git a/packages/material-ui-icons/src/SignalCellularOffSharp.js b/packages/material-ui-icons/src/SignalCellularOffSharp.js new file mode 100644 index 00000000000000..1b073b6fe69a42 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularOffSharp'); diff --git a/packages/material-ui-icons/src/SignalCellularOffTwoTone.js b/packages/material-ui-icons/src/SignalCellularOffTwoTone.js new file mode 100644 index 00000000000000..7ff63ed0264637 --- /dev/null +++ b/packages/material-ui-icons/src/SignalCellularOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalCellularOffTwoTone'); diff --git a/packages/material-ui-icons/src/SignalWifi0BarOutlined.js b/packages/material-ui-icons/src/SignalWifi0BarOutlined.js new file mode 100644 index 00000000000000..b3596b2d770238 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi0BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi0BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalWifi0BarRounded.js b/packages/material-ui-icons/src/SignalWifi0BarRounded.js new file mode 100644 index 00000000000000..38807caa79a66c --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi0BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi0BarRounded'); diff --git a/packages/material-ui-icons/src/SignalWifi0BarSharp.js b/packages/material-ui-icons/src/SignalWifi0BarSharp.js new file mode 100644 index 00000000000000..2f195cbf37adae --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi0BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi0BarSharp'); diff --git a/packages/material-ui-icons/src/SignalWifi0BarTwoTone.js b/packages/material-ui-icons/src/SignalWifi0BarTwoTone.js new file mode 100644 index 00000000000000..1f980519b21f58 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi0BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi0BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalWifi1BarLockOutlined.js b/packages/material-ui-icons/src/SignalWifi1BarLockOutlined.js new file mode 100644 index 00000000000000..e80e7a5007f9f1 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi1BarLockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi1BarLockOutlined'); diff --git a/packages/material-ui-icons/src/SignalWifi1BarLockRounded.js b/packages/material-ui-icons/src/SignalWifi1BarLockRounded.js new file mode 100644 index 00000000000000..9d3dd476b12e56 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi1BarLockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi1BarLockRounded'); diff --git a/packages/material-ui-icons/src/SignalWifi1BarLockSharp.js b/packages/material-ui-icons/src/SignalWifi1BarLockSharp.js new file mode 100644 index 00000000000000..7fd5bfb84fe2d8 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi1BarLockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi1BarLockSharp'); diff --git a/packages/material-ui-icons/src/SignalWifi1BarLockTwoTone.js b/packages/material-ui-icons/src/SignalWifi1BarLockTwoTone.js new file mode 100644 index 00000000000000..bee3644d622e28 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi1BarLockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi1BarLockTwoTone'); diff --git a/packages/material-ui-icons/src/SignalWifi1BarOutlined.js b/packages/material-ui-icons/src/SignalWifi1BarOutlined.js new file mode 100644 index 00000000000000..a3ef48f5ba1d0e --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi1BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi1BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalWifi1BarRounded.js b/packages/material-ui-icons/src/SignalWifi1BarRounded.js new file mode 100644 index 00000000000000..59736e2b9532a1 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi1BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi1BarRounded'); diff --git a/packages/material-ui-icons/src/SignalWifi1BarSharp.js b/packages/material-ui-icons/src/SignalWifi1BarSharp.js new file mode 100644 index 00000000000000..c5877aab427c29 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi1BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi1BarSharp'); diff --git a/packages/material-ui-icons/src/SignalWifi1BarTwoTone.js b/packages/material-ui-icons/src/SignalWifi1BarTwoTone.js new file mode 100644 index 00000000000000..bacc60519438e7 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi1BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi1BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalWifi2BarLockOutlined.js b/packages/material-ui-icons/src/SignalWifi2BarLockOutlined.js new file mode 100644 index 00000000000000..2df53de7589d99 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi2BarLockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi2BarLockOutlined'); diff --git a/packages/material-ui-icons/src/SignalWifi2BarLockRounded.js b/packages/material-ui-icons/src/SignalWifi2BarLockRounded.js new file mode 100644 index 00000000000000..ea7d63f1aab885 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi2BarLockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi2BarLockRounded'); diff --git a/packages/material-ui-icons/src/SignalWifi2BarLockSharp.js b/packages/material-ui-icons/src/SignalWifi2BarLockSharp.js new file mode 100644 index 00000000000000..e060d3d0988143 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi2BarLockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi2BarLockSharp'); diff --git a/packages/material-ui-icons/src/SignalWifi2BarLockTwoTone.js b/packages/material-ui-icons/src/SignalWifi2BarLockTwoTone.js new file mode 100644 index 00000000000000..45a41e0690d075 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi2BarLockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi2BarLockTwoTone'); diff --git a/packages/material-ui-icons/src/SignalWifi2BarOutlined.js b/packages/material-ui-icons/src/SignalWifi2BarOutlined.js new file mode 100644 index 00000000000000..5aa747a70ac0b8 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi2BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi2BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalWifi2BarRounded.js b/packages/material-ui-icons/src/SignalWifi2BarRounded.js new file mode 100644 index 00000000000000..ea1277932266a5 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi2BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi2BarRounded'); diff --git a/packages/material-ui-icons/src/SignalWifi2BarSharp.js b/packages/material-ui-icons/src/SignalWifi2BarSharp.js new file mode 100644 index 00000000000000..db03b31ae3eef4 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi2BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi2BarSharp'); diff --git a/packages/material-ui-icons/src/SignalWifi2BarTwoTone.js b/packages/material-ui-icons/src/SignalWifi2BarTwoTone.js new file mode 100644 index 00000000000000..e1782cd2d63ad9 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi2BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi2BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalWifi3BarLock.js b/packages/material-ui-icons/src/SignalWifi3BarLock.js index 0c4752edf3e561..42f9fe6ff9d473 100644 --- a/packages/material-ui-icons/src/SignalWifi3BarLock.js +++ b/packages/material-ui-icons/src/SignalWifi3BarLock.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SignalWifi3BarLock'); diff --git a/packages/material-ui-icons/src/SignalWifi3BarLockOutlined.js b/packages/material-ui-icons/src/SignalWifi3BarLockOutlined.js new file mode 100644 index 00000000000000..04c5ab1e5f7bb4 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi3BarLockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi3BarLockOutlined'); diff --git a/packages/material-ui-icons/src/SignalWifi3BarLockRounded.js b/packages/material-ui-icons/src/SignalWifi3BarLockRounded.js new file mode 100644 index 00000000000000..b9100b7f28ba90 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi3BarLockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi3BarLockRounded'); diff --git a/packages/material-ui-icons/src/SignalWifi3BarLockSharp.js b/packages/material-ui-icons/src/SignalWifi3BarLockSharp.js new file mode 100644 index 00000000000000..bf0ef37ad491de --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi3BarLockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi3BarLockSharp'); diff --git a/packages/material-ui-icons/src/SignalWifi3BarLockTwoTone.js b/packages/material-ui-icons/src/SignalWifi3BarLockTwoTone.js new file mode 100644 index 00000000000000..dcc35873a7fcf7 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi3BarLockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi3BarLockTwoTone'); diff --git a/packages/material-ui-icons/src/SignalWifi3BarOutlined.js b/packages/material-ui-icons/src/SignalWifi3BarOutlined.js new file mode 100644 index 00000000000000..12f85ce72eb7f4 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi3BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi3BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalWifi3BarRounded.js b/packages/material-ui-icons/src/SignalWifi3BarRounded.js new file mode 100644 index 00000000000000..1c9782d20b283d --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi3BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi3BarRounded'); diff --git a/packages/material-ui-icons/src/SignalWifi3BarSharp.js b/packages/material-ui-icons/src/SignalWifi3BarSharp.js new file mode 100644 index 00000000000000..648da2efe67995 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi3BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi3BarSharp'); diff --git a/packages/material-ui-icons/src/SignalWifi3BarTwoTone.js b/packages/material-ui-icons/src/SignalWifi3BarTwoTone.js new file mode 100644 index 00000000000000..f64e6a2e8b681b --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi3BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi3BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalWifi4BarLockOutlined.js b/packages/material-ui-icons/src/SignalWifi4BarLockOutlined.js new file mode 100644 index 00000000000000..74c2ed97247a10 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi4BarLockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi4BarLockOutlined'); diff --git a/packages/material-ui-icons/src/SignalWifi4BarLockRounded.js b/packages/material-ui-icons/src/SignalWifi4BarLockRounded.js new file mode 100644 index 00000000000000..73067438d6ebd5 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi4BarLockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi4BarLockRounded'); diff --git a/packages/material-ui-icons/src/SignalWifi4BarLockSharp.js b/packages/material-ui-icons/src/SignalWifi4BarLockSharp.js new file mode 100644 index 00000000000000..2018ff6b73518d --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi4BarLockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi4BarLockSharp'); diff --git a/packages/material-ui-icons/src/SignalWifi4BarLockTwoTone.js b/packages/material-ui-icons/src/SignalWifi4BarLockTwoTone.js new file mode 100644 index 00000000000000..8ef91a73f68eec --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi4BarLockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi4BarLockTwoTone'); diff --git a/packages/material-ui-icons/src/SignalWifi4BarOutlined.js b/packages/material-ui-icons/src/SignalWifi4BarOutlined.js new file mode 100644 index 00000000000000..9481e5ccb40d48 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi4BarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi4BarOutlined'); diff --git a/packages/material-ui-icons/src/SignalWifi4BarRounded.js b/packages/material-ui-icons/src/SignalWifi4BarRounded.js new file mode 100644 index 00000000000000..96cc863a9529e3 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi4BarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi4BarRounded'); diff --git a/packages/material-ui-icons/src/SignalWifi4BarSharp.js b/packages/material-ui-icons/src/SignalWifi4BarSharp.js new file mode 100644 index 00000000000000..d0049bbbd4b857 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi4BarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi4BarSharp'); diff --git a/packages/material-ui-icons/src/SignalWifi4BarTwoTone.js b/packages/material-ui-icons/src/SignalWifi4BarTwoTone.js new file mode 100644 index 00000000000000..076b91589d7579 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifi4BarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifi4BarTwoTone'); diff --git a/packages/material-ui-icons/src/SignalWifiOffOutlined.js b/packages/material-ui-icons/src/SignalWifiOffOutlined.js new file mode 100644 index 00000000000000..aafbf7dbe3424b --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifiOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifiOffOutlined'); diff --git a/packages/material-ui-icons/src/SignalWifiOffRounded.js b/packages/material-ui-icons/src/SignalWifiOffRounded.js new file mode 100644 index 00000000000000..63696e71cc4d34 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifiOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifiOffRounded'); diff --git a/packages/material-ui-icons/src/SignalWifiOffSharp.js b/packages/material-ui-icons/src/SignalWifiOffSharp.js new file mode 100644 index 00000000000000..4fa6c9530810ab --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifiOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifiOffSharp'); diff --git a/packages/material-ui-icons/src/SignalWifiOffTwoTone.js b/packages/material-ui-icons/src/SignalWifiOffTwoTone.js new file mode 100644 index 00000000000000..66480144046ea6 --- /dev/null +++ b/packages/material-ui-icons/src/SignalWifiOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SignalWifiOffTwoTone'); diff --git a/packages/material-ui-icons/src/SimCardAlert.js b/packages/material-ui-icons/src/SimCardAlert.js deleted file mode 100644 index f0b0e4c0ddc879..00000000000000 --- a/packages/material-ui-icons/src/SimCardAlert.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'SimCardAlert'); diff --git a/packages/material-ui-icons/src/SimCardOutlined.js b/packages/material-ui-icons/src/SimCardOutlined.js new file mode 100644 index 00000000000000..64b70a52fcb592 --- /dev/null +++ b/packages/material-ui-icons/src/SimCardOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SimCardOutlined'); diff --git a/packages/material-ui-icons/src/SimCardRounded.js b/packages/material-ui-icons/src/SimCardRounded.js new file mode 100644 index 00000000000000..4b950bbad560be --- /dev/null +++ b/packages/material-ui-icons/src/SimCardRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SimCardRounded'); diff --git a/packages/material-ui-icons/src/SimCardSharp.js b/packages/material-ui-icons/src/SimCardSharp.js new file mode 100644 index 00000000000000..9d7bf687a6feba --- /dev/null +++ b/packages/material-ui-icons/src/SimCardSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SimCardSharp'); diff --git a/packages/material-ui-icons/src/SimCardTwoTone.js b/packages/material-ui-icons/src/SimCardTwoTone.js new file mode 100644 index 00000000000000..0495af145f1819 --- /dev/null +++ b/packages/material-ui-icons/src/SimCardTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SimCardTwoTone'); diff --git a/packages/material-ui-icons/src/SkipNextOutlined.js b/packages/material-ui-icons/src/SkipNextOutlined.js new file mode 100644 index 00000000000000..dbad0cfbfb0864 --- /dev/null +++ b/packages/material-ui-icons/src/SkipNextOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SkipNextOutlined'); diff --git a/packages/material-ui-icons/src/SkipNextRounded.js b/packages/material-ui-icons/src/SkipNextRounded.js new file mode 100644 index 00000000000000..3052ed960ab3e8 --- /dev/null +++ b/packages/material-ui-icons/src/SkipNextRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SkipNextRounded'); diff --git a/packages/material-ui-icons/src/SkipNextSharp.js b/packages/material-ui-icons/src/SkipNextSharp.js new file mode 100644 index 00000000000000..7bb38fea892854 --- /dev/null +++ b/packages/material-ui-icons/src/SkipNextSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SkipNextSharp'); diff --git a/packages/material-ui-icons/src/SkipNextTwoTone.js b/packages/material-ui-icons/src/SkipNextTwoTone.js new file mode 100644 index 00000000000000..ad250673ba07d2 --- /dev/null +++ b/packages/material-ui-icons/src/SkipNextTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SkipNextTwoTone'); diff --git a/packages/material-ui-icons/src/SkipPreviousOutlined.js b/packages/material-ui-icons/src/SkipPreviousOutlined.js new file mode 100644 index 00000000000000..0bb219e12ec13c --- /dev/null +++ b/packages/material-ui-icons/src/SkipPreviousOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SkipPreviousOutlined'); diff --git a/packages/material-ui-icons/src/SkipPreviousRounded.js b/packages/material-ui-icons/src/SkipPreviousRounded.js new file mode 100644 index 00000000000000..971d4aad455ada --- /dev/null +++ b/packages/material-ui-icons/src/SkipPreviousRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SkipPreviousRounded'); diff --git a/packages/material-ui-icons/src/SkipPreviousSharp.js b/packages/material-ui-icons/src/SkipPreviousSharp.js new file mode 100644 index 00000000000000..9915a83d9a8ee4 --- /dev/null +++ b/packages/material-ui-icons/src/SkipPreviousSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SkipPreviousSharp'); diff --git a/packages/material-ui-icons/src/SkipPreviousTwoTone.js b/packages/material-ui-icons/src/SkipPreviousTwoTone.js new file mode 100644 index 00000000000000..afcf45b469f04d --- /dev/null +++ b/packages/material-ui-icons/src/SkipPreviousTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SkipPreviousTwoTone'); diff --git a/packages/material-ui-icons/src/SlideshowOutlined.js b/packages/material-ui-icons/src/SlideshowOutlined.js new file mode 100644 index 00000000000000..74e4c1dc0449e7 --- /dev/null +++ b/packages/material-ui-icons/src/SlideshowOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SlideshowOutlined'); diff --git a/packages/material-ui-icons/src/SlideshowRounded.js b/packages/material-ui-icons/src/SlideshowRounded.js new file mode 100644 index 00000000000000..01406e939e512e --- /dev/null +++ b/packages/material-ui-icons/src/SlideshowRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SlideshowRounded'); diff --git a/packages/material-ui-icons/src/SlideshowSharp.js b/packages/material-ui-icons/src/SlideshowSharp.js new file mode 100644 index 00000000000000..90419d84bfc73b --- /dev/null +++ b/packages/material-ui-icons/src/SlideshowSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SlideshowSharp'); diff --git a/packages/material-ui-icons/src/SlideshowTwoTone.js b/packages/material-ui-icons/src/SlideshowTwoTone.js new file mode 100644 index 00000000000000..bd6343f294ace3 --- /dev/null +++ b/packages/material-ui-icons/src/SlideshowTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SlideshowTwoTone'); diff --git a/packages/material-ui-icons/src/SlowMotionVideo.js b/packages/material-ui-icons/src/SlowMotionVideo.js index 16e93afa964a66..dc2f640968ebc6 100644 --- a/packages/material-ui-icons/src/SlowMotionVideo.js +++ b/packages/material-ui-icons/src/SlowMotionVideo.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SlowMotionVideo'); diff --git a/packages/material-ui-icons/src/SlowMotionVideoOutlined.js b/packages/material-ui-icons/src/SlowMotionVideoOutlined.js new file mode 100644 index 00000000000000..a64f7e8c638539 --- /dev/null +++ b/packages/material-ui-icons/src/SlowMotionVideoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SlowMotionVideoOutlined'); diff --git a/packages/material-ui-icons/src/SlowMotionVideoRounded.js b/packages/material-ui-icons/src/SlowMotionVideoRounded.js new file mode 100644 index 00000000000000..f48bc7dfa2bd56 --- /dev/null +++ b/packages/material-ui-icons/src/SlowMotionVideoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SlowMotionVideoRounded'); diff --git a/packages/material-ui-icons/src/SlowMotionVideoSharp.js b/packages/material-ui-icons/src/SlowMotionVideoSharp.js new file mode 100644 index 00000000000000..9f46deb3342b97 --- /dev/null +++ b/packages/material-ui-icons/src/SlowMotionVideoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SlowMotionVideoSharp'); diff --git a/packages/material-ui-icons/src/SlowMotionVideoTwoTone.js b/packages/material-ui-icons/src/SlowMotionVideoTwoTone.js new file mode 100644 index 00000000000000..acc961e5c4c335 --- /dev/null +++ b/packages/material-ui-icons/src/SlowMotionVideoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SlowMotionVideoTwoTone'); diff --git a/packages/material-ui-icons/src/SmartphoneOutlined.js b/packages/material-ui-icons/src/SmartphoneOutlined.js new file mode 100644 index 00000000000000..2abfce084debbe --- /dev/null +++ b/packages/material-ui-icons/src/SmartphoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmartphoneOutlined'); diff --git a/packages/material-ui-icons/src/SmartphoneRounded.js b/packages/material-ui-icons/src/SmartphoneRounded.js new file mode 100644 index 00000000000000..e3ce05e2e63f03 --- /dev/null +++ b/packages/material-ui-icons/src/SmartphoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmartphoneRounded'); diff --git a/packages/material-ui-icons/src/SmartphoneSharp.js b/packages/material-ui-icons/src/SmartphoneSharp.js new file mode 100644 index 00000000000000..37dd44cbdd7b73 --- /dev/null +++ b/packages/material-ui-icons/src/SmartphoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmartphoneSharp'); diff --git a/packages/material-ui-icons/src/SmartphoneTwoTone.js b/packages/material-ui-icons/src/SmartphoneTwoTone.js new file mode 100644 index 00000000000000..9ee51751ba0ef3 --- /dev/null +++ b/packages/material-ui-icons/src/SmartphoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmartphoneTwoTone'); diff --git a/packages/material-ui-icons/src/SmokeFree.js b/packages/material-ui-icons/src/SmokeFree.js index d7880acfc34b67..4b888ca857cfb9 100644 --- a/packages/material-ui-icons/src/SmokeFree.js +++ b/packages/material-ui-icons/src/SmokeFree.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SmokeFree'); diff --git a/packages/material-ui-icons/src/SmokeFreeOutlined.js b/packages/material-ui-icons/src/SmokeFreeOutlined.js new file mode 100644 index 00000000000000..765b6b8bb1b35a --- /dev/null +++ b/packages/material-ui-icons/src/SmokeFreeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmokeFreeOutlined'); diff --git a/packages/material-ui-icons/src/SmokeFreeRounded.js b/packages/material-ui-icons/src/SmokeFreeRounded.js new file mode 100644 index 00000000000000..64f6ee5992dcab --- /dev/null +++ b/packages/material-ui-icons/src/SmokeFreeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmokeFreeRounded'); diff --git a/packages/material-ui-icons/src/SmokeFreeSharp.js b/packages/material-ui-icons/src/SmokeFreeSharp.js new file mode 100644 index 00000000000000..5d2d9d865c1ea0 --- /dev/null +++ b/packages/material-ui-icons/src/SmokeFreeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmokeFreeSharp'); diff --git a/packages/material-ui-icons/src/SmokeFreeTwoTone.js b/packages/material-ui-icons/src/SmokeFreeTwoTone.js new file mode 100644 index 00000000000000..32e10ea9245205 --- /dev/null +++ b/packages/material-ui-icons/src/SmokeFreeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmokeFreeTwoTone'); diff --git a/packages/material-ui-icons/src/SmokingRooms.js b/packages/material-ui-icons/src/SmokingRooms.js index 84a692ea72bcd0..1e8b47e87aa851 100644 --- a/packages/material-ui-icons/src/SmokingRooms.js +++ b/packages/material-ui-icons/src/SmokingRooms.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SmokingRooms'); diff --git a/packages/material-ui-icons/src/SmokingRoomsOutlined.js b/packages/material-ui-icons/src/SmokingRoomsOutlined.js new file mode 100644 index 00000000000000..b7dc204029225b --- /dev/null +++ b/packages/material-ui-icons/src/SmokingRoomsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmokingRoomsOutlined'); diff --git a/packages/material-ui-icons/src/SmokingRoomsRounded.js b/packages/material-ui-icons/src/SmokingRoomsRounded.js new file mode 100644 index 00000000000000..4dcb4b357f4f4b --- /dev/null +++ b/packages/material-ui-icons/src/SmokingRoomsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmokingRoomsRounded'); diff --git a/packages/material-ui-icons/src/SmokingRoomsSharp.js b/packages/material-ui-icons/src/SmokingRoomsSharp.js new file mode 100644 index 00000000000000..9864b413e98650 --- /dev/null +++ b/packages/material-ui-icons/src/SmokingRoomsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmokingRoomsSharp'); diff --git a/packages/material-ui-icons/src/SmokingRoomsTwoTone.js b/packages/material-ui-icons/src/SmokingRoomsTwoTone.js new file mode 100644 index 00000000000000..3ced444a893c86 --- /dev/null +++ b/packages/material-ui-icons/src/SmokingRoomsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmokingRoomsTwoTone'); diff --git a/packages/material-ui-icons/src/SmsFailedOutlined.js b/packages/material-ui-icons/src/SmsFailedOutlined.js new file mode 100644 index 00000000000000..2854fa85d8f87d --- /dev/null +++ b/packages/material-ui-icons/src/SmsFailedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmsFailedOutlined'); diff --git a/packages/material-ui-icons/src/SmsFailedRounded.js b/packages/material-ui-icons/src/SmsFailedRounded.js new file mode 100644 index 00000000000000..4292ccd1c572f7 --- /dev/null +++ b/packages/material-ui-icons/src/SmsFailedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmsFailedRounded'); diff --git a/packages/material-ui-icons/src/SmsFailedSharp.js b/packages/material-ui-icons/src/SmsFailedSharp.js new file mode 100644 index 00000000000000..b8c3d7dfc35cd4 --- /dev/null +++ b/packages/material-ui-icons/src/SmsFailedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmsFailedSharp'); diff --git a/packages/material-ui-icons/src/SmsFailedTwoTone.js b/packages/material-ui-icons/src/SmsFailedTwoTone.js new file mode 100644 index 00000000000000..a681bd074a38bd --- /dev/null +++ b/packages/material-ui-icons/src/SmsFailedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmsFailedTwoTone'); diff --git a/packages/material-ui-icons/src/SmsOutlined.js b/packages/material-ui-icons/src/SmsOutlined.js new file mode 100644 index 00000000000000..469bfe1a79f103 --- /dev/null +++ b/packages/material-ui-icons/src/SmsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmsOutlined'); diff --git a/packages/material-ui-icons/src/SmsRounded.js b/packages/material-ui-icons/src/SmsRounded.js new file mode 100644 index 00000000000000..919c38fa9173dd --- /dev/null +++ b/packages/material-ui-icons/src/SmsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmsRounded'); diff --git a/packages/material-ui-icons/src/SmsSharp.js b/packages/material-ui-icons/src/SmsSharp.js new file mode 100644 index 00000000000000..f7ce8eac473dec --- /dev/null +++ b/packages/material-ui-icons/src/SmsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmsSharp'); diff --git a/packages/material-ui-icons/src/SmsTwoTone.js b/packages/material-ui-icons/src/SmsTwoTone.js new file mode 100644 index 00000000000000..6fb52bbb61b1fa --- /dev/null +++ b/packages/material-ui-icons/src/SmsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SmsTwoTone'); diff --git a/packages/material-ui-icons/src/Snooze.js b/packages/material-ui-icons/src/Snooze.js index 93b1f0fbdfc3d6..a3a64c17277a46 100644 --- a/packages/material-ui-icons/src/Snooze.js +++ b/packages/material-ui-icons/src/Snooze.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Snooze'); diff --git a/packages/material-ui-icons/src/SnoozeOutlined.js b/packages/material-ui-icons/src/SnoozeOutlined.js new file mode 100644 index 00000000000000..ca72bdd37c772c --- /dev/null +++ b/packages/material-ui-icons/src/SnoozeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SnoozeOutlined'); diff --git a/packages/material-ui-icons/src/SnoozeRounded.js b/packages/material-ui-icons/src/SnoozeRounded.js new file mode 100644 index 00000000000000..5a40bbe4c42446 --- /dev/null +++ b/packages/material-ui-icons/src/SnoozeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SnoozeRounded'); diff --git a/packages/material-ui-icons/src/SnoozeSharp.js b/packages/material-ui-icons/src/SnoozeSharp.js new file mode 100644 index 00000000000000..142df9fa1c26c6 --- /dev/null +++ b/packages/material-ui-icons/src/SnoozeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SnoozeSharp'); diff --git a/packages/material-ui-icons/src/SnoozeTwoTone.js b/packages/material-ui-icons/src/SnoozeTwoTone.js new file mode 100644 index 00000000000000..377699bca90175 --- /dev/null +++ b/packages/material-ui-icons/src/SnoozeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SnoozeTwoTone'); diff --git a/packages/material-ui-icons/src/SortByAlphaOutlined.js b/packages/material-ui-icons/src/SortByAlphaOutlined.js new file mode 100644 index 00000000000000..be21b9c37a4398 --- /dev/null +++ b/packages/material-ui-icons/src/SortByAlphaOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SortByAlphaOutlined'); diff --git a/packages/material-ui-icons/src/SortByAlphaRounded.js b/packages/material-ui-icons/src/SortByAlphaRounded.js new file mode 100644 index 00000000000000..943aa5648665ea --- /dev/null +++ b/packages/material-ui-icons/src/SortByAlphaRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SortByAlphaRounded'); diff --git a/packages/material-ui-icons/src/SortByAlphaSharp.js b/packages/material-ui-icons/src/SortByAlphaSharp.js new file mode 100644 index 00000000000000..23fd9354a3253e --- /dev/null +++ b/packages/material-ui-icons/src/SortByAlphaSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SortByAlphaSharp'); diff --git a/packages/material-ui-icons/src/SortByAlphaTwoTone.js b/packages/material-ui-icons/src/SortByAlphaTwoTone.js new file mode 100644 index 00000000000000..0136f889b56a2a --- /dev/null +++ b/packages/material-ui-icons/src/SortByAlphaTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SortByAlphaTwoTone'); diff --git a/packages/material-ui-icons/src/SortOutlined.js b/packages/material-ui-icons/src/SortOutlined.js new file mode 100644 index 00000000000000..b5da83bc5d2c62 --- /dev/null +++ b/packages/material-ui-icons/src/SortOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SortOutlined'); diff --git a/packages/material-ui-icons/src/SortRounded.js b/packages/material-ui-icons/src/SortRounded.js new file mode 100644 index 00000000000000..801140a0f46324 --- /dev/null +++ b/packages/material-ui-icons/src/SortRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SortRounded'); diff --git a/packages/material-ui-icons/src/SortSharp.js b/packages/material-ui-icons/src/SortSharp.js new file mode 100644 index 00000000000000..514bd72dfdce4f --- /dev/null +++ b/packages/material-ui-icons/src/SortSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SortSharp'); diff --git a/packages/material-ui-icons/src/SortTwoTone.js b/packages/material-ui-icons/src/SortTwoTone.js new file mode 100644 index 00000000000000..1b620d6c671d24 --- /dev/null +++ b/packages/material-ui-icons/src/SortTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SortTwoTone'); diff --git a/packages/material-ui-icons/src/Spa.js b/packages/material-ui-icons/src/Spa.js index 566ea881a1099b..d6fdc5961836bc 100644 --- a/packages/material-ui-icons/src/Spa.js +++ b/packages/material-ui-icons/src/Spa.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Spa'); diff --git a/packages/material-ui-icons/src/SpaOutlined.js b/packages/material-ui-icons/src/SpaOutlined.js new file mode 100644 index 00000000000000..a9b49537116a5a --- /dev/null +++ b/packages/material-ui-icons/src/SpaOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpaOutlined'); diff --git a/packages/material-ui-icons/src/SpaRounded.js b/packages/material-ui-icons/src/SpaRounded.js new file mode 100644 index 00000000000000..7b91c58f265d21 --- /dev/null +++ b/packages/material-ui-icons/src/SpaRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpaRounded'); diff --git a/packages/material-ui-icons/src/SpaSharp.js b/packages/material-ui-icons/src/SpaSharp.js new file mode 100644 index 00000000000000..aa26e7fa70af28 --- /dev/null +++ b/packages/material-ui-icons/src/SpaSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpaSharp'); diff --git a/packages/material-ui-icons/src/SpaTwoTone.js b/packages/material-ui-icons/src/SpaTwoTone.js new file mode 100644 index 00000000000000..0ce42f5b0e6008 --- /dev/null +++ b/packages/material-ui-icons/src/SpaTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpaTwoTone'); diff --git a/packages/material-ui-icons/src/SpaceBarOutlined.js b/packages/material-ui-icons/src/SpaceBarOutlined.js new file mode 100644 index 00000000000000..e3577bf101c156 --- /dev/null +++ b/packages/material-ui-icons/src/SpaceBarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpaceBarOutlined'); diff --git a/packages/material-ui-icons/src/SpaceBarRounded.js b/packages/material-ui-icons/src/SpaceBarRounded.js new file mode 100644 index 00000000000000..5374f147d604ec --- /dev/null +++ b/packages/material-ui-icons/src/SpaceBarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpaceBarRounded'); diff --git a/packages/material-ui-icons/src/SpaceBarSharp.js b/packages/material-ui-icons/src/SpaceBarSharp.js new file mode 100644 index 00000000000000..a0be85bc3a7b0c --- /dev/null +++ b/packages/material-ui-icons/src/SpaceBarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpaceBarSharp'); diff --git a/packages/material-ui-icons/src/SpaceBarTwoTone.js b/packages/material-ui-icons/src/SpaceBarTwoTone.js new file mode 100644 index 00000000000000..b50d97fdc8a29b --- /dev/null +++ b/packages/material-ui-icons/src/SpaceBarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpaceBarTwoTone'); diff --git a/packages/material-ui-icons/src/Speaker.js b/packages/material-ui-icons/src/Speaker.js index 228bde3ca8e85f..0a734b86b57ccf 100644 --- a/packages/material-ui-icons/src/Speaker.js +++ b/packages/material-ui-icons/src/Speaker.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Speaker'); diff --git a/packages/material-ui-icons/src/SpeakerGroup.js b/packages/material-ui-icons/src/SpeakerGroup.js index 944d36114d65a0..ca61c711bebd0a 100644 --- a/packages/material-ui-icons/src/SpeakerGroup.js +++ b/packages/material-ui-icons/src/SpeakerGroup.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SpeakerGroup'); diff --git a/packages/material-ui-icons/src/SpeakerGroupOutlined.js b/packages/material-ui-icons/src/SpeakerGroupOutlined.js new file mode 100644 index 00000000000000..13797a7acc0ace --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerGroupOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerGroupOutlined'); diff --git a/packages/material-ui-icons/src/SpeakerGroupRounded.js b/packages/material-ui-icons/src/SpeakerGroupRounded.js new file mode 100644 index 00000000000000..b3b8a6569bf69d --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerGroupRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerGroupRounded'); diff --git a/packages/material-ui-icons/src/SpeakerGroupSharp.js b/packages/material-ui-icons/src/SpeakerGroupSharp.js new file mode 100644 index 00000000000000..d14d5f18a8132a --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerGroupSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerGroupSharp'); diff --git a/packages/material-ui-icons/src/SpeakerGroupTwoTone.js b/packages/material-ui-icons/src/SpeakerGroupTwoTone.js new file mode 100644 index 00000000000000..1c961f4dda7155 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerGroupTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerGroupTwoTone'); diff --git a/packages/material-ui-icons/src/SpeakerNotesOffOutlined.js b/packages/material-ui-icons/src/SpeakerNotesOffOutlined.js new file mode 100644 index 00000000000000..eeb081729a7bd2 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerNotesOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerNotesOffOutlined'); diff --git a/packages/material-ui-icons/src/SpeakerNotesOffRounded.js b/packages/material-ui-icons/src/SpeakerNotesOffRounded.js new file mode 100644 index 00000000000000..245ef6a53c4c2e --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerNotesOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerNotesOffRounded'); diff --git a/packages/material-ui-icons/src/SpeakerNotesOffSharp.js b/packages/material-ui-icons/src/SpeakerNotesOffSharp.js new file mode 100644 index 00000000000000..9b97735de866fb --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerNotesOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerNotesOffSharp'); diff --git a/packages/material-ui-icons/src/SpeakerNotesOffTwoTone.js b/packages/material-ui-icons/src/SpeakerNotesOffTwoTone.js new file mode 100644 index 00000000000000..ba3eaa7dd2f096 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerNotesOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerNotesOffTwoTone'); diff --git a/packages/material-ui-icons/src/SpeakerNotesOutlined.js b/packages/material-ui-icons/src/SpeakerNotesOutlined.js new file mode 100644 index 00000000000000..10d1a2ddab3d63 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerNotesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerNotesOutlined'); diff --git a/packages/material-ui-icons/src/SpeakerNotesRounded.js b/packages/material-ui-icons/src/SpeakerNotesRounded.js new file mode 100644 index 00000000000000..f9235baa62be75 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerNotesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerNotesRounded'); diff --git a/packages/material-ui-icons/src/SpeakerNotesSharp.js b/packages/material-ui-icons/src/SpeakerNotesSharp.js new file mode 100644 index 00000000000000..3cbc6c1f75c212 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerNotesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerNotesSharp'); diff --git a/packages/material-ui-icons/src/SpeakerNotesTwoTone.js b/packages/material-ui-icons/src/SpeakerNotesTwoTone.js new file mode 100644 index 00000000000000..089f8ad86e3109 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerNotesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerNotesTwoTone'); diff --git a/packages/material-ui-icons/src/SpeakerOutlined.js b/packages/material-ui-icons/src/SpeakerOutlined.js new file mode 100644 index 00000000000000..ea23445a102108 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerOutlined'); diff --git a/packages/material-ui-icons/src/SpeakerPhone.js b/packages/material-ui-icons/src/SpeakerPhone.js index 6c44a924cd1810..0dd0a56ada38b3 100644 --- a/packages/material-ui-icons/src/SpeakerPhone.js +++ b/packages/material-ui-icons/src/SpeakerPhone.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SpeakerPhone'); diff --git a/packages/material-ui-icons/src/SpeakerPhoneOutlined.js b/packages/material-ui-icons/src/SpeakerPhoneOutlined.js new file mode 100644 index 00000000000000..c1905a75c17d7c --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerPhoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerPhoneOutlined'); diff --git a/packages/material-ui-icons/src/SpeakerPhoneRounded.js b/packages/material-ui-icons/src/SpeakerPhoneRounded.js new file mode 100644 index 00000000000000..84386f28a7c607 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerPhoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerPhoneRounded'); diff --git a/packages/material-ui-icons/src/SpeakerPhoneSharp.js b/packages/material-ui-icons/src/SpeakerPhoneSharp.js new file mode 100644 index 00000000000000..857cc11556bdab --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerPhoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerPhoneSharp'); diff --git a/packages/material-ui-icons/src/SpeakerPhoneTwoTone.js b/packages/material-ui-icons/src/SpeakerPhoneTwoTone.js new file mode 100644 index 00000000000000..041e47e2fe3bfd --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerPhoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerPhoneTwoTone'); diff --git a/packages/material-ui-icons/src/SpeakerRounded.js b/packages/material-ui-icons/src/SpeakerRounded.js new file mode 100644 index 00000000000000..894c28955c45cc --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerRounded'); diff --git a/packages/material-ui-icons/src/SpeakerSharp.js b/packages/material-ui-icons/src/SpeakerSharp.js new file mode 100644 index 00000000000000..97d0111c0dd6c9 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerSharp'); diff --git a/packages/material-ui-icons/src/SpeakerTwoTone.js b/packages/material-ui-icons/src/SpeakerTwoTone.js new file mode 100644 index 00000000000000..d77199b84b9493 --- /dev/null +++ b/packages/material-ui-icons/src/SpeakerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpeakerTwoTone'); diff --git a/packages/material-ui-icons/src/SpellcheckOutlined.js b/packages/material-ui-icons/src/SpellcheckOutlined.js new file mode 100644 index 00000000000000..0c56126639f033 --- /dev/null +++ b/packages/material-ui-icons/src/SpellcheckOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpellcheckOutlined'); diff --git a/packages/material-ui-icons/src/SpellcheckRounded.js b/packages/material-ui-icons/src/SpellcheckRounded.js new file mode 100644 index 00000000000000..ce29f09759bc69 --- /dev/null +++ b/packages/material-ui-icons/src/SpellcheckRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpellcheckRounded'); diff --git a/packages/material-ui-icons/src/SpellcheckSharp.js b/packages/material-ui-icons/src/SpellcheckSharp.js new file mode 100644 index 00000000000000..02e4cf3281da5a --- /dev/null +++ b/packages/material-ui-icons/src/SpellcheckSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpellcheckSharp'); diff --git a/packages/material-ui-icons/src/SpellcheckTwoTone.js b/packages/material-ui-icons/src/SpellcheckTwoTone.js new file mode 100644 index 00000000000000..a3d25d5c21d992 --- /dev/null +++ b/packages/material-ui-icons/src/SpellcheckTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SpellcheckTwoTone'); diff --git a/packages/material-ui-icons/src/StarBorderOutlined.js b/packages/material-ui-icons/src/StarBorderOutlined.js new file mode 100644 index 00000000000000..fc613d846425ce --- /dev/null +++ b/packages/material-ui-icons/src/StarBorderOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarBorderOutlined'); diff --git a/packages/material-ui-icons/src/StarBorderRounded.js b/packages/material-ui-icons/src/StarBorderRounded.js new file mode 100644 index 00000000000000..62bd01dd94b675 --- /dev/null +++ b/packages/material-ui-icons/src/StarBorderRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarBorderRounded'); diff --git a/packages/material-ui-icons/src/StarBorderSharp.js b/packages/material-ui-icons/src/StarBorderSharp.js new file mode 100644 index 00000000000000..78b7822fd7ff8b --- /dev/null +++ b/packages/material-ui-icons/src/StarBorderSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarBorderSharp'); diff --git a/packages/material-ui-icons/src/StarBorderTwoTone.js b/packages/material-ui-icons/src/StarBorderTwoTone.js new file mode 100644 index 00000000000000..7c9f093271976d --- /dev/null +++ b/packages/material-ui-icons/src/StarBorderTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarBorderTwoTone'); diff --git a/packages/material-ui-icons/src/StarHalf.js b/packages/material-ui-icons/src/StarHalf.js index 38a91a2a91b359..8b01ec4e07e7d0 100644 --- a/packages/material-ui-icons/src/StarHalf.js +++ b/packages/material-ui-icons/src/StarHalf.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'StarHalf'); diff --git a/packages/material-ui-icons/src/StarHalfOutlined.js b/packages/material-ui-icons/src/StarHalfOutlined.js new file mode 100644 index 00000000000000..3afd0b5bd6f8d9 --- /dev/null +++ b/packages/material-ui-icons/src/StarHalfOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarHalfOutlined'); diff --git a/packages/material-ui-icons/src/StarHalfRounded.js b/packages/material-ui-icons/src/StarHalfRounded.js new file mode 100644 index 00000000000000..f540c3f6488e61 --- /dev/null +++ b/packages/material-ui-icons/src/StarHalfRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarHalfRounded'); diff --git a/packages/material-ui-icons/src/StarHalfSharp.js b/packages/material-ui-icons/src/StarHalfSharp.js new file mode 100644 index 00000000000000..3693fc0c5cc9ea --- /dev/null +++ b/packages/material-ui-icons/src/StarHalfSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarHalfSharp'); diff --git a/packages/material-ui-icons/src/StarHalfTwoTone.js b/packages/material-ui-icons/src/StarHalfTwoTone.js new file mode 100644 index 00000000000000..47f8423c5f40d3 --- /dev/null +++ b/packages/material-ui-icons/src/StarHalfTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarHalfTwoTone'); diff --git a/packages/material-ui-icons/src/StarOutlined.js b/packages/material-ui-icons/src/StarOutlined.js new file mode 100644 index 00000000000000..f52c7dd2b8b9a8 --- /dev/null +++ b/packages/material-ui-icons/src/StarOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarOutlined'); diff --git a/packages/material-ui-icons/src/StarRounded.js b/packages/material-ui-icons/src/StarRounded.js new file mode 100644 index 00000000000000..7d7a39a2cde984 --- /dev/null +++ b/packages/material-ui-icons/src/StarRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarRounded'); diff --git a/packages/material-ui-icons/src/StarSharp.js b/packages/material-ui-icons/src/StarSharp.js new file mode 100644 index 00000000000000..16cea512d6d832 --- /dev/null +++ b/packages/material-ui-icons/src/StarSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarSharp'); diff --git a/packages/material-ui-icons/src/StarTwoTone.js b/packages/material-ui-icons/src/StarTwoTone.js new file mode 100644 index 00000000000000..c81a0b95aa2ac9 --- /dev/null +++ b/packages/material-ui-icons/src/StarTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarTwoTone'); diff --git a/packages/material-ui-icons/src/StarsOutlined.js b/packages/material-ui-icons/src/StarsOutlined.js new file mode 100644 index 00000000000000..2f9b73852075d8 --- /dev/null +++ b/packages/material-ui-icons/src/StarsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarsOutlined'); diff --git a/packages/material-ui-icons/src/StarsRounded.js b/packages/material-ui-icons/src/StarsRounded.js new file mode 100644 index 00000000000000..4511f6597cb623 --- /dev/null +++ b/packages/material-ui-icons/src/StarsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarsRounded'); diff --git a/packages/material-ui-icons/src/StarsSharp.js b/packages/material-ui-icons/src/StarsSharp.js new file mode 100644 index 00000000000000..cc80c46cc0ca9d --- /dev/null +++ b/packages/material-ui-icons/src/StarsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarsSharp'); diff --git a/packages/material-ui-icons/src/StarsTwoTone.js b/packages/material-ui-icons/src/StarsTwoTone.js new file mode 100644 index 00000000000000..606a7930d2ae43 --- /dev/null +++ b/packages/material-ui-icons/src/StarsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StarsTwoTone'); diff --git a/packages/material-ui-icons/src/StayCurrentLandscapeOutlined.js b/packages/material-ui-icons/src/StayCurrentLandscapeOutlined.js new file mode 100644 index 00000000000000..bfcf5c7768cf7f --- /dev/null +++ b/packages/material-ui-icons/src/StayCurrentLandscapeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayCurrentLandscapeOutlined'); diff --git a/packages/material-ui-icons/src/StayCurrentLandscapeRounded.js b/packages/material-ui-icons/src/StayCurrentLandscapeRounded.js new file mode 100644 index 00000000000000..b97e38f512a4e2 --- /dev/null +++ b/packages/material-ui-icons/src/StayCurrentLandscapeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayCurrentLandscapeRounded'); diff --git a/packages/material-ui-icons/src/StayCurrentLandscapeSharp.js b/packages/material-ui-icons/src/StayCurrentLandscapeSharp.js new file mode 100644 index 00000000000000..b14b95fc260d80 --- /dev/null +++ b/packages/material-ui-icons/src/StayCurrentLandscapeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayCurrentLandscapeSharp'); diff --git a/packages/material-ui-icons/src/StayCurrentLandscapeTwoTone.js b/packages/material-ui-icons/src/StayCurrentLandscapeTwoTone.js new file mode 100644 index 00000000000000..67630c04ea070e --- /dev/null +++ b/packages/material-ui-icons/src/StayCurrentLandscapeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayCurrentLandscapeTwoTone'); diff --git a/packages/material-ui-icons/src/StayCurrentPortraitOutlined.js b/packages/material-ui-icons/src/StayCurrentPortraitOutlined.js new file mode 100644 index 00000000000000..9eb5fc964b109c --- /dev/null +++ b/packages/material-ui-icons/src/StayCurrentPortraitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayCurrentPortraitOutlined'); diff --git a/packages/material-ui-icons/src/StayCurrentPortraitRounded.js b/packages/material-ui-icons/src/StayCurrentPortraitRounded.js new file mode 100644 index 00000000000000..4dc9509e451348 --- /dev/null +++ b/packages/material-ui-icons/src/StayCurrentPortraitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayCurrentPortraitRounded'); diff --git a/packages/material-ui-icons/src/StayCurrentPortraitSharp.js b/packages/material-ui-icons/src/StayCurrentPortraitSharp.js new file mode 100644 index 00000000000000..52b3562f18c030 --- /dev/null +++ b/packages/material-ui-icons/src/StayCurrentPortraitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayCurrentPortraitSharp'); diff --git a/packages/material-ui-icons/src/StayCurrentPortraitTwoTone.js b/packages/material-ui-icons/src/StayCurrentPortraitTwoTone.js new file mode 100644 index 00000000000000..54291d25e54b73 --- /dev/null +++ b/packages/material-ui-icons/src/StayCurrentPortraitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayCurrentPortraitTwoTone'); diff --git a/packages/material-ui-icons/src/StayPrimaryLandscapeOutlined.js b/packages/material-ui-icons/src/StayPrimaryLandscapeOutlined.js new file mode 100644 index 00000000000000..aefbaf66541350 --- /dev/null +++ b/packages/material-ui-icons/src/StayPrimaryLandscapeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayPrimaryLandscapeOutlined'); diff --git a/packages/material-ui-icons/src/StayPrimaryLandscapeRounded.js b/packages/material-ui-icons/src/StayPrimaryLandscapeRounded.js new file mode 100644 index 00000000000000..1a684e5ea33f19 --- /dev/null +++ b/packages/material-ui-icons/src/StayPrimaryLandscapeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayPrimaryLandscapeRounded'); diff --git a/packages/material-ui-icons/src/StayPrimaryLandscapeSharp.js b/packages/material-ui-icons/src/StayPrimaryLandscapeSharp.js new file mode 100644 index 00000000000000..e7f19cbbec09d0 --- /dev/null +++ b/packages/material-ui-icons/src/StayPrimaryLandscapeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayPrimaryLandscapeSharp'); diff --git a/packages/material-ui-icons/src/StayPrimaryLandscapeTwoTone.js b/packages/material-ui-icons/src/StayPrimaryLandscapeTwoTone.js new file mode 100644 index 00000000000000..4a2cd75edbdd9e --- /dev/null +++ b/packages/material-ui-icons/src/StayPrimaryLandscapeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayPrimaryLandscapeTwoTone'); diff --git a/packages/material-ui-icons/src/StayPrimaryPortraitOutlined.js b/packages/material-ui-icons/src/StayPrimaryPortraitOutlined.js new file mode 100644 index 00000000000000..8139bb53ea6b0d --- /dev/null +++ b/packages/material-ui-icons/src/StayPrimaryPortraitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayPrimaryPortraitOutlined'); diff --git a/packages/material-ui-icons/src/StayPrimaryPortraitRounded.js b/packages/material-ui-icons/src/StayPrimaryPortraitRounded.js new file mode 100644 index 00000000000000..ddae2af83a9072 --- /dev/null +++ b/packages/material-ui-icons/src/StayPrimaryPortraitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayPrimaryPortraitRounded'); diff --git a/packages/material-ui-icons/src/StayPrimaryPortraitSharp.js b/packages/material-ui-icons/src/StayPrimaryPortraitSharp.js new file mode 100644 index 00000000000000..3eb0996bb9d885 --- /dev/null +++ b/packages/material-ui-icons/src/StayPrimaryPortraitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayPrimaryPortraitSharp'); diff --git a/packages/material-ui-icons/src/StayPrimaryPortraitTwoTone.js b/packages/material-ui-icons/src/StayPrimaryPortraitTwoTone.js new file mode 100644 index 00000000000000..0a5240bc35b37f --- /dev/null +++ b/packages/material-ui-icons/src/StayPrimaryPortraitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StayPrimaryPortraitTwoTone'); diff --git a/packages/material-ui-icons/src/StopOutlined.js b/packages/material-ui-icons/src/StopOutlined.js new file mode 100644 index 00000000000000..441d227e8c0495 --- /dev/null +++ b/packages/material-ui-icons/src/StopOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StopOutlined'); diff --git a/packages/material-ui-icons/src/StopRounded.js b/packages/material-ui-icons/src/StopRounded.js new file mode 100644 index 00000000000000..9180fd93f85822 --- /dev/null +++ b/packages/material-ui-icons/src/StopRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StopRounded'); diff --git a/packages/material-ui-icons/src/StopScreenShare.js b/packages/material-ui-icons/src/StopScreenShare.js index dd827b2a69f22d..010de3d5cf6a75 100644 --- a/packages/material-ui-icons/src/StopScreenShare.js +++ b/packages/material-ui-icons/src/StopScreenShare.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'StopScreenShare'); diff --git a/packages/material-ui-icons/src/StopScreenShareOutlined.js b/packages/material-ui-icons/src/StopScreenShareOutlined.js new file mode 100644 index 00000000000000..6925821f804eae --- /dev/null +++ b/packages/material-ui-icons/src/StopScreenShareOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StopScreenShareOutlined'); diff --git a/packages/material-ui-icons/src/StopScreenShareRounded.js b/packages/material-ui-icons/src/StopScreenShareRounded.js new file mode 100644 index 00000000000000..9754e0eecb3264 --- /dev/null +++ b/packages/material-ui-icons/src/StopScreenShareRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StopScreenShareRounded'); diff --git a/packages/material-ui-icons/src/StopScreenShareSharp.js b/packages/material-ui-icons/src/StopScreenShareSharp.js new file mode 100644 index 00000000000000..089cf339364894 --- /dev/null +++ b/packages/material-ui-icons/src/StopScreenShareSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StopScreenShareSharp'); diff --git a/packages/material-ui-icons/src/StopScreenShareTwoTone.js b/packages/material-ui-icons/src/StopScreenShareTwoTone.js new file mode 100644 index 00000000000000..9b05998f8f4f4c --- /dev/null +++ b/packages/material-ui-icons/src/StopScreenShareTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StopScreenShareTwoTone'); diff --git a/packages/material-ui-icons/src/StopSharp.js b/packages/material-ui-icons/src/StopSharp.js new file mode 100644 index 00000000000000..5ec56b47283fb8 --- /dev/null +++ b/packages/material-ui-icons/src/StopSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StopSharp'); diff --git a/packages/material-ui-icons/src/StopTwoTone.js b/packages/material-ui-icons/src/StopTwoTone.js new file mode 100644 index 00000000000000..723dc23687abd6 --- /dev/null +++ b/packages/material-ui-icons/src/StopTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StopTwoTone'); diff --git a/packages/material-ui-icons/src/StorageOutlined.js b/packages/material-ui-icons/src/StorageOutlined.js new file mode 100644 index 00000000000000..16565a288c04b1 --- /dev/null +++ b/packages/material-ui-icons/src/StorageOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StorageOutlined'); diff --git a/packages/material-ui-icons/src/StorageRounded.js b/packages/material-ui-icons/src/StorageRounded.js new file mode 100644 index 00000000000000..41f2ab310a5837 --- /dev/null +++ b/packages/material-ui-icons/src/StorageRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StorageRounded'); diff --git a/packages/material-ui-icons/src/StorageSharp.js b/packages/material-ui-icons/src/StorageSharp.js new file mode 100644 index 00000000000000..82639cdc7998c6 --- /dev/null +++ b/packages/material-ui-icons/src/StorageSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StorageSharp'); diff --git a/packages/material-ui-icons/src/StorageTwoTone.js b/packages/material-ui-icons/src/StorageTwoTone.js new file mode 100644 index 00000000000000..47159bf809ea2e --- /dev/null +++ b/packages/material-ui-icons/src/StorageTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StorageTwoTone'); diff --git a/packages/material-ui-icons/src/StoreMallDirectoryOutlined.js b/packages/material-ui-icons/src/StoreMallDirectoryOutlined.js new file mode 100644 index 00000000000000..70ba122cc21e60 --- /dev/null +++ b/packages/material-ui-icons/src/StoreMallDirectoryOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StoreMallDirectoryOutlined'); diff --git a/packages/material-ui-icons/src/StoreMallDirectoryRounded.js b/packages/material-ui-icons/src/StoreMallDirectoryRounded.js new file mode 100644 index 00000000000000..8c633915b03c53 --- /dev/null +++ b/packages/material-ui-icons/src/StoreMallDirectoryRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StoreMallDirectoryRounded'); diff --git a/packages/material-ui-icons/src/StoreMallDirectorySharp.js b/packages/material-ui-icons/src/StoreMallDirectorySharp.js new file mode 100644 index 00000000000000..2cced0015d4a54 --- /dev/null +++ b/packages/material-ui-icons/src/StoreMallDirectorySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StoreMallDirectorySharp'); diff --git a/packages/material-ui-icons/src/StoreMallDirectoryTwoTone.js b/packages/material-ui-icons/src/StoreMallDirectoryTwoTone.js new file mode 100644 index 00000000000000..401b31b5619ad5 --- /dev/null +++ b/packages/material-ui-icons/src/StoreMallDirectoryTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StoreMallDirectoryTwoTone'); diff --git a/packages/material-ui-icons/src/StoreOutlined.js b/packages/material-ui-icons/src/StoreOutlined.js new file mode 100644 index 00000000000000..205cffbb7ef7b5 --- /dev/null +++ b/packages/material-ui-icons/src/StoreOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StoreOutlined'); diff --git a/packages/material-ui-icons/src/StoreRounded.js b/packages/material-ui-icons/src/StoreRounded.js new file mode 100644 index 00000000000000..2bc2e9f90bc39d --- /dev/null +++ b/packages/material-ui-icons/src/StoreRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StoreRounded'); diff --git a/packages/material-ui-icons/src/StoreSharp.js b/packages/material-ui-icons/src/StoreSharp.js new file mode 100644 index 00000000000000..b1866975b14871 --- /dev/null +++ b/packages/material-ui-icons/src/StoreSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StoreSharp'); diff --git a/packages/material-ui-icons/src/StoreTwoTone.js b/packages/material-ui-icons/src/StoreTwoTone.js new file mode 100644 index 00000000000000..01f3f2b6d1cd65 --- /dev/null +++ b/packages/material-ui-icons/src/StoreTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StoreTwoTone'); diff --git a/packages/material-ui-icons/src/StraightenOutlined.js b/packages/material-ui-icons/src/StraightenOutlined.js new file mode 100644 index 00000000000000..ad13cd12213c78 --- /dev/null +++ b/packages/material-ui-icons/src/StraightenOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StraightenOutlined'); diff --git a/packages/material-ui-icons/src/StraightenRounded.js b/packages/material-ui-icons/src/StraightenRounded.js new file mode 100644 index 00000000000000..dedb4d08d82c1a --- /dev/null +++ b/packages/material-ui-icons/src/StraightenRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StraightenRounded'); diff --git a/packages/material-ui-icons/src/StraightenSharp.js b/packages/material-ui-icons/src/StraightenSharp.js new file mode 100644 index 00000000000000..a63dc91604da47 --- /dev/null +++ b/packages/material-ui-icons/src/StraightenSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StraightenSharp'); diff --git a/packages/material-ui-icons/src/StraightenTwoTone.js b/packages/material-ui-icons/src/StraightenTwoTone.js new file mode 100644 index 00000000000000..808306d24a2601 --- /dev/null +++ b/packages/material-ui-icons/src/StraightenTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StraightenTwoTone'); diff --git a/packages/material-ui-icons/src/Streetview.js b/packages/material-ui-icons/src/Streetview.js index 3e7f2deea55b79..390a3e58fedf38 100644 --- a/packages/material-ui-icons/src/Streetview.js +++ b/packages/material-ui-icons/src/Streetview.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Streetview'); diff --git a/packages/material-ui-icons/src/StreetviewOutlined.js b/packages/material-ui-icons/src/StreetviewOutlined.js new file mode 100644 index 00000000000000..e766c0be42441f --- /dev/null +++ b/packages/material-ui-icons/src/StreetviewOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StreetviewOutlined'); diff --git a/packages/material-ui-icons/src/StreetviewRounded.js b/packages/material-ui-icons/src/StreetviewRounded.js new file mode 100644 index 00000000000000..7046668b81d869 --- /dev/null +++ b/packages/material-ui-icons/src/StreetviewRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StreetviewRounded'); diff --git a/packages/material-ui-icons/src/StreetviewSharp.js b/packages/material-ui-icons/src/StreetviewSharp.js new file mode 100644 index 00000000000000..1f716fbaf57e48 --- /dev/null +++ b/packages/material-ui-icons/src/StreetviewSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StreetviewSharp'); diff --git a/packages/material-ui-icons/src/StreetviewTwoTone.js b/packages/material-ui-icons/src/StreetviewTwoTone.js new file mode 100644 index 00000000000000..07bee561269904 --- /dev/null +++ b/packages/material-ui-icons/src/StreetviewTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StreetviewTwoTone'); diff --git a/packages/material-ui-icons/src/StrikethroughS.js b/packages/material-ui-icons/src/StrikethroughS.js index 8dc89777c702cc..86a2d42226dac1 100644 --- a/packages/material-ui-icons/src/StrikethroughS.js +++ b/packages/material-ui-icons/src/StrikethroughS.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'StrikethroughS'); diff --git a/packages/material-ui-icons/src/StrikethroughSOutlined.js b/packages/material-ui-icons/src/StrikethroughSOutlined.js new file mode 100644 index 00000000000000..75876c940ae3a7 --- /dev/null +++ b/packages/material-ui-icons/src/StrikethroughSOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StrikethroughSOutlined'); diff --git a/packages/material-ui-icons/src/StrikethroughSRounded.js b/packages/material-ui-icons/src/StrikethroughSRounded.js new file mode 100644 index 00000000000000..5516acf791bfcd --- /dev/null +++ b/packages/material-ui-icons/src/StrikethroughSRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StrikethroughSRounded'); diff --git a/packages/material-ui-icons/src/StrikethroughSSharp.js b/packages/material-ui-icons/src/StrikethroughSSharp.js new file mode 100644 index 00000000000000..e62dd645572ea3 --- /dev/null +++ b/packages/material-ui-icons/src/StrikethroughSSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StrikethroughSSharp'); diff --git a/packages/material-ui-icons/src/StrikethroughSTwoTone.js b/packages/material-ui-icons/src/StrikethroughSTwoTone.js new file mode 100644 index 00000000000000..ef9d71acc83b1a --- /dev/null +++ b/packages/material-ui-icons/src/StrikethroughSTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StrikethroughSTwoTone'); diff --git a/packages/material-ui-icons/src/Style.js b/packages/material-ui-icons/src/Style.js index 9562c8d19c6748..4be7486c0e11a2 100644 --- a/packages/material-ui-icons/src/Style.js +++ b/packages/material-ui-icons/src/Style.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Style'); diff --git a/packages/material-ui-icons/src/StyleOutlined.js b/packages/material-ui-icons/src/StyleOutlined.js new file mode 100644 index 00000000000000..dd657509851092 --- /dev/null +++ b/packages/material-ui-icons/src/StyleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StyleOutlined'); diff --git a/packages/material-ui-icons/src/StyleRounded.js b/packages/material-ui-icons/src/StyleRounded.js new file mode 100644 index 00000000000000..e7e29929d00aff --- /dev/null +++ b/packages/material-ui-icons/src/StyleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StyleRounded'); diff --git a/packages/material-ui-icons/src/StyleSharp.js b/packages/material-ui-icons/src/StyleSharp.js new file mode 100644 index 00000000000000..d0b246dea2dc20 --- /dev/null +++ b/packages/material-ui-icons/src/StyleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StyleSharp'); diff --git a/packages/material-ui-icons/src/StyleTwoTone.js b/packages/material-ui-icons/src/StyleTwoTone.js new file mode 100644 index 00000000000000..099635d61d240a --- /dev/null +++ b/packages/material-ui-icons/src/StyleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'StyleTwoTone'); diff --git a/packages/material-ui-icons/src/SubdirectoryArrowLeftOutlined.js b/packages/material-ui-icons/src/SubdirectoryArrowLeftOutlined.js new file mode 100644 index 00000000000000..40431fa5867d1c --- /dev/null +++ b/packages/material-ui-icons/src/SubdirectoryArrowLeftOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubdirectoryArrowLeftOutlined'); diff --git a/packages/material-ui-icons/src/SubdirectoryArrowLeftRounded.js b/packages/material-ui-icons/src/SubdirectoryArrowLeftRounded.js new file mode 100644 index 00000000000000..2a62db39abbcec --- /dev/null +++ b/packages/material-ui-icons/src/SubdirectoryArrowLeftRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubdirectoryArrowLeftRounded'); diff --git a/packages/material-ui-icons/src/SubdirectoryArrowLeftSharp.js b/packages/material-ui-icons/src/SubdirectoryArrowLeftSharp.js new file mode 100644 index 00000000000000..458fea5b6826cb --- /dev/null +++ b/packages/material-ui-icons/src/SubdirectoryArrowLeftSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubdirectoryArrowLeftSharp'); diff --git a/packages/material-ui-icons/src/SubdirectoryArrowLeftTwoTone.js b/packages/material-ui-icons/src/SubdirectoryArrowLeftTwoTone.js new file mode 100644 index 00000000000000..ffcf3703ace95b --- /dev/null +++ b/packages/material-ui-icons/src/SubdirectoryArrowLeftTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubdirectoryArrowLeftTwoTone'); diff --git a/packages/material-ui-icons/src/SubdirectoryArrowRightOutlined.js b/packages/material-ui-icons/src/SubdirectoryArrowRightOutlined.js new file mode 100644 index 00000000000000..e0fa3e2da508cd --- /dev/null +++ b/packages/material-ui-icons/src/SubdirectoryArrowRightOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubdirectoryArrowRightOutlined'); diff --git a/packages/material-ui-icons/src/SubdirectoryArrowRightRounded.js b/packages/material-ui-icons/src/SubdirectoryArrowRightRounded.js new file mode 100644 index 00000000000000..30281a3bbbc5c8 --- /dev/null +++ b/packages/material-ui-icons/src/SubdirectoryArrowRightRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubdirectoryArrowRightRounded'); diff --git a/packages/material-ui-icons/src/SubdirectoryArrowRightSharp.js b/packages/material-ui-icons/src/SubdirectoryArrowRightSharp.js new file mode 100644 index 00000000000000..87d623709d198a --- /dev/null +++ b/packages/material-ui-icons/src/SubdirectoryArrowRightSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubdirectoryArrowRightSharp'); diff --git a/packages/material-ui-icons/src/SubdirectoryArrowRightTwoTone.js b/packages/material-ui-icons/src/SubdirectoryArrowRightTwoTone.js new file mode 100644 index 00000000000000..8b3db1c9ae6a0d --- /dev/null +++ b/packages/material-ui-icons/src/SubdirectoryArrowRightTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubdirectoryArrowRightTwoTone'); diff --git a/packages/material-ui-icons/src/SubjectOutlined.js b/packages/material-ui-icons/src/SubjectOutlined.js new file mode 100644 index 00000000000000..7b017a8dade4cd --- /dev/null +++ b/packages/material-ui-icons/src/SubjectOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubjectOutlined'); diff --git a/packages/material-ui-icons/src/SubjectRounded.js b/packages/material-ui-icons/src/SubjectRounded.js new file mode 100644 index 00000000000000..d9372dc900d227 --- /dev/null +++ b/packages/material-ui-icons/src/SubjectRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubjectRounded'); diff --git a/packages/material-ui-icons/src/SubjectSharp.js b/packages/material-ui-icons/src/SubjectSharp.js new file mode 100644 index 00000000000000..b06c06331209a2 --- /dev/null +++ b/packages/material-ui-icons/src/SubjectSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubjectSharp'); diff --git a/packages/material-ui-icons/src/SubjectTwoTone.js b/packages/material-ui-icons/src/SubjectTwoTone.js new file mode 100644 index 00000000000000..f81169b8737ad1 --- /dev/null +++ b/packages/material-ui-icons/src/SubjectTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubjectTwoTone'); diff --git a/packages/material-ui-icons/src/SubscriptionsOutlined.js b/packages/material-ui-icons/src/SubscriptionsOutlined.js new file mode 100644 index 00000000000000..2d397e9cee377e --- /dev/null +++ b/packages/material-ui-icons/src/SubscriptionsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubscriptionsOutlined'); diff --git a/packages/material-ui-icons/src/SubscriptionsRounded.js b/packages/material-ui-icons/src/SubscriptionsRounded.js new file mode 100644 index 00000000000000..c4780ce83397fd --- /dev/null +++ b/packages/material-ui-icons/src/SubscriptionsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubscriptionsRounded'); diff --git a/packages/material-ui-icons/src/SubscriptionsSharp.js b/packages/material-ui-icons/src/SubscriptionsSharp.js new file mode 100644 index 00000000000000..f4d3fdee441bef --- /dev/null +++ b/packages/material-ui-icons/src/SubscriptionsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubscriptionsSharp'); diff --git a/packages/material-ui-icons/src/SubscriptionsTwoTone.js b/packages/material-ui-icons/src/SubscriptionsTwoTone.js new file mode 100644 index 00000000000000..ff4cf9c5c399be --- /dev/null +++ b/packages/material-ui-icons/src/SubscriptionsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubscriptionsTwoTone'); diff --git a/packages/material-ui-icons/src/SubtitlesOutlined.js b/packages/material-ui-icons/src/SubtitlesOutlined.js new file mode 100644 index 00000000000000..d9a4139e2f77a0 --- /dev/null +++ b/packages/material-ui-icons/src/SubtitlesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubtitlesOutlined'); diff --git a/packages/material-ui-icons/src/SubtitlesRounded.js b/packages/material-ui-icons/src/SubtitlesRounded.js new file mode 100644 index 00000000000000..07e2c12c963260 --- /dev/null +++ b/packages/material-ui-icons/src/SubtitlesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubtitlesRounded'); diff --git a/packages/material-ui-icons/src/SubtitlesSharp.js b/packages/material-ui-icons/src/SubtitlesSharp.js new file mode 100644 index 00000000000000..b27200f1108659 --- /dev/null +++ b/packages/material-ui-icons/src/SubtitlesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubtitlesSharp'); diff --git a/packages/material-ui-icons/src/SubtitlesTwoTone.js b/packages/material-ui-icons/src/SubtitlesTwoTone.js new file mode 100644 index 00000000000000..2b78949336448c --- /dev/null +++ b/packages/material-ui-icons/src/SubtitlesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubtitlesTwoTone'); diff --git a/packages/material-ui-icons/src/Subway.js b/packages/material-ui-icons/src/Subway.js index 6ca7d80b3ab2fc..9192bd2ce0e5fe 100644 --- a/packages/material-ui-icons/src/Subway.js +++ b/packages/material-ui-icons/src/Subway.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Subway'); diff --git a/packages/material-ui-icons/src/SubwayOutlined.js b/packages/material-ui-icons/src/SubwayOutlined.js new file mode 100644 index 00000000000000..e3388e4d1454ad --- /dev/null +++ b/packages/material-ui-icons/src/SubwayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubwayOutlined'); diff --git a/packages/material-ui-icons/src/SubwayRounded.js b/packages/material-ui-icons/src/SubwayRounded.js new file mode 100644 index 00000000000000..68ffcab89f1666 --- /dev/null +++ b/packages/material-ui-icons/src/SubwayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubwayRounded'); diff --git a/packages/material-ui-icons/src/SubwaySharp.js b/packages/material-ui-icons/src/SubwaySharp.js new file mode 100644 index 00000000000000..21970375300d20 --- /dev/null +++ b/packages/material-ui-icons/src/SubwaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubwaySharp'); diff --git a/packages/material-ui-icons/src/SubwayTwoTone.js b/packages/material-ui-icons/src/SubwayTwoTone.js new file mode 100644 index 00000000000000..f783e2728eb3b1 --- /dev/null +++ b/packages/material-ui-icons/src/SubwayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SubwayTwoTone'); diff --git a/packages/material-ui-icons/src/SupervisedUserCircle.js b/packages/material-ui-icons/src/SupervisedUserCircle.js new file mode 100644 index 00000000000000..bae0d7cca3dbd6 --- /dev/null +++ b/packages/material-ui-icons/src/SupervisedUserCircle.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SupervisedUserCircle'); diff --git a/packages/material-ui-icons/src/SupervisedUserCircleOutlined.js b/packages/material-ui-icons/src/SupervisedUserCircleOutlined.js new file mode 100644 index 00000000000000..3cc61055c0bb8f --- /dev/null +++ b/packages/material-ui-icons/src/SupervisedUserCircleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SupervisedUserCircleOutlined'); diff --git a/packages/material-ui-icons/src/SupervisedUserCircleRounded.js b/packages/material-ui-icons/src/SupervisedUserCircleRounded.js new file mode 100644 index 00000000000000..c1af97195b47e6 --- /dev/null +++ b/packages/material-ui-icons/src/SupervisedUserCircleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SupervisedUserCircleRounded'); diff --git a/packages/material-ui-icons/src/SupervisedUserCircleSharp.js b/packages/material-ui-icons/src/SupervisedUserCircleSharp.js new file mode 100644 index 00000000000000..f4626a310f6428 --- /dev/null +++ b/packages/material-ui-icons/src/SupervisedUserCircleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SupervisedUserCircleSharp'); diff --git a/packages/material-ui-icons/src/SupervisedUserCircleTwoTone.js b/packages/material-ui-icons/src/SupervisedUserCircleTwoTone.js new file mode 100644 index 00000000000000..5fc1448600f541 --- /dev/null +++ b/packages/material-ui-icons/src/SupervisedUserCircleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SupervisedUserCircleTwoTone'); diff --git a/packages/material-ui-icons/src/SupervisorAccount.js b/packages/material-ui-icons/src/SupervisorAccount.js index 8104a1daef9bd1..1f3a85e94e4c3b 100644 --- a/packages/material-ui-icons/src/SupervisorAccount.js +++ b/packages/material-ui-icons/src/SupervisorAccount.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SupervisorAccount'); diff --git a/packages/material-ui-icons/src/SupervisorAccountOutlined.js b/packages/material-ui-icons/src/SupervisorAccountOutlined.js new file mode 100644 index 00000000000000..524c869b689ca5 --- /dev/null +++ b/packages/material-ui-icons/src/SupervisorAccountOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SupervisorAccountOutlined'); diff --git a/packages/material-ui-icons/src/SupervisorAccountRounded.js b/packages/material-ui-icons/src/SupervisorAccountRounded.js new file mode 100644 index 00000000000000..59a0a710079cd8 --- /dev/null +++ b/packages/material-ui-icons/src/SupervisorAccountRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SupervisorAccountRounded'); diff --git a/packages/material-ui-icons/src/SupervisorAccountSharp.js b/packages/material-ui-icons/src/SupervisorAccountSharp.js new file mode 100644 index 00000000000000..785536831fc73f --- /dev/null +++ b/packages/material-ui-icons/src/SupervisorAccountSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SupervisorAccountSharp'); diff --git a/packages/material-ui-icons/src/SupervisorAccountTwoTone.js b/packages/material-ui-icons/src/SupervisorAccountTwoTone.js new file mode 100644 index 00000000000000..357f5acb09b7f1 --- /dev/null +++ b/packages/material-ui-icons/src/SupervisorAccountTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SupervisorAccountTwoTone'); diff --git a/packages/material-ui-icons/src/SurroundSound.js b/packages/material-ui-icons/src/SurroundSound.js index df63dd2dfe8e8d..6fe5b700408330 100644 --- a/packages/material-ui-icons/src/SurroundSound.js +++ b/packages/material-ui-icons/src/SurroundSound.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SurroundSound'); diff --git a/packages/material-ui-icons/src/SurroundSoundOutlined.js b/packages/material-ui-icons/src/SurroundSoundOutlined.js new file mode 100644 index 00000000000000..aefe44fa4dcd85 --- /dev/null +++ b/packages/material-ui-icons/src/SurroundSoundOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SurroundSoundOutlined'); diff --git a/packages/material-ui-icons/src/SurroundSoundRounded.js b/packages/material-ui-icons/src/SurroundSoundRounded.js new file mode 100644 index 00000000000000..98ab41afbe75d6 --- /dev/null +++ b/packages/material-ui-icons/src/SurroundSoundRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SurroundSoundRounded'); diff --git a/packages/material-ui-icons/src/SurroundSoundSharp.js b/packages/material-ui-icons/src/SurroundSoundSharp.js new file mode 100644 index 00000000000000..d1e4eb296a03b2 --- /dev/null +++ b/packages/material-ui-icons/src/SurroundSoundSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SurroundSoundSharp'); diff --git a/packages/material-ui-icons/src/SurroundSoundTwoTone.js b/packages/material-ui-icons/src/SurroundSoundTwoTone.js new file mode 100644 index 00000000000000..f3d76d7ea33eef --- /dev/null +++ b/packages/material-ui-icons/src/SurroundSoundTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SurroundSoundTwoTone'); diff --git a/packages/material-ui-icons/src/SwapCallsOutlined.js b/packages/material-ui-icons/src/SwapCallsOutlined.js new file mode 100644 index 00000000000000..b88f51847a15cf --- /dev/null +++ b/packages/material-ui-icons/src/SwapCallsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapCallsOutlined'); diff --git a/packages/material-ui-icons/src/SwapCallsRounded.js b/packages/material-ui-icons/src/SwapCallsRounded.js new file mode 100644 index 00000000000000..53c4e87bb0a532 --- /dev/null +++ b/packages/material-ui-icons/src/SwapCallsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapCallsRounded'); diff --git a/packages/material-ui-icons/src/SwapCallsSharp.js b/packages/material-ui-icons/src/SwapCallsSharp.js new file mode 100644 index 00000000000000..fae4f6f2c25b59 --- /dev/null +++ b/packages/material-ui-icons/src/SwapCallsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapCallsSharp'); diff --git a/packages/material-ui-icons/src/SwapCallsTwoTone.js b/packages/material-ui-icons/src/SwapCallsTwoTone.js new file mode 100644 index 00000000000000..20e7546449139f --- /dev/null +++ b/packages/material-ui-icons/src/SwapCallsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapCallsTwoTone'); diff --git a/packages/material-ui-icons/src/SwapHorizOutlined.js b/packages/material-ui-icons/src/SwapHorizOutlined.js new file mode 100644 index 00000000000000..479a6176753f25 --- /dev/null +++ b/packages/material-ui-icons/src/SwapHorizOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapHorizOutlined'); diff --git a/packages/material-ui-icons/src/SwapHorizRounded.js b/packages/material-ui-icons/src/SwapHorizRounded.js new file mode 100644 index 00000000000000..29b3b7e12b8548 --- /dev/null +++ b/packages/material-ui-icons/src/SwapHorizRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapHorizRounded'); diff --git a/packages/material-ui-icons/src/SwapHorizSharp.js b/packages/material-ui-icons/src/SwapHorizSharp.js new file mode 100644 index 00000000000000..e3c1eaf7a4d5f8 --- /dev/null +++ b/packages/material-ui-icons/src/SwapHorizSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapHorizSharp'); diff --git a/packages/material-ui-icons/src/SwapHorizTwoTone.js b/packages/material-ui-icons/src/SwapHorizTwoTone.js new file mode 100644 index 00000000000000..f57b1e00c5528b --- /dev/null +++ b/packages/material-ui-icons/src/SwapHorizTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapHorizTwoTone'); diff --git a/packages/material-ui-icons/src/SwapHorizontalCircle.js b/packages/material-ui-icons/src/SwapHorizontalCircle.js new file mode 100644 index 00000000000000..8ecd049798a5ae --- /dev/null +++ b/packages/material-ui-icons/src/SwapHorizontalCircle.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapHorizontalCircle'); diff --git a/packages/material-ui-icons/src/SwapHorizontalCircleOutlined.js b/packages/material-ui-icons/src/SwapHorizontalCircleOutlined.js new file mode 100644 index 00000000000000..49bafef08d7438 --- /dev/null +++ b/packages/material-ui-icons/src/SwapHorizontalCircleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapHorizontalCircleOutlined'); diff --git a/packages/material-ui-icons/src/SwapHorizontalCircleRounded.js b/packages/material-ui-icons/src/SwapHorizontalCircleRounded.js new file mode 100644 index 00000000000000..d16e66373f0482 --- /dev/null +++ b/packages/material-ui-icons/src/SwapHorizontalCircleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapHorizontalCircleRounded'); diff --git a/packages/material-ui-icons/src/SwapHorizontalCircleSharp.js b/packages/material-ui-icons/src/SwapHorizontalCircleSharp.js new file mode 100644 index 00000000000000..e70ca408f3b8b3 --- /dev/null +++ b/packages/material-ui-icons/src/SwapHorizontalCircleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapHorizontalCircleSharp'); diff --git a/packages/material-ui-icons/src/SwapHorizontalCircleTwoTone.js b/packages/material-ui-icons/src/SwapHorizontalCircleTwoTone.js new file mode 100644 index 00000000000000..d148cf20e9d9aa --- /dev/null +++ b/packages/material-ui-icons/src/SwapHorizontalCircleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapHorizontalCircleTwoTone'); diff --git a/packages/material-ui-icons/src/SwapVertOutlined.js b/packages/material-ui-icons/src/SwapVertOutlined.js new file mode 100644 index 00000000000000..0c8eeb3ff802df --- /dev/null +++ b/packages/material-ui-icons/src/SwapVertOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapVertOutlined'); diff --git a/packages/material-ui-icons/src/SwapVertRounded.js b/packages/material-ui-icons/src/SwapVertRounded.js new file mode 100644 index 00000000000000..f79c963bb75b25 --- /dev/null +++ b/packages/material-ui-icons/src/SwapVertRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapVertRounded'); diff --git a/packages/material-ui-icons/src/SwapVertSharp.js b/packages/material-ui-icons/src/SwapVertSharp.js new file mode 100644 index 00000000000000..44e996d8736563 --- /dev/null +++ b/packages/material-ui-icons/src/SwapVertSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapVertSharp'); diff --git a/packages/material-ui-icons/src/SwapVertTwoTone.js b/packages/material-ui-icons/src/SwapVertTwoTone.js new file mode 100644 index 00000000000000..b7c8256458089b --- /dev/null +++ b/packages/material-ui-icons/src/SwapVertTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapVertTwoTone'); diff --git a/packages/material-ui-icons/src/SwapVerticalCircleOutlined.js b/packages/material-ui-icons/src/SwapVerticalCircleOutlined.js new file mode 100644 index 00000000000000..18fbb0286e4053 --- /dev/null +++ b/packages/material-ui-icons/src/SwapVerticalCircleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapVerticalCircleOutlined'); diff --git a/packages/material-ui-icons/src/SwapVerticalCircleRounded.js b/packages/material-ui-icons/src/SwapVerticalCircleRounded.js new file mode 100644 index 00000000000000..be6455a51dc639 --- /dev/null +++ b/packages/material-ui-icons/src/SwapVerticalCircleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapVerticalCircleRounded'); diff --git a/packages/material-ui-icons/src/SwapVerticalCircleSharp.js b/packages/material-ui-icons/src/SwapVerticalCircleSharp.js new file mode 100644 index 00000000000000..600c45423046c1 --- /dev/null +++ b/packages/material-ui-icons/src/SwapVerticalCircleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapVerticalCircleSharp'); diff --git a/packages/material-ui-icons/src/SwapVerticalCircleTwoTone.js b/packages/material-ui-icons/src/SwapVerticalCircleTwoTone.js new file mode 100644 index 00000000000000..9245471195baba --- /dev/null +++ b/packages/material-ui-icons/src/SwapVerticalCircleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwapVerticalCircleTwoTone'); diff --git a/packages/material-ui-icons/src/SwitchCameraOutlined.js b/packages/material-ui-icons/src/SwitchCameraOutlined.js new file mode 100644 index 00000000000000..20e3c0aaadbd96 --- /dev/null +++ b/packages/material-ui-icons/src/SwitchCameraOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwitchCameraOutlined'); diff --git a/packages/material-ui-icons/src/SwitchCameraRounded.js b/packages/material-ui-icons/src/SwitchCameraRounded.js new file mode 100644 index 00000000000000..6992a23d4af0ea --- /dev/null +++ b/packages/material-ui-icons/src/SwitchCameraRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwitchCameraRounded'); diff --git a/packages/material-ui-icons/src/SwitchCameraSharp.js b/packages/material-ui-icons/src/SwitchCameraSharp.js new file mode 100644 index 00000000000000..e8498978662a7b --- /dev/null +++ b/packages/material-ui-icons/src/SwitchCameraSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwitchCameraSharp'); diff --git a/packages/material-ui-icons/src/SwitchCameraTwoTone.js b/packages/material-ui-icons/src/SwitchCameraTwoTone.js new file mode 100644 index 00000000000000..d7df6b7f15001a --- /dev/null +++ b/packages/material-ui-icons/src/SwitchCameraTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwitchCameraTwoTone'); diff --git a/packages/material-ui-icons/src/SwitchVideoOutlined.js b/packages/material-ui-icons/src/SwitchVideoOutlined.js new file mode 100644 index 00000000000000..6edd425b35401e --- /dev/null +++ b/packages/material-ui-icons/src/SwitchVideoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwitchVideoOutlined'); diff --git a/packages/material-ui-icons/src/SwitchVideoRounded.js b/packages/material-ui-icons/src/SwitchVideoRounded.js new file mode 100644 index 00000000000000..5dbca0ac54b0c1 --- /dev/null +++ b/packages/material-ui-icons/src/SwitchVideoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwitchVideoRounded'); diff --git a/packages/material-ui-icons/src/SwitchVideoSharp.js b/packages/material-ui-icons/src/SwitchVideoSharp.js new file mode 100644 index 00000000000000..19ac80083f452c --- /dev/null +++ b/packages/material-ui-icons/src/SwitchVideoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwitchVideoSharp'); diff --git a/packages/material-ui-icons/src/SwitchVideoTwoTone.js b/packages/material-ui-icons/src/SwitchVideoTwoTone.js new file mode 100644 index 00000000000000..dbf3842e539b78 --- /dev/null +++ b/packages/material-ui-icons/src/SwitchVideoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SwitchVideoTwoTone'); diff --git a/packages/material-ui-icons/src/Sync.js b/packages/material-ui-icons/src/Sync.js index 5bcf6d3af9edcc..a51304940c9eb9 100644 --- a/packages/material-ui-icons/src/Sync.js +++ b/packages/material-ui-icons/src/Sync.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Sync'); diff --git a/packages/material-ui-icons/src/SyncDisabled.js b/packages/material-ui-icons/src/SyncDisabled.js index 76249b03cde747..1d4b728dd1f552 100644 --- a/packages/material-ui-icons/src/SyncDisabled.js +++ b/packages/material-ui-icons/src/SyncDisabled.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SyncDisabled'); diff --git a/packages/material-ui-icons/src/SyncDisabledOutlined.js b/packages/material-ui-icons/src/SyncDisabledOutlined.js new file mode 100644 index 00000000000000..eb84e5a9398d0e --- /dev/null +++ b/packages/material-ui-icons/src/SyncDisabledOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncDisabledOutlined'); diff --git a/packages/material-ui-icons/src/SyncDisabledRounded.js b/packages/material-ui-icons/src/SyncDisabledRounded.js new file mode 100644 index 00000000000000..f9fff02df1616f --- /dev/null +++ b/packages/material-ui-icons/src/SyncDisabledRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncDisabledRounded'); diff --git a/packages/material-ui-icons/src/SyncDisabledSharp.js b/packages/material-ui-icons/src/SyncDisabledSharp.js new file mode 100644 index 00000000000000..1e7b42bc7e693a --- /dev/null +++ b/packages/material-ui-icons/src/SyncDisabledSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncDisabledSharp'); diff --git a/packages/material-ui-icons/src/SyncDisabledTwoTone.js b/packages/material-ui-icons/src/SyncDisabledTwoTone.js new file mode 100644 index 00000000000000..64caeaf59b43a5 --- /dev/null +++ b/packages/material-ui-icons/src/SyncDisabledTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncDisabledTwoTone'); diff --git a/packages/material-ui-icons/src/SyncOutlined.js b/packages/material-ui-icons/src/SyncOutlined.js new file mode 100644 index 00000000000000..9d445c678c3258 --- /dev/null +++ b/packages/material-ui-icons/src/SyncOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncOutlined'); diff --git a/packages/material-ui-icons/src/SyncProblem.js b/packages/material-ui-icons/src/SyncProblem.js index c939cf03d0061e..67db5cb353159f 100644 --- a/packages/material-ui-icons/src/SyncProblem.js +++ b/packages/material-ui-icons/src/SyncProblem.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'SyncProblem'); diff --git a/packages/material-ui-icons/src/SyncProblemOutlined.js b/packages/material-ui-icons/src/SyncProblemOutlined.js new file mode 100644 index 00000000000000..3b2f26d944e26d --- /dev/null +++ b/packages/material-ui-icons/src/SyncProblemOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncProblemOutlined'); diff --git a/packages/material-ui-icons/src/SyncProblemRounded.js b/packages/material-ui-icons/src/SyncProblemRounded.js new file mode 100644 index 00000000000000..0ee1eaccec04b5 --- /dev/null +++ b/packages/material-ui-icons/src/SyncProblemRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncProblemRounded'); diff --git a/packages/material-ui-icons/src/SyncProblemSharp.js b/packages/material-ui-icons/src/SyncProblemSharp.js new file mode 100644 index 00000000000000..1c297d05b7aeb8 --- /dev/null +++ b/packages/material-ui-icons/src/SyncProblemSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncProblemSharp'); diff --git a/packages/material-ui-icons/src/SyncProblemTwoTone.js b/packages/material-ui-icons/src/SyncProblemTwoTone.js new file mode 100644 index 00000000000000..e65bb74f939f24 --- /dev/null +++ b/packages/material-ui-icons/src/SyncProblemTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncProblemTwoTone'); diff --git a/packages/material-ui-icons/src/SyncRounded.js b/packages/material-ui-icons/src/SyncRounded.js new file mode 100644 index 00000000000000..a2af5431ff53cf --- /dev/null +++ b/packages/material-ui-icons/src/SyncRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncRounded'); diff --git a/packages/material-ui-icons/src/SyncSharp.js b/packages/material-ui-icons/src/SyncSharp.js new file mode 100644 index 00000000000000..94a8190de489a8 --- /dev/null +++ b/packages/material-ui-icons/src/SyncSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncSharp'); diff --git a/packages/material-ui-icons/src/SyncTwoTone.js b/packages/material-ui-icons/src/SyncTwoTone.js new file mode 100644 index 00000000000000..2f52dd06853191 --- /dev/null +++ b/packages/material-ui-icons/src/SyncTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SyncTwoTone'); diff --git a/packages/material-ui-icons/src/SystemUpdateAlt.js b/packages/material-ui-icons/src/SystemUpdateAlt.js deleted file mode 100644 index dfe5843695f43c..00000000000000 --- a/packages/material-ui-icons/src/SystemUpdateAlt.js +++ /dev/null @@ -1,6 +0,0 @@ -import React from 'react'; -import createSvgIcon from './utils/createSvgIcon'; - -export default createSvgIcon( - -, 'SystemUpdateAlt'); diff --git a/packages/material-ui-icons/src/SystemUpdateOutlined.js b/packages/material-ui-icons/src/SystemUpdateOutlined.js new file mode 100644 index 00000000000000..0f7dfc8603fdf5 --- /dev/null +++ b/packages/material-ui-icons/src/SystemUpdateOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SystemUpdateOutlined'); diff --git a/packages/material-ui-icons/src/SystemUpdateRounded.js b/packages/material-ui-icons/src/SystemUpdateRounded.js new file mode 100644 index 00000000000000..4ba8f3af803fdc --- /dev/null +++ b/packages/material-ui-icons/src/SystemUpdateRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SystemUpdateRounded'); diff --git a/packages/material-ui-icons/src/SystemUpdateSharp.js b/packages/material-ui-icons/src/SystemUpdateSharp.js new file mode 100644 index 00000000000000..cfc49864bd21c7 --- /dev/null +++ b/packages/material-ui-icons/src/SystemUpdateSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SystemUpdateSharp'); diff --git a/packages/material-ui-icons/src/SystemUpdateTwoTone.js b/packages/material-ui-icons/src/SystemUpdateTwoTone.js new file mode 100644 index 00000000000000..29c4a3d038c72a --- /dev/null +++ b/packages/material-ui-icons/src/SystemUpdateTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'SystemUpdateTwoTone'); diff --git a/packages/material-ui-icons/src/TabOutlined.js b/packages/material-ui-icons/src/TabOutlined.js new file mode 100644 index 00000000000000..042c8e25c5cc02 --- /dev/null +++ b/packages/material-ui-icons/src/TabOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabOutlined'); diff --git a/packages/material-ui-icons/src/TabRounded.js b/packages/material-ui-icons/src/TabRounded.js new file mode 100644 index 00000000000000..e1f6277531d8d4 --- /dev/null +++ b/packages/material-ui-icons/src/TabRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabRounded'); diff --git a/packages/material-ui-icons/src/TabSharp.js b/packages/material-ui-icons/src/TabSharp.js new file mode 100644 index 00000000000000..c61392ddb6e063 --- /dev/null +++ b/packages/material-ui-icons/src/TabSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabSharp'); diff --git a/packages/material-ui-icons/src/TabTwoTone.js b/packages/material-ui-icons/src/TabTwoTone.js new file mode 100644 index 00000000000000..e01e92ceb3e502 --- /dev/null +++ b/packages/material-ui-icons/src/TabTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabTwoTone'); diff --git a/packages/material-ui-icons/src/TabUnselectedOutlined.js b/packages/material-ui-icons/src/TabUnselectedOutlined.js new file mode 100644 index 00000000000000..4b79d0170aaeca --- /dev/null +++ b/packages/material-ui-icons/src/TabUnselectedOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabUnselectedOutlined'); diff --git a/packages/material-ui-icons/src/TabUnselectedRounded.js b/packages/material-ui-icons/src/TabUnselectedRounded.js new file mode 100644 index 00000000000000..191a47050c9b6e --- /dev/null +++ b/packages/material-ui-icons/src/TabUnselectedRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabUnselectedRounded'); diff --git a/packages/material-ui-icons/src/TabUnselectedSharp.js b/packages/material-ui-icons/src/TabUnselectedSharp.js new file mode 100644 index 00000000000000..dc879668962359 --- /dev/null +++ b/packages/material-ui-icons/src/TabUnselectedSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabUnselectedSharp'); diff --git a/packages/material-ui-icons/src/TabUnselectedTwoTone.js b/packages/material-ui-icons/src/TabUnselectedTwoTone.js new file mode 100644 index 00000000000000..1cc4bc4ff0d367 --- /dev/null +++ b/packages/material-ui-icons/src/TabUnselectedTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabUnselectedTwoTone'); diff --git a/packages/material-ui-icons/src/TableChart.js b/packages/material-ui-icons/src/TableChart.js new file mode 100644 index 00000000000000..192d37a3953727 --- /dev/null +++ b/packages/material-ui-icons/src/TableChart.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TableChart'); diff --git a/packages/material-ui-icons/src/TableChartOutlined.js b/packages/material-ui-icons/src/TableChartOutlined.js new file mode 100644 index 00000000000000..ca9c177f3a737c --- /dev/null +++ b/packages/material-ui-icons/src/TableChartOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TableChartOutlined'); diff --git a/packages/material-ui-icons/src/TableChartRounded.js b/packages/material-ui-icons/src/TableChartRounded.js new file mode 100644 index 00000000000000..b6fdff823f913c --- /dev/null +++ b/packages/material-ui-icons/src/TableChartRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TableChartRounded'); diff --git a/packages/material-ui-icons/src/TableChartSharp.js b/packages/material-ui-icons/src/TableChartSharp.js new file mode 100644 index 00000000000000..d0ee9abf417fab --- /dev/null +++ b/packages/material-ui-icons/src/TableChartSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TableChartSharp'); diff --git a/packages/material-ui-icons/src/TableChartTwoTone.js b/packages/material-ui-icons/src/TableChartTwoTone.js new file mode 100644 index 00000000000000..8da8b2ca4932ab --- /dev/null +++ b/packages/material-ui-icons/src/TableChartTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TableChartTwoTone'); diff --git a/packages/material-ui-icons/src/TabletAndroid.js b/packages/material-ui-icons/src/TabletAndroid.js index f0062886feb074..c1056664fda604 100644 --- a/packages/material-ui-icons/src/TabletAndroid.js +++ b/packages/material-ui-icons/src/TabletAndroid.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'TabletAndroid'); diff --git a/packages/material-ui-icons/src/TabletAndroidOutlined.js b/packages/material-ui-icons/src/TabletAndroidOutlined.js new file mode 100644 index 00000000000000..57dbe70fc3945b --- /dev/null +++ b/packages/material-ui-icons/src/TabletAndroidOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletAndroidOutlined'); diff --git a/packages/material-ui-icons/src/TabletAndroidRounded.js b/packages/material-ui-icons/src/TabletAndroidRounded.js new file mode 100644 index 00000000000000..741166e6c3e7e3 --- /dev/null +++ b/packages/material-ui-icons/src/TabletAndroidRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletAndroidRounded'); diff --git a/packages/material-ui-icons/src/TabletAndroidSharp.js b/packages/material-ui-icons/src/TabletAndroidSharp.js new file mode 100644 index 00000000000000..e3f299f1ed9dea --- /dev/null +++ b/packages/material-ui-icons/src/TabletAndroidSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletAndroidSharp'); diff --git a/packages/material-ui-icons/src/TabletAndroidTwoTone.js b/packages/material-ui-icons/src/TabletAndroidTwoTone.js new file mode 100644 index 00000000000000..a0780e222ec7d4 --- /dev/null +++ b/packages/material-ui-icons/src/TabletAndroidTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletAndroidTwoTone'); diff --git a/packages/material-ui-icons/src/TabletMac.js b/packages/material-ui-icons/src/TabletMac.js index c09ca26a93ad9b..73d1650ba12fbd 100644 --- a/packages/material-ui-icons/src/TabletMac.js +++ b/packages/material-ui-icons/src/TabletMac.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'TabletMac'); diff --git a/packages/material-ui-icons/src/TabletMacOutlined.js b/packages/material-ui-icons/src/TabletMacOutlined.js new file mode 100644 index 00000000000000..3e57fed44b2ac5 --- /dev/null +++ b/packages/material-ui-icons/src/TabletMacOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletMacOutlined'); diff --git a/packages/material-ui-icons/src/TabletMacRounded.js b/packages/material-ui-icons/src/TabletMacRounded.js new file mode 100644 index 00000000000000..46f41be96ea700 --- /dev/null +++ b/packages/material-ui-icons/src/TabletMacRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletMacRounded'); diff --git a/packages/material-ui-icons/src/TabletMacSharp.js b/packages/material-ui-icons/src/TabletMacSharp.js new file mode 100644 index 00000000000000..b320de1a337358 --- /dev/null +++ b/packages/material-ui-icons/src/TabletMacSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletMacSharp'); diff --git a/packages/material-ui-icons/src/TabletMacTwoTone.js b/packages/material-ui-icons/src/TabletMacTwoTone.js new file mode 100644 index 00000000000000..8fb39d1ab909b9 --- /dev/null +++ b/packages/material-ui-icons/src/TabletMacTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletMacTwoTone'); diff --git a/packages/material-ui-icons/src/TabletOutlined.js b/packages/material-ui-icons/src/TabletOutlined.js new file mode 100644 index 00000000000000..ff90eb17e63033 --- /dev/null +++ b/packages/material-ui-icons/src/TabletOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletOutlined'); diff --git a/packages/material-ui-icons/src/TabletRounded.js b/packages/material-ui-icons/src/TabletRounded.js new file mode 100644 index 00000000000000..aaae1765359bdd --- /dev/null +++ b/packages/material-ui-icons/src/TabletRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletRounded'); diff --git a/packages/material-ui-icons/src/TabletSharp.js b/packages/material-ui-icons/src/TabletSharp.js new file mode 100644 index 00000000000000..00f8100bb10a94 --- /dev/null +++ b/packages/material-ui-icons/src/TabletSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletSharp'); diff --git a/packages/material-ui-icons/src/TabletTwoTone.js b/packages/material-ui-icons/src/TabletTwoTone.js new file mode 100644 index 00000000000000..493fc3667f2fe6 --- /dev/null +++ b/packages/material-ui-icons/src/TabletTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TabletTwoTone'); diff --git a/packages/material-ui-icons/src/TagFacesOutlined.js b/packages/material-ui-icons/src/TagFacesOutlined.js new file mode 100644 index 00000000000000..da316ec1f33a9f --- /dev/null +++ b/packages/material-ui-icons/src/TagFacesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TagFacesOutlined'); diff --git a/packages/material-ui-icons/src/TagFacesRounded.js b/packages/material-ui-icons/src/TagFacesRounded.js new file mode 100644 index 00000000000000..c267f0ba62c523 --- /dev/null +++ b/packages/material-ui-icons/src/TagFacesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TagFacesRounded'); diff --git a/packages/material-ui-icons/src/TagFacesSharp.js b/packages/material-ui-icons/src/TagFacesSharp.js new file mode 100644 index 00000000000000..01fed158637fed --- /dev/null +++ b/packages/material-ui-icons/src/TagFacesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TagFacesSharp'); diff --git a/packages/material-ui-icons/src/TagFacesTwoTone.js b/packages/material-ui-icons/src/TagFacesTwoTone.js new file mode 100644 index 00000000000000..1e712702feb94b --- /dev/null +++ b/packages/material-ui-icons/src/TagFacesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TagFacesTwoTone'); diff --git a/packages/material-ui-icons/src/TapAndPlay.js b/packages/material-ui-icons/src/TapAndPlay.js index c8292fd6387101..41fd2cd3892b65 100644 --- a/packages/material-ui-icons/src/TapAndPlay.js +++ b/packages/material-ui-icons/src/TapAndPlay.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'TapAndPlay'); diff --git a/packages/material-ui-icons/src/TapAndPlayOutlined.js b/packages/material-ui-icons/src/TapAndPlayOutlined.js new file mode 100644 index 00000000000000..01570a92f04412 --- /dev/null +++ b/packages/material-ui-icons/src/TapAndPlayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TapAndPlayOutlined'); diff --git a/packages/material-ui-icons/src/TapAndPlayRounded.js b/packages/material-ui-icons/src/TapAndPlayRounded.js new file mode 100644 index 00000000000000..34cd90485c38cb --- /dev/null +++ b/packages/material-ui-icons/src/TapAndPlayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TapAndPlayRounded'); diff --git a/packages/material-ui-icons/src/TapAndPlaySharp.js b/packages/material-ui-icons/src/TapAndPlaySharp.js new file mode 100644 index 00000000000000..54d9bae9d3cbc3 --- /dev/null +++ b/packages/material-ui-icons/src/TapAndPlaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TapAndPlaySharp'); diff --git a/packages/material-ui-icons/src/TapAndPlayTwoTone.js b/packages/material-ui-icons/src/TapAndPlayTwoTone.js new file mode 100644 index 00000000000000..dff4a987006276 --- /dev/null +++ b/packages/material-ui-icons/src/TapAndPlayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TapAndPlayTwoTone'); diff --git a/packages/material-ui-icons/src/TerrainOutlined.js b/packages/material-ui-icons/src/TerrainOutlined.js new file mode 100644 index 00000000000000..bcce9140472568 --- /dev/null +++ b/packages/material-ui-icons/src/TerrainOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TerrainOutlined'); diff --git a/packages/material-ui-icons/src/TerrainRounded.js b/packages/material-ui-icons/src/TerrainRounded.js new file mode 100644 index 00000000000000..16e3b9ba9b6089 --- /dev/null +++ b/packages/material-ui-icons/src/TerrainRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TerrainRounded'); diff --git a/packages/material-ui-icons/src/TerrainSharp.js b/packages/material-ui-icons/src/TerrainSharp.js new file mode 100644 index 00000000000000..fb603ed0f79152 --- /dev/null +++ b/packages/material-ui-icons/src/TerrainSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TerrainSharp'); diff --git a/packages/material-ui-icons/src/TerrainTwoTone.js b/packages/material-ui-icons/src/TerrainTwoTone.js new file mode 100644 index 00000000000000..bf720c2fd1a786 --- /dev/null +++ b/packages/material-ui-icons/src/TerrainTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TerrainTwoTone'); diff --git a/packages/material-ui-icons/src/TextFields.js b/packages/material-ui-icons/src/TextFields.js index 717c1f56e04bdc..2d76d0082a5a01 100644 --- a/packages/material-ui-icons/src/TextFields.js +++ b/packages/material-ui-icons/src/TextFields.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'TextFields'); diff --git a/packages/material-ui-icons/src/TextFieldsOutlined.js b/packages/material-ui-icons/src/TextFieldsOutlined.js new file mode 100644 index 00000000000000..0e6c2af2dda492 --- /dev/null +++ b/packages/material-ui-icons/src/TextFieldsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextFieldsOutlined'); diff --git a/packages/material-ui-icons/src/TextFieldsRounded.js b/packages/material-ui-icons/src/TextFieldsRounded.js new file mode 100644 index 00000000000000..1128092ef5ce0a --- /dev/null +++ b/packages/material-ui-icons/src/TextFieldsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextFieldsRounded'); diff --git a/packages/material-ui-icons/src/TextFieldsSharp.js b/packages/material-ui-icons/src/TextFieldsSharp.js new file mode 100644 index 00000000000000..a92f1264fd4d0a --- /dev/null +++ b/packages/material-ui-icons/src/TextFieldsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextFieldsSharp'); diff --git a/packages/material-ui-icons/src/TextFieldsTwoTone.js b/packages/material-ui-icons/src/TextFieldsTwoTone.js new file mode 100644 index 00000000000000..5854c1d5720e8c --- /dev/null +++ b/packages/material-ui-icons/src/TextFieldsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextFieldsTwoTone'); diff --git a/packages/material-ui-icons/src/TextFormatOutlined.js b/packages/material-ui-icons/src/TextFormatOutlined.js new file mode 100644 index 00000000000000..9cc1ef11848fa3 --- /dev/null +++ b/packages/material-ui-icons/src/TextFormatOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextFormatOutlined'); diff --git a/packages/material-ui-icons/src/TextFormatRounded.js b/packages/material-ui-icons/src/TextFormatRounded.js new file mode 100644 index 00000000000000..1a1057619aa89a --- /dev/null +++ b/packages/material-ui-icons/src/TextFormatRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextFormatRounded'); diff --git a/packages/material-ui-icons/src/TextFormatSharp.js b/packages/material-ui-icons/src/TextFormatSharp.js new file mode 100644 index 00000000000000..5ac5c58b1ed1ce --- /dev/null +++ b/packages/material-ui-icons/src/TextFormatSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextFormatSharp'); diff --git a/packages/material-ui-icons/src/TextFormatTwoTone.js b/packages/material-ui-icons/src/TextFormatTwoTone.js new file mode 100644 index 00000000000000..f1900e83207f28 --- /dev/null +++ b/packages/material-ui-icons/src/TextFormatTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextFormatTwoTone'); diff --git a/packages/material-ui-icons/src/TextRotateUp.js b/packages/material-ui-icons/src/TextRotateUp.js new file mode 100644 index 00000000000000..11c1ff1faa7f5f --- /dev/null +++ b/packages/material-ui-icons/src/TextRotateUp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotateUp'); diff --git a/packages/material-ui-icons/src/TextRotateUpOutlined.js b/packages/material-ui-icons/src/TextRotateUpOutlined.js new file mode 100644 index 00000000000000..d35dd6a7baf397 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotateUpOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotateUpOutlined'); diff --git a/packages/material-ui-icons/src/TextRotateUpRounded.js b/packages/material-ui-icons/src/TextRotateUpRounded.js new file mode 100644 index 00000000000000..9b5326010395ed --- /dev/null +++ b/packages/material-ui-icons/src/TextRotateUpRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotateUpRounded'); diff --git a/packages/material-ui-icons/src/TextRotateUpSharp.js b/packages/material-ui-icons/src/TextRotateUpSharp.js new file mode 100644 index 00000000000000..5eb52ac5861cda --- /dev/null +++ b/packages/material-ui-icons/src/TextRotateUpSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotateUpSharp'); diff --git a/packages/material-ui-icons/src/TextRotateUpTwoTone.js b/packages/material-ui-icons/src/TextRotateUpTwoTone.js new file mode 100644 index 00000000000000..2abaa95d091898 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotateUpTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotateUpTwoTone'); diff --git a/packages/material-ui-icons/src/TextRotateVertical.js b/packages/material-ui-icons/src/TextRotateVertical.js new file mode 100644 index 00000000000000..8fb5aafcb4deb5 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotateVertical.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotateVertical'); diff --git a/packages/material-ui-icons/src/TextRotateVerticalOutlined.js b/packages/material-ui-icons/src/TextRotateVerticalOutlined.js new file mode 100644 index 00000000000000..7583b1ded95a6d --- /dev/null +++ b/packages/material-ui-icons/src/TextRotateVerticalOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotateVerticalOutlined'); diff --git a/packages/material-ui-icons/src/TextRotateVerticalRounded.js b/packages/material-ui-icons/src/TextRotateVerticalRounded.js new file mode 100644 index 00000000000000..63a002e5ed71ab --- /dev/null +++ b/packages/material-ui-icons/src/TextRotateVerticalRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotateVerticalRounded'); diff --git a/packages/material-ui-icons/src/TextRotateVerticalSharp.js b/packages/material-ui-icons/src/TextRotateVerticalSharp.js new file mode 100644 index 00000000000000..66457b1815b934 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotateVerticalSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotateVerticalSharp'); diff --git a/packages/material-ui-icons/src/TextRotateVerticalTwoTone.js b/packages/material-ui-icons/src/TextRotateVerticalTwoTone.js new file mode 100644 index 00000000000000..381ecc08df097c --- /dev/null +++ b/packages/material-ui-icons/src/TextRotateVerticalTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotateVerticalTwoTone'); diff --git a/packages/material-ui-icons/src/TextRotationDown.js b/packages/material-ui-icons/src/TextRotationDown.js new file mode 100644 index 00000000000000..9463c47602f2a4 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotationDown.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotationDown'); diff --git a/packages/material-ui-icons/src/TextRotationDownOutlined.js b/packages/material-ui-icons/src/TextRotationDownOutlined.js new file mode 100644 index 00000000000000..7383ead33e7788 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotationDownOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotationDownOutlined'); diff --git a/packages/material-ui-icons/src/TextRotationDownRounded.js b/packages/material-ui-icons/src/TextRotationDownRounded.js new file mode 100644 index 00000000000000..2da7e0b20ceccf --- /dev/null +++ b/packages/material-ui-icons/src/TextRotationDownRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotationDownRounded'); diff --git a/packages/material-ui-icons/src/TextRotationDownSharp.js b/packages/material-ui-icons/src/TextRotationDownSharp.js new file mode 100644 index 00000000000000..b313614fbd1235 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotationDownSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotationDownSharp'); diff --git a/packages/material-ui-icons/src/TextRotationDownTwoTone.js b/packages/material-ui-icons/src/TextRotationDownTwoTone.js new file mode 100644 index 00000000000000..aca5e35b905c90 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotationDownTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotationDownTwoTone'); diff --git a/packages/material-ui-icons/src/TextRotationNone.js b/packages/material-ui-icons/src/TextRotationNone.js new file mode 100644 index 00000000000000..ea963d82b15966 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotationNone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotationNone'); diff --git a/packages/material-ui-icons/src/TextRotationNoneOutlined.js b/packages/material-ui-icons/src/TextRotationNoneOutlined.js new file mode 100644 index 00000000000000..90c208dbbe6ac9 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotationNoneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotationNoneOutlined'); diff --git a/packages/material-ui-icons/src/TextRotationNoneRounded.js b/packages/material-ui-icons/src/TextRotationNoneRounded.js new file mode 100644 index 00000000000000..8afe02cf95c916 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotationNoneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotationNoneRounded'); diff --git a/packages/material-ui-icons/src/TextRotationNoneSharp.js b/packages/material-ui-icons/src/TextRotationNoneSharp.js new file mode 100644 index 00000000000000..d342ddc55f9286 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotationNoneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotationNoneSharp'); diff --git a/packages/material-ui-icons/src/TextRotationNoneTwoTone.js b/packages/material-ui-icons/src/TextRotationNoneTwoTone.js new file mode 100644 index 00000000000000..1df1cbd5d85556 --- /dev/null +++ b/packages/material-ui-icons/src/TextRotationNoneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextRotationNoneTwoTone'); diff --git a/packages/material-ui-icons/src/TextsmsOutlined.js b/packages/material-ui-icons/src/TextsmsOutlined.js new file mode 100644 index 00000000000000..31d30eca04fda5 --- /dev/null +++ b/packages/material-ui-icons/src/TextsmsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextsmsOutlined'); diff --git a/packages/material-ui-icons/src/TextsmsRounded.js b/packages/material-ui-icons/src/TextsmsRounded.js new file mode 100644 index 00000000000000..7d35184f843521 --- /dev/null +++ b/packages/material-ui-icons/src/TextsmsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextsmsRounded'); diff --git a/packages/material-ui-icons/src/TextsmsSharp.js b/packages/material-ui-icons/src/TextsmsSharp.js new file mode 100644 index 00000000000000..bbd2a20695678a --- /dev/null +++ b/packages/material-ui-icons/src/TextsmsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextsmsSharp'); diff --git a/packages/material-ui-icons/src/TextsmsTwoTone.js b/packages/material-ui-icons/src/TextsmsTwoTone.js new file mode 100644 index 00000000000000..10840e6860aba7 --- /dev/null +++ b/packages/material-ui-icons/src/TextsmsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextsmsTwoTone'); diff --git a/packages/material-ui-icons/src/TextureOutlined.js b/packages/material-ui-icons/src/TextureOutlined.js new file mode 100644 index 00000000000000..e1e24a48fa2e13 --- /dev/null +++ b/packages/material-ui-icons/src/TextureOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextureOutlined'); diff --git a/packages/material-ui-icons/src/TextureRounded.js b/packages/material-ui-icons/src/TextureRounded.js new file mode 100644 index 00000000000000..3439c05e521a64 --- /dev/null +++ b/packages/material-ui-icons/src/TextureRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextureRounded'); diff --git a/packages/material-ui-icons/src/TextureSharp.js b/packages/material-ui-icons/src/TextureSharp.js new file mode 100644 index 00000000000000..e4f88e1e81c889 --- /dev/null +++ b/packages/material-ui-icons/src/TextureSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextureSharp'); diff --git a/packages/material-ui-icons/src/TextureTwoTone.js b/packages/material-ui-icons/src/TextureTwoTone.js new file mode 100644 index 00000000000000..bfe78a0575fcc5 --- /dev/null +++ b/packages/material-ui-icons/src/TextureTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TextureTwoTone'); diff --git a/packages/material-ui-icons/src/TheatersOutlined.js b/packages/material-ui-icons/src/TheatersOutlined.js new file mode 100644 index 00000000000000..583efad5424eaf --- /dev/null +++ b/packages/material-ui-icons/src/TheatersOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TheatersOutlined'); diff --git a/packages/material-ui-icons/src/TheatersRounded.js b/packages/material-ui-icons/src/TheatersRounded.js new file mode 100644 index 00000000000000..4c46e35099a90e --- /dev/null +++ b/packages/material-ui-icons/src/TheatersRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TheatersRounded'); diff --git a/packages/material-ui-icons/src/TheatersSharp.js b/packages/material-ui-icons/src/TheatersSharp.js new file mode 100644 index 00000000000000..0c92c8c0b8e660 --- /dev/null +++ b/packages/material-ui-icons/src/TheatersSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TheatersSharp'); diff --git a/packages/material-ui-icons/src/TheatersTwoTone.js b/packages/material-ui-icons/src/TheatersTwoTone.js new file mode 100644 index 00000000000000..8abe4d2bf31cf3 --- /dev/null +++ b/packages/material-ui-icons/src/TheatersTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TheatersTwoTone'); diff --git a/packages/material-ui-icons/src/ThreeDRotation.js b/packages/material-ui-icons/src/ThreeDRotation.js index 93fb63be66fb4e..519f2433fe1943 100644 --- a/packages/material-ui-icons/src/ThreeDRotation.js +++ b/packages/material-ui-icons/src/ThreeDRotation.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ThreeDRotation'); diff --git a/packages/material-ui-icons/src/ThreeDRotationOutlined.js b/packages/material-ui-icons/src/ThreeDRotationOutlined.js new file mode 100644 index 00000000000000..31f0edff6cdd3f --- /dev/null +++ b/packages/material-ui-icons/src/ThreeDRotationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThreeDRotationOutlined'); diff --git a/packages/material-ui-icons/src/ThreeDRotationRounded.js b/packages/material-ui-icons/src/ThreeDRotationRounded.js new file mode 100644 index 00000000000000..e5cf835b025120 --- /dev/null +++ b/packages/material-ui-icons/src/ThreeDRotationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThreeDRotationRounded'); diff --git a/packages/material-ui-icons/src/ThreeDRotationSharp.js b/packages/material-ui-icons/src/ThreeDRotationSharp.js new file mode 100644 index 00000000000000..47156b1cff6076 --- /dev/null +++ b/packages/material-ui-icons/src/ThreeDRotationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThreeDRotationSharp'); diff --git a/packages/material-ui-icons/src/ThreeDRotationTwoTone.js b/packages/material-ui-icons/src/ThreeDRotationTwoTone.js new file mode 100644 index 00000000000000..8a570e91191989 --- /dev/null +++ b/packages/material-ui-icons/src/ThreeDRotationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThreeDRotationTwoTone'); diff --git a/packages/material-ui-icons/src/ThreeSixty.js b/packages/material-ui-icons/src/ThreeSixty.js new file mode 100644 index 00000000000000..8c1bff98087e34 --- /dev/null +++ b/packages/material-ui-icons/src/ThreeSixty.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThreeSixty'); diff --git a/packages/material-ui-icons/src/ThreeSixtyOutlined.js b/packages/material-ui-icons/src/ThreeSixtyOutlined.js new file mode 100644 index 00000000000000..5ed20abe78fccd --- /dev/null +++ b/packages/material-ui-icons/src/ThreeSixtyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThreeSixtyOutlined'); diff --git a/packages/material-ui-icons/src/ThreeSixtyRounded.js b/packages/material-ui-icons/src/ThreeSixtyRounded.js new file mode 100644 index 00000000000000..1e764618918f8e --- /dev/null +++ b/packages/material-ui-icons/src/ThreeSixtyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThreeSixtyRounded'); diff --git a/packages/material-ui-icons/src/ThreeSixtySharp.js b/packages/material-ui-icons/src/ThreeSixtySharp.js new file mode 100644 index 00000000000000..3f7e664dc26dd8 --- /dev/null +++ b/packages/material-ui-icons/src/ThreeSixtySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThreeSixtySharp'); diff --git a/packages/material-ui-icons/src/ThreeSixtyTwoTone.js b/packages/material-ui-icons/src/ThreeSixtyTwoTone.js new file mode 100644 index 00000000000000..b3ce0abb4c5e7c --- /dev/null +++ b/packages/material-ui-icons/src/ThreeSixtyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThreeSixtyTwoTone'); diff --git a/packages/material-ui-icons/src/ThumbDown.js b/packages/material-ui-icons/src/ThumbDown.js index b29a0b9cce4886..40b922508bfb49 100644 --- a/packages/material-ui-icons/src/ThumbDown.js +++ b/packages/material-ui-icons/src/ThumbDown.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ThumbDown'); diff --git a/packages/material-ui-icons/src/ThumbDownAlt.js b/packages/material-ui-icons/src/ThumbDownAlt.js new file mode 100644 index 00000000000000..ee558613de690c --- /dev/null +++ b/packages/material-ui-icons/src/ThumbDownAlt.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbDownAlt'); diff --git a/packages/material-ui-icons/src/ThumbDownAltOutlined.js b/packages/material-ui-icons/src/ThumbDownAltOutlined.js new file mode 100644 index 00000000000000..976064f7855e8e --- /dev/null +++ b/packages/material-ui-icons/src/ThumbDownAltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbDownAltOutlined'); diff --git a/packages/material-ui-icons/src/ThumbDownAltRounded.js b/packages/material-ui-icons/src/ThumbDownAltRounded.js new file mode 100644 index 00000000000000..519d7d3460438d --- /dev/null +++ b/packages/material-ui-icons/src/ThumbDownAltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbDownAltRounded'); diff --git a/packages/material-ui-icons/src/ThumbDownAltSharp.js b/packages/material-ui-icons/src/ThumbDownAltSharp.js new file mode 100644 index 00000000000000..ba3171026cf741 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbDownAltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbDownAltSharp'); diff --git a/packages/material-ui-icons/src/ThumbDownAltTwoTone.js b/packages/material-ui-icons/src/ThumbDownAltTwoTone.js new file mode 100644 index 00000000000000..f1e3c04a1a7387 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbDownAltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbDownAltTwoTone'); diff --git a/packages/material-ui-icons/src/ThumbDownOutlined.js b/packages/material-ui-icons/src/ThumbDownOutlined.js new file mode 100644 index 00000000000000..d57e7854338e4b --- /dev/null +++ b/packages/material-ui-icons/src/ThumbDownOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbDownOutlined'); diff --git a/packages/material-ui-icons/src/ThumbDownRounded.js b/packages/material-ui-icons/src/ThumbDownRounded.js new file mode 100644 index 00000000000000..7af572f065b2dc --- /dev/null +++ b/packages/material-ui-icons/src/ThumbDownRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbDownRounded'); diff --git a/packages/material-ui-icons/src/ThumbDownSharp.js b/packages/material-ui-icons/src/ThumbDownSharp.js new file mode 100644 index 00000000000000..5f8d701979ff90 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbDownSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbDownSharp'); diff --git a/packages/material-ui-icons/src/ThumbDownTwoTone.js b/packages/material-ui-icons/src/ThumbDownTwoTone.js new file mode 100644 index 00000000000000..5ec68de1012179 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbDownTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbDownTwoTone'); diff --git a/packages/material-ui-icons/src/ThumbUp.js b/packages/material-ui-icons/src/ThumbUp.js index 54a2b016c75c68..8c7d7439827c25 100644 --- a/packages/material-ui-icons/src/ThumbUp.js +++ b/packages/material-ui-icons/src/ThumbUp.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ThumbUp'); diff --git a/packages/material-ui-icons/src/ThumbUpAlt.js b/packages/material-ui-icons/src/ThumbUpAlt.js new file mode 100644 index 00000000000000..88e8e0f6573100 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbUpAlt.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbUpAlt'); diff --git a/packages/material-ui-icons/src/ThumbUpAltOutlined.js b/packages/material-ui-icons/src/ThumbUpAltOutlined.js new file mode 100644 index 00000000000000..d481611e5374a2 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbUpAltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbUpAltOutlined'); diff --git a/packages/material-ui-icons/src/ThumbUpAltRounded.js b/packages/material-ui-icons/src/ThumbUpAltRounded.js new file mode 100644 index 00000000000000..da9c50f87de1ba --- /dev/null +++ b/packages/material-ui-icons/src/ThumbUpAltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbUpAltRounded'); diff --git a/packages/material-ui-icons/src/ThumbUpAltSharp.js b/packages/material-ui-icons/src/ThumbUpAltSharp.js new file mode 100644 index 00000000000000..5f476949618ada --- /dev/null +++ b/packages/material-ui-icons/src/ThumbUpAltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbUpAltSharp'); diff --git a/packages/material-ui-icons/src/ThumbUpAltTwoTone.js b/packages/material-ui-icons/src/ThumbUpAltTwoTone.js new file mode 100644 index 00000000000000..902318de165526 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbUpAltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbUpAltTwoTone'); diff --git a/packages/material-ui-icons/src/ThumbUpOutlined.js b/packages/material-ui-icons/src/ThumbUpOutlined.js new file mode 100644 index 00000000000000..09656e3fafc6b6 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbUpOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbUpOutlined'); diff --git a/packages/material-ui-icons/src/ThumbUpRounded.js b/packages/material-ui-icons/src/ThumbUpRounded.js new file mode 100644 index 00000000000000..a3d4a930943ddb --- /dev/null +++ b/packages/material-ui-icons/src/ThumbUpRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbUpRounded'); diff --git a/packages/material-ui-icons/src/ThumbUpSharp.js b/packages/material-ui-icons/src/ThumbUpSharp.js new file mode 100644 index 00000000000000..b81e1ab5e8ca6e --- /dev/null +++ b/packages/material-ui-icons/src/ThumbUpSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbUpSharp'); diff --git a/packages/material-ui-icons/src/ThumbUpTwoTone.js b/packages/material-ui-icons/src/ThumbUpTwoTone.js new file mode 100644 index 00000000000000..3a7573c4c526ca --- /dev/null +++ b/packages/material-ui-icons/src/ThumbUpTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbUpTwoTone'); diff --git a/packages/material-ui-icons/src/ThumbsUpDownOutlined.js b/packages/material-ui-icons/src/ThumbsUpDownOutlined.js new file mode 100644 index 00000000000000..53d0cebae3ce01 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbsUpDownOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbsUpDownOutlined'); diff --git a/packages/material-ui-icons/src/ThumbsUpDownRounded.js b/packages/material-ui-icons/src/ThumbsUpDownRounded.js new file mode 100644 index 00000000000000..f8f57140264347 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbsUpDownRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbsUpDownRounded'); diff --git a/packages/material-ui-icons/src/ThumbsUpDownSharp.js b/packages/material-ui-icons/src/ThumbsUpDownSharp.js new file mode 100644 index 00000000000000..8b8bafad3eeb21 --- /dev/null +++ b/packages/material-ui-icons/src/ThumbsUpDownSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbsUpDownSharp'); diff --git a/packages/material-ui-icons/src/ThumbsUpDownTwoTone.js b/packages/material-ui-icons/src/ThumbsUpDownTwoTone.js new file mode 100644 index 00000000000000..3c20294d5d7bda --- /dev/null +++ b/packages/material-ui-icons/src/ThumbsUpDownTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ThumbsUpDownTwoTone'); diff --git a/packages/material-ui-icons/src/TimeToLeaveOutlined.js b/packages/material-ui-icons/src/TimeToLeaveOutlined.js new file mode 100644 index 00000000000000..510565de59f40f --- /dev/null +++ b/packages/material-ui-icons/src/TimeToLeaveOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimeToLeaveOutlined'); diff --git a/packages/material-ui-icons/src/TimeToLeaveRounded.js b/packages/material-ui-icons/src/TimeToLeaveRounded.js new file mode 100644 index 00000000000000..ecec8ccca1fd8c --- /dev/null +++ b/packages/material-ui-icons/src/TimeToLeaveRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimeToLeaveRounded'); diff --git a/packages/material-ui-icons/src/TimeToLeaveSharp.js b/packages/material-ui-icons/src/TimeToLeaveSharp.js new file mode 100644 index 00000000000000..b020299fd9ec8b --- /dev/null +++ b/packages/material-ui-icons/src/TimeToLeaveSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimeToLeaveSharp'); diff --git a/packages/material-ui-icons/src/TimeToLeaveTwoTone.js b/packages/material-ui-icons/src/TimeToLeaveTwoTone.js new file mode 100644 index 00000000000000..3f159c0a161e74 --- /dev/null +++ b/packages/material-ui-icons/src/TimeToLeaveTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimeToLeaveTwoTone'); diff --git a/packages/material-ui-icons/src/Timelapse.js b/packages/material-ui-icons/src/Timelapse.js index 092c13fa80ab8f..75853ad0c3f261 100644 --- a/packages/material-ui-icons/src/Timelapse.js +++ b/packages/material-ui-icons/src/Timelapse.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Timelapse'); diff --git a/packages/material-ui-icons/src/TimelapseOutlined.js b/packages/material-ui-icons/src/TimelapseOutlined.js new file mode 100644 index 00000000000000..13185246cdfa72 --- /dev/null +++ b/packages/material-ui-icons/src/TimelapseOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimelapseOutlined'); diff --git a/packages/material-ui-icons/src/TimelapseRounded.js b/packages/material-ui-icons/src/TimelapseRounded.js new file mode 100644 index 00000000000000..4336120e8f5070 --- /dev/null +++ b/packages/material-ui-icons/src/TimelapseRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimelapseRounded'); diff --git a/packages/material-ui-icons/src/TimelapseSharp.js b/packages/material-ui-icons/src/TimelapseSharp.js new file mode 100644 index 00000000000000..01a84d032b1ed1 --- /dev/null +++ b/packages/material-ui-icons/src/TimelapseSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimelapseSharp'); diff --git a/packages/material-ui-icons/src/TimelapseTwoTone.js b/packages/material-ui-icons/src/TimelapseTwoTone.js new file mode 100644 index 00000000000000..b22038f6f65cfe --- /dev/null +++ b/packages/material-ui-icons/src/TimelapseTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimelapseTwoTone'); diff --git a/packages/material-ui-icons/src/Timeline.js b/packages/material-ui-icons/src/Timeline.js index 624678e540c71a..9b5587ef46e26d 100644 --- a/packages/material-ui-icons/src/Timeline.js +++ b/packages/material-ui-icons/src/Timeline.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Timeline'); diff --git a/packages/material-ui-icons/src/TimelineOutlined.js b/packages/material-ui-icons/src/TimelineOutlined.js new file mode 100644 index 00000000000000..ecd68e18fb48f0 --- /dev/null +++ b/packages/material-ui-icons/src/TimelineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimelineOutlined'); diff --git a/packages/material-ui-icons/src/TimelineRounded.js b/packages/material-ui-icons/src/TimelineRounded.js new file mode 100644 index 00000000000000..b57e694f3f1d9c --- /dev/null +++ b/packages/material-ui-icons/src/TimelineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimelineRounded'); diff --git a/packages/material-ui-icons/src/TimelineSharp.js b/packages/material-ui-icons/src/TimelineSharp.js new file mode 100644 index 00000000000000..2b783b23162aea --- /dev/null +++ b/packages/material-ui-icons/src/TimelineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimelineSharp'); diff --git a/packages/material-ui-icons/src/TimelineTwoTone.js b/packages/material-ui-icons/src/TimelineTwoTone.js new file mode 100644 index 00000000000000..b43aebce05fa73 --- /dev/null +++ b/packages/material-ui-icons/src/TimelineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimelineTwoTone'); diff --git a/packages/material-ui-icons/src/Timer.js b/packages/material-ui-icons/src/Timer.js index 506dea9a0a0b1d..c746125102b658 100644 --- a/packages/material-ui-icons/src/Timer.js +++ b/packages/material-ui-icons/src/Timer.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Timer'); diff --git a/packages/material-ui-icons/src/Timer10.js b/packages/material-ui-icons/src/Timer10.js index c99e3189f0ac50..1eff0b48fd8ad7 100644 --- a/packages/material-ui-icons/src/Timer10.js +++ b/packages/material-ui-icons/src/Timer10.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Timer10'); diff --git a/packages/material-ui-icons/src/Timer10Outlined.js b/packages/material-ui-icons/src/Timer10Outlined.js new file mode 100644 index 00000000000000..93716712655a23 --- /dev/null +++ b/packages/material-ui-icons/src/Timer10Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Timer10Outlined'); diff --git a/packages/material-ui-icons/src/Timer10Rounded.js b/packages/material-ui-icons/src/Timer10Rounded.js new file mode 100644 index 00000000000000..9b1522862bca4a --- /dev/null +++ b/packages/material-ui-icons/src/Timer10Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Timer10Rounded'); diff --git a/packages/material-ui-icons/src/Timer10Sharp.js b/packages/material-ui-icons/src/Timer10Sharp.js new file mode 100644 index 00000000000000..1964b5d6942679 --- /dev/null +++ b/packages/material-ui-icons/src/Timer10Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Timer10Sharp'); diff --git a/packages/material-ui-icons/src/Timer10TwoTone.js b/packages/material-ui-icons/src/Timer10TwoTone.js new file mode 100644 index 00000000000000..9a11a6d85225eb --- /dev/null +++ b/packages/material-ui-icons/src/Timer10TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Timer10TwoTone'); diff --git a/packages/material-ui-icons/src/Timer3.js b/packages/material-ui-icons/src/Timer3.js index 166598989c56b2..944e4a964fe826 100644 --- a/packages/material-ui-icons/src/Timer3.js +++ b/packages/material-ui-icons/src/Timer3.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Timer3'); diff --git a/packages/material-ui-icons/src/Timer3Outlined.js b/packages/material-ui-icons/src/Timer3Outlined.js new file mode 100644 index 00000000000000..c6093511020dd1 --- /dev/null +++ b/packages/material-ui-icons/src/Timer3Outlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Timer3Outlined'); diff --git a/packages/material-ui-icons/src/Timer3Rounded.js b/packages/material-ui-icons/src/Timer3Rounded.js new file mode 100644 index 00000000000000..5876946828ea3e --- /dev/null +++ b/packages/material-ui-icons/src/Timer3Rounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Timer3Rounded'); diff --git a/packages/material-ui-icons/src/Timer3Sharp.js b/packages/material-ui-icons/src/Timer3Sharp.js new file mode 100644 index 00000000000000..1dfde3a29872f1 --- /dev/null +++ b/packages/material-ui-icons/src/Timer3Sharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Timer3Sharp'); diff --git a/packages/material-ui-icons/src/Timer3TwoTone.js b/packages/material-ui-icons/src/Timer3TwoTone.js new file mode 100644 index 00000000000000..063133f4a33e4f --- /dev/null +++ b/packages/material-ui-icons/src/Timer3TwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Timer3TwoTone'); diff --git a/packages/material-ui-icons/src/TimerOff.js b/packages/material-ui-icons/src/TimerOff.js index c2701219065ab4..6b127791447f0d 100644 --- a/packages/material-ui-icons/src/TimerOff.js +++ b/packages/material-ui-icons/src/TimerOff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'TimerOff'); diff --git a/packages/material-ui-icons/src/TimerOffOutlined.js b/packages/material-ui-icons/src/TimerOffOutlined.js new file mode 100644 index 00000000000000..88da0b7f5b9d84 --- /dev/null +++ b/packages/material-ui-icons/src/TimerOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimerOffOutlined'); diff --git a/packages/material-ui-icons/src/TimerOffRounded.js b/packages/material-ui-icons/src/TimerOffRounded.js new file mode 100644 index 00000000000000..a924958782b380 --- /dev/null +++ b/packages/material-ui-icons/src/TimerOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimerOffRounded'); diff --git a/packages/material-ui-icons/src/TimerOffSharp.js b/packages/material-ui-icons/src/TimerOffSharp.js new file mode 100644 index 00000000000000..a577b09a878a53 --- /dev/null +++ b/packages/material-ui-icons/src/TimerOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimerOffSharp'); diff --git a/packages/material-ui-icons/src/TimerOffTwoTone.js b/packages/material-ui-icons/src/TimerOffTwoTone.js new file mode 100644 index 00000000000000..d469a5130cc4ee --- /dev/null +++ b/packages/material-ui-icons/src/TimerOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimerOffTwoTone'); diff --git a/packages/material-ui-icons/src/TimerOutlined.js b/packages/material-ui-icons/src/TimerOutlined.js new file mode 100644 index 00000000000000..1c220933d56578 --- /dev/null +++ b/packages/material-ui-icons/src/TimerOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimerOutlined'); diff --git a/packages/material-ui-icons/src/TimerRounded.js b/packages/material-ui-icons/src/TimerRounded.js new file mode 100644 index 00000000000000..10648014c3f0fc --- /dev/null +++ b/packages/material-ui-icons/src/TimerRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimerRounded'); diff --git a/packages/material-ui-icons/src/TimerSharp.js b/packages/material-ui-icons/src/TimerSharp.js new file mode 100644 index 00000000000000..2ca7b81cdc59cc --- /dev/null +++ b/packages/material-ui-icons/src/TimerSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimerSharp'); diff --git a/packages/material-ui-icons/src/TimerTwoTone.js b/packages/material-ui-icons/src/TimerTwoTone.js new file mode 100644 index 00000000000000..13920d771aa783 --- /dev/null +++ b/packages/material-ui-icons/src/TimerTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TimerTwoTone'); diff --git a/packages/material-ui-icons/src/TitleOutlined.js b/packages/material-ui-icons/src/TitleOutlined.js new file mode 100644 index 00000000000000..fe1b00d95da20b --- /dev/null +++ b/packages/material-ui-icons/src/TitleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TitleOutlined'); diff --git a/packages/material-ui-icons/src/TitleRounded.js b/packages/material-ui-icons/src/TitleRounded.js new file mode 100644 index 00000000000000..8e7fb8c2b07652 --- /dev/null +++ b/packages/material-ui-icons/src/TitleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TitleRounded'); diff --git a/packages/material-ui-icons/src/TitleSharp.js b/packages/material-ui-icons/src/TitleSharp.js new file mode 100644 index 00000000000000..475dcbe2ea2b8d --- /dev/null +++ b/packages/material-ui-icons/src/TitleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TitleSharp'); diff --git a/packages/material-ui-icons/src/TitleTwoTone.js b/packages/material-ui-icons/src/TitleTwoTone.js new file mode 100644 index 00000000000000..52b8cc5ba922c8 --- /dev/null +++ b/packages/material-ui-icons/src/TitleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TitleTwoTone'); diff --git a/packages/material-ui-icons/src/TocOutlined.js b/packages/material-ui-icons/src/TocOutlined.js new file mode 100644 index 00000000000000..dec57d6eab9c36 --- /dev/null +++ b/packages/material-ui-icons/src/TocOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TocOutlined'); diff --git a/packages/material-ui-icons/src/TocRounded.js b/packages/material-ui-icons/src/TocRounded.js new file mode 100644 index 00000000000000..5aef6a5dc03e61 --- /dev/null +++ b/packages/material-ui-icons/src/TocRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TocRounded'); diff --git a/packages/material-ui-icons/src/TocSharp.js b/packages/material-ui-icons/src/TocSharp.js new file mode 100644 index 00000000000000..38f26cbf31ad4f --- /dev/null +++ b/packages/material-ui-icons/src/TocSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TocSharp'); diff --git a/packages/material-ui-icons/src/TocTwoTone.js b/packages/material-ui-icons/src/TocTwoTone.js new file mode 100644 index 00000000000000..dbd74141bf364d --- /dev/null +++ b/packages/material-ui-icons/src/TocTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TocTwoTone'); diff --git a/packages/material-ui-icons/src/Today.js b/packages/material-ui-icons/src/Today.js index d130c9b6fc6acb..7b432f7f23aadf 100644 --- a/packages/material-ui-icons/src/Today.js +++ b/packages/material-ui-icons/src/Today.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Today'); diff --git a/packages/material-ui-icons/src/TodayOutlined.js b/packages/material-ui-icons/src/TodayOutlined.js new file mode 100644 index 00000000000000..e0477134406a3e --- /dev/null +++ b/packages/material-ui-icons/src/TodayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TodayOutlined'); diff --git a/packages/material-ui-icons/src/TodayRounded.js b/packages/material-ui-icons/src/TodayRounded.js new file mode 100644 index 00000000000000..310708dcc9ca20 --- /dev/null +++ b/packages/material-ui-icons/src/TodayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TodayRounded'); diff --git a/packages/material-ui-icons/src/TodaySharp.js b/packages/material-ui-icons/src/TodaySharp.js new file mode 100644 index 00000000000000..4e8874f6f17432 --- /dev/null +++ b/packages/material-ui-icons/src/TodaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TodaySharp'); diff --git a/packages/material-ui-icons/src/TodayTwoTone.js b/packages/material-ui-icons/src/TodayTwoTone.js new file mode 100644 index 00000000000000..483f73d1b2cf02 --- /dev/null +++ b/packages/material-ui-icons/src/TodayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TodayTwoTone'); diff --git a/packages/material-ui-icons/src/ToggleOff.js b/packages/material-ui-icons/src/ToggleOff.js new file mode 100644 index 00000000000000..370a0795af7393 --- /dev/null +++ b/packages/material-ui-icons/src/ToggleOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToggleOff'); diff --git a/packages/material-ui-icons/src/ToggleOffOutlined.js b/packages/material-ui-icons/src/ToggleOffOutlined.js new file mode 100644 index 00000000000000..f6dec941167664 --- /dev/null +++ b/packages/material-ui-icons/src/ToggleOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToggleOffOutlined'); diff --git a/packages/material-ui-icons/src/ToggleOffRounded.js b/packages/material-ui-icons/src/ToggleOffRounded.js new file mode 100644 index 00000000000000..2a2eaf31a6fc8f --- /dev/null +++ b/packages/material-ui-icons/src/ToggleOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToggleOffRounded'); diff --git a/packages/material-ui-icons/src/ToggleOffSharp.js b/packages/material-ui-icons/src/ToggleOffSharp.js new file mode 100644 index 00000000000000..eb6694ba6ba6e9 --- /dev/null +++ b/packages/material-ui-icons/src/ToggleOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToggleOffSharp'); diff --git a/packages/material-ui-icons/src/ToggleOffTwoTone.js b/packages/material-ui-icons/src/ToggleOffTwoTone.js new file mode 100644 index 00000000000000..e70a200658f9ea --- /dev/null +++ b/packages/material-ui-icons/src/ToggleOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToggleOffTwoTone'); diff --git a/packages/material-ui-icons/src/ToggleOn.js b/packages/material-ui-icons/src/ToggleOn.js new file mode 100644 index 00000000000000..7674be9700056d --- /dev/null +++ b/packages/material-ui-icons/src/ToggleOn.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToggleOn'); diff --git a/packages/material-ui-icons/src/ToggleOnOutlined.js b/packages/material-ui-icons/src/ToggleOnOutlined.js new file mode 100644 index 00000000000000..55daf6c74a32cd --- /dev/null +++ b/packages/material-ui-icons/src/ToggleOnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToggleOnOutlined'); diff --git a/packages/material-ui-icons/src/ToggleOnRounded.js b/packages/material-ui-icons/src/ToggleOnRounded.js new file mode 100644 index 00000000000000..a5ef407374284e --- /dev/null +++ b/packages/material-ui-icons/src/ToggleOnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToggleOnRounded'); diff --git a/packages/material-ui-icons/src/ToggleOnSharp.js b/packages/material-ui-icons/src/ToggleOnSharp.js new file mode 100644 index 00000000000000..400ed1813fa865 --- /dev/null +++ b/packages/material-ui-icons/src/ToggleOnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToggleOnSharp'); diff --git a/packages/material-ui-icons/src/ToggleOnTwoTone.js b/packages/material-ui-icons/src/ToggleOnTwoTone.js new file mode 100644 index 00000000000000..b72f7be447121e --- /dev/null +++ b/packages/material-ui-icons/src/ToggleOnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToggleOnTwoTone'); diff --git a/packages/material-ui-icons/src/Toll.js b/packages/material-ui-icons/src/Toll.js index 0cf53ad323f6b1..91c877b322e5a3 100644 --- a/packages/material-ui-icons/src/Toll.js +++ b/packages/material-ui-icons/src/Toll.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Toll'); diff --git a/packages/material-ui-icons/src/TollOutlined.js b/packages/material-ui-icons/src/TollOutlined.js new file mode 100644 index 00000000000000..f542552992bd16 --- /dev/null +++ b/packages/material-ui-icons/src/TollOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TollOutlined'); diff --git a/packages/material-ui-icons/src/TollRounded.js b/packages/material-ui-icons/src/TollRounded.js new file mode 100644 index 00000000000000..4cef6c7f5ab097 --- /dev/null +++ b/packages/material-ui-icons/src/TollRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TollRounded'); diff --git a/packages/material-ui-icons/src/TollSharp.js b/packages/material-ui-icons/src/TollSharp.js new file mode 100644 index 00000000000000..7a799fec8b8247 --- /dev/null +++ b/packages/material-ui-icons/src/TollSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TollSharp'); diff --git a/packages/material-ui-icons/src/TollTwoTone.js b/packages/material-ui-icons/src/TollTwoTone.js new file mode 100644 index 00000000000000..5acad117168bed --- /dev/null +++ b/packages/material-ui-icons/src/TollTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TollTwoTone'); diff --git a/packages/material-ui-icons/src/TonalityOutlined.js b/packages/material-ui-icons/src/TonalityOutlined.js new file mode 100644 index 00000000000000..fa1621bcdc9efa --- /dev/null +++ b/packages/material-ui-icons/src/TonalityOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TonalityOutlined'); diff --git a/packages/material-ui-icons/src/TonalityRounded.js b/packages/material-ui-icons/src/TonalityRounded.js new file mode 100644 index 00000000000000..49d8a61bda9c5c --- /dev/null +++ b/packages/material-ui-icons/src/TonalityRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TonalityRounded'); diff --git a/packages/material-ui-icons/src/TonalitySharp.js b/packages/material-ui-icons/src/TonalitySharp.js new file mode 100644 index 00000000000000..c3a9f32bfa3898 --- /dev/null +++ b/packages/material-ui-icons/src/TonalitySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TonalitySharp'); diff --git a/packages/material-ui-icons/src/TonalityTwoTone.js b/packages/material-ui-icons/src/TonalityTwoTone.js new file mode 100644 index 00000000000000..f58e5e2cbaa8ad --- /dev/null +++ b/packages/material-ui-icons/src/TonalityTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TonalityTwoTone'); diff --git a/packages/material-ui-icons/src/TouchApp.js b/packages/material-ui-icons/src/TouchApp.js index 16da0498887362..c336223bee03e8 100644 --- a/packages/material-ui-icons/src/TouchApp.js +++ b/packages/material-ui-icons/src/TouchApp.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'TouchApp'); diff --git a/packages/material-ui-icons/src/TouchAppOutlined.js b/packages/material-ui-icons/src/TouchAppOutlined.js new file mode 100644 index 00000000000000..365321ca40b377 --- /dev/null +++ b/packages/material-ui-icons/src/TouchAppOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TouchAppOutlined'); diff --git a/packages/material-ui-icons/src/TouchAppRounded.js b/packages/material-ui-icons/src/TouchAppRounded.js new file mode 100644 index 00000000000000..0181f8c3cc619c --- /dev/null +++ b/packages/material-ui-icons/src/TouchAppRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TouchAppRounded'); diff --git a/packages/material-ui-icons/src/TouchAppSharp.js b/packages/material-ui-icons/src/TouchAppSharp.js new file mode 100644 index 00000000000000..24bb0562c48363 --- /dev/null +++ b/packages/material-ui-icons/src/TouchAppSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TouchAppSharp'); diff --git a/packages/material-ui-icons/src/TouchAppTwoTone.js b/packages/material-ui-icons/src/TouchAppTwoTone.js new file mode 100644 index 00000000000000..107da62c5c9ff7 --- /dev/null +++ b/packages/material-ui-icons/src/TouchAppTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TouchAppTwoTone'); diff --git a/packages/material-ui-icons/src/ToysOutlined.js b/packages/material-ui-icons/src/ToysOutlined.js new file mode 100644 index 00000000000000..d9ec5e72f7fe58 --- /dev/null +++ b/packages/material-ui-icons/src/ToysOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToysOutlined'); diff --git a/packages/material-ui-icons/src/ToysRounded.js b/packages/material-ui-icons/src/ToysRounded.js new file mode 100644 index 00000000000000..4cb7bbfeab47b7 --- /dev/null +++ b/packages/material-ui-icons/src/ToysRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToysRounded'); diff --git a/packages/material-ui-icons/src/ToysSharp.js b/packages/material-ui-icons/src/ToysSharp.js new file mode 100644 index 00000000000000..6eac816e242ca0 --- /dev/null +++ b/packages/material-ui-icons/src/ToysSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToysSharp'); diff --git a/packages/material-ui-icons/src/ToysTwoTone.js b/packages/material-ui-icons/src/ToysTwoTone.js new file mode 100644 index 00000000000000..ad426560ab79d3 --- /dev/null +++ b/packages/material-ui-icons/src/ToysTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ToysTwoTone'); diff --git a/packages/material-ui-icons/src/TrackChanges.js b/packages/material-ui-icons/src/TrackChanges.js index d17b06050041a3..f4de17fe92d984 100644 --- a/packages/material-ui-icons/src/TrackChanges.js +++ b/packages/material-ui-icons/src/TrackChanges.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'TrackChanges'); diff --git a/packages/material-ui-icons/src/TrackChangesOutlined.js b/packages/material-ui-icons/src/TrackChangesOutlined.js new file mode 100644 index 00000000000000..8e1648948524ff --- /dev/null +++ b/packages/material-ui-icons/src/TrackChangesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrackChangesOutlined'); diff --git a/packages/material-ui-icons/src/TrackChangesRounded.js b/packages/material-ui-icons/src/TrackChangesRounded.js new file mode 100644 index 00000000000000..58e30ca9578601 --- /dev/null +++ b/packages/material-ui-icons/src/TrackChangesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrackChangesRounded'); diff --git a/packages/material-ui-icons/src/TrackChangesSharp.js b/packages/material-ui-icons/src/TrackChangesSharp.js new file mode 100644 index 00000000000000..983f079c07753e --- /dev/null +++ b/packages/material-ui-icons/src/TrackChangesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrackChangesSharp'); diff --git a/packages/material-ui-icons/src/TrackChangesTwoTone.js b/packages/material-ui-icons/src/TrackChangesTwoTone.js new file mode 100644 index 00000000000000..d5c09e3d94ce52 --- /dev/null +++ b/packages/material-ui-icons/src/TrackChangesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrackChangesTwoTone'); diff --git a/packages/material-ui-icons/src/Traffic.js b/packages/material-ui-icons/src/Traffic.js index 5717aba58fc8d3..3a519881c96a00 100644 --- a/packages/material-ui-icons/src/Traffic.js +++ b/packages/material-ui-icons/src/Traffic.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Traffic'); diff --git a/packages/material-ui-icons/src/TrafficOutlined.js b/packages/material-ui-icons/src/TrafficOutlined.js new file mode 100644 index 00000000000000..f335e00a633043 --- /dev/null +++ b/packages/material-ui-icons/src/TrafficOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrafficOutlined'); diff --git a/packages/material-ui-icons/src/TrafficRounded.js b/packages/material-ui-icons/src/TrafficRounded.js new file mode 100644 index 00000000000000..6d85b657a0c010 --- /dev/null +++ b/packages/material-ui-icons/src/TrafficRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrafficRounded'); diff --git a/packages/material-ui-icons/src/TrafficSharp.js b/packages/material-ui-icons/src/TrafficSharp.js new file mode 100644 index 00000000000000..64db47875d3cbc --- /dev/null +++ b/packages/material-ui-icons/src/TrafficSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrafficSharp'); diff --git a/packages/material-ui-icons/src/TrafficTwoTone.js b/packages/material-ui-icons/src/TrafficTwoTone.js new file mode 100644 index 00000000000000..1c05fe61f9233f --- /dev/null +++ b/packages/material-ui-icons/src/TrafficTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrafficTwoTone'); diff --git a/packages/material-ui-icons/src/TrainOutlined.js b/packages/material-ui-icons/src/TrainOutlined.js new file mode 100644 index 00000000000000..12c04396beb32e --- /dev/null +++ b/packages/material-ui-icons/src/TrainOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrainOutlined'); diff --git a/packages/material-ui-icons/src/TrainRounded.js b/packages/material-ui-icons/src/TrainRounded.js new file mode 100644 index 00000000000000..28e024c2f5ab9b --- /dev/null +++ b/packages/material-ui-icons/src/TrainRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrainRounded'); diff --git a/packages/material-ui-icons/src/TrainSharp.js b/packages/material-ui-icons/src/TrainSharp.js new file mode 100644 index 00000000000000..77967d863de55c --- /dev/null +++ b/packages/material-ui-icons/src/TrainSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrainSharp'); diff --git a/packages/material-ui-icons/src/TrainTwoTone.js b/packages/material-ui-icons/src/TrainTwoTone.js new file mode 100644 index 00000000000000..25d528bba7b214 --- /dev/null +++ b/packages/material-ui-icons/src/TrainTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrainTwoTone'); diff --git a/packages/material-ui-icons/src/TramOutlined.js b/packages/material-ui-icons/src/TramOutlined.js new file mode 100644 index 00000000000000..ff9c3c179235af --- /dev/null +++ b/packages/material-ui-icons/src/TramOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TramOutlined'); diff --git a/packages/material-ui-icons/src/TramRounded.js b/packages/material-ui-icons/src/TramRounded.js new file mode 100644 index 00000000000000..53149cd8b61581 --- /dev/null +++ b/packages/material-ui-icons/src/TramRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TramRounded'); diff --git a/packages/material-ui-icons/src/TramSharp.js b/packages/material-ui-icons/src/TramSharp.js new file mode 100644 index 00000000000000..6b7229f1c1baf2 --- /dev/null +++ b/packages/material-ui-icons/src/TramSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TramSharp'); diff --git a/packages/material-ui-icons/src/TramTwoTone.js b/packages/material-ui-icons/src/TramTwoTone.js new file mode 100644 index 00000000000000..8882faedd3ed7e --- /dev/null +++ b/packages/material-ui-icons/src/TramTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TramTwoTone'); diff --git a/packages/material-ui-icons/src/TransferWithinAStationOutlined.js b/packages/material-ui-icons/src/TransferWithinAStationOutlined.js new file mode 100644 index 00000000000000..14cc09df18b73b --- /dev/null +++ b/packages/material-ui-icons/src/TransferWithinAStationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransferWithinAStationOutlined'); diff --git a/packages/material-ui-icons/src/TransferWithinAStationRounded.js b/packages/material-ui-icons/src/TransferWithinAStationRounded.js new file mode 100644 index 00000000000000..905564cb635a40 --- /dev/null +++ b/packages/material-ui-icons/src/TransferWithinAStationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransferWithinAStationRounded'); diff --git a/packages/material-ui-icons/src/TransferWithinAStationSharp.js b/packages/material-ui-icons/src/TransferWithinAStationSharp.js new file mode 100644 index 00000000000000..ca0f1cfd82416b --- /dev/null +++ b/packages/material-ui-icons/src/TransferWithinAStationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransferWithinAStationSharp'); diff --git a/packages/material-ui-icons/src/TransferWithinAStationTwoTone.js b/packages/material-ui-icons/src/TransferWithinAStationTwoTone.js new file mode 100644 index 00000000000000..f1121addb8bbaa --- /dev/null +++ b/packages/material-ui-icons/src/TransferWithinAStationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransferWithinAStationTwoTone'); diff --git a/packages/material-ui-icons/src/TransformOutlined.js b/packages/material-ui-icons/src/TransformOutlined.js new file mode 100644 index 00000000000000..badbc31112be84 --- /dev/null +++ b/packages/material-ui-icons/src/TransformOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransformOutlined'); diff --git a/packages/material-ui-icons/src/TransformRounded.js b/packages/material-ui-icons/src/TransformRounded.js new file mode 100644 index 00000000000000..33a9436e2bf48d --- /dev/null +++ b/packages/material-ui-icons/src/TransformRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransformRounded'); diff --git a/packages/material-ui-icons/src/TransformSharp.js b/packages/material-ui-icons/src/TransformSharp.js new file mode 100644 index 00000000000000..50d5b607cf3933 --- /dev/null +++ b/packages/material-ui-icons/src/TransformSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransformSharp'); diff --git a/packages/material-ui-icons/src/TransformTwoTone.js b/packages/material-ui-icons/src/TransformTwoTone.js new file mode 100644 index 00000000000000..9c6890cab32076 --- /dev/null +++ b/packages/material-ui-icons/src/TransformTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransformTwoTone'); diff --git a/packages/material-ui-icons/src/TransitEnterexit.js b/packages/material-ui-icons/src/TransitEnterexit.js new file mode 100644 index 00000000000000..3a74bb379c08e2 --- /dev/null +++ b/packages/material-ui-icons/src/TransitEnterexit.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransitEnterexit'); diff --git a/packages/material-ui-icons/src/TransitEnterexitOutlined.js b/packages/material-ui-icons/src/TransitEnterexitOutlined.js new file mode 100644 index 00000000000000..2a1cf0bb77a139 --- /dev/null +++ b/packages/material-ui-icons/src/TransitEnterexitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransitEnterexitOutlined'); diff --git a/packages/material-ui-icons/src/TransitEnterexitRounded.js b/packages/material-ui-icons/src/TransitEnterexitRounded.js new file mode 100644 index 00000000000000..6478f8abdaf565 --- /dev/null +++ b/packages/material-ui-icons/src/TransitEnterexitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransitEnterexitRounded'); diff --git a/packages/material-ui-icons/src/TransitEnterexitSharp.js b/packages/material-ui-icons/src/TransitEnterexitSharp.js new file mode 100644 index 00000000000000..586c3f2f80f7a6 --- /dev/null +++ b/packages/material-ui-icons/src/TransitEnterexitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransitEnterexitSharp'); diff --git a/packages/material-ui-icons/src/TransitEnterexitTwoTone.js b/packages/material-ui-icons/src/TransitEnterexitTwoTone.js new file mode 100644 index 00000000000000..6791bae0ad4a25 --- /dev/null +++ b/packages/material-ui-icons/src/TransitEnterexitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TransitEnterexitTwoTone'); diff --git a/packages/material-ui-icons/src/Translate.js b/packages/material-ui-icons/src/Translate.js index db234b55152ffe..82f6dd46a70d0c 100644 --- a/packages/material-ui-icons/src/Translate.js +++ b/packages/material-ui-icons/src/Translate.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Translate'); diff --git a/packages/material-ui-icons/src/TranslateOutlined.js b/packages/material-ui-icons/src/TranslateOutlined.js new file mode 100644 index 00000000000000..cf8b45b4b9bfa5 --- /dev/null +++ b/packages/material-ui-icons/src/TranslateOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TranslateOutlined'); diff --git a/packages/material-ui-icons/src/TranslateRounded.js b/packages/material-ui-icons/src/TranslateRounded.js new file mode 100644 index 00000000000000..0cdcc7e4db7c66 --- /dev/null +++ b/packages/material-ui-icons/src/TranslateRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TranslateRounded'); diff --git a/packages/material-ui-icons/src/TranslateSharp.js b/packages/material-ui-icons/src/TranslateSharp.js new file mode 100644 index 00000000000000..51b2b9bf792d7c --- /dev/null +++ b/packages/material-ui-icons/src/TranslateSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TranslateSharp'); diff --git a/packages/material-ui-icons/src/TranslateTwoTone.js b/packages/material-ui-icons/src/TranslateTwoTone.js new file mode 100644 index 00000000000000..98640091a43e35 --- /dev/null +++ b/packages/material-ui-icons/src/TranslateTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TranslateTwoTone'); diff --git a/packages/material-ui-icons/src/TrendingDownOutlined.js b/packages/material-ui-icons/src/TrendingDownOutlined.js new file mode 100644 index 00000000000000..0b2e9d9b1bcc92 --- /dev/null +++ b/packages/material-ui-icons/src/TrendingDownOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingDownOutlined'); diff --git a/packages/material-ui-icons/src/TrendingDownRounded.js b/packages/material-ui-icons/src/TrendingDownRounded.js new file mode 100644 index 00000000000000..2bc13d3848e789 --- /dev/null +++ b/packages/material-ui-icons/src/TrendingDownRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingDownRounded'); diff --git a/packages/material-ui-icons/src/TrendingDownSharp.js b/packages/material-ui-icons/src/TrendingDownSharp.js new file mode 100644 index 00000000000000..cd5c015e53714d --- /dev/null +++ b/packages/material-ui-icons/src/TrendingDownSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingDownSharp'); diff --git a/packages/material-ui-icons/src/TrendingDownTwoTone.js b/packages/material-ui-icons/src/TrendingDownTwoTone.js new file mode 100644 index 00000000000000..687c6b0c261021 --- /dev/null +++ b/packages/material-ui-icons/src/TrendingDownTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingDownTwoTone'); diff --git a/packages/material-ui-icons/src/TrendingFlatOutlined.js b/packages/material-ui-icons/src/TrendingFlatOutlined.js new file mode 100644 index 00000000000000..679282c163f8e1 --- /dev/null +++ b/packages/material-ui-icons/src/TrendingFlatOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingFlatOutlined'); diff --git a/packages/material-ui-icons/src/TrendingFlatRounded.js b/packages/material-ui-icons/src/TrendingFlatRounded.js new file mode 100644 index 00000000000000..5589541aa21831 --- /dev/null +++ b/packages/material-ui-icons/src/TrendingFlatRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingFlatRounded'); diff --git a/packages/material-ui-icons/src/TrendingFlatSharp.js b/packages/material-ui-icons/src/TrendingFlatSharp.js new file mode 100644 index 00000000000000..0c2c3dbf7b4c4c --- /dev/null +++ b/packages/material-ui-icons/src/TrendingFlatSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingFlatSharp'); diff --git a/packages/material-ui-icons/src/TrendingFlatTwoTone.js b/packages/material-ui-icons/src/TrendingFlatTwoTone.js new file mode 100644 index 00000000000000..c98c3e3bcccda1 --- /dev/null +++ b/packages/material-ui-icons/src/TrendingFlatTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingFlatTwoTone'); diff --git a/packages/material-ui-icons/src/TrendingUpOutlined.js b/packages/material-ui-icons/src/TrendingUpOutlined.js new file mode 100644 index 00000000000000..e7d5ed5ce6a226 --- /dev/null +++ b/packages/material-ui-icons/src/TrendingUpOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingUpOutlined'); diff --git a/packages/material-ui-icons/src/TrendingUpRounded.js b/packages/material-ui-icons/src/TrendingUpRounded.js new file mode 100644 index 00000000000000..a9e577291b36bd --- /dev/null +++ b/packages/material-ui-icons/src/TrendingUpRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingUpRounded'); diff --git a/packages/material-ui-icons/src/TrendingUpSharp.js b/packages/material-ui-icons/src/TrendingUpSharp.js new file mode 100644 index 00000000000000..92fd6d746c1a4a --- /dev/null +++ b/packages/material-ui-icons/src/TrendingUpSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingUpSharp'); diff --git a/packages/material-ui-icons/src/TrendingUpTwoTone.js b/packages/material-ui-icons/src/TrendingUpTwoTone.js new file mode 100644 index 00000000000000..10ba87c6e0f0b3 --- /dev/null +++ b/packages/material-ui-icons/src/TrendingUpTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TrendingUpTwoTone'); diff --git a/packages/material-ui-icons/src/TripOrigin.js b/packages/material-ui-icons/src/TripOrigin.js new file mode 100644 index 00000000000000..7bec8e94c1c54c --- /dev/null +++ b/packages/material-ui-icons/src/TripOrigin.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TripOrigin'); diff --git a/packages/material-ui-icons/src/TripOriginOutlined.js b/packages/material-ui-icons/src/TripOriginOutlined.js new file mode 100644 index 00000000000000..68ee3d5abb6dfd --- /dev/null +++ b/packages/material-ui-icons/src/TripOriginOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TripOriginOutlined'); diff --git a/packages/material-ui-icons/src/TripOriginRounded.js b/packages/material-ui-icons/src/TripOriginRounded.js new file mode 100644 index 00000000000000..7ac804fb0160f7 --- /dev/null +++ b/packages/material-ui-icons/src/TripOriginRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TripOriginRounded'); diff --git a/packages/material-ui-icons/src/TripOriginSharp.js b/packages/material-ui-icons/src/TripOriginSharp.js new file mode 100644 index 00000000000000..c479c2e00cb339 --- /dev/null +++ b/packages/material-ui-icons/src/TripOriginSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TripOriginSharp'); diff --git a/packages/material-ui-icons/src/TripOriginTwoTone.js b/packages/material-ui-icons/src/TripOriginTwoTone.js new file mode 100644 index 00000000000000..c3ebcd3fcd3b79 --- /dev/null +++ b/packages/material-ui-icons/src/TripOriginTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TripOriginTwoTone'); diff --git a/packages/material-ui-icons/src/TuneOutlined.js b/packages/material-ui-icons/src/TuneOutlined.js new file mode 100644 index 00000000000000..9c29a43b22bdf8 --- /dev/null +++ b/packages/material-ui-icons/src/TuneOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TuneOutlined'); diff --git a/packages/material-ui-icons/src/TuneRounded.js b/packages/material-ui-icons/src/TuneRounded.js new file mode 100644 index 00000000000000..f55f57221124a0 --- /dev/null +++ b/packages/material-ui-icons/src/TuneRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TuneRounded'); diff --git a/packages/material-ui-icons/src/TuneSharp.js b/packages/material-ui-icons/src/TuneSharp.js new file mode 100644 index 00000000000000..8b2447bb33eea2 --- /dev/null +++ b/packages/material-ui-icons/src/TuneSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TuneSharp'); diff --git a/packages/material-ui-icons/src/TuneTwoTone.js b/packages/material-ui-icons/src/TuneTwoTone.js new file mode 100644 index 00000000000000..1e9135540b76a6 --- /dev/null +++ b/packages/material-ui-icons/src/TuneTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TuneTwoTone'); diff --git a/packages/material-ui-icons/src/TurnedInNotOutlined.js b/packages/material-ui-icons/src/TurnedInNotOutlined.js new file mode 100644 index 00000000000000..5328634a1bc1d0 --- /dev/null +++ b/packages/material-ui-icons/src/TurnedInNotOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TurnedInNotOutlined'); diff --git a/packages/material-ui-icons/src/TurnedInNotRounded.js b/packages/material-ui-icons/src/TurnedInNotRounded.js new file mode 100644 index 00000000000000..fa230fa99779be --- /dev/null +++ b/packages/material-ui-icons/src/TurnedInNotRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TurnedInNotRounded'); diff --git a/packages/material-ui-icons/src/TurnedInNotSharp.js b/packages/material-ui-icons/src/TurnedInNotSharp.js new file mode 100644 index 00000000000000..f6c6603d578e1e --- /dev/null +++ b/packages/material-ui-icons/src/TurnedInNotSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TurnedInNotSharp'); diff --git a/packages/material-ui-icons/src/TurnedInNotTwoTone.js b/packages/material-ui-icons/src/TurnedInNotTwoTone.js new file mode 100644 index 00000000000000..95496afbf3f1d1 --- /dev/null +++ b/packages/material-ui-icons/src/TurnedInNotTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TurnedInNotTwoTone'); diff --git a/packages/material-ui-icons/src/TurnedInOutlined.js b/packages/material-ui-icons/src/TurnedInOutlined.js new file mode 100644 index 00000000000000..ffda1de0b8a81d --- /dev/null +++ b/packages/material-ui-icons/src/TurnedInOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TurnedInOutlined'); diff --git a/packages/material-ui-icons/src/TurnedInRounded.js b/packages/material-ui-icons/src/TurnedInRounded.js new file mode 100644 index 00000000000000..7d2c310d7f5c53 --- /dev/null +++ b/packages/material-ui-icons/src/TurnedInRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TurnedInRounded'); diff --git a/packages/material-ui-icons/src/TurnedInSharp.js b/packages/material-ui-icons/src/TurnedInSharp.js new file mode 100644 index 00000000000000..10cbfc5cfeb688 --- /dev/null +++ b/packages/material-ui-icons/src/TurnedInSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TurnedInSharp'); diff --git a/packages/material-ui-icons/src/TurnedInTwoTone.js b/packages/material-ui-icons/src/TurnedInTwoTone.js new file mode 100644 index 00000000000000..9ffb3b5525519c --- /dev/null +++ b/packages/material-ui-icons/src/TurnedInTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TurnedInTwoTone'); diff --git a/packages/material-ui-icons/src/TvOff.js b/packages/material-ui-icons/src/TvOff.js new file mode 100644 index 00000000000000..8eb190e2ad5876 --- /dev/null +++ b/packages/material-ui-icons/src/TvOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TvOff'); diff --git a/packages/material-ui-icons/src/TvOffOutlined.js b/packages/material-ui-icons/src/TvOffOutlined.js new file mode 100644 index 00000000000000..43332317798de4 --- /dev/null +++ b/packages/material-ui-icons/src/TvOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TvOffOutlined'); diff --git a/packages/material-ui-icons/src/TvOffRounded.js b/packages/material-ui-icons/src/TvOffRounded.js new file mode 100644 index 00000000000000..8ddd5e82c7e868 --- /dev/null +++ b/packages/material-ui-icons/src/TvOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TvOffRounded'); diff --git a/packages/material-ui-icons/src/TvOffSharp.js b/packages/material-ui-icons/src/TvOffSharp.js new file mode 100644 index 00000000000000..5b330937ae5bd0 --- /dev/null +++ b/packages/material-ui-icons/src/TvOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TvOffSharp'); diff --git a/packages/material-ui-icons/src/TvOffTwoTone.js b/packages/material-ui-icons/src/TvOffTwoTone.js new file mode 100644 index 00000000000000..a134f8bc07ea9d --- /dev/null +++ b/packages/material-ui-icons/src/TvOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TvOffTwoTone'); diff --git a/packages/material-ui-icons/src/TvOutlined.js b/packages/material-ui-icons/src/TvOutlined.js new file mode 100644 index 00000000000000..711dd8281b989f --- /dev/null +++ b/packages/material-ui-icons/src/TvOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TvOutlined'); diff --git a/packages/material-ui-icons/src/TvRounded.js b/packages/material-ui-icons/src/TvRounded.js new file mode 100644 index 00000000000000..2073d8f7ed10e0 --- /dev/null +++ b/packages/material-ui-icons/src/TvRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TvRounded'); diff --git a/packages/material-ui-icons/src/TvSharp.js b/packages/material-ui-icons/src/TvSharp.js new file mode 100644 index 00000000000000..72d248962c06b5 --- /dev/null +++ b/packages/material-ui-icons/src/TvSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TvSharp'); diff --git a/packages/material-ui-icons/src/TvTwoTone.js b/packages/material-ui-icons/src/TvTwoTone.js new file mode 100644 index 00000000000000..ea3acfe04090d4 --- /dev/null +++ b/packages/material-ui-icons/src/TvTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'TvTwoTone'); diff --git a/packages/material-ui-icons/src/Unarchive.js b/packages/material-ui-icons/src/Unarchive.js index b08eec2272ce52..d692420d77babc 100644 --- a/packages/material-ui-icons/src/Unarchive.js +++ b/packages/material-ui-icons/src/Unarchive.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Unarchive'); diff --git a/packages/material-ui-icons/src/UnarchiveOutlined.js b/packages/material-ui-icons/src/UnarchiveOutlined.js new file mode 100644 index 00000000000000..f49d2b1cd8e084 --- /dev/null +++ b/packages/material-ui-icons/src/UnarchiveOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnarchiveOutlined'); diff --git a/packages/material-ui-icons/src/UnarchiveRounded.js b/packages/material-ui-icons/src/UnarchiveRounded.js new file mode 100644 index 00000000000000..c7ad3795995b1a --- /dev/null +++ b/packages/material-ui-icons/src/UnarchiveRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnarchiveRounded'); diff --git a/packages/material-ui-icons/src/UnarchiveSharp.js b/packages/material-ui-icons/src/UnarchiveSharp.js new file mode 100644 index 00000000000000..c2c8f18e54f9aa --- /dev/null +++ b/packages/material-ui-icons/src/UnarchiveSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnarchiveSharp'); diff --git a/packages/material-ui-icons/src/UnarchiveTwoTone.js b/packages/material-ui-icons/src/UnarchiveTwoTone.js new file mode 100644 index 00000000000000..4f5f55aa4244cb --- /dev/null +++ b/packages/material-ui-icons/src/UnarchiveTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnarchiveTwoTone'); diff --git a/packages/material-ui-icons/src/UndoOutlined.js b/packages/material-ui-icons/src/UndoOutlined.js new file mode 100644 index 00000000000000..ea381c844730ad --- /dev/null +++ b/packages/material-ui-icons/src/UndoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UndoOutlined'); diff --git a/packages/material-ui-icons/src/UndoRounded.js b/packages/material-ui-icons/src/UndoRounded.js new file mode 100644 index 00000000000000..a8577adc186977 --- /dev/null +++ b/packages/material-ui-icons/src/UndoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UndoRounded'); diff --git a/packages/material-ui-icons/src/UndoSharp.js b/packages/material-ui-icons/src/UndoSharp.js new file mode 100644 index 00000000000000..bda4144f9e0012 --- /dev/null +++ b/packages/material-ui-icons/src/UndoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UndoSharp'); diff --git a/packages/material-ui-icons/src/UndoTwoTone.js b/packages/material-ui-icons/src/UndoTwoTone.js new file mode 100644 index 00000000000000..f0f4c2a383e824 --- /dev/null +++ b/packages/material-ui-icons/src/UndoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UndoTwoTone'); diff --git a/packages/material-ui-icons/src/UnfoldLessOutlined.js b/packages/material-ui-icons/src/UnfoldLessOutlined.js new file mode 100644 index 00000000000000..28828f81ac9e42 --- /dev/null +++ b/packages/material-ui-icons/src/UnfoldLessOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnfoldLessOutlined'); diff --git a/packages/material-ui-icons/src/UnfoldLessRounded.js b/packages/material-ui-icons/src/UnfoldLessRounded.js new file mode 100644 index 00000000000000..16cd9f2f3d3e47 --- /dev/null +++ b/packages/material-ui-icons/src/UnfoldLessRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnfoldLessRounded'); diff --git a/packages/material-ui-icons/src/UnfoldLessSharp.js b/packages/material-ui-icons/src/UnfoldLessSharp.js new file mode 100644 index 00000000000000..fc74a9a5a511d7 --- /dev/null +++ b/packages/material-ui-icons/src/UnfoldLessSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnfoldLessSharp'); diff --git a/packages/material-ui-icons/src/UnfoldLessTwoTone.js b/packages/material-ui-icons/src/UnfoldLessTwoTone.js new file mode 100644 index 00000000000000..7622f62d6eb066 --- /dev/null +++ b/packages/material-ui-icons/src/UnfoldLessTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnfoldLessTwoTone'); diff --git a/packages/material-ui-icons/src/UnfoldMoreOutlined.js b/packages/material-ui-icons/src/UnfoldMoreOutlined.js new file mode 100644 index 00000000000000..c1f33fc9b742de --- /dev/null +++ b/packages/material-ui-icons/src/UnfoldMoreOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnfoldMoreOutlined'); diff --git a/packages/material-ui-icons/src/UnfoldMoreRounded.js b/packages/material-ui-icons/src/UnfoldMoreRounded.js new file mode 100644 index 00000000000000..d57e166cd9a4e3 --- /dev/null +++ b/packages/material-ui-icons/src/UnfoldMoreRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnfoldMoreRounded'); diff --git a/packages/material-ui-icons/src/UnfoldMoreSharp.js b/packages/material-ui-icons/src/UnfoldMoreSharp.js new file mode 100644 index 00000000000000..3f5fea4cfca819 --- /dev/null +++ b/packages/material-ui-icons/src/UnfoldMoreSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnfoldMoreSharp'); diff --git a/packages/material-ui-icons/src/UnfoldMoreTwoTone.js b/packages/material-ui-icons/src/UnfoldMoreTwoTone.js new file mode 100644 index 00000000000000..a2e6c78d72ef9c --- /dev/null +++ b/packages/material-ui-icons/src/UnfoldMoreTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnfoldMoreTwoTone'); diff --git a/packages/material-ui-icons/src/Unsubscribe.js b/packages/material-ui-icons/src/Unsubscribe.js new file mode 100644 index 00000000000000..dd7092855b05b3 --- /dev/null +++ b/packages/material-ui-icons/src/Unsubscribe.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Unsubscribe'); diff --git a/packages/material-ui-icons/src/UnsubscribeOutlined.js b/packages/material-ui-icons/src/UnsubscribeOutlined.js new file mode 100644 index 00000000000000..a86382b7a1c7ec --- /dev/null +++ b/packages/material-ui-icons/src/UnsubscribeOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnsubscribeOutlined'); diff --git a/packages/material-ui-icons/src/UnsubscribeRounded.js b/packages/material-ui-icons/src/UnsubscribeRounded.js new file mode 100644 index 00000000000000..062072fe42d271 --- /dev/null +++ b/packages/material-ui-icons/src/UnsubscribeRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnsubscribeRounded'); diff --git a/packages/material-ui-icons/src/UnsubscribeSharp.js b/packages/material-ui-icons/src/UnsubscribeSharp.js new file mode 100644 index 00000000000000..06e9f4da292164 --- /dev/null +++ b/packages/material-ui-icons/src/UnsubscribeSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnsubscribeSharp'); diff --git a/packages/material-ui-icons/src/UnsubscribeTwoTone.js b/packages/material-ui-icons/src/UnsubscribeTwoTone.js new file mode 100644 index 00000000000000..b15d4cb2ea16bb --- /dev/null +++ b/packages/material-ui-icons/src/UnsubscribeTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UnsubscribeTwoTone'); diff --git a/packages/material-ui-icons/src/Update.js b/packages/material-ui-icons/src/Update.js index a48de48462bf93..dd94708e09bbe5 100644 --- a/packages/material-ui-icons/src/Update.js +++ b/packages/material-ui-icons/src/Update.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Update'); diff --git a/packages/material-ui-icons/src/UpdateOutlined.js b/packages/material-ui-icons/src/UpdateOutlined.js new file mode 100644 index 00000000000000..04f9b4fcbc6600 --- /dev/null +++ b/packages/material-ui-icons/src/UpdateOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UpdateOutlined'); diff --git a/packages/material-ui-icons/src/UpdateRounded.js b/packages/material-ui-icons/src/UpdateRounded.js new file mode 100644 index 00000000000000..7cb5f64653ad81 --- /dev/null +++ b/packages/material-ui-icons/src/UpdateRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UpdateRounded'); diff --git a/packages/material-ui-icons/src/UpdateSharp.js b/packages/material-ui-icons/src/UpdateSharp.js new file mode 100644 index 00000000000000..b959a410118d1d --- /dev/null +++ b/packages/material-ui-icons/src/UpdateSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UpdateSharp'); diff --git a/packages/material-ui-icons/src/UpdateTwoTone.js b/packages/material-ui-icons/src/UpdateTwoTone.js new file mode 100644 index 00000000000000..1fa992dbc73725 --- /dev/null +++ b/packages/material-ui-icons/src/UpdateTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UpdateTwoTone'); diff --git a/packages/material-ui-icons/src/Usb.js b/packages/material-ui-icons/src/Usb.js index 837c82c1e58cad..4119d7f60c3079 100644 --- a/packages/material-ui-icons/src/Usb.js +++ b/packages/material-ui-icons/src/Usb.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Usb'); diff --git a/packages/material-ui-icons/src/UsbOutlined.js b/packages/material-ui-icons/src/UsbOutlined.js new file mode 100644 index 00000000000000..a9d9202b4300b5 --- /dev/null +++ b/packages/material-ui-icons/src/UsbOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UsbOutlined'); diff --git a/packages/material-ui-icons/src/UsbRounded.js b/packages/material-ui-icons/src/UsbRounded.js new file mode 100644 index 00000000000000..7f0c04aff5f8c8 --- /dev/null +++ b/packages/material-ui-icons/src/UsbRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UsbRounded'); diff --git a/packages/material-ui-icons/src/UsbSharp.js b/packages/material-ui-icons/src/UsbSharp.js new file mode 100644 index 00000000000000..d02a1b871beae5 --- /dev/null +++ b/packages/material-ui-icons/src/UsbSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UsbSharp'); diff --git a/packages/material-ui-icons/src/UsbTwoTone.js b/packages/material-ui-icons/src/UsbTwoTone.js new file mode 100644 index 00000000000000..956e53902ce764 --- /dev/null +++ b/packages/material-ui-icons/src/UsbTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'UsbTwoTone'); diff --git a/packages/material-ui-icons/src/VerifiedUserOutlined.js b/packages/material-ui-icons/src/VerifiedUserOutlined.js new file mode 100644 index 00000000000000..7c3f22092d7e54 --- /dev/null +++ b/packages/material-ui-icons/src/VerifiedUserOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerifiedUserOutlined'); diff --git a/packages/material-ui-icons/src/VerifiedUserRounded.js b/packages/material-ui-icons/src/VerifiedUserRounded.js new file mode 100644 index 00000000000000..33465297119722 --- /dev/null +++ b/packages/material-ui-icons/src/VerifiedUserRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerifiedUserRounded'); diff --git a/packages/material-ui-icons/src/VerifiedUserSharp.js b/packages/material-ui-icons/src/VerifiedUserSharp.js new file mode 100644 index 00000000000000..cdf9955375e559 --- /dev/null +++ b/packages/material-ui-icons/src/VerifiedUserSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerifiedUserSharp'); diff --git a/packages/material-ui-icons/src/VerifiedUserTwoTone.js b/packages/material-ui-icons/src/VerifiedUserTwoTone.js new file mode 100644 index 00000000000000..1bda4c297d4f64 --- /dev/null +++ b/packages/material-ui-icons/src/VerifiedUserTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerifiedUserTwoTone'); diff --git a/packages/material-ui-icons/src/VerticalAlignBottomOutlined.js b/packages/material-ui-icons/src/VerticalAlignBottomOutlined.js new file mode 100644 index 00000000000000..2b68c5a91de8e8 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignBottomOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignBottomOutlined'); diff --git a/packages/material-ui-icons/src/VerticalAlignBottomRounded.js b/packages/material-ui-icons/src/VerticalAlignBottomRounded.js new file mode 100644 index 00000000000000..1b7c3669fbb109 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignBottomRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignBottomRounded'); diff --git a/packages/material-ui-icons/src/VerticalAlignBottomSharp.js b/packages/material-ui-icons/src/VerticalAlignBottomSharp.js new file mode 100644 index 00000000000000..ac8f7d67213a4c --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignBottomSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignBottomSharp'); diff --git a/packages/material-ui-icons/src/VerticalAlignBottomTwoTone.js b/packages/material-ui-icons/src/VerticalAlignBottomTwoTone.js new file mode 100644 index 00000000000000..f4fa5d57e27fbd --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignBottomTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignBottomTwoTone'); diff --git a/packages/material-ui-icons/src/VerticalAlignCenterOutlined.js b/packages/material-ui-icons/src/VerticalAlignCenterOutlined.js new file mode 100644 index 00000000000000..70c4da3514ba74 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignCenterOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignCenterOutlined'); diff --git a/packages/material-ui-icons/src/VerticalAlignCenterRounded.js b/packages/material-ui-icons/src/VerticalAlignCenterRounded.js new file mode 100644 index 00000000000000..922e733fad6de5 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignCenterRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignCenterRounded'); diff --git a/packages/material-ui-icons/src/VerticalAlignCenterSharp.js b/packages/material-ui-icons/src/VerticalAlignCenterSharp.js new file mode 100644 index 00000000000000..893db80fd7a669 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignCenterSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignCenterSharp'); diff --git a/packages/material-ui-icons/src/VerticalAlignCenterTwoTone.js b/packages/material-ui-icons/src/VerticalAlignCenterTwoTone.js new file mode 100644 index 00000000000000..1bab128b32e647 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignCenterTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignCenterTwoTone'); diff --git a/packages/material-ui-icons/src/VerticalAlignTopOutlined.js b/packages/material-ui-icons/src/VerticalAlignTopOutlined.js new file mode 100644 index 00000000000000..81492e864a66c7 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignTopOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignTopOutlined'); diff --git a/packages/material-ui-icons/src/VerticalAlignTopRounded.js b/packages/material-ui-icons/src/VerticalAlignTopRounded.js new file mode 100644 index 00000000000000..93ea7fe90166ba --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignTopRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignTopRounded'); diff --git a/packages/material-ui-icons/src/VerticalAlignTopSharp.js b/packages/material-ui-icons/src/VerticalAlignTopSharp.js new file mode 100644 index 00000000000000..d6fb9ff89a0321 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignTopSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignTopSharp'); diff --git a/packages/material-ui-icons/src/VerticalAlignTopTwoTone.js b/packages/material-ui-icons/src/VerticalAlignTopTwoTone.js new file mode 100644 index 00000000000000..e6508350ae3211 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalAlignTopTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalAlignTopTwoTone'); diff --git a/packages/material-ui-icons/src/VerticalSplit.js b/packages/material-ui-icons/src/VerticalSplit.js new file mode 100644 index 00000000000000..83f2f490a0f9c4 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalSplit.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalSplit'); diff --git a/packages/material-ui-icons/src/VerticalSplitOutlined.js b/packages/material-ui-icons/src/VerticalSplitOutlined.js new file mode 100644 index 00000000000000..98c432942619a5 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalSplitOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalSplitOutlined'); diff --git a/packages/material-ui-icons/src/VerticalSplitRounded.js b/packages/material-ui-icons/src/VerticalSplitRounded.js new file mode 100644 index 00000000000000..6633aba5f646d5 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalSplitRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalSplitRounded'); diff --git a/packages/material-ui-icons/src/VerticalSplitSharp.js b/packages/material-ui-icons/src/VerticalSplitSharp.js new file mode 100644 index 00000000000000..1f537fdf0ef634 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalSplitSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalSplitSharp'); diff --git a/packages/material-ui-icons/src/VerticalSplitTwoTone.js b/packages/material-ui-icons/src/VerticalSplitTwoTone.js new file mode 100644 index 00000000000000..4d990ed7d96687 --- /dev/null +++ b/packages/material-ui-icons/src/VerticalSplitTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VerticalSplitTwoTone'); diff --git a/packages/material-ui-icons/src/VibrationOutlined.js b/packages/material-ui-icons/src/VibrationOutlined.js new file mode 100644 index 00000000000000..b1ab1f783421c9 --- /dev/null +++ b/packages/material-ui-icons/src/VibrationOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VibrationOutlined'); diff --git a/packages/material-ui-icons/src/VibrationRounded.js b/packages/material-ui-icons/src/VibrationRounded.js new file mode 100644 index 00000000000000..efd938d3befb52 --- /dev/null +++ b/packages/material-ui-icons/src/VibrationRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VibrationRounded'); diff --git a/packages/material-ui-icons/src/VibrationSharp.js b/packages/material-ui-icons/src/VibrationSharp.js new file mode 100644 index 00000000000000..93f1ef8394ce10 --- /dev/null +++ b/packages/material-ui-icons/src/VibrationSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VibrationSharp'); diff --git a/packages/material-ui-icons/src/VibrationTwoTone.js b/packages/material-ui-icons/src/VibrationTwoTone.js new file mode 100644 index 00000000000000..efa7b2576c988d --- /dev/null +++ b/packages/material-ui-icons/src/VibrationTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VibrationTwoTone'); diff --git a/packages/material-ui-icons/src/VideoCallOutlined.js b/packages/material-ui-icons/src/VideoCallOutlined.js new file mode 100644 index 00000000000000..2e9c5df71e5d0c --- /dev/null +++ b/packages/material-ui-icons/src/VideoCallOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoCallOutlined'); diff --git a/packages/material-ui-icons/src/VideoCallRounded.js b/packages/material-ui-icons/src/VideoCallRounded.js new file mode 100644 index 00000000000000..484bc4cfca1088 --- /dev/null +++ b/packages/material-ui-icons/src/VideoCallRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoCallRounded'); diff --git a/packages/material-ui-icons/src/VideoCallSharp.js b/packages/material-ui-icons/src/VideoCallSharp.js new file mode 100644 index 00000000000000..934e361ee21966 --- /dev/null +++ b/packages/material-ui-icons/src/VideoCallSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoCallSharp'); diff --git a/packages/material-ui-icons/src/VideoCallTwoTone.js b/packages/material-ui-icons/src/VideoCallTwoTone.js new file mode 100644 index 00000000000000..8227170efb0e89 --- /dev/null +++ b/packages/material-ui-icons/src/VideoCallTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoCallTwoTone'); diff --git a/packages/material-ui-icons/src/VideoLabelOutlined.js b/packages/material-ui-icons/src/VideoLabelOutlined.js new file mode 100644 index 00000000000000..6726c2dfaabc79 --- /dev/null +++ b/packages/material-ui-icons/src/VideoLabelOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoLabelOutlined'); diff --git a/packages/material-ui-icons/src/VideoLabelRounded.js b/packages/material-ui-icons/src/VideoLabelRounded.js new file mode 100644 index 00000000000000..a1471a7364206b --- /dev/null +++ b/packages/material-ui-icons/src/VideoLabelRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoLabelRounded'); diff --git a/packages/material-ui-icons/src/VideoLabelSharp.js b/packages/material-ui-icons/src/VideoLabelSharp.js new file mode 100644 index 00000000000000..6dc1e399948b36 --- /dev/null +++ b/packages/material-ui-icons/src/VideoLabelSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoLabelSharp'); diff --git a/packages/material-ui-icons/src/VideoLabelTwoTone.js b/packages/material-ui-icons/src/VideoLabelTwoTone.js new file mode 100644 index 00000000000000..3e89f9092b846a --- /dev/null +++ b/packages/material-ui-icons/src/VideoLabelTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoLabelTwoTone'); diff --git a/packages/material-ui-icons/src/VideoLibraryOutlined.js b/packages/material-ui-icons/src/VideoLibraryOutlined.js new file mode 100644 index 00000000000000..6626ff02490f49 --- /dev/null +++ b/packages/material-ui-icons/src/VideoLibraryOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoLibraryOutlined'); diff --git a/packages/material-ui-icons/src/VideoLibraryRounded.js b/packages/material-ui-icons/src/VideoLibraryRounded.js new file mode 100644 index 00000000000000..b9a92088589d31 --- /dev/null +++ b/packages/material-ui-icons/src/VideoLibraryRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoLibraryRounded'); diff --git a/packages/material-ui-icons/src/VideoLibrarySharp.js b/packages/material-ui-icons/src/VideoLibrarySharp.js new file mode 100644 index 00000000000000..2f5f29252f6eb2 --- /dev/null +++ b/packages/material-ui-icons/src/VideoLibrarySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoLibrarySharp'); diff --git a/packages/material-ui-icons/src/VideoLibraryTwoTone.js b/packages/material-ui-icons/src/VideoLibraryTwoTone.js new file mode 100644 index 00000000000000..c62fa110d9929c --- /dev/null +++ b/packages/material-ui-icons/src/VideoLibraryTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideoLibraryTwoTone'); diff --git a/packages/material-ui-icons/src/VideocamOffOutlined.js b/packages/material-ui-icons/src/VideocamOffOutlined.js new file mode 100644 index 00000000000000..0a406481c57e0f --- /dev/null +++ b/packages/material-ui-icons/src/VideocamOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideocamOffOutlined'); diff --git a/packages/material-ui-icons/src/VideocamOffRounded.js b/packages/material-ui-icons/src/VideocamOffRounded.js new file mode 100644 index 00000000000000..de5a738c4d116d --- /dev/null +++ b/packages/material-ui-icons/src/VideocamOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideocamOffRounded'); diff --git a/packages/material-ui-icons/src/VideocamOffSharp.js b/packages/material-ui-icons/src/VideocamOffSharp.js new file mode 100644 index 00000000000000..ed04808ab074f3 --- /dev/null +++ b/packages/material-ui-icons/src/VideocamOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideocamOffSharp'); diff --git a/packages/material-ui-icons/src/VideocamOffTwoTone.js b/packages/material-ui-icons/src/VideocamOffTwoTone.js new file mode 100644 index 00000000000000..74566f2aeef746 --- /dev/null +++ b/packages/material-ui-icons/src/VideocamOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideocamOffTwoTone'); diff --git a/packages/material-ui-icons/src/VideocamOutlined.js b/packages/material-ui-icons/src/VideocamOutlined.js new file mode 100644 index 00000000000000..381fc23d2d127e --- /dev/null +++ b/packages/material-ui-icons/src/VideocamOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideocamOutlined'); diff --git a/packages/material-ui-icons/src/VideocamRounded.js b/packages/material-ui-icons/src/VideocamRounded.js new file mode 100644 index 00000000000000..81fc44ff350312 --- /dev/null +++ b/packages/material-ui-icons/src/VideocamRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideocamRounded'); diff --git a/packages/material-ui-icons/src/VideocamSharp.js b/packages/material-ui-icons/src/VideocamSharp.js new file mode 100644 index 00000000000000..ff425fbbb30e61 --- /dev/null +++ b/packages/material-ui-icons/src/VideocamSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideocamSharp'); diff --git a/packages/material-ui-icons/src/VideocamTwoTone.js b/packages/material-ui-icons/src/VideocamTwoTone.js new file mode 100644 index 00000000000000..22daaac7d44fed --- /dev/null +++ b/packages/material-ui-icons/src/VideocamTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideocamTwoTone'); diff --git a/packages/material-ui-icons/src/VideogameAsset.js b/packages/material-ui-icons/src/VideogameAsset.js index 960fbe7950512d..5273137923a4da 100644 --- a/packages/material-ui-icons/src/VideogameAsset.js +++ b/packages/material-ui-icons/src/VideogameAsset.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'VideogameAsset'); diff --git a/packages/material-ui-icons/src/VideogameAssetOutlined.js b/packages/material-ui-icons/src/VideogameAssetOutlined.js new file mode 100644 index 00000000000000..5ff553eab3c8bc --- /dev/null +++ b/packages/material-ui-icons/src/VideogameAssetOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideogameAssetOutlined'); diff --git a/packages/material-ui-icons/src/VideogameAssetRounded.js b/packages/material-ui-icons/src/VideogameAssetRounded.js new file mode 100644 index 00000000000000..4c4d7962864664 --- /dev/null +++ b/packages/material-ui-icons/src/VideogameAssetRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideogameAssetRounded'); diff --git a/packages/material-ui-icons/src/VideogameAssetSharp.js b/packages/material-ui-icons/src/VideogameAssetSharp.js new file mode 100644 index 00000000000000..7b5720cb57b135 --- /dev/null +++ b/packages/material-ui-icons/src/VideogameAssetSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideogameAssetSharp'); diff --git a/packages/material-ui-icons/src/VideogameAssetTwoTone.js b/packages/material-ui-icons/src/VideogameAssetTwoTone.js new file mode 100644 index 00000000000000..573a5efc5d484d --- /dev/null +++ b/packages/material-ui-icons/src/VideogameAssetTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VideogameAssetTwoTone'); diff --git a/packages/material-ui-icons/src/ViewAgendaOutlined.js b/packages/material-ui-icons/src/ViewAgendaOutlined.js new file mode 100644 index 00000000000000..c152658c3000a0 --- /dev/null +++ b/packages/material-ui-icons/src/ViewAgendaOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewAgendaOutlined'); diff --git a/packages/material-ui-icons/src/ViewAgendaRounded.js b/packages/material-ui-icons/src/ViewAgendaRounded.js new file mode 100644 index 00000000000000..d4b337daee7668 --- /dev/null +++ b/packages/material-ui-icons/src/ViewAgendaRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewAgendaRounded'); diff --git a/packages/material-ui-icons/src/ViewAgendaSharp.js b/packages/material-ui-icons/src/ViewAgendaSharp.js new file mode 100644 index 00000000000000..cde243a0c6fba3 --- /dev/null +++ b/packages/material-ui-icons/src/ViewAgendaSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewAgendaSharp'); diff --git a/packages/material-ui-icons/src/ViewAgendaTwoTone.js b/packages/material-ui-icons/src/ViewAgendaTwoTone.js new file mode 100644 index 00000000000000..adac109529b798 --- /dev/null +++ b/packages/material-ui-icons/src/ViewAgendaTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewAgendaTwoTone'); diff --git a/packages/material-ui-icons/src/ViewArrayOutlined.js b/packages/material-ui-icons/src/ViewArrayOutlined.js new file mode 100644 index 00000000000000..ef1af4596d7dc4 --- /dev/null +++ b/packages/material-ui-icons/src/ViewArrayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewArrayOutlined'); diff --git a/packages/material-ui-icons/src/ViewArrayRounded.js b/packages/material-ui-icons/src/ViewArrayRounded.js new file mode 100644 index 00000000000000..acdc843e948a31 --- /dev/null +++ b/packages/material-ui-icons/src/ViewArrayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewArrayRounded'); diff --git a/packages/material-ui-icons/src/ViewArraySharp.js b/packages/material-ui-icons/src/ViewArraySharp.js new file mode 100644 index 00000000000000..77e21b256eec22 --- /dev/null +++ b/packages/material-ui-icons/src/ViewArraySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewArraySharp'); diff --git a/packages/material-ui-icons/src/ViewArrayTwoTone.js b/packages/material-ui-icons/src/ViewArrayTwoTone.js new file mode 100644 index 00000000000000..754700f2a30cf1 --- /dev/null +++ b/packages/material-ui-icons/src/ViewArrayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewArrayTwoTone'); diff --git a/packages/material-ui-icons/src/ViewCarouselOutlined.js b/packages/material-ui-icons/src/ViewCarouselOutlined.js new file mode 100644 index 00000000000000..3af8108ca1f9d3 --- /dev/null +++ b/packages/material-ui-icons/src/ViewCarouselOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewCarouselOutlined'); diff --git a/packages/material-ui-icons/src/ViewCarouselRounded.js b/packages/material-ui-icons/src/ViewCarouselRounded.js new file mode 100644 index 00000000000000..a7745b8490d213 --- /dev/null +++ b/packages/material-ui-icons/src/ViewCarouselRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewCarouselRounded'); diff --git a/packages/material-ui-icons/src/ViewCarouselSharp.js b/packages/material-ui-icons/src/ViewCarouselSharp.js new file mode 100644 index 00000000000000..33e6d19b4a0b63 --- /dev/null +++ b/packages/material-ui-icons/src/ViewCarouselSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewCarouselSharp'); diff --git a/packages/material-ui-icons/src/ViewCarouselTwoTone.js b/packages/material-ui-icons/src/ViewCarouselTwoTone.js new file mode 100644 index 00000000000000..174db8a5bff1ce --- /dev/null +++ b/packages/material-ui-icons/src/ViewCarouselTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewCarouselTwoTone'); diff --git a/packages/material-ui-icons/src/ViewColumnOutlined.js b/packages/material-ui-icons/src/ViewColumnOutlined.js new file mode 100644 index 00000000000000..6a8cc74d3d87d7 --- /dev/null +++ b/packages/material-ui-icons/src/ViewColumnOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewColumnOutlined'); diff --git a/packages/material-ui-icons/src/ViewColumnRounded.js b/packages/material-ui-icons/src/ViewColumnRounded.js new file mode 100644 index 00000000000000..15b362d98ed762 --- /dev/null +++ b/packages/material-ui-icons/src/ViewColumnRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewColumnRounded'); diff --git a/packages/material-ui-icons/src/ViewColumnSharp.js b/packages/material-ui-icons/src/ViewColumnSharp.js new file mode 100644 index 00000000000000..c3168619383279 --- /dev/null +++ b/packages/material-ui-icons/src/ViewColumnSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewColumnSharp'); diff --git a/packages/material-ui-icons/src/ViewColumnTwoTone.js b/packages/material-ui-icons/src/ViewColumnTwoTone.js new file mode 100644 index 00000000000000..236ad99b6766b5 --- /dev/null +++ b/packages/material-ui-icons/src/ViewColumnTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewColumnTwoTone'); diff --git a/packages/material-ui-icons/src/ViewComfyOutlined.js b/packages/material-ui-icons/src/ViewComfyOutlined.js new file mode 100644 index 00000000000000..dca7d700091f6d --- /dev/null +++ b/packages/material-ui-icons/src/ViewComfyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewComfyOutlined'); diff --git a/packages/material-ui-icons/src/ViewComfyRounded.js b/packages/material-ui-icons/src/ViewComfyRounded.js new file mode 100644 index 00000000000000..809c173ab2d847 --- /dev/null +++ b/packages/material-ui-icons/src/ViewComfyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewComfyRounded'); diff --git a/packages/material-ui-icons/src/ViewComfySharp.js b/packages/material-ui-icons/src/ViewComfySharp.js new file mode 100644 index 00000000000000..4b9c7ca530907d --- /dev/null +++ b/packages/material-ui-icons/src/ViewComfySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewComfySharp'); diff --git a/packages/material-ui-icons/src/ViewComfyTwoTone.js b/packages/material-ui-icons/src/ViewComfyTwoTone.js new file mode 100644 index 00000000000000..68eb99fc7a7fee --- /dev/null +++ b/packages/material-ui-icons/src/ViewComfyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewComfyTwoTone'); diff --git a/packages/material-ui-icons/src/ViewCompactOutlined.js b/packages/material-ui-icons/src/ViewCompactOutlined.js new file mode 100644 index 00000000000000..e6f8624cd9b99a --- /dev/null +++ b/packages/material-ui-icons/src/ViewCompactOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewCompactOutlined'); diff --git a/packages/material-ui-icons/src/ViewCompactRounded.js b/packages/material-ui-icons/src/ViewCompactRounded.js new file mode 100644 index 00000000000000..919d6b946177f2 --- /dev/null +++ b/packages/material-ui-icons/src/ViewCompactRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewCompactRounded'); diff --git a/packages/material-ui-icons/src/ViewCompactSharp.js b/packages/material-ui-icons/src/ViewCompactSharp.js new file mode 100644 index 00000000000000..139d74f1d7a086 --- /dev/null +++ b/packages/material-ui-icons/src/ViewCompactSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewCompactSharp'); diff --git a/packages/material-ui-icons/src/ViewCompactTwoTone.js b/packages/material-ui-icons/src/ViewCompactTwoTone.js new file mode 100644 index 00000000000000..1a401d107d418c --- /dev/null +++ b/packages/material-ui-icons/src/ViewCompactTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewCompactTwoTone'); diff --git a/packages/material-ui-icons/src/ViewDayOutlined.js b/packages/material-ui-icons/src/ViewDayOutlined.js new file mode 100644 index 00000000000000..994fde71d228fd --- /dev/null +++ b/packages/material-ui-icons/src/ViewDayOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewDayOutlined'); diff --git a/packages/material-ui-icons/src/ViewDayRounded.js b/packages/material-ui-icons/src/ViewDayRounded.js new file mode 100644 index 00000000000000..78c93ba3e4e678 --- /dev/null +++ b/packages/material-ui-icons/src/ViewDayRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewDayRounded'); diff --git a/packages/material-ui-icons/src/ViewDaySharp.js b/packages/material-ui-icons/src/ViewDaySharp.js new file mode 100644 index 00000000000000..1d91268061e121 --- /dev/null +++ b/packages/material-ui-icons/src/ViewDaySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewDaySharp'); diff --git a/packages/material-ui-icons/src/ViewDayTwoTone.js b/packages/material-ui-icons/src/ViewDayTwoTone.js new file mode 100644 index 00000000000000..6a589b09754ed8 --- /dev/null +++ b/packages/material-ui-icons/src/ViewDayTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewDayTwoTone'); diff --git a/packages/material-ui-icons/src/ViewHeadlineOutlined.js b/packages/material-ui-icons/src/ViewHeadlineOutlined.js new file mode 100644 index 00000000000000..4409e43c05e41d --- /dev/null +++ b/packages/material-ui-icons/src/ViewHeadlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewHeadlineOutlined'); diff --git a/packages/material-ui-icons/src/ViewHeadlineRounded.js b/packages/material-ui-icons/src/ViewHeadlineRounded.js new file mode 100644 index 00000000000000..2da5da998ad057 --- /dev/null +++ b/packages/material-ui-icons/src/ViewHeadlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewHeadlineRounded'); diff --git a/packages/material-ui-icons/src/ViewHeadlineSharp.js b/packages/material-ui-icons/src/ViewHeadlineSharp.js new file mode 100644 index 00000000000000..fc0b2ab8f1362c --- /dev/null +++ b/packages/material-ui-icons/src/ViewHeadlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewHeadlineSharp'); diff --git a/packages/material-ui-icons/src/ViewHeadlineTwoTone.js b/packages/material-ui-icons/src/ViewHeadlineTwoTone.js new file mode 100644 index 00000000000000..4de0a80a4e11bb --- /dev/null +++ b/packages/material-ui-icons/src/ViewHeadlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewHeadlineTwoTone'); diff --git a/packages/material-ui-icons/src/ViewListOutlined.js b/packages/material-ui-icons/src/ViewListOutlined.js new file mode 100644 index 00000000000000..40119fe1a44f2b --- /dev/null +++ b/packages/material-ui-icons/src/ViewListOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewListOutlined'); diff --git a/packages/material-ui-icons/src/ViewListRounded.js b/packages/material-ui-icons/src/ViewListRounded.js new file mode 100644 index 00000000000000..12abaf9b5f08ca --- /dev/null +++ b/packages/material-ui-icons/src/ViewListRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewListRounded'); diff --git a/packages/material-ui-icons/src/ViewListSharp.js b/packages/material-ui-icons/src/ViewListSharp.js new file mode 100644 index 00000000000000..4717438552d5a7 --- /dev/null +++ b/packages/material-ui-icons/src/ViewListSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewListSharp'); diff --git a/packages/material-ui-icons/src/ViewListTwoTone.js b/packages/material-ui-icons/src/ViewListTwoTone.js new file mode 100644 index 00000000000000..16cbeb516b71e3 --- /dev/null +++ b/packages/material-ui-icons/src/ViewListTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewListTwoTone'); diff --git a/packages/material-ui-icons/src/ViewModuleOutlined.js b/packages/material-ui-icons/src/ViewModuleOutlined.js new file mode 100644 index 00000000000000..ee9d810f3d2242 --- /dev/null +++ b/packages/material-ui-icons/src/ViewModuleOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewModuleOutlined'); diff --git a/packages/material-ui-icons/src/ViewModuleRounded.js b/packages/material-ui-icons/src/ViewModuleRounded.js new file mode 100644 index 00000000000000..e384c90154df67 --- /dev/null +++ b/packages/material-ui-icons/src/ViewModuleRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewModuleRounded'); diff --git a/packages/material-ui-icons/src/ViewModuleSharp.js b/packages/material-ui-icons/src/ViewModuleSharp.js new file mode 100644 index 00000000000000..e77e42f4430a90 --- /dev/null +++ b/packages/material-ui-icons/src/ViewModuleSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewModuleSharp'); diff --git a/packages/material-ui-icons/src/ViewModuleTwoTone.js b/packages/material-ui-icons/src/ViewModuleTwoTone.js new file mode 100644 index 00000000000000..779da892eb137d --- /dev/null +++ b/packages/material-ui-icons/src/ViewModuleTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewModuleTwoTone'); diff --git a/packages/material-ui-icons/src/ViewQuiltOutlined.js b/packages/material-ui-icons/src/ViewQuiltOutlined.js new file mode 100644 index 00000000000000..e95007a90ffb69 --- /dev/null +++ b/packages/material-ui-icons/src/ViewQuiltOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewQuiltOutlined'); diff --git a/packages/material-ui-icons/src/ViewQuiltRounded.js b/packages/material-ui-icons/src/ViewQuiltRounded.js new file mode 100644 index 00000000000000..473d922683525a --- /dev/null +++ b/packages/material-ui-icons/src/ViewQuiltRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewQuiltRounded'); diff --git a/packages/material-ui-icons/src/ViewQuiltSharp.js b/packages/material-ui-icons/src/ViewQuiltSharp.js new file mode 100644 index 00000000000000..e99f038db09f3f --- /dev/null +++ b/packages/material-ui-icons/src/ViewQuiltSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewQuiltSharp'); diff --git a/packages/material-ui-icons/src/ViewQuiltTwoTone.js b/packages/material-ui-icons/src/ViewQuiltTwoTone.js new file mode 100644 index 00000000000000..3bb68599e73413 --- /dev/null +++ b/packages/material-ui-icons/src/ViewQuiltTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewQuiltTwoTone'); diff --git a/packages/material-ui-icons/src/ViewStreamOutlined.js b/packages/material-ui-icons/src/ViewStreamOutlined.js new file mode 100644 index 00000000000000..2d2fa2b811b485 --- /dev/null +++ b/packages/material-ui-icons/src/ViewStreamOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewStreamOutlined'); diff --git a/packages/material-ui-icons/src/ViewStreamRounded.js b/packages/material-ui-icons/src/ViewStreamRounded.js new file mode 100644 index 00000000000000..b0c298be8b7ec9 --- /dev/null +++ b/packages/material-ui-icons/src/ViewStreamRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewStreamRounded'); diff --git a/packages/material-ui-icons/src/ViewStreamSharp.js b/packages/material-ui-icons/src/ViewStreamSharp.js new file mode 100644 index 00000000000000..d6777982a2486b --- /dev/null +++ b/packages/material-ui-icons/src/ViewStreamSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewStreamSharp'); diff --git a/packages/material-ui-icons/src/ViewStreamTwoTone.js b/packages/material-ui-icons/src/ViewStreamTwoTone.js new file mode 100644 index 00000000000000..1341bc659f76b5 --- /dev/null +++ b/packages/material-ui-icons/src/ViewStreamTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewStreamTwoTone'); diff --git a/packages/material-ui-icons/src/ViewWeekOutlined.js b/packages/material-ui-icons/src/ViewWeekOutlined.js new file mode 100644 index 00000000000000..6768c70e2c7181 --- /dev/null +++ b/packages/material-ui-icons/src/ViewWeekOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewWeekOutlined'); diff --git a/packages/material-ui-icons/src/ViewWeekRounded.js b/packages/material-ui-icons/src/ViewWeekRounded.js new file mode 100644 index 00000000000000..1088964f5cd99a --- /dev/null +++ b/packages/material-ui-icons/src/ViewWeekRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewWeekRounded'); diff --git a/packages/material-ui-icons/src/ViewWeekSharp.js b/packages/material-ui-icons/src/ViewWeekSharp.js new file mode 100644 index 00000000000000..3351fb573a2e64 --- /dev/null +++ b/packages/material-ui-icons/src/ViewWeekSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewWeekSharp'); diff --git a/packages/material-ui-icons/src/ViewWeekTwoTone.js b/packages/material-ui-icons/src/ViewWeekTwoTone.js new file mode 100644 index 00000000000000..abec7f7ad82a50 --- /dev/null +++ b/packages/material-ui-icons/src/ViewWeekTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ViewWeekTwoTone'); diff --git a/packages/material-ui-icons/src/VignetteOutlined.js b/packages/material-ui-icons/src/VignetteOutlined.js new file mode 100644 index 00000000000000..bf390ebca638c1 --- /dev/null +++ b/packages/material-ui-icons/src/VignetteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VignetteOutlined'); diff --git a/packages/material-ui-icons/src/VignetteRounded.js b/packages/material-ui-icons/src/VignetteRounded.js new file mode 100644 index 00000000000000..daee1bb3a7c03c --- /dev/null +++ b/packages/material-ui-icons/src/VignetteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VignetteRounded'); diff --git a/packages/material-ui-icons/src/VignetteSharp.js b/packages/material-ui-icons/src/VignetteSharp.js new file mode 100644 index 00000000000000..5edc832c002c0f --- /dev/null +++ b/packages/material-ui-icons/src/VignetteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VignetteSharp'); diff --git a/packages/material-ui-icons/src/VignetteTwoTone.js b/packages/material-ui-icons/src/VignetteTwoTone.js new file mode 100644 index 00000000000000..cdddf145c49b1f --- /dev/null +++ b/packages/material-ui-icons/src/VignetteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VignetteTwoTone'); diff --git a/packages/material-ui-icons/src/VisibilityOff.js b/packages/material-ui-icons/src/VisibilityOff.js index f7630e2c2fd764..a7eb9a9bb00cc3 100644 --- a/packages/material-ui-icons/src/VisibilityOff.js +++ b/packages/material-ui-icons/src/VisibilityOff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'VisibilityOff'); diff --git a/packages/material-ui-icons/src/VisibilityOffOutlined.js b/packages/material-ui-icons/src/VisibilityOffOutlined.js new file mode 100644 index 00000000000000..6470b96c86c52c --- /dev/null +++ b/packages/material-ui-icons/src/VisibilityOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VisibilityOffOutlined'); diff --git a/packages/material-ui-icons/src/VisibilityOffRounded.js b/packages/material-ui-icons/src/VisibilityOffRounded.js new file mode 100644 index 00000000000000..7a677e999102cf --- /dev/null +++ b/packages/material-ui-icons/src/VisibilityOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VisibilityOffRounded'); diff --git a/packages/material-ui-icons/src/VisibilityOffSharp.js b/packages/material-ui-icons/src/VisibilityOffSharp.js new file mode 100644 index 00000000000000..ed83bcf655c66c --- /dev/null +++ b/packages/material-ui-icons/src/VisibilityOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VisibilityOffSharp'); diff --git a/packages/material-ui-icons/src/VisibilityOffTwoTone.js b/packages/material-ui-icons/src/VisibilityOffTwoTone.js new file mode 100644 index 00000000000000..013aee63f26979 --- /dev/null +++ b/packages/material-ui-icons/src/VisibilityOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VisibilityOffTwoTone'); diff --git a/packages/material-ui-icons/src/VisibilityOutlined.js b/packages/material-ui-icons/src/VisibilityOutlined.js new file mode 100644 index 00000000000000..dfe6a92df66baf --- /dev/null +++ b/packages/material-ui-icons/src/VisibilityOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VisibilityOutlined'); diff --git a/packages/material-ui-icons/src/VisibilityRounded.js b/packages/material-ui-icons/src/VisibilityRounded.js new file mode 100644 index 00000000000000..fcf755f2c3f5f9 --- /dev/null +++ b/packages/material-ui-icons/src/VisibilityRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VisibilityRounded'); diff --git a/packages/material-ui-icons/src/VisibilitySharp.js b/packages/material-ui-icons/src/VisibilitySharp.js new file mode 100644 index 00000000000000..40d6105224e56e --- /dev/null +++ b/packages/material-ui-icons/src/VisibilitySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VisibilitySharp'); diff --git a/packages/material-ui-icons/src/VisibilityTwoTone.js b/packages/material-ui-icons/src/VisibilityTwoTone.js new file mode 100644 index 00000000000000..64a07f6243ffb0 --- /dev/null +++ b/packages/material-ui-icons/src/VisibilityTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VisibilityTwoTone'); diff --git a/packages/material-ui-icons/src/VoiceChatOutlined.js b/packages/material-ui-icons/src/VoiceChatOutlined.js new file mode 100644 index 00000000000000..b5989b3aa1e134 --- /dev/null +++ b/packages/material-ui-icons/src/VoiceChatOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoiceChatOutlined'); diff --git a/packages/material-ui-icons/src/VoiceChatRounded.js b/packages/material-ui-icons/src/VoiceChatRounded.js new file mode 100644 index 00000000000000..d0a3af43ee8c2b --- /dev/null +++ b/packages/material-ui-icons/src/VoiceChatRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoiceChatRounded'); diff --git a/packages/material-ui-icons/src/VoiceChatSharp.js b/packages/material-ui-icons/src/VoiceChatSharp.js new file mode 100644 index 00000000000000..6af67bb0ce98c6 --- /dev/null +++ b/packages/material-ui-icons/src/VoiceChatSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoiceChatSharp'); diff --git a/packages/material-ui-icons/src/VoiceChatTwoTone.js b/packages/material-ui-icons/src/VoiceChatTwoTone.js new file mode 100644 index 00000000000000..334f912cc3f8f1 --- /dev/null +++ b/packages/material-ui-icons/src/VoiceChatTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoiceChatTwoTone'); diff --git a/packages/material-ui-icons/src/VoiceOverOff.js b/packages/material-ui-icons/src/VoiceOverOff.js new file mode 100644 index 00000000000000..b8289171b74a9f --- /dev/null +++ b/packages/material-ui-icons/src/VoiceOverOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoiceOverOff'); diff --git a/packages/material-ui-icons/src/VoiceOverOffOutlined.js b/packages/material-ui-icons/src/VoiceOverOffOutlined.js new file mode 100644 index 00000000000000..94b022af32fcdc --- /dev/null +++ b/packages/material-ui-icons/src/VoiceOverOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoiceOverOffOutlined'); diff --git a/packages/material-ui-icons/src/VoiceOverOffRounded.js b/packages/material-ui-icons/src/VoiceOverOffRounded.js new file mode 100644 index 00000000000000..3c10c4c8bb160f --- /dev/null +++ b/packages/material-ui-icons/src/VoiceOverOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoiceOverOffRounded'); diff --git a/packages/material-ui-icons/src/VoiceOverOffSharp.js b/packages/material-ui-icons/src/VoiceOverOffSharp.js new file mode 100644 index 00000000000000..ced510b4a07ae4 --- /dev/null +++ b/packages/material-ui-icons/src/VoiceOverOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoiceOverOffSharp'); diff --git a/packages/material-ui-icons/src/VoiceOverOffTwoTone.js b/packages/material-ui-icons/src/VoiceOverOffTwoTone.js new file mode 100644 index 00000000000000..909d3f834b7d82 --- /dev/null +++ b/packages/material-ui-icons/src/VoiceOverOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoiceOverOffTwoTone'); diff --git a/packages/material-ui-icons/src/VoicemailOutlined.js b/packages/material-ui-icons/src/VoicemailOutlined.js new file mode 100644 index 00000000000000..1e0e190bdcac6e --- /dev/null +++ b/packages/material-ui-icons/src/VoicemailOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoicemailOutlined'); diff --git a/packages/material-ui-icons/src/VoicemailRounded.js b/packages/material-ui-icons/src/VoicemailRounded.js new file mode 100644 index 00000000000000..378cb6eb6bf1ef --- /dev/null +++ b/packages/material-ui-icons/src/VoicemailRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoicemailRounded'); diff --git a/packages/material-ui-icons/src/VoicemailSharp.js b/packages/material-ui-icons/src/VoicemailSharp.js new file mode 100644 index 00000000000000..067d47f1621054 --- /dev/null +++ b/packages/material-ui-icons/src/VoicemailSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoicemailSharp'); diff --git a/packages/material-ui-icons/src/VoicemailTwoTone.js b/packages/material-ui-icons/src/VoicemailTwoTone.js new file mode 100644 index 00000000000000..1b1d67fdbc7005 --- /dev/null +++ b/packages/material-ui-icons/src/VoicemailTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VoicemailTwoTone'); diff --git a/packages/material-ui-icons/src/VolumeDown.js b/packages/material-ui-icons/src/VolumeDown.js index 9be80db6fac1c1..c238cfa1750dfc 100644 --- a/packages/material-ui-icons/src/VolumeDown.js +++ b/packages/material-ui-icons/src/VolumeDown.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'VolumeDown'); diff --git a/packages/material-ui-icons/src/VolumeDownOutlined.js b/packages/material-ui-icons/src/VolumeDownOutlined.js new file mode 100644 index 00000000000000..814e3671fc8d7d --- /dev/null +++ b/packages/material-ui-icons/src/VolumeDownOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeDownOutlined'); diff --git a/packages/material-ui-icons/src/VolumeDownRounded.js b/packages/material-ui-icons/src/VolumeDownRounded.js new file mode 100644 index 00000000000000..0837d3c6b84edc --- /dev/null +++ b/packages/material-ui-icons/src/VolumeDownRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeDownRounded'); diff --git a/packages/material-ui-icons/src/VolumeDownSharp.js b/packages/material-ui-icons/src/VolumeDownSharp.js new file mode 100644 index 00000000000000..7e8bef87c35466 --- /dev/null +++ b/packages/material-ui-icons/src/VolumeDownSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeDownSharp'); diff --git a/packages/material-ui-icons/src/VolumeDownTwoTone.js b/packages/material-ui-icons/src/VolumeDownTwoTone.js new file mode 100644 index 00000000000000..8d596a35deecc2 --- /dev/null +++ b/packages/material-ui-icons/src/VolumeDownTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeDownTwoTone'); diff --git a/packages/material-ui-icons/src/VolumeMuteOutlined.js b/packages/material-ui-icons/src/VolumeMuteOutlined.js new file mode 100644 index 00000000000000..f3d70f443cdc7a --- /dev/null +++ b/packages/material-ui-icons/src/VolumeMuteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeMuteOutlined'); diff --git a/packages/material-ui-icons/src/VolumeMuteRounded.js b/packages/material-ui-icons/src/VolumeMuteRounded.js new file mode 100644 index 00000000000000..d526ca8cd8e48d --- /dev/null +++ b/packages/material-ui-icons/src/VolumeMuteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeMuteRounded'); diff --git a/packages/material-ui-icons/src/VolumeMuteSharp.js b/packages/material-ui-icons/src/VolumeMuteSharp.js new file mode 100644 index 00000000000000..5cc9359de341b7 --- /dev/null +++ b/packages/material-ui-icons/src/VolumeMuteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeMuteSharp'); diff --git a/packages/material-ui-icons/src/VolumeMuteTwoTone.js b/packages/material-ui-icons/src/VolumeMuteTwoTone.js new file mode 100644 index 00000000000000..d162862ae83273 --- /dev/null +++ b/packages/material-ui-icons/src/VolumeMuteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeMuteTwoTone'); diff --git a/packages/material-ui-icons/src/VolumeOff.js b/packages/material-ui-icons/src/VolumeOff.js index 4ef814b813c4b7..fb054b4beb0558 100644 --- a/packages/material-ui-icons/src/VolumeOff.js +++ b/packages/material-ui-icons/src/VolumeOff.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'VolumeOff'); diff --git a/packages/material-ui-icons/src/VolumeOffOutlined.js b/packages/material-ui-icons/src/VolumeOffOutlined.js new file mode 100644 index 00000000000000..369fcb44b526ed --- /dev/null +++ b/packages/material-ui-icons/src/VolumeOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeOffOutlined'); diff --git a/packages/material-ui-icons/src/VolumeOffRounded.js b/packages/material-ui-icons/src/VolumeOffRounded.js new file mode 100644 index 00000000000000..89cff065d06c75 --- /dev/null +++ b/packages/material-ui-icons/src/VolumeOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeOffRounded'); diff --git a/packages/material-ui-icons/src/VolumeOffSharp.js b/packages/material-ui-icons/src/VolumeOffSharp.js new file mode 100644 index 00000000000000..0a4650f8092e28 --- /dev/null +++ b/packages/material-ui-icons/src/VolumeOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeOffSharp'); diff --git a/packages/material-ui-icons/src/VolumeOffTwoTone.js b/packages/material-ui-icons/src/VolumeOffTwoTone.js new file mode 100644 index 00000000000000..c33be37c659139 --- /dev/null +++ b/packages/material-ui-icons/src/VolumeOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeOffTwoTone'); diff --git a/packages/material-ui-icons/src/VolumeUp.js b/packages/material-ui-icons/src/VolumeUp.js index 31366927464fe1..3822c8c245dfc1 100644 --- a/packages/material-ui-icons/src/VolumeUp.js +++ b/packages/material-ui-icons/src/VolumeUp.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'VolumeUp'); diff --git a/packages/material-ui-icons/src/VolumeUpOutlined.js b/packages/material-ui-icons/src/VolumeUpOutlined.js new file mode 100644 index 00000000000000..d5dadf3cd07e7e --- /dev/null +++ b/packages/material-ui-icons/src/VolumeUpOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeUpOutlined'); diff --git a/packages/material-ui-icons/src/VolumeUpRounded.js b/packages/material-ui-icons/src/VolumeUpRounded.js new file mode 100644 index 00000000000000..9a4ebf423585c2 --- /dev/null +++ b/packages/material-ui-icons/src/VolumeUpRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeUpRounded'); diff --git a/packages/material-ui-icons/src/VolumeUpSharp.js b/packages/material-ui-icons/src/VolumeUpSharp.js new file mode 100644 index 00000000000000..b9564bf5dcfdb8 --- /dev/null +++ b/packages/material-ui-icons/src/VolumeUpSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeUpSharp'); diff --git a/packages/material-ui-icons/src/VolumeUpTwoTone.js b/packages/material-ui-icons/src/VolumeUpTwoTone.js new file mode 100644 index 00000000000000..b20416a0572855 --- /dev/null +++ b/packages/material-ui-icons/src/VolumeUpTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VolumeUpTwoTone'); diff --git a/packages/material-ui-icons/src/VpnKey.js b/packages/material-ui-icons/src/VpnKey.js index 0820f2b7e471af..d023c64b9ee8da 100644 --- a/packages/material-ui-icons/src/VpnKey.js +++ b/packages/material-ui-icons/src/VpnKey.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'VpnKey'); diff --git a/packages/material-ui-icons/src/VpnKeyOutlined.js b/packages/material-ui-icons/src/VpnKeyOutlined.js new file mode 100644 index 00000000000000..03f80bc9bfec0c --- /dev/null +++ b/packages/material-ui-icons/src/VpnKeyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VpnKeyOutlined'); diff --git a/packages/material-ui-icons/src/VpnKeyRounded.js b/packages/material-ui-icons/src/VpnKeyRounded.js new file mode 100644 index 00000000000000..d02b7301a1c78f --- /dev/null +++ b/packages/material-ui-icons/src/VpnKeyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VpnKeyRounded'); diff --git a/packages/material-ui-icons/src/VpnKeySharp.js b/packages/material-ui-icons/src/VpnKeySharp.js new file mode 100644 index 00000000000000..de47900b3a3bd9 --- /dev/null +++ b/packages/material-ui-icons/src/VpnKeySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VpnKeySharp'); diff --git a/packages/material-ui-icons/src/VpnKeyTwoTone.js b/packages/material-ui-icons/src/VpnKeyTwoTone.js new file mode 100644 index 00000000000000..8dbfae78fd9d10 --- /dev/null +++ b/packages/material-ui-icons/src/VpnKeyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VpnKeyTwoTone'); diff --git a/packages/material-ui-icons/src/VpnLock.js b/packages/material-ui-icons/src/VpnLock.js index 01470381285c83..3359a9f984b6af 100644 --- a/packages/material-ui-icons/src/VpnLock.js +++ b/packages/material-ui-icons/src/VpnLock.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'VpnLock'); diff --git a/packages/material-ui-icons/src/VpnLockOutlined.js b/packages/material-ui-icons/src/VpnLockOutlined.js new file mode 100644 index 00000000000000..a6330e2b7331f3 --- /dev/null +++ b/packages/material-ui-icons/src/VpnLockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VpnLockOutlined'); diff --git a/packages/material-ui-icons/src/VpnLockRounded.js b/packages/material-ui-icons/src/VpnLockRounded.js new file mode 100644 index 00000000000000..f79a0a1d14a32a --- /dev/null +++ b/packages/material-ui-icons/src/VpnLockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VpnLockRounded'); diff --git a/packages/material-ui-icons/src/VpnLockSharp.js b/packages/material-ui-icons/src/VpnLockSharp.js new file mode 100644 index 00000000000000..9529449f1b315c --- /dev/null +++ b/packages/material-ui-icons/src/VpnLockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VpnLockSharp'); diff --git a/packages/material-ui-icons/src/VpnLockTwoTone.js b/packages/material-ui-icons/src/VpnLockTwoTone.js new file mode 100644 index 00000000000000..0510458e887353 --- /dev/null +++ b/packages/material-ui-icons/src/VpnLockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'VpnLockTwoTone'); diff --git a/packages/material-ui-icons/src/WallpaperOutlined.js b/packages/material-ui-icons/src/WallpaperOutlined.js new file mode 100644 index 00000000000000..578772fe2a5cb5 --- /dev/null +++ b/packages/material-ui-icons/src/WallpaperOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WallpaperOutlined'); diff --git a/packages/material-ui-icons/src/WallpaperRounded.js b/packages/material-ui-icons/src/WallpaperRounded.js new file mode 100644 index 00000000000000..580d3bc8976ba7 --- /dev/null +++ b/packages/material-ui-icons/src/WallpaperRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WallpaperRounded'); diff --git a/packages/material-ui-icons/src/WallpaperSharp.js b/packages/material-ui-icons/src/WallpaperSharp.js new file mode 100644 index 00000000000000..fe0869631072b5 --- /dev/null +++ b/packages/material-ui-icons/src/WallpaperSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WallpaperSharp'); diff --git a/packages/material-ui-icons/src/WallpaperTwoTone.js b/packages/material-ui-icons/src/WallpaperTwoTone.js new file mode 100644 index 00000000000000..403c6356b6a983 --- /dev/null +++ b/packages/material-ui-icons/src/WallpaperTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WallpaperTwoTone'); diff --git a/packages/material-ui-icons/src/WarningOutlined.js b/packages/material-ui-icons/src/WarningOutlined.js new file mode 100644 index 00000000000000..fce7c977b0eaf7 --- /dev/null +++ b/packages/material-ui-icons/src/WarningOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WarningOutlined'); diff --git a/packages/material-ui-icons/src/WarningRounded.js b/packages/material-ui-icons/src/WarningRounded.js new file mode 100644 index 00000000000000..d9687026541960 --- /dev/null +++ b/packages/material-ui-icons/src/WarningRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WarningRounded'); diff --git a/packages/material-ui-icons/src/WarningSharp.js b/packages/material-ui-icons/src/WarningSharp.js new file mode 100644 index 00000000000000..a66fd33e7d949b --- /dev/null +++ b/packages/material-ui-icons/src/WarningSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WarningSharp'); diff --git a/packages/material-ui-icons/src/WarningTwoTone.js b/packages/material-ui-icons/src/WarningTwoTone.js new file mode 100644 index 00000000000000..beca82eed7e075 --- /dev/null +++ b/packages/material-ui-icons/src/WarningTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WarningTwoTone'); diff --git a/packages/material-ui-icons/src/Watch.js b/packages/material-ui-icons/src/Watch.js index 173d1bad9a3380..1f93b079ca3f48 100644 --- a/packages/material-ui-icons/src/Watch.js +++ b/packages/material-ui-icons/src/Watch.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Watch'); diff --git a/packages/material-ui-icons/src/WatchLater.js b/packages/material-ui-icons/src/WatchLater.js index 87ec183156d9a4..21cc66ff99d77a 100644 --- a/packages/material-ui-icons/src/WatchLater.js +++ b/packages/material-ui-icons/src/WatchLater.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'WatchLater'); diff --git a/packages/material-ui-icons/src/WatchLaterOutlined.js b/packages/material-ui-icons/src/WatchLaterOutlined.js new file mode 100644 index 00000000000000..2bb1e6745d840d --- /dev/null +++ b/packages/material-ui-icons/src/WatchLaterOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WatchLaterOutlined'); diff --git a/packages/material-ui-icons/src/WatchLaterRounded.js b/packages/material-ui-icons/src/WatchLaterRounded.js new file mode 100644 index 00000000000000..609c1bcce0fe23 --- /dev/null +++ b/packages/material-ui-icons/src/WatchLaterRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WatchLaterRounded'); diff --git a/packages/material-ui-icons/src/WatchLaterSharp.js b/packages/material-ui-icons/src/WatchLaterSharp.js new file mode 100644 index 00000000000000..627e5a362ede10 --- /dev/null +++ b/packages/material-ui-icons/src/WatchLaterSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WatchLaterSharp'); diff --git a/packages/material-ui-icons/src/WatchLaterTwoTone.js b/packages/material-ui-icons/src/WatchLaterTwoTone.js new file mode 100644 index 00000000000000..0bb8b520d370dd --- /dev/null +++ b/packages/material-ui-icons/src/WatchLaterTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WatchLaterTwoTone'); diff --git a/packages/material-ui-icons/src/WatchOutlined.js b/packages/material-ui-icons/src/WatchOutlined.js new file mode 100644 index 00000000000000..d8a3ae997da089 --- /dev/null +++ b/packages/material-ui-icons/src/WatchOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WatchOutlined'); diff --git a/packages/material-ui-icons/src/WatchRounded.js b/packages/material-ui-icons/src/WatchRounded.js new file mode 100644 index 00000000000000..31566a8fe4983a --- /dev/null +++ b/packages/material-ui-icons/src/WatchRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WatchRounded'); diff --git a/packages/material-ui-icons/src/WatchSharp.js b/packages/material-ui-icons/src/WatchSharp.js new file mode 100644 index 00000000000000..1332b34ae1b4f0 --- /dev/null +++ b/packages/material-ui-icons/src/WatchSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WatchSharp'); diff --git a/packages/material-ui-icons/src/WatchTwoTone.js b/packages/material-ui-icons/src/WatchTwoTone.js new file mode 100644 index 00000000000000..7856ab1b7f7cd9 --- /dev/null +++ b/packages/material-ui-icons/src/WatchTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WatchTwoTone'); diff --git a/packages/material-ui-icons/src/Waves.js b/packages/material-ui-icons/src/Waves.js new file mode 100644 index 00000000000000..93c2f233661669 --- /dev/null +++ b/packages/material-ui-icons/src/Waves.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'Waves'); diff --git a/packages/material-ui-icons/src/WavesOutlined.js b/packages/material-ui-icons/src/WavesOutlined.js new file mode 100644 index 00000000000000..24b0dcb1a485ec --- /dev/null +++ b/packages/material-ui-icons/src/WavesOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WavesOutlined'); diff --git a/packages/material-ui-icons/src/WavesRounded.js b/packages/material-ui-icons/src/WavesRounded.js new file mode 100644 index 00000000000000..b4ff4c5bf43518 --- /dev/null +++ b/packages/material-ui-icons/src/WavesRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WavesRounded'); diff --git a/packages/material-ui-icons/src/WavesSharp.js b/packages/material-ui-icons/src/WavesSharp.js new file mode 100644 index 00000000000000..b224704b0decf1 --- /dev/null +++ b/packages/material-ui-icons/src/WavesSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WavesSharp'); diff --git a/packages/material-ui-icons/src/WavesTwoTone.js b/packages/material-ui-icons/src/WavesTwoTone.js new file mode 100644 index 00000000000000..1a35b0e00ce8ab --- /dev/null +++ b/packages/material-ui-icons/src/WavesTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WavesTwoTone'); diff --git a/packages/material-ui-icons/src/WbAutoOutlined.js b/packages/material-ui-icons/src/WbAutoOutlined.js new file mode 100644 index 00000000000000..d92f101fe864ad --- /dev/null +++ b/packages/material-ui-icons/src/WbAutoOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbAutoOutlined'); diff --git a/packages/material-ui-icons/src/WbAutoRounded.js b/packages/material-ui-icons/src/WbAutoRounded.js new file mode 100644 index 00000000000000..32f0a3292f1c5d --- /dev/null +++ b/packages/material-ui-icons/src/WbAutoRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbAutoRounded'); diff --git a/packages/material-ui-icons/src/WbAutoSharp.js b/packages/material-ui-icons/src/WbAutoSharp.js new file mode 100644 index 00000000000000..2fc52e5c6039d1 --- /dev/null +++ b/packages/material-ui-icons/src/WbAutoSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbAutoSharp'); diff --git a/packages/material-ui-icons/src/WbAutoTwoTone.js b/packages/material-ui-icons/src/WbAutoTwoTone.js new file mode 100644 index 00000000000000..44953e1e381858 --- /dev/null +++ b/packages/material-ui-icons/src/WbAutoTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbAutoTwoTone'); diff --git a/packages/material-ui-icons/src/WbCloudy.js b/packages/material-ui-icons/src/WbCloudy.js index 3bcd2ec7d4c9b4..520c58105ffb6d 100644 --- a/packages/material-ui-icons/src/WbCloudy.js +++ b/packages/material-ui-icons/src/WbCloudy.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'WbCloudy'); diff --git a/packages/material-ui-icons/src/WbCloudyOutlined.js b/packages/material-ui-icons/src/WbCloudyOutlined.js new file mode 100644 index 00000000000000..7a5a418fb473e9 --- /dev/null +++ b/packages/material-ui-icons/src/WbCloudyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbCloudyOutlined'); diff --git a/packages/material-ui-icons/src/WbCloudyRounded.js b/packages/material-ui-icons/src/WbCloudyRounded.js new file mode 100644 index 00000000000000..76c36bfad0c420 --- /dev/null +++ b/packages/material-ui-icons/src/WbCloudyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbCloudyRounded'); diff --git a/packages/material-ui-icons/src/WbCloudySharp.js b/packages/material-ui-icons/src/WbCloudySharp.js new file mode 100644 index 00000000000000..78bc33505de80f --- /dev/null +++ b/packages/material-ui-icons/src/WbCloudySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbCloudySharp'); diff --git a/packages/material-ui-icons/src/WbCloudyTwoTone.js b/packages/material-ui-icons/src/WbCloudyTwoTone.js new file mode 100644 index 00000000000000..a917cc8934e558 --- /dev/null +++ b/packages/material-ui-icons/src/WbCloudyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbCloudyTwoTone'); diff --git a/packages/material-ui-icons/src/WbIncandescentOutlined.js b/packages/material-ui-icons/src/WbIncandescentOutlined.js new file mode 100644 index 00000000000000..c0393f08b7feab --- /dev/null +++ b/packages/material-ui-icons/src/WbIncandescentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbIncandescentOutlined'); diff --git a/packages/material-ui-icons/src/WbIncandescentRounded.js b/packages/material-ui-icons/src/WbIncandescentRounded.js new file mode 100644 index 00000000000000..28cacf036f3aa9 --- /dev/null +++ b/packages/material-ui-icons/src/WbIncandescentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbIncandescentRounded'); diff --git a/packages/material-ui-icons/src/WbIncandescentSharp.js b/packages/material-ui-icons/src/WbIncandescentSharp.js new file mode 100644 index 00000000000000..5f40e60afffaa0 --- /dev/null +++ b/packages/material-ui-icons/src/WbIncandescentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbIncandescentSharp'); diff --git a/packages/material-ui-icons/src/WbIncandescentTwoTone.js b/packages/material-ui-icons/src/WbIncandescentTwoTone.js new file mode 100644 index 00000000000000..196f24a7a0ede5 --- /dev/null +++ b/packages/material-ui-icons/src/WbIncandescentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbIncandescentTwoTone'); diff --git a/packages/material-ui-icons/src/WbIridescentOutlined.js b/packages/material-ui-icons/src/WbIridescentOutlined.js new file mode 100644 index 00000000000000..5ab185820f5195 --- /dev/null +++ b/packages/material-ui-icons/src/WbIridescentOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbIridescentOutlined'); diff --git a/packages/material-ui-icons/src/WbIridescentRounded.js b/packages/material-ui-icons/src/WbIridescentRounded.js new file mode 100644 index 00000000000000..59d3208c1f81d0 --- /dev/null +++ b/packages/material-ui-icons/src/WbIridescentRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbIridescentRounded'); diff --git a/packages/material-ui-icons/src/WbIridescentSharp.js b/packages/material-ui-icons/src/WbIridescentSharp.js new file mode 100644 index 00000000000000..a48f473af6dfc5 --- /dev/null +++ b/packages/material-ui-icons/src/WbIridescentSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbIridescentSharp'); diff --git a/packages/material-ui-icons/src/WbIridescentTwoTone.js b/packages/material-ui-icons/src/WbIridescentTwoTone.js new file mode 100644 index 00000000000000..3b98fe24279d26 --- /dev/null +++ b/packages/material-ui-icons/src/WbIridescentTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbIridescentTwoTone'); diff --git a/packages/material-ui-icons/src/WbSunnyOutlined.js b/packages/material-ui-icons/src/WbSunnyOutlined.js new file mode 100644 index 00000000000000..6075c7054f2be5 --- /dev/null +++ b/packages/material-ui-icons/src/WbSunnyOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbSunnyOutlined'); diff --git a/packages/material-ui-icons/src/WbSunnyRounded.js b/packages/material-ui-icons/src/WbSunnyRounded.js new file mode 100644 index 00000000000000..4891a708b07eaa --- /dev/null +++ b/packages/material-ui-icons/src/WbSunnyRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbSunnyRounded'); diff --git a/packages/material-ui-icons/src/WbSunnySharp.js b/packages/material-ui-icons/src/WbSunnySharp.js new file mode 100644 index 00000000000000..dc252dd3a0a894 --- /dev/null +++ b/packages/material-ui-icons/src/WbSunnySharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbSunnySharp'); diff --git a/packages/material-ui-icons/src/WbSunnyTwoTone.js b/packages/material-ui-icons/src/WbSunnyTwoTone.js new file mode 100644 index 00000000000000..c222511719121c --- /dev/null +++ b/packages/material-ui-icons/src/WbSunnyTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WbSunnyTwoTone'); diff --git a/packages/material-ui-icons/src/Wc.js b/packages/material-ui-icons/src/Wc.js index cecd2930946bf0..66068478877d0f 100644 --- a/packages/material-ui-icons/src/Wc.js +++ b/packages/material-ui-icons/src/Wc.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Wc'); diff --git a/packages/material-ui-icons/src/WcOutlined.js b/packages/material-ui-icons/src/WcOutlined.js new file mode 100644 index 00000000000000..70ff4dc1345eb0 --- /dev/null +++ b/packages/material-ui-icons/src/WcOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WcOutlined'); diff --git a/packages/material-ui-icons/src/WcRounded.js b/packages/material-ui-icons/src/WcRounded.js new file mode 100644 index 00000000000000..32c73f17a381d6 --- /dev/null +++ b/packages/material-ui-icons/src/WcRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WcRounded'); diff --git a/packages/material-ui-icons/src/WcSharp.js b/packages/material-ui-icons/src/WcSharp.js new file mode 100644 index 00000000000000..6052413eeafc9c --- /dev/null +++ b/packages/material-ui-icons/src/WcSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WcSharp'); diff --git a/packages/material-ui-icons/src/WcTwoTone.js b/packages/material-ui-icons/src/WcTwoTone.js new file mode 100644 index 00000000000000..72c2db1d7dd346 --- /dev/null +++ b/packages/material-ui-icons/src/WcTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WcTwoTone'); diff --git a/packages/material-ui-icons/src/WebAsset.js b/packages/material-ui-icons/src/WebAsset.js index ecb2676966577f..f3a8356432b2f4 100644 --- a/packages/material-ui-icons/src/WebAsset.js +++ b/packages/material-ui-icons/src/WebAsset.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'WebAsset'); diff --git a/packages/material-ui-icons/src/WebAssetOutlined.js b/packages/material-ui-icons/src/WebAssetOutlined.js new file mode 100644 index 00000000000000..b31eaa228f2625 --- /dev/null +++ b/packages/material-ui-icons/src/WebAssetOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WebAssetOutlined'); diff --git a/packages/material-ui-icons/src/WebAssetRounded.js b/packages/material-ui-icons/src/WebAssetRounded.js new file mode 100644 index 00000000000000..6cbead16bb5ead --- /dev/null +++ b/packages/material-ui-icons/src/WebAssetRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WebAssetRounded'); diff --git a/packages/material-ui-icons/src/WebAssetSharp.js b/packages/material-ui-icons/src/WebAssetSharp.js new file mode 100644 index 00000000000000..d13c01831cbd0b --- /dev/null +++ b/packages/material-ui-icons/src/WebAssetSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WebAssetSharp'); diff --git a/packages/material-ui-icons/src/WebAssetTwoTone.js b/packages/material-ui-icons/src/WebAssetTwoTone.js new file mode 100644 index 00000000000000..588b2ff65f563a --- /dev/null +++ b/packages/material-ui-icons/src/WebAssetTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WebAssetTwoTone'); diff --git a/packages/material-ui-icons/src/WebOutlined.js b/packages/material-ui-icons/src/WebOutlined.js new file mode 100644 index 00000000000000..16128adb7edce6 --- /dev/null +++ b/packages/material-ui-icons/src/WebOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WebOutlined'); diff --git a/packages/material-ui-icons/src/WebRounded.js b/packages/material-ui-icons/src/WebRounded.js new file mode 100644 index 00000000000000..a71daec6be3906 --- /dev/null +++ b/packages/material-ui-icons/src/WebRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WebRounded'); diff --git a/packages/material-ui-icons/src/WebSharp.js b/packages/material-ui-icons/src/WebSharp.js new file mode 100644 index 00000000000000..f154d447a24a60 --- /dev/null +++ b/packages/material-ui-icons/src/WebSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WebSharp'); diff --git a/packages/material-ui-icons/src/WebTwoTone.js b/packages/material-ui-icons/src/WebTwoTone.js new file mode 100644 index 00000000000000..0c610a95c97dcb --- /dev/null +++ b/packages/material-ui-icons/src/WebTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WebTwoTone'); diff --git a/packages/material-ui-icons/src/WeekendOutlined.js b/packages/material-ui-icons/src/WeekendOutlined.js new file mode 100644 index 00000000000000..927895069d3942 --- /dev/null +++ b/packages/material-ui-icons/src/WeekendOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WeekendOutlined'); diff --git a/packages/material-ui-icons/src/Weekend.js b/packages/material-ui-icons/src/WeekendRounded.js similarity index 94% rename from packages/material-ui-icons/src/Weekend.js rename to packages/material-ui-icons/src/WeekendRounded.js index e2c958c2396257..fcc4d82069178a 100644 --- a/packages/material-ui-icons/src/Weekend.js +++ b/packages/material-ui-icons/src/WeekendRounded.js @@ -3,4 +3,4 @@ import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( -, 'Weekend'); +, 'WeekendRounded'); diff --git a/packages/material-ui-icons/src/WeekendSharp.js b/packages/material-ui-icons/src/WeekendSharp.js new file mode 100644 index 00000000000000..10c30165eb2966 --- /dev/null +++ b/packages/material-ui-icons/src/WeekendSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WeekendSharp'); diff --git a/packages/material-ui-icons/src/WeekendTwoTone.js b/packages/material-ui-icons/src/WeekendTwoTone.js new file mode 100644 index 00000000000000..848a948577cfba --- /dev/null +++ b/packages/material-ui-icons/src/WeekendTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WeekendTwoTone'); diff --git a/packages/material-ui-icons/src/WhatshotOutlined.js b/packages/material-ui-icons/src/WhatshotOutlined.js new file mode 100644 index 00000000000000..77b684234b95a2 --- /dev/null +++ b/packages/material-ui-icons/src/WhatshotOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WhatshotOutlined'); diff --git a/packages/material-ui-icons/src/WhatshotRounded.js b/packages/material-ui-icons/src/WhatshotRounded.js new file mode 100644 index 00000000000000..0a16e550c5d1b5 --- /dev/null +++ b/packages/material-ui-icons/src/WhatshotRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WhatshotRounded'); diff --git a/packages/material-ui-icons/src/WhatshotSharp.js b/packages/material-ui-icons/src/WhatshotSharp.js new file mode 100644 index 00000000000000..241a3443dd4937 --- /dev/null +++ b/packages/material-ui-icons/src/WhatshotSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WhatshotSharp'); diff --git a/packages/material-ui-icons/src/WhatshotTwoTone.js b/packages/material-ui-icons/src/WhatshotTwoTone.js new file mode 100644 index 00000000000000..be65060ed576cd --- /dev/null +++ b/packages/material-ui-icons/src/WhatshotTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WhatshotTwoTone'); diff --git a/packages/material-ui-icons/src/WhereToVote.js b/packages/material-ui-icons/src/WhereToVote.js new file mode 100644 index 00000000000000..9eaa6653d595c1 --- /dev/null +++ b/packages/material-ui-icons/src/WhereToVote.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WhereToVote'); diff --git a/packages/material-ui-icons/src/WhereToVoteOutlined.js b/packages/material-ui-icons/src/WhereToVoteOutlined.js new file mode 100644 index 00000000000000..2621a4008d6d5a --- /dev/null +++ b/packages/material-ui-icons/src/WhereToVoteOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WhereToVoteOutlined'); diff --git a/packages/material-ui-icons/src/WhereToVoteRounded.js b/packages/material-ui-icons/src/WhereToVoteRounded.js new file mode 100644 index 00000000000000..ed898aa62a2935 --- /dev/null +++ b/packages/material-ui-icons/src/WhereToVoteRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WhereToVoteRounded'); diff --git a/packages/material-ui-icons/src/WhereToVoteSharp.js b/packages/material-ui-icons/src/WhereToVoteSharp.js new file mode 100644 index 00000000000000..7f0edc9328fb6a --- /dev/null +++ b/packages/material-ui-icons/src/WhereToVoteSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WhereToVoteSharp'); diff --git a/packages/material-ui-icons/src/WhereToVoteTwoTone.js b/packages/material-ui-icons/src/WhereToVoteTwoTone.js new file mode 100644 index 00000000000000..431d721781ae0e --- /dev/null +++ b/packages/material-ui-icons/src/WhereToVoteTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WhereToVoteTwoTone'); diff --git a/packages/material-ui-icons/src/WidgetsOutlined.js b/packages/material-ui-icons/src/WidgetsOutlined.js new file mode 100644 index 00000000000000..3e448a6cabcaee --- /dev/null +++ b/packages/material-ui-icons/src/WidgetsOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WidgetsOutlined'); diff --git a/packages/material-ui-icons/src/WidgetsRounded.js b/packages/material-ui-icons/src/WidgetsRounded.js new file mode 100644 index 00000000000000..9783e66dba092c --- /dev/null +++ b/packages/material-ui-icons/src/WidgetsRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WidgetsRounded'); diff --git a/packages/material-ui-icons/src/WidgetsSharp.js b/packages/material-ui-icons/src/WidgetsSharp.js new file mode 100644 index 00000000000000..98ce7689eb87b8 --- /dev/null +++ b/packages/material-ui-icons/src/WidgetsSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WidgetsSharp'); diff --git a/packages/material-ui-icons/src/WidgetsTwoTone.js b/packages/material-ui-icons/src/WidgetsTwoTone.js new file mode 100644 index 00000000000000..583473c3d41f99 --- /dev/null +++ b/packages/material-ui-icons/src/WidgetsTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WidgetsTwoTone'); diff --git a/packages/material-ui-icons/src/Wifi.js b/packages/material-ui-icons/src/Wifi.js index d6e98db8e37bda..9b1cc57e10b022 100644 --- a/packages/material-ui-icons/src/Wifi.js +++ b/packages/material-ui-icons/src/Wifi.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'Wifi'); diff --git a/packages/material-ui-icons/src/WifiLock.js b/packages/material-ui-icons/src/WifiLock.js index 71bb7fc4251f3c..39edd30e68b6d7 100644 --- a/packages/material-ui-icons/src/WifiLock.js +++ b/packages/material-ui-icons/src/WifiLock.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'WifiLock'); diff --git a/packages/material-ui-icons/src/WifiLockOutlined.js b/packages/material-ui-icons/src/WifiLockOutlined.js new file mode 100644 index 00000000000000..f5034ff5cdee6e --- /dev/null +++ b/packages/material-ui-icons/src/WifiLockOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiLockOutlined'); diff --git a/packages/material-ui-icons/src/WifiLockRounded.js b/packages/material-ui-icons/src/WifiLockRounded.js new file mode 100644 index 00000000000000..2489e7a690bf64 --- /dev/null +++ b/packages/material-ui-icons/src/WifiLockRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiLockRounded'); diff --git a/packages/material-ui-icons/src/WifiLockSharp.js b/packages/material-ui-icons/src/WifiLockSharp.js new file mode 100644 index 00000000000000..6c905ff49b16af --- /dev/null +++ b/packages/material-ui-icons/src/WifiLockSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiLockSharp'); diff --git a/packages/material-ui-icons/src/WifiLockTwoTone.js b/packages/material-ui-icons/src/WifiLockTwoTone.js new file mode 100644 index 00000000000000..55d0f568534c43 --- /dev/null +++ b/packages/material-ui-icons/src/WifiLockTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiLockTwoTone'); diff --git a/packages/material-ui-icons/src/WifiOff.js b/packages/material-ui-icons/src/WifiOff.js new file mode 100644 index 00000000000000..73596db41e5003 --- /dev/null +++ b/packages/material-ui-icons/src/WifiOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiOff'); diff --git a/packages/material-ui-icons/src/WifiOffOutlined.js b/packages/material-ui-icons/src/WifiOffOutlined.js new file mode 100644 index 00000000000000..e8a59798e6b925 --- /dev/null +++ b/packages/material-ui-icons/src/WifiOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiOffOutlined'); diff --git a/packages/material-ui-icons/src/WifiOffRounded.js b/packages/material-ui-icons/src/WifiOffRounded.js new file mode 100644 index 00000000000000..7c327f562f0889 --- /dev/null +++ b/packages/material-ui-icons/src/WifiOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiOffRounded'); diff --git a/packages/material-ui-icons/src/WifiOffSharp.js b/packages/material-ui-icons/src/WifiOffSharp.js new file mode 100644 index 00000000000000..a52a622e463046 --- /dev/null +++ b/packages/material-ui-icons/src/WifiOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiOffSharp'); diff --git a/packages/material-ui-icons/src/WifiOffTwoTone.js b/packages/material-ui-icons/src/WifiOffTwoTone.js new file mode 100644 index 00000000000000..d67475a096b2e4 --- /dev/null +++ b/packages/material-ui-icons/src/WifiOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiOffTwoTone'); diff --git a/packages/material-ui-icons/src/WifiOutlined.js b/packages/material-ui-icons/src/WifiOutlined.js new file mode 100644 index 00000000000000..f779bd826ea396 --- /dev/null +++ b/packages/material-ui-icons/src/WifiOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiOutlined'); diff --git a/packages/material-ui-icons/src/WifiRounded.js b/packages/material-ui-icons/src/WifiRounded.js new file mode 100644 index 00000000000000..f9ad644b23f474 --- /dev/null +++ b/packages/material-ui-icons/src/WifiRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiRounded'); diff --git a/packages/material-ui-icons/src/WifiSharp.js b/packages/material-ui-icons/src/WifiSharp.js new file mode 100644 index 00000000000000..2cdb1a4611ed11 --- /dev/null +++ b/packages/material-ui-icons/src/WifiSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiSharp'); diff --git a/packages/material-ui-icons/src/WifiTetheringOutlined.js b/packages/material-ui-icons/src/WifiTetheringOutlined.js new file mode 100644 index 00000000000000..603dc642d62ad0 --- /dev/null +++ b/packages/material-ui-icons/src/WifiTetheringOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiTetheringOutlined'); diff --git a/packages/material-ui-icons/src/WifiTetheringRounded.js b/packages/material-ui-icons/src/WifiTetheringRounded.js new file mode 100644 index 00000000000000..7fecd467ed64b4 --- /dev/null +++ b/packages/material-ui-icons/src/WifiTetheringRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiTetheringRounded'); diff --git a/packages/material-ui-icons/src/WifiTetheringSharp.js b/packages/material-ui-icons/src/WifiTetheringSharp.js new file mode 100644 index 00000000000000..b1caa96ba2e4b0 --- /dev/null +++ b/packages/material-ui-icons/src/WifiTetheringSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiTetheringSharp'); diff --git a/packages/material-ui-icons/src/WifiTetheringTwoTone.js b/packages/material-ui-icons/src/WifiTetheringTwoTone.js new file mode 100644 index 00000000000000..89768a3441826c --- /dev/null +++ b/packages/material-ui-icons/src/WifiTetheringTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiTetheringTwoTone'); diff --git a/packages/material-ui-icons/src/WifiTwoTone.js b/packages/material-ui-icons/src/WifiTwoTone.js new file mode 100644 index 00000000000000..c9cb16a3c61809 --- /dev/null +++ b/packages/material-ui-icons/src/WifiTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WifiTwoTone'); diff --git a/packages/material-ui-icons/src/WorkOff.js b/packages/material-ui-icons/src/WorkOff.js new file mode 100644 index 00000000000000..3fa57cefded1e7 --- /dev/null +++ b/packages/material-ui-icons/src/WorkOff.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOff'); diff --git a/packages/material-ui-icons/src/WorkOffOutlined.js b/packages/material-ui-icons/src/WorkOffOutlined.js new file mode 100644 index 00000000000000..d1be4dd164283c --- /dev/null +++ b/packages/material-ui-icons/src/WorkOffOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOffOutlined'); diff --git a/packages/material-ui-icons/src/WorkOffRounded.js b/packages/material-ui-icons/src/WorkOffRounded.js new file mode 100644 index 00000000000000..62959ff4a99e34 --- /dev/null +++ b/packages/material-ui-icons/src/WorkOffRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOffRounded'); diff --git a/packages/material-ui-icons/src/WorkOffSharp.js b/packages/material-ui-icons/src/WorkOffSharp.js new file mode 100644 index 00000000000000..173bf91a6a6213 --- /dev/null +++ b/packages/material-ui-icons/src/WorkOffSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOffSharp'); diff --git a/packages/material-ui-icons/src/WorkOffTwoTone.js b/packages/material-ui-icons/src/WorkOffTwoTone.js new file mode 100644 index 00000000000000..bdfea41db7e359 --- /dev/null +++ b/packages/material-ui-icons/src/WorkOffTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOffTwoTone'); diff --git a/packages/material-ui-icons/src/WorkOutline.js b/packages/material-ui-icons/src/WorkOutline.js new file mode 100644 index 00000000000000..00353d304d52c0 --- /dev/null +++ b/packages/material-ui-icons/src/WorkOutline.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOutline'); diff --git a/packages/material-ui-icons/src/WorkOutlineOutlined.js b/packages/material-ui-icons/src/WorkOutlineOutlined.js new file mode 100644 index 00000000000000..7dbb3255f8c5cf --- /dev/null +++ b/packages/material-ui-icons/src/WorkOutlineOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOutlineOutlined'); diff --git a/packages/material-ui-icons/src/WorkOutlineRounded.js b/packages/material-ui-icons/src/WorkOutlineRounded.js new file mode 100644 index 00000000000000..00a0e7b6cb1689 --- /dev/null +++ b/packages/material-ui-icons/src/WorkOutlineRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOutlineRounded'); diff --git a/packages/material-ui-icons/src/WorkOutlineSharp.js b/packages/material-ui-icons/src/WorkOutlineSharp.js new file mode 100644 index 00000000000000..02c266963f18e8 --- /dev/null +++ b/packages/material-ui-icons/src/WorkOutlineSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOutlineSharp'); diff --git a/packages/material-ui-icons/src/WorkOutlineTwoTone.js b/packages/material-ui-icons/src/WorkOutlineTwoTone.js new file mode 100644 index 00000000000000..01dfbea7aaabff --- /dev/null +++ b/packages/material-ui-icons/src/WorkOutlineTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOutlineTwoTone'); diff --git a/packages/material-ui-icons/src/WorkOutlined.js b/packages/material-ui-icons/src/WorkOutlined.js new file mode 100644 index 00000000000000..01b0659ec6a747 --- /dev/null +++ b/packages/material-ui-icons/src/WorkOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkOutlined'); diff --git a/packages/material-ui-icons/src/WorkRounded.js b/packages/material-ui-icons/src/WorkRounded.js new file mode 100644 index 00000000000000..2518a2bb3a5d71 --- /dev/null +++ b/packages/material-ui-icons/src/WorkRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkRounded'); diff --git a/packages/material-ui-icons/src/WorkSharp.js b/packages/material-ui-icons/src/WorkSharp.js new file mode 100644 index 00000000000000..f6ed8843931712 --- /dev/null +++ b/packages/material-ui-icons/src/WorkSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkSharp'); diff --git a/packages/material-ui-icons/src/WorkTwoTone.js b/packages/material-ui-icons/src/WorkTwoTone.js new file mode 100644 index 00000000000000..e421f100bcfd7a --- /dev/null +++ b/packages/material-ui-icons/src/WorkTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WorkTwoTone'); diff --git a/packages/material-ui-icons/src/WrapTextOutlined.js b/packages/material-ui-icons/src/WrapTextOutlined.js new file mode 100644 index 00000000000000..f90938f24ee301 --- /dev/null +++ b/packages/material-ui-icons/src/WrapTextOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WrapTextOutlined'); diff --git a/packages/material-ui-icons/src/WrapTextRounded.js b/packages/material-ui-icons/src/WrapTextRounded.js new file mode 100644 index 00000000000000..10be6b52dc4d35 --- /dev/null +++ b/packages/material-ui-icons/src/WrapTextRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WrapTextRounded'); diff --git a/packages/material-ui-icons/src/WrapTextSharp.js b/packages/material-ui-icons/src/WrapTextSharp.js new file mode 100644 index 00000000000000..f9f17378d70fbd --- /dev/null +++ b/packages/material-ui-icons/src/WrapTextSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WrapTextSharp'); diff --git a/packages/material-ui-icons/src/WrapTextTwoTone.js b/packages/material-ui-icons/src/WrapTextTwoTone.js new file mode 100644 index 00000000000000..c27d4b3ed253ec --- /dev/null +++ b/packages/material-ui-icons/src/WrapTextTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'WrapTextTwoTone'); diff --git a/packages/material-ui-icons/src/YoutubeSearchedFor.js b/packages/material-ui-icons/src/YoutubeSearchedFor.js index c8a9f4dcf24e84..05098a2f5c4fb8 100644 --- a/packages/material-ui-icons/src/YoutubeSearchedFor.js +++ b/packages/material-ui-icons/src/YoutubeSearchedFor.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'YoutubeSearchedFor'); diff --git a/packages/material-ui-icons/src/YoutubeSearchedForOutlined.js b/packages/material-ui-icons/src/YoutubeSearchedForOutlined.js new file mode 100644 index 00000000000000..6e7e68caa8c180 --- /dev/null +++ b/packages/material-ui-icons/src/YoutubeSearchedForOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'YoutubeSearchedForOutlined'); diff --git a/packages/material-ui-icons/src/YoutubeSearchedForRounded.js b/packages/material-ui-icons/src/YoutubeSearchedForRounded.js new file mode 100644 index 00000000000000..01b11d16751765 --- /dev/null +++ b/packages/material-ui-icons/src/YoutubeSearchedForRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'YoutubeSearchedForRounded'); diff --git a/packages/material-ui-icons/src/YoutubeSearchedForSharp.js b/packages/material-ui-icons/src/YoutubeSearchedForSharp.js new file mode 100644 index 00000000000000..6d63945e0f06e7 --- /dev/null +++ b/packages/material-ui-icons/src/YoutubeSearchedForSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'YoutubeSearchedForSharp'); diff --git a/packages/material-ui-icons/src/YoutubeSearchedForTwoTone.js b/packages/material-ui-icons/src/YoutubeSearchedForTwoTone.js new file mode 100644 index 00000000000000..87e7d74448fd9b --- /dev/null +++ b/packages/material-ui-icons/src/YoutubeSearchedForTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'YoutubeSearchedForTwoTone'); diff --git a/packages/material-ui-icons/src/ZoomIn.js b/packages/material-ui-icons/src/ZoomIn.js index 36bad6afa2a385..02a8b6b8841341 100644 --- a/packages/material-ui-icons/src/ZoomIn.js +++ b/packages/material-ui-icons/src/ZoomIn.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ZoomIn'); diff --git a/packages/material-ui-icons/src/ZoomInOutlined.js b/packages/material-ui-icons/src/ZoomInOutlined.js new file mode 100644 index 00000000000000..c0202cc897ca0c --- /dev/null +++ b/packages/material-ui-icons/src/ZoomInOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomInOutlined'); diff --git a/packages/material-ui-icons/src/ZoomInRounded.js b/packages/material-ui-icons/src/ZoomInRounded.js new file mode 100644 index 00000000000000..725938b4f87016 --- /dev/null +++ b/packages/material-ui-icons/src/ZoomInRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomInRounded'); diff --git a/packages/material-ui-icons/src/ZoomInSharp.js b/packages/material-ui-icons/src/ZoomInSharp.js new file mode 100644 index 00000000000000..66205c973e6903 --- /dev/null +++ b/packages/material-ui-icons/src/ZoomInSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomInSharp'); diff --git a/packages/material-ui-icons/src/ZoomInTwoTone.js b/packages/material-ui-icons/src/ZoomInTwoTone.js new file mode 100644 index 00000000000000..4c92c34b1a1761 --- /dev/null +++ b/packages/material-ui-icons/src/ZoomInTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomInTwoTone'); diff --git a/packages/material-ui-icons/src/ZoomOut.js b/packages/material-ui-icons/src/ZoomOut.js index ee9368b7ebfcbb..9ef2182e0f04d5 100644 --- a/packages/material-ui-icons/src/ZoomOut.js +++ b/packages/material-ui-icons/src/ZoomOut.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ZoomOut'); diff --git a/packages/material-ui-icons/src/ZoomOutMap.js b/packages/material-ui-icons/src/ZoomOutMap.js index f4f98264274169..6c5fad7156e1bf 100644 --- a/packages/material-ui-icons/src/ZoomOutMap.js +++ b/packages/material-ui-icons/src/ZoomOutMap.js @@ -2,5 +2,5 @@ import React from 'react'; import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( - + , 'ZoomOutMap'); diff --git a/packages/material-ui-icons/src/ZoomOutMapOutlined.js b/packages/material-ui-icons/src/ZoomOutMapOutlined.js new file mode 100644 index 00000000000000..d0c993c7dbf289 --- /dev/null +++ b/packages/material-ui-icons/src/ZoomOutMapOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomOutMapOutlined'); diff --git a/packages/material-ui-icons/src/ZoomOutMapRounded.js b/packages/material-ui-icons/src/ZoomOutMapRounded.js new file mode 100644 index 00000000000000..09c5fc06eaaa18 --- /dev/null +++ b/packages/material-ui-icons/src/ZoomOutMapRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomOutMapRounded'); diff --git a/packages/material-ui-icons/src/ZoomOutMapSharp.js b/packages/material-ui-icons/src/ZoomOutMapSharp.js new file mode 100644 index 00000000000000..864bec46523699 --- /dev/null +++ b/packages/material-ui-icons/src/ZoomOutMapSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomOutMapSharp'); diff --git a/packages/material-ui-icons/src/ZoomOutMapTwoTone.js b/packages/material-ui-icons/src/ZoomOutMapTwoTone.js new file mode 100644 index 00000000000000..0a46e2d9d06182 --- /dev/null +++ b/packages/material-ui-icons/src/ZoomOutMapTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomOutMapTwoTone'); diff --git a/packages/material-ui-icons/src/ZoomOutOutlined.js b/packages/material-ui-icons/src/ZoomOutOutlined.js new file mode 100644 index 00000000000000..33b37f47be1e65 --- /dev/null +++ b/packages/material-ui-icons/src/ZoomOutOutlined.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomOutOutlined'); diff --git a/packages/material-ui-icons/src/ZoomOutRounded.js b/packages/material-ui-icons/src/ZoomOutRounded.js new file mode 100644 index 00000000000000..aad5ab65bbdc5f --- /dev/null +++ b/packages/material-ui-icons/src/ZoomOutRounded.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomOutRounded'); diff --git a/packages/material-ui-icons/src/ZoomOutSharp.js b/packages/material-ui-icons/src/ZoomOutSharp.js new file mode 100644 index 00000000000000..98af2a51286c2a --- /dev/null +++ b/packages/material-ui-icons/src/ZoomOutSharp.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomOutSharp'); diff --git a/packages/material-ui-icons/src/ZoomOutTwoTone.js b/packages/material-ui-icons/src/ZoomOutTwoTone.js new file mode 100644 index 00000000000000..75f60f034dbffe --- /dev/null +++ b/packages/material-ui-icons/src/ZoomOutTwoTone.js @@ -0,0 +1,6 @@ +import React from 'react'; +import createSvgIcon from './utils/createSvgIcon'; + +export default createSvgIcon( + +, 'ZoomOutTwoTone'); diff --git a/packages/material-ui-icons/src/index.js b/packages/material-ui-icons/src/index.js index 973270cf22ca8d..e69de29bb2d1d6 100644 --- a/packages/material-ui-icons/src/index.js +++ b/packages/material-ui-icons/src/index.js @@ -1,959 +0,0 @@ -export { default as AccessAlarm } from './AccessAlarm'; -export { default as AccessAlarms } from './AccessAlarms'; -export { default as Accessibility } from './Accessibility'; -export { default as Accessible } from './Accessible'; -export { default as AccessTime } from './AccessTime'; -export { default as AccountBalance } from './AccountBalance'; -export { default as AccountBalanceWallet } from './AccountBalanceWallet'; -export { default as AccountBox } from './AccountBox'; -export { default as AccountCircle } from './AccountCircle'; -export { default as AcUnit } from './AcUnit'; -export { default as Adb } from './Adb'; -export { default as Add } from './Add'; -export { default as AddAlarm } from './AddAlarm'; -export { default as AddAlert } from './AddAlert'; -export { default as AddAPhoto } from './AddAPhoto'; -export { default as AddBox } from './AddBox'; -export { default as AddCircle } from './AddCircle'; -export { default as AddCircleOutline } from './AddCircleOutline'; -export { default as AddLocation } from './AddLocation'; -export { default as AddShoppingCart } from './AddShoppingCart'; -export { default as AddToPhotos } from './AddToPhotos'; -export { default as AddToQueue } from './AddToQueue'; -export { default as Adjust } from './Adjust'; -export { default as AirlineSeatFlat } from './AirlineSeatFlat'; -export { default as AirlineSeatFlatAngled } from './AirlineSeatFlatAngled'; -export { default as AirlineSeatIndividualSuite } from './AirlineSeatIndividualSuite'; -export { default as AirlineSeatLegroomExtra } from './AirlineSeatLegroomExtra'; -export { default as AirlineSeatLegroomNormal } from './AirlineSeatLegroomNormal'; -export { default as AirlineSeatLegroomReduced } from './AirlineSeatLegroomReduced'; -export { default as AirlineSeatReclineExtra } from './AirlineSeatReclineExtra'; -export { default as AirlineSeatReclineNormal } from './AirlineSeatReclineNormal'; -export { default as AirplanemodeActive } from './AirplanemodeActive'; -export { default as AirplanemodeInactive } from './AirplanemodeInactive'; -export { default as Airplay } from './Airplay'; -export { default as AirportShuttle } from './AirportShuttle'; -export { default as Alarm } from './Alarm'; -export { default as AlarmAdd } from './AlarmAdd'; -export { default as AlarmOff } from './AlarmOff'; -export { default as AlarmOn } from './AlarmOn'; -export { default as Album } from './Album'; -export { default as AllInclusive } from './AllInclusive'; -export { default as AllOut } from './AllOut'; -export { default as Android } from './Android'; -export { default as Announcement } from './Announcement'; -export { default as Apps } from './Apps'; -export { default as Archive } from './Archive'; -export { default as ArrowBack } from './ArrowBack'; -export { default as ArrowDownward } from './ArrowDownward'; -export { default as ArrowDropDown } from './ArrowDropDown'; -export { default as ArrowDropDownCircle } from './ArrowDropDownCircle'; -export { default as ArrowDropUp } from './ArrowDropUp'; -export { default as ArrowForward } from './ArrowForward'; -export { default as ArrowUpward } from './ArrowUpward'; -export { default as ArtTrack } from './ArtTrack'; -export { default as AspectRatio } from './AspectRatio'; -export { default as Assessment } from './Assessment'; -export { default as Assignment } from './Assignment'; -export { default as AssignmentInd } from './AssignmentInd'; -export { default as AssignmentLate } from './AssignmentLate'; -export { default as AssignmentReturn } from './AssignmentReturn'; -export { default as AssignmentReturned } from './AssignmentReturned'; -export { default as AssignmentTurnedIn } from './AssignmentTurnedIn'; -export { default as Assistant } from './Assistant'; -export { default as AssistantPhoto } from './AssistantPhoto'; -export { default as AttachFile } from './AttachFile'; -export { default as Attachment } from './Attachment'; -export { default as AttachMoney } from './AttachMoney'; -export { default as Audiotrack } from './Audiotrack'; -export { default as Autorenew } from './Autorenew'; -export { default as AvTimer } from './AvTimer'; -export { default as Backspace } from './Backspace'; -export { default as Backup } from './Backup'; -export { default as Battery20 } from './Battery20'; -export { default as Battery30 } from './Battery30'; -export { default as Battery50 } from './Battery50'; -export { default as Battery60 } from './Battery60'; -export { default as Battery80 } from './Battery80'; -export { default as Battery90 } from './Battery90'; -export { default as BatteryAlert } from './BatteryAlert'; -export { default as BatteryCharging20 } from './BatteryCharging20'; -export { default as BatteryCharging30 } from './BatteryCharging30'; -export { default as BatteryCharging50 } from './BatteryCharging50'; -export { default as BatteryCharging60 } from './BatteryCharging60'; -export { default as BatteryCharging80 } from './BatteryCharging80'; -export { default as BatteryCharging90 } from './BatteryCharging90'; -export { default as BatteryChargingFull } from './BatteryChargingFull'; -export { default as BatteryFull } from './BatteryFull'; -export { default as BatteryStd } from './BatteryStd'; -export { default as BatteryUnknown } from './BatteryUnknown'; -export { default as BeachAccess } from './BeachAccess'; -export { default as Beenhere } from './Beenhere'; -export { default as Block } from './Block'; -export { default as Bluetooth } from './Bluetooth'; -export { default as BluetoothAudio } from './BluetoothAudio'; -export { default as BluetoothConnected } from './BluetoothConnected'; -export { default as BluetoothDisabled } from './BluetoothDisabled'; -export { default as BluetoothSearching } from './BluetoothSearching'; -export { default as BlurCircular } from './BlurCircular'; -export { default as BlurLinear } from './BlurLinear'; -export { default as BlurOff } from './BlurOff'; -export { default as BlurOn } from './BlurOn'; -export { default as Book } from './Book'; -export { default as Bookmark } from './Bookmark'; -export { default as BookmarkBorder } from './BookmarkBorder'; -export { default as BorderAll } from './BorderAll'; -export { default as BorderBottom } from './BorderBottom'; -export { default as BorderClear } from './BorderClear'; -export { default as BorderColor } from './BorderColor'; -export { default as BorderHorizontal } from './BorderHorizontal'; -export { default as BorderInner } from './BorderInner'; -export { default as BorderLeft } from './BorderLeft'; -export { default as BorderOuter } from './BorderOuter'; -export { default as BorderRight } from './BorderRight'; -export { default as BorderStyle } from './BorderStyle'; -export { default as BorderTop } from './BorderTop'; -export { default as BorderVertical } from './BorderVertical'; -export { default as BrandingWatermark } from './BrandingWatermark'; -export { default as Brightness1 } from './Brightness1'; -export { default as Brightness2 } from './Brightness2'; -export { default as Brightness3 } from './Brightness3'; -export { default as Brightness4 } from './Brightness4'; -export { default as Brightness5 } from './Brightness5'; -export { default as Brightness6 } from './Brightness6'; -export { default as Brightness7 } from './Brightness7'; -export { default as BrightnessAuto } from './BrightnessAuto'; -export { default as BrightnessHigh } from './BrightnessHigh'; -export { default as BrightnessLow } from './BrightnessLow'; -export { default as BrightnessMedium } from './BrightnessMedium'; -export { default as BrokenImage } from './BrokenImage'; -export { default as Brush } from './Brush'; -export { default as BubbleChart } from './BubbleChart'; -export { default as BugReport } from './BugReport'; -export { default as Build } from './Build'; -export { default as BurstMode } from './BurstMode'; -export { default as Business } from './Business'; -export { default as BusinessCenter } from './BusinessCenter'; -export { default as Cached } from './Cached'; -export { default as Cake } from './Cake'; -export { default as Call } from './Call'; -export { default as CallEnd } from './CallEnd'; -export { default as CallMade } from './CallMade'; -export { default as CallMerge } from './CallMerge'; -export { default as CallMissed } from './CallMissed'; -export { default as CallMissedOutgoing } from './CallMissedOutgoing'; -export { default as CallReceived } from './CallReceived'; -export { default as CallSplit } from './CallSplit'; -export { default as CallToAction } from './CallToAction'; -export { default as Camera } from './Camera'; -export { default as CameraAlt } from './CameraAlt'; -export { default as CameraEnhance } from './CameraEnhance'; -export { default as CameraFront } from './CameraFront'; -export { default as CameraRear } from './CameraRear'; -export { default as CameraRoll } from './CameraRoll'; -export { default as Cancel } from './Cancel'; -export { default as CardGiftcard } from './CardGiftcard'; -export { default as CardMembership } from './CardMembership'; -export { default as CardTravel } from './CardTravel'; -export { default as Casino } from './Casino'; -export { default as Cast } from './Cast'; -export { default as CastConnected } from './CastConnected'; -export { default as CenterFocusStrong } from './CenterFocusStrong'; -export { default as CenterFocusWeak } from './CenterFocusWeak'; -export { default as ChangeHistory } from './ChangeHistory'; -export { default as Chat } from './Chat'; -export { default as ChatBubble } from './ChatBubble'; -export { default as ChatBubbleOutline } from './ChatBubbleOutline'; -export { default as Check } from './Check'; -export { default as CheckBox } from './CheckBox'; -export { default as CheckBoxOutlineBlank } from './CheckBoxOutlineBlank'; -export { default as CheckCircle } from './CheckCircle'; -export { default as ChevronLeft } from './ChevronLeft'; -export { default as ChevronRight } from './ChevronRight'; -export { default as ChildCare } from './ChildCare'; -export { default as ChildFriendly } from './ChildFriendly'; -export { default as ChromeReaderMode } from './ChromeReaderMode'; -export { default as Class } from './Class'; -export { default as Clear } from './Clear'; -export { default as ClearAll } from './ClearAll'; -export { default as Close } from './Close'; -export { default as ClosedCaption } from './ClosedCaption'; -export { default as Cloud } from './Cloud'; -export { default as CloudCircle } from './CloudCircle'; -export { default as CloudDone } from './CloudDone'; -export { default as CloudDownload } from './CloudDownload'; -export { default as CloudOff } from './CloudOff'; -export { default as CloudQueue } from './CloudQueue'; -export { default as CloudUpload } from './CloudUpload'; -export { default as Code } from './Code'; -export { default as Collections } from './Collections'; -export { default as CollectionsBookmark } from './CollectionsBookmark'; -export { default as Colorize } from './Colorize'; -export { default as ColorLens } from './ColorLens'; -export { default as Comment } from './Comment'; -export { default as Compare } from './Compare'; -export { default as CompareArrows } from './CompareArrows'; -export { default as Computer } from './Computer'; -export { default as ConfirmationNumber } from './ConfirmationNumber'; -export { default as ContactMail } from './ContactMail'; -export { default as ContactPhone } from './ContactPhone'; -export { default as Contacts } from './Contacts'; -export { default as ContentCopy } from './ContentCopy'; -export { default as ContentCut } from './ContentCut'; -export { default as ContentPaste } from './ContentPaste'; -export { default as ControlPoint } from './ControlPoint'; -export { default as ControlPointDuplicate } from './ControlPointDuplicate'; -export { default as Copyright } from './Copyright'; -export { default as Create } from './Create'; -export { default as CreateNewFolder } from './CreateNewFolder'; -export { default as CreditCard } from './CreditCard'; -export { default as Crop } from './Crop'; -export { default as Crop169 } from './Crop169'; -export { default as Crop32 } from './Crop32'; -export { default as Crop54 } from './Crop54'; -export { default as Crop75 } from './Crop75'; -export { default as CropDin } from './CropDin'; -export { default as CropFree } from './CropFree'; -export { default as CropLandscape } from './CropLandscape'; -export { default as CropOriginal } from './CropOriginal'; -export { default as CropPortrait } from './CropPortrait'; -export { default as CropRotate } from './CropRotate'; -export { default as CropSquare } from './CropSquare'; -export { default as Dashboard } from './Dashboard'; -export { default as DataUsage } from './DataUsage'; -export { default as DateRange } from './DateRange'; -export { default as Dehaze } from './Dehaze'; -export { default as Delete } from './Delete'; -export { default as DeleteForever } from './DeleteForever'; -export { default as DeleteSweep } from './DeleteSweep'; -export { default as Description } from './Description'; -export { default as DesktopMac } from './DesktopMac'; -export { default as DesktopWindows } from './DesktopWindows'; -export { default as Details } from './Details'; -export { default as DeveloperBoard } from './DeveloperBoard'; -export { default as DeveloperMode } from './DeveloperMode'; -export { default as DeviceHub } from './DeviceHub'; -export { default as Devices } from './Devices'; -export { default as DevicesOther } from './DevicesOther'; -export { default as DialerSip } from './DialerSip'; -export { default as Dialpad } from './Dialpad'; -export { default as Directions } from './Directions'; -export { default as DirectionsBike } from './DirectionsBike'; -export { default as DirectionsBoat } from './DirectionsBoat'; -export { default as DirectionsBus } from './DirectionsBus'; -export { default as DirectionsCar } from './DirectionsCar'; -export { default as DirectionsRailway } from './DirectionsRailway'; -export { default as DirectionsRun } from './DirectionsRun'; -export { default as DirectionsSubway } from './DirectionsSubway'; -export { default as DirectionsTransit } from './DirectionsTransit'; -export { default as DirectionsWalk } from './DirectionsWalk'; -export { default as DiscFull } from './DiscFull'; -export { default as Dns } from './Dns'; -export { default as Dock } from './Dock'; -export { default as Domain } from './Domain'; -export { default as Done } from './Done'; -export { default as DoneAll } from './DoneAll'; -export { default as DoNotDisturb } from './DoNotDisturb'; -export { default as DoNotDisturbAlt } from './DoNotDisturbAlt'; -export { default as DoNotDisturbOff } from './DoNotDisturbOff'; -export { default as DoNotDisturbOn } from './DoNotDisturbOn'; -export { default as DonutLarge } from './DonutLarge'; -export { default as DonutSmall } from './DonutSmall'; -export { default as Drafts } from './Drafts'; -export { default as DragHandle } from './DragHandle'; -export { default as DriveEta } from './DriveEta'; -export { default as Dvr } from './Dvr'; -export { default as Edit } from './Edit'; -export { default as EditLocation } from './EditLocation'; -export { default as Eject } from './Eject'; -export { default as Email } from './Email'; -export { default as EnhancedEncryption } from './EnhancedEncryption'; -export { default as Equalizer } from './Equalizer'; -export { default as Error } from './Error'; -export { default as ErrorOutline } from './ErrorOutline'; -export { default as EuroSymbol } from './EuroSymbol'; -export { default as Event } from './Event'; -export { default as EventAvailable } from './EventAvailable'; -export { default as EventBusy } from './EventBusy'; -export { default as EventNote } from './EventNote'; -export { default as EventSeat } from './EventSeat'; -export { default as EvStation } from './EvStation'; -export { default as ExitToApp } from './ExitToApp'; -export { default as ExpandLess } from './ExpandLess'; -export { default as ExpandMore } from './ExpandMore'; -export { default as Explicit } from './Explicit'; -export { default as Explore } from './Explore'; -export { default as Exposure } from './Exposure'; -export { default as ExposureNeg1 } from './ExposureNeg1'; -export { default as ExposureNeg2 } from './ExposureNeg2'; -export { default as ExposurePlus1 } from './ExposurePlus1'; -export { default as ExposurePlus2 } from './ExposurePlus2'; -export { default as ExposureZero } from './ExposureZero'; -export { default as Extension } from './Extension'; -export { default as Face } from './Face'; -export { default as FastForward } from './FastForward'; -export { default as FastRewind } from './FastRewind'; -export { default as Favorite } from './Favorite'; -export { default as FavoriteBorder } from './FavoriteBorder'; -export { default as FeaturedPlayList } from './FeaturedPlayList'; -export { default as FeaturedVideo } from './FeaturedVideo'; -export { default as Feedback } from './Feedback'; -export { default as FiberDvr } from './FiberDvr'; -export { default as FiberManualRecord } from './FiberManualRecord'; -export { default as FiberNew } from './FiberNew'; -export { default as FiberPin } from './FiberPin'; -export { default as FiberSmartRecord } from './FiberSmartRecord'; -export { default as FileDownload } from './FileDownload'; -export { default as FileUpload } from './FileUpload'; -export { default as Filter } from './Filter'; -export { default as Filter1 } from './Filter1'; -export { default as Filter2 } from './Filter2'; -export { default as Filter3 } from './Filter3'; -export { default as Filter4 } from './Filter4'; -export { default as Filter5 } from './Filter5'; -export { default as Filter6 } from './Filter6'; -export { default as Filter7 } from './Filter7'; -export { default as Filter8 } from './Filter8'; -export { default as Filter9 } from './Filter9'; -export { default as Filter9Plus } from './Filter9Plus'; -export { default as FilterBAndW } from './FilterBAndW'; -export { default as FilterCenterFocus } from './FilterCenterFocus'; -export { default as FilterDrama } from './FilterDrama'; -export { default as FilterFrames } from './FilterFrames'; -export { default as FilterHdr } from './FilterHdr'; -export { default as FilterList } from './FilterList'; -export { default as FilterNone } from './FilterNone'; -export { default as FilterTiltShift } from './FilterTiltShift'; -export { default as FilterVintage } from './FilterVintage'; -export { default as FindInPage } from './FindInPage'; -export { default as FindReplace } from './FindReplace'; -export { default as Fingerprint } from './Fingerprint'; -export { default as FirstPage } from './FirstPage'; -export { default as FitnessCenter } from './FitnessCenter'; -export { default as Flag } from './Flag'; -export { default as Flare } from './Flare'; -export { default as FlashAuto } from './FlashAuto'; -export { default as FlashOff } from './FlashOff'; -export { default as FlashOn } from './FlashOn'; -export { default as Flight } from './Flight'; -export { default as FlightLand } from './FlightLand'; -export { default as FlightTakeoff } from './FlightTakeoff'; -export { default as Flip } from './Flip'; -export { default as FlipToBack } from './FlipToBack'; -export { default as FlipToFront } from './FlipToFront'; -export { default as Folder } from './Folder'; -export { default as FolderOpen } from './FolderOpen'; -export { default as FolderShared } from './FolderShared'; -export { default as FolderSpecial } from './FolderSpecial'; -export { default as FontDownload } from './FontDownload'; -export { default as FormatAlignCenter } from './FormatAlignCenter'; -export { default as FormatAlignJustify } from './FormatAlignJustify'; -export { default as FormatAlignLeft } from './FormatAlignLeft'; -export { default as FormatAlignRight } from './FormatAlignRight'; -export { default as FormatBold } from './FormatBold'; -export { default as FormatClear } from './FormatClear'; -export { default as FormatColorFill } from './FormatColorFill'; -export { default as FormatColorReset } from './FormatColorReset'; -export { default as FormatColorText } from './FormatColorText'; -export { default as FormatIndentDecrease } from './FormatIndentDecrease'; -export { default as FormatIndentIncrease } from './FormatIndentIncrease'; -export { default as FormatItalic } from './FormatItalic'; -export { default as FormatLineSpacing } from './FormatLineSpacing'; -export { default as FormatListBulleted } from './FormatListBulleted'; -export { default as FormatListNumbered } from './FormatListNumbered'; -export { default as FormatPaint } from './FormatPaint'; -export { default as FormatQuote } from './FormatQuote'; -export { default as FormatShapes } from './FormatShapes'; -export { default as FormatSize } from './FormatSize'; -export { default as FormatStrikethrough } from './FormatStrikethrough'; -export { default as FormatTextdirectionLToR } from './FormatTextdirectionLToR'; -export { default as FormatTextdirectionRToL } from './FormatTextdirectionRToL'; -export { default as FormatUnderlined } from './FormatUnderlined'; -export { default as Forum } from './Forum'; -export { default as Forward } from './Forward'; -export { default as Forward10 } from './Forward10'; -export { default as Forward30 } from './Forward30'; -export { default as Forward5 } from './Forward5'; -export { default as FreeBreakfast } from './FreeBreakfast'; -export { default as Fullscreen } from './Fullscreen'; -export { default as FullscreenExit } from './FullscreenExit'; -export { default as Functions } from './Functions'; -export { default as Gamepad } from './Gamepad'; -export { default as Games } from './Games'; -export { default as Gavel } from './Gavel'; -export { default as Gesture } from './Gesture'; -export { default as GetApp } from './GetApp'; -export { default as Gif } from './Gif'; -export { default as GolfCourse } from './GolfCourse'; -export { default as GpsFixed } from './GpsFixed'; -export { default as GpsNotFixed } from './GpsNotFixed'; -export { default as GpsOff } from './GpsOff'; -export { default as Grade } from './Grade'; -export { default as Gradient } from './Gradient'; -export { default as Grain } from './Grain'; -export { default as GraphicEq } from './GraphicEq'; -export { default as GridOff } from './GridOff'; -export { default as GridOn } from './GridOn'; -export { default as Group } from './Group'; -export { default as GroupAdd } from './GroupAdd'; -export { default as GroupWork } from './GroupWork'; -export { default as GTranslate } from './GTranslate'; -export { default as Hd } from './Hd'; -export { default as HdrOff } from './HdrOff'; -export { default as HdrOn } from './HdrOn'; -export { default as HdrStrong } from './HdrStrong'; -export { default as HdrWeak } from './HdrWeak'; -export { default as Headset } from './Headset'; -export { default as HeadsetMic } from './HeadsetMic'; -export { default as Healing } from './Healing'; -export { default as Hearing } from './Hearing'; -export { default as Help } from './Help'; -export { default as HelpOutline } from './HelpOutline'; -export { default as Highlight } from './Highlight'; -export { default as HighlightOff } from './HighlightOff'; -export { default as HighQuality } from './HighQuality'; -export { default as History } from './History'; -export { default as Home } from './Home'; -export { default as Hotel } from './Hotel'; -export { default as HotTub } from './HotTub'; -export { default as HourglassEmpty } from './HourglassEmpty'; -export { default as HourglassFull } from './HourglassFull'; -export { default as Http } from './Http'; -export { default as Https } from './Https'; -export { default as Image } from './Image'; -export { default as ImageAspectRatio } from './ImageAspectRatio'; -export { default as ImportantDevices } from './ImportantDevices'; -export { default as ImportContacts } from './ImportContacts'; -export { default as ImportExport } from './ImportExport'; -export { default as Inbox } from './Inbox'; -export { default as IndeterminateCheckBox } from './IndeterminateCheckBox'; -export { default as Info } from './Info'; -export { default as InfoOutline } from './InfoOutline'; -export { default as Input } from './Input'; -export { default as InsertChart } from './InsertChart'; -export { default as InsertComment } from './InsertComment'; -export { default as InsertDriveFile } from './InsertDriveFile'; -export { default as InsertEmoticon } from './InsertEmoticon'; -export { default as InsertInvitation } from './InsertInvitation'; -export { default as InsertLink } from './InsertLink'; -export { default as InsertPhoto } from './InsertPhoto'; -export { default as InvertColors } from './InvertColors'; -export { default as InvertColorsOff } from './InvertColorsOff'; -export { default as Iso } from './Iso'; -export { default as Keyboard } from './Keyboard'; -export { default as KeyboardArrowDown } from './KeyboardArrowDown'; -export { default as KeyboardArrowLeft } from './KeyboardArrowLeft'; -export { default as KeyboardArrowRight } from './KeyboardArrowRight'; -export { default as KeyboardArrowUp } from './KeyboardArrowUp'; -export { default as KeyboardBackspace } from './KeyboardBackspace'; -export { default as KeyboardCapslock } from './KeyboardCapslock'; -export { default as KeyboardHide } from './KeyboardHide'; -export { default as KeyboardReturn } from './KeyboardReturn'; -export { default as KeyboardTab } from './KeyboardTab'; -export { default as KeyboardVoice } from './KeyboardVoice'; -export { default as Kitchen } from './Kitchen'; -export { default as Label } from './Label'; -export { default as LabelOutline } from './LabelOutline'; -export { default as Landscape } from './Landscape'; -export { default as Language } from './Language'; -export { default as Laptop } from './Laptop'; -export { default as LaptopChromebook } from './LaptopChromebook'; -export { default as LaptopMac } from './LaptopMac'; -export { default as LaptopWindows } from './LaptopWindows'; -export { default as LastPage } from './LastPage'; -export { default as Launch } from './Launch'; -export { default as Layers } from './Layers'; -export { default as LayersClear } from './LayersClear'; -export { default as LeakAdd } from './LeakAdd'; -export { default as LeakRemove } from './LeakRemove'; -export { default as Lens } from './Lens'; -export { default as LibraryAdd } from './LibraryAdd'; -export { default as LibraryBooks } from './LibraryBooks'; -export { default as LibraryMusic } from './LibraryMusic'; -export { default as LightbulbOutline } from './LightbulbOutline'; -export { default as LinearScale } from './LinearScale'; -export { default as LineStyle } from './LineStyle'; -export { default as LineWeight } from './LineWeight'; -export { default as Link } from './Link'; -export { default as LinkedCamera } from './LinkedCamera'; -export { default as List } from './List'; -export { default as LiveHelp } from './LiveHelp'; -export { default as LiveTv } from './LiveTv'; -export { default as LocalActivity } from './LocalActivity'; -export { default as LocalAirport } from './LocalAirport'; -export { default as LocalAtm } from './LocalAtm'; -export { default as LocalBar } from './LocalBar'; -export { default as LocalCafe } from './LocalCafe'; -export { default as LocalCarWash } from './LocalCarWash'; -export { default as LocalConvenienceStore } from './LocalConvenienceStore'; -export { default as LocalDining } from './LocalDining'; -export { default as LocalDrink } from './LocalDrink'; -export { default as LocalFlorist } from './LocalFlorist'; -export { default as LocalGasStation } from './LocalGasStation'; -export { default as LocalGroceryStore } from './LocalGroceryStore'; -export { default as LocalHospital } from './LocalHospital'; -export { default as LocalHotel } from './LocalHotel'; -export { default as LocalLaundryService } from './LocalLaundryService'; -export { default as LocalLibrary } from './LocalLibrary'; -export { default as LocalMall } from './LocalMall'; -export { default as LocalMovies } from './LocalMovies'; -export { default as LocalOffer } from './LocalOffer'; -export { default as LocalParking } from './LocalParking'; -export { default as LocalPharmacy } from './LocalPharmacy'; -export { default as LocalPhone } from './LocalPhone'; -export { default as LocalPizza } from './LocalPizza'; -export { default as LocalPlay } from './LocalPlay'; -export { default as LocalPostOffice } from './LocalPostOffice'; -export { default as LocalPrintshop } from './LocalPrintshop'; -export { default as LocalSee } from './LocalSee'; -export { default as LocalShipping } from './LocalShipping'; -export { default as LocalTaxi } from './LocalTaxi'; -export { default as LocationCity } from './LocationCity'; -export { default as LocationDisabled } from './LocationDisabled'; -export { default as LocationOff } from './LocationOff'; -export { default as LocationOn } from './LocationOn'; -export { default as LocationSearching } from './LocationSearching'; -export { default as Lock } from './Lock'; -export { default as LockOpen } from './LockOpen'; -export { default as LockOutline } from './LockOutline'; -export { default as Looks } from './Looks'; -export { default as Looks3 } from './Looks3'; -export { default as Looks4 } from './Looks4'; -export { default as Looks5 } from './Looks5'; -export { default as Looks6 } from './Looks6'; -export { default as LooksOne } from './LooksOne'; -export { default as LooksTwo } from './LooksTwo'; -export { default as Loop } from './Loop'; -export { default as Loupe } from './Loupe'; -export { default as LowPriority } from './LowPriority'; -export { default as Loyalty } from './Loyalty'; -export { default as Mail } from './Mail'; -export { default as MailOutline } from './MailOutline'; -export { default as Map } from './Map'; -export { default as Markunread } from './Markunread'; -export { default as MarkunreadMailbox } from './MarkunreadMailbox'; -export { default as Memory } from './Memory'; -export { default as Menu } from './Menu'; -export { default as MergeType } from './MergeType'; -export { default as Message } from './Message'; -export { default as Mic } from './Mic'; -export { default as MicNone } from './MicNone'; -export { default as MicOff } from './MicOff'; -export { default as Mms } from './Mms'; -export { default as ModeComment } from './ModeComment'; -export { default as ModeEdit } from './ModeEdit'; -export { default as MonetizationOn } from './MonetizationOn'; -export { default as MoneyOff } from './MoneyOff'; -export { default as MonochromePhotos } from './MonochromePhotos'; -export { default as Mood } from './Mood'; -export { default as MoodBad } from './MoodBad'; -export { default as More } from './More'; -export { default as MoreHoriz } from './MoreHoriz'; -export { default as MoreVert } from './MoreVert'; -export { default as Motorcycle } from './Motorcycle'; -export { default as Mouse } from './Mouse'; -export { default as MoveToInbox } from './MoveToInbox'; -export { default as Movie } from './Movie'; -export { default as MovieCreation } from './MovieCreation'; -export { default as MovieFilter } from './MovieFilter'; -export { default as MultilineChart } from './MultilineChart'; -export { default as MusicNote } from './MusicNote'; -export { default as MusicVideo } from './MusicVideo'; -export { default as MyLocation } from './MyLocation'; -export { default as Nature } from './Nature'; -export { default as NaturePeople } from './NaturePeople'; -export { default as NavigateBefore } from './NavigateBefore'; -export { default as NavigateNext } from './NavigateNext'; -export { default as Navigation } from './Navigation'; -export { default as NearMe } from './NearMe'; -export { default as NetworkCell } from './NetworkCell'; -export { default as NetworkCheck } from './NetworkCheck'; -export { default as NetworkLocked } from './NetworkLocked'; -export { default as NetworkWifi } from './NetworkWifi'; -export { default as NewReleases } from './NewReleases'; -export { default as NextWeek } from './NextWeek'; -export { default as Nfc } from './Nfc'; -export { default as NoEncryption } from './NoEncryption'; -export { default as NoSim } from './NoSim'; -export { default as Note } from './Note'; -export { default as NoteAdd } from './NoteAdd'; -export { default as Notifications } from './Notifications'; -export { default as NotificationsActive } from './NotificationsActive'; -export { default as NotificationsNone } from './NotificationsNone'; -export { default as NotificationsOff } from './NotificationsOff'; -export { default as NotificationsPaused } from './NotificationsPaused'; -export { default as NotInterested } from './NotInterested'; -export { default as OfflinePin } from './OfflinePin'; -export { default as OndemandVideo } from './OndemandVideo'; -export { default as Opacity } from './Opacity'; -export { default as OpenInBrowser } from './OpenInBrowser'; -export { default as OpenInNew } from './OpenInNew'; -export { default as OpenWith } from './OpenWith'; -export { default as Pages } from './Pages'; -export { default as Pageview } from './Pageview'; -export { default as Palette } from './Palette'; -export { default as Panorama } from './Panorama'; -export { default as PanoramaFishEye } from './PanoramaFishEye'; -export { default as PanoramaHorizontal } from './PanoramaHorizontal'; -export { default as PanoramaVertical } from './PanoramaVertical'; -export { default as PanoramaWideAngle } from './PanoramaWideAngle'; -export { default as PanTool } from './PanTool'; -export { default as PartyMode } from './PartyMode'; -export { default as Pause } from './Pause'; -export { default as PauseCircleFilled } from './PauseCircleFilled'; -export { default as PauseCircleOutline } from './PauseCircleOutline'; -export { default as Payment } from './Payment'; -export { default as People } from './People'; -export { default as PeopleOutline } from './PeopleOutline'; -export { default as PermCameraMic } from './PermCameraMic'; -export { default as PermContactCalendar } from './PermContactCalendar'; -export { default as PermDataSetting } from './PermDataSetting'; -export { default as PermDeviceInformation } from './PermDeviceInformation'; -export { default as PermIdentity } from './PermIdentity'; -export { default as PermMedia } from './PermMedia'; -export { default as PermPhoneMsg } from './PermPhoneMsg'; -export { default as PermScanWifi } from './PermScanWifi'; -export { default as Person } from './Person'; -export { default as PersonAdd } from './PersonAdd'; -export { default as PersonalVideo } from './PersonalVideo'; -export { default as PersonOutline } from './PersonOutline'; -export { default as PersonPin } from './PersonPin'; -export { default as PersonPinCircle } from './PersonPinCircle'; -export { default as Pets } from './Pets'; -export { default as Phone } from './Phone'; -export { default as PhoneAndroid } from './PhoneAndroid'; -export { default as PhoneBluetoothSpeaker } from './PhoneBluetoothSpeaker'; -export { default as PhoneForwarded } from './PhoneForwarded'; -export { default as PhoneInTalk } from './PhoneInTalk'; -export { default as PhoneIphone } from './PhoneIphone'; -export { default as Phonelink } from './Phonelink'; -export { default as PhonelinkErase } from './PhonelinkErase'; -export { default as PhonelinkLock } from './PhonelinkLock'; -export { default as PhonelinkOff } from './PhonelinkOff'; -export { default as PhonelinkRing } from './PhonelinkRing'; -export { default as PhonelinkSetup } from './PhonelinkSetup'; -export { default as PhoneLocked } from './PhoneLocked'; -export { default as PhoneMissed } from './PhoneMissed'; -export { default as PhonePaused } from './PhonePaused'; -export { default as Photo } from './Photo'; -export { default as PhotoAlbum } from './PhotoAlbum'; -export { default as PhotoCamera } from './PhotoCamera'; -export { default as PhotoFilter } from './PhotoFilter'; -export { default as PhotoLibrary } from './PhotoLibrary'; -export { default as PhotoSizeSelectActual } from './PhotoSizeSelectActual'; -export { default as PhotoSizeSelectLarge } from './PhotoSizeSelectLarge'; -export { default as PhotoSizeSelectSmall } from './PhotoSizeSelectSmall'; -export { default as PictureAsPdf } from './PictureAsPdf'; -export { default as PictureInPicture } from './PictureInPicture'; -export { default as PictureInPictureAlt } from './PictureInPictureAlt'; -export { default as PieChart } from './PieChart'; -export { default as PieChartOutlined } from './PieChartOutlined'; -export { default as PinDrop } from './PinDrop'; -export { default as Place } from './Place'; -export { default as PlayArrow } from './PlayArrow'; -export { default as PlayCircleFilled } from './PlayCircleFilled'; -export { default as PlayCircleOutline } from './PlayCircleOutline'; -export { default as PlayForWork } from './PlayForWork'; -export { default as PlaylistAdd } from './PlaylistAdd'; -export { default as PlaylistAddCheck } from './PlaylistAddCheck'; -export { default as PlaylistPlay } from './PlaylistPlay'; -export { default as PlusOne } from './PlusOne'; -export { default as Poll } from './Poll'; -export { default as Polymer } from './Polymer'; -export { default as Pool } from './Pool'; -export { default as PortableWifiOff } from './PortableWifiOff'; -export { default as Portrait } from './Portrait'; -export { default as Power } from './Power'; -export { default as PowerInput } from './PowerInput'; -export { default as PowerSettingsNew } from './PowerSettingsNew'; -export { default as PregnantWoman } from './PregnantWoman'; -export { default as PresentToAll } from './PresentToAll'; -export { default as Print } from './Print'; -export { default as PriorityHigh } from './PriorityHigh'; -export { default as Public } from './Public'; -export { default as Publish } from './Publish'; -export { default as QueryBuilder } from './QueryBuilder'; -export { default as QuestionAnswer } from './QuestionAnswer'; -export { default as Queue } from './Queue'; -export { default as QueueMusic } from './QueueMusic'; -export { default as QueuePlayNext } from './QueuePlayNext'; -export { default as Radio } from './Radio'; -export { default as RadioButtonChecked } from './RadioButtonChecked'; -export { default as RadioButtonUnchecked } from './RadioButtonUnchecked'; -export { default as RateReview } from './RateReview'; -export { default as Receipt } from './Receipt'; -export { default as RecentActors } from './RecentActors'; -export { default as RecordVoiceOver } from './RecordVoiceOver'; -export { default as Redeem } from './Redeem'; -export { default as Redo } from './Redo'; -export { default as Refresh } from './Refresh'; -export { default as Remove } from './Remove'; -export { default as RemoveCircle } from './RemoveCircle'; -export { default as RemoveCircleOutline } from './RemoveCircleOutline'; -export { default as RemoveFromQueue } from './RemoveFromQueue'; -export { default as RemoveRedEye } from './RemoveRedEye'; -export { default as RemoveShoppingCart } from './RemoveShoppingCart'; -export { default as Reorder } from './Reorder'; -export { default as Repeat } from './Repeat'; -export { default as RepeatOne } from './RepeatOne'; -export { default as Replay } from './Replay'; -export { default as Replay10 } from './Replay10'; -export { default as Replay30 } from './Replay30'; -export { default as Replay5 } from './Replay5'; -export { default as Reply } from './Reply'; -export { default as ReplyAll } from './ReplyAll'; -export { default as Report } from './Report'; -export { default as ReportProblem } from './ReportProblem'; -export { default as Restaurant } from './Restaurant'; -export { default as RestaurantMenu } from './RestaurantMenu'; -export { default as Restore } from './Restore'; -export { default as RestorePage } from './RestorePage'; -export { default as RingVolume } from './RingVolume'; -export { default as Room } from './Room'; -export { default as RoomService } from './RoomService'; -export { default as Rotate90DegreesCcw } from './Rotate90DegreesCcw'; -export { default as RotateLeft } from './RotateLeft'; -export { default as RotateRight } from './RotateRight'; -export { default as RoundedCorner } from './RoundedCorner'; -export { default as Router } from './Router'; -export { default as Rowing } from './Rowing'; -export { default as RssFeed } from './RssFeed'; -export { default as RvHookup } from './RvHookup'; -export { default as Satellite } from './Satellite'; -export { default as Save } from './Save'; -export { default as Scanner } from './Scanner'; -export { default as Schedule } from './Schedule'; -export { default as School } from './School'; -export { default as ScreenLockLandscape } from './ScreenLockLandscape'; -export { default as ScreenLockPortrait } from './ScreenLockPortrait'; -export { default as ScreenLockRotation } from './ScreenLockRotation'; -export { default as ScreenRotation } from './ScreenRotation'; -export { default as ScreenShare } from './ScreenShare'; -export { default as SdCard } from './SdCard'; -export { default as SdStorage } from './SdStorage'; -export { default as Search } from './Search'; -export { default as Security } from './Security'; -export { default as SelectAll } from './SelectAll'; -export { default as Send } from './Send'; -export { default as SentimentDissatisfied } from './SentimentDissatisfied'; -export { default as SentimentNeutral } from './SentimentNeutral'; -export { default as SentimentSatisfied } from './SentimentSatisfied'; -export { default as SentimentVeryDissatisfied } from './SentimentVeryDissatisfied'; -export { default as SentimentVerySatisfied } from './SentimentVerySatisfied'; -export { default as Settings } from './Settings'; -export { default as SettingsApplications } from './SettingsApplications'; -export { default as SettingsBackupRestore } from './SettingsBackupRestore'; -export { default as SettingsBluetooth } from './SettingsBluetooth'; -export { default as SettingsBrightness } from './SettingsBrightness'; -export { default as SettingsCell } from './SettingsCell'; -export { default as SettingsEthernet } from './SettingsEthernet'; -export { default as SettingsInputAntenna } from './SettingsInputAntenna'; -export { default as SettingsInputComponent } from './SettingsInputComponent'; -export { default as SettingsInputComposite } from './SettingsInputComposite'; -export { default as SettingsInputHdmi } from './SettingsInputHdmi'; -export { default as SettingsInputSvideo } from './SettingsInputSvideo'; -export { default as SettingsOverscan } from './SettingsOverscan'; -export { default as SettingsPhone } from './SettingsPhone'; -export { default as SettingsPower } from './SettingsPower'; -export { default as SettingsRemote } from './SettingsRemote'; -export { default as SettingsSystemDaydream } from './SettingsSystemDaydream'; -export { default as SettingsVoice } from './SettingsVoice'; -export { default as Share } from './Share'; -export { default as Shop } from './Shop'; -export { default as ShoppingBasket } from './ShoppingBasket'; -export { default as ShoppingCart } from './ShoppingCart'; -export { default as ShopTwo } from './ShopTwo'; -export { default as ShortText } from './ShortText'; -export { default as ShowChart } from './ShowChart'; -export { default as Shuffle } from './Shuffle'; -export { default as SignalCellular0Bar } from './SignalCellular0Bar'; -export { default as SignalCellular1Bar } from './SignalCellular1Bar'; -export { default as SignalCellular2Bar } from './SignalCellular2Bar'; -export { default as SignalCellular3Bar } from './SignalCellular3Bar'; -export { default as SignalCellular4Bar } from './SignalCellular4Bar'; -export { default as SignalCellularConnectedNoInternet0Bar } from './SignalCellularConnectedNoInternet0Bar'; -export { default as SignalCellularConnectedNoInternet1Bar } from './SignalCellularConnectedNoInternet1Bar'; -export { default as SignalCellularConnectedNoInternet2Bar } from './SignalCellularConnectedNoInternet2Bar'; -export { default as SignalCellularConnectedNoInternet3Bar } from './SignalCellularConnectedNoInternet3Bar'; -export { default as SignalCellularConnectedNoInternet4Bar } from './SignalCellularConnectedNoInternet4Bar'; -export { default as SignalCellularNoSim } from './SignalCellularNoSim'; -export { default as SignalCellularNull } from './SignalCellularNull'; -export { default as SignalCellularOff } from './SignalCellularOff'; -export { default as SignalWifi0Bar } from './SignalWifi0Bar'; -export { default as SignalWifi1Bar } from './SignalWifi1Bar'; -export { default as SignalWifi1BarLock } from './SignalWifi1BarLock'; -export { default as SignalWifi2Bar } from './SignalWifi2Bar'; -export { default as SignalWifi2BarLock } from './SignalWifi2BarLock'; -export { default as SignalWifi3Bar } from './SignalWifi3Bar'; -export { default as SignalWifi3BarLock } from './SignalWifi3BarLock'; -export { default as SignalWifi4Bar } from './SignalWifi4Bar'; -export { default as SignalWifi4BarLock } from './SignalWifi4BarLock'; -export { default as SignalWifiOff } from './SignalWifiOff'; -export { default as SimCard } from './SimCard'; -export { default as SimCardAlert } from './SimCardAlert'; -export { default as SkipNext } from './SkipNext'; -export { default as SkipPrevious } from './SkipPrevious'; -export { default as Slideshow } from './Slideshow'; -export { default as SlowMotionVideo } from './SlowMotionVideo'; -export { default as Smartphone } from './Smartphone'; -export { default as SmokeFree } from './SmokeFree'; -export { default as SmokingRooms } from './SmokingRooms'; -export { default as Sms } from './Sms'; -export { default as SmsFailed } from './SmsFailed'; -export { default as Snooze } from './Snooze'; -export { default as Sort } from './Sort'; -export { default as SortByAlpha } from './SortByAlpha'; -export { default as Spa } from './Spa'; -export { default as SpaceBar } from './SpaceBar'; -export { default as Speaker } from './Speaker'; -export { default as SpeakerGroup } from './SpeakerGroup'; -export { default as SpeakerNotes } from './SpeakerNotes'; -export { default as SpeakerNotesOff } from './SpeakerNotesOff'; -export { default as SpeakerPhone } from './SpeakerPhone'; -export { default as Spellcheck } from './Spellcheck'; -export { default as Star } from './Star'; -export { default as StarBorder } from './StarBorder'; -export { default as StarHalf } from './StarHalf'; -export { default as Stars } from './Stars'; -export { default as StayCurrentLandscape } from './StayCurrentLandscape'; -export { default as StayCurrentPortrait } from './StayCurrentPortrait'; -export { default as StayPrimaryLandscape } from './StayPrimaryLandscape'; -export { default as StayPrimaryPortrait } from './StayPrimaryPortrait'; -export { default as Stop } from './Stop'; -export { default as StopScreenShare } from './StopScreenShare'; -export { default as Storage } from './Storage'; -export { default as Store } from './Store'; -export { default as StoreMallDirectory } from './StoreMallDirectory'; -export { default as Straighten } from './Straighten'; -export { default as Streetview } from './Streetview'; -export { default as StrikethroughS } from './StrikethroughS'; -export { default as Style } from './Style'; -export { default as SubdirectoryArrowLeft } from './SubdirectoryArrowLeft'; -export { default as SubdirectoryArrowRight } from './SubdirectoryArrowRight'; -export { default as Subject } from './Subject'; -export { default as Subscriptions } from './Subscriptions'; -export { default as Subtitles } from './Subtitles'; -export { default as Subway } from './Subway'; -export { default as SupervisorAccount } from './SupervisorAccount'; -export { default as SurroundSound } from './SurroundSound'; -export { default as SwapCalls } from './SwapCalls'; -export { default as SwapHoriz } from './SwapHoriz'; -export { default as SwapVert } from './SwapVert'; -export { default as SwapVerticalCircle } from './SwapVerticalCircle'; -export { default as SwitchCamera } from './SwitchCamera'; -export { default as SwitchVideo } from './SwitchVideo'; -export { default as Sync } from './Sync'; -export { default as SyncDisabled } from './SyncDisabled'; -export { default as SyncProblem } from './SyncProblem'; -export { default as SystemUpdate } from './SystemUpdate'; -export { default as SystemUpdateAlt } from './SystemUpdateAlt'; -export { default as Tab } from './Tab'; -export { default as Tablet } from './Tablet'; -export { default as TabletAndroid } from './TabletAndroid'; -export { default as TabletMac } from './TabletMac'; -export { default as TabUnselected } from './TabUnselected'; -export { default as TagFaces } from './TagFaces'; -export { default as TapAndPlay } from './TapAndPlay'; -export { default as Terrain } from './Terrain'; -export { default as TextFields } from './TextFields'; -export { default as TextFormat } from './TextFormat'; -export { default as Textsms } from './Textsms'; -export { default as Texture } from './Texture'; -export { default as Theaters } from './Theaters'; -export { default as ThreeDRotation } from './ThreeDRotation'; -export { default as ThumbDown } from './ThumbDown'; -export { default as ThumbsUpDown } from './ThumbsUpDown'; -export { default as ThumbUp } from './ThumbUp'; -export { default as Timelapse } from './Timelapse'; -export { default as Timeline } from './Timeline'; -export { default as Timer } from './Timer'; -export { default as Timer10 } from './Timer10'; -export { default as Timer3 } from './Timer3'; -export { default as TimerOff } from './TimerOff'; -export { default as TimeToLeave } from './TimeToLeave'; -export { default as Title } from './Title'; -export { default as Toc } from './Toc'; -export { default as Today } from './Today'; -export { default as Toll } from './Toll'; -export { default as Tonality } from './Tonality'; -export { default as TouchApp } from './TouchApp'; -export { default as Toys } from './Toys'; -export { default as TrackChanges } from './TrackChanges'; -export { default as Traffic } from './Traffic'; -export { default as Train } from './Train'; -export { default as Tram } from './Tram'; -export { default as TransferWithinAStation } from './TransferWithinAStation'; -export { default as Transform } from './Transform'; -export { default as Translate } from './Translate'; -export { default as TrendingDown } from './TrendingDown'; -export { default as TrendingFlat } from './TrendingFlat'; -export { default as TrendingUp } from './TrendingUp'; -export { default as Tune } from './Tune'; -export { default as TurnedIn } from './TurnedIn'; -export { default as TurnedInNot } from './TurnedInNot'; -export { default as Tv } from './Tv'; -export { default as Unarchive } from './Unarchive'; -export { default as Undo } from './Undo'; -export { default as UnfoldLess } from './UnfoldLess'; -export { default as UnfoldMore } from './UnfoldMore'; -export { default as Update } from './Update'; -export { default as Usb } from './Usb'; -export { default as VerifiedUser } from './VerifiedUser'; -export { default as VerticalAlignBottom } from './VerticalAlignBottom'; -export { default as VerticalAlignCenter } from './VerticalAlignCenter'; -export { default as VerticalAlignTop } from './VerticalAlignTop'; -export { default as Vibration } from './Vibration'; -export { default as VideoCall } from './VideoCall'; -export { default as Videocam } from './Videocam'; -export { default as VideocamOff } from './VideocamOff'; -export { default as VideogameAsset } from './VideogameAsset'; -export { default as VideoLabel } from './VideoLabel'; -export { default as VideoLibrary } from './VideoLibrary'; -export { default as ViewAgenda } from './ViewAgenda'; -export { default as ViewArray } from './ViewArray'; -export { default as ViewCarousel } from './ViewCarousel'; -export { default as ViewColumn } from './ViewColumn'; -export { default as ViewComfy } from './ViewComfy'; -export { default as ViewCompact } from './ViewCompact'; -export { default as ViewDay } from './ViewDay'; -export { default as ViewHeadline } from './ViewHeadline'; -export { default as ViewList } from './ViewList'; -export { default as ViewModule } from './ViewModule'; -export { default as ViewQuilt } from './ViewQuilt'; -export { default as ViewStream } from './ViewStream'; -export { default as ViewWeek } from './ViewWeek'; -export { default as Vignette } from './Vignette'; -export { default as Visibility } from './Visibility'; -export { default as VisibilityOff } from './VisibilityOff'; -export { default as VoiceChat } from './VoiceChat'; -export { default as Voicemail } from './Voicemail'; -export { default as VolumeDown } from './VolumeDown'; -export { default as VolumeMute } from './VolumeMute'; -export { default as VolumeOff } from './VolumeOff'; -export { default as VolumeUp } from './VolumeUp'; -export { default as VpnKey } from './VpnKey'; -export { default as VpnLock } from './VpnLock'; -export { default as Wallpaper } from './Wallpaper'; -export { default as Warning } from './Warning'; -export { default as Watch } from './Watch'; -export { default as WatchLater } from './WatchLater'; -export { default as WbAuto } from './WbAuto'; -export { default as WbCloudy } from './WbCloudy'; -export { default as WbIncandescent } from './WbIncandescent'; -export { default as WbIridescent } from './WbIridescent'; -export { default as WbSunny } from './WbSunny'; -export { default as Wc } from './Wc'; -export { default as Web } from './Web'; -export { default as WebAsset } from './WebAsset'; -export { default as Weekend } from './Weekend'; -export { default as Whatshot } from './Whatshot'; -export { default as Widgets } from './Widgets'; -export { default as Wifi } from './Wifi'; -export { default as WifiLock } from './WifiLock'; -export { default as WifiTethering } from './WifiTethering'; -export { default as Work } from './Work'; -export { default as WrapText } from './WrapText'; -export { default as YoutubeSearchedFor } from './YoutubeSearchedFor'; -export { default as ZoomIn } from './ZoomIn'; -export { default as ZoomOut } from './ZoomOut'; -export { default as ZoomOutMap } from './ZoomOutMap'; diff --git a/packages/material-ui-icons/tpl/SvgIcon.js b/packages/material-ui-icons/templateSvgIcon.js similarity index 84% rename from packages/material-ui-icons/tpl/SvgIcon.js rename to packages/material-ui-icons/templateSvgIcon.js index 0342d0a22b83bf..28da71667ad264 100644 --- a/packages/material-ui-icons/tpl/SvgIcon.js +++ b/packages/material-ui-icons/templateSvgIcon.js @@ -3,4 +3,4 @@ import createSvgIcon from './utils/createSvgIcon'; export default createSvgIcon( {{{paths}}} -, '{{className}}'); +, '{{componentName}}'); diff --git a/packages/material-ui-icons/test/index.test.js b/packages/material-ui-icons/test/index.test.js deleted file mode 100644 index c8aac691551916..00000000000000 --- a/packages/material-ui-icons/test/index.test.js +++ /dev/null @@ -1,195 +0,0 @@ -import { assert } from 'chai'; -import fs from 'fs'; -import path from 'path'; -import temp from 'temp'; -import builder from '../builder'; - -// Automatically track and cleanup files at exit -temp.track(); - -const DISABLE_LOG = true; - -// To cut down on test time, use fixtures instead of node_modules -const MUI_ICONS_ROOT = path.join(__dirname, './fixtures/material-design-icons/'); -// const MUI_ICONS_ROOT = path.join(__dirname, '../node_modules/material-design-icons/'); -const MUI_ICONS_SVG_DIR = path.join(MUI_ICONS_ROOT, 'svg'); -const GAME_ICONS_ROOT = path.join(__dirname, './fixtures/game-icons/'); -const GAME_ICONS_SVG_DIR = path.join(GAME_ICONS_ROOT, 'svg/icons/'); - -describe('material-design-icons', () => { - it('should have icons to test with', () => { - assert.strictEqual(fs.lstatSync(MUI_ICONS_SVG_DIR).isDirectory(), true); - }); -}); - -describe('builder', () => { - describe('#pascalCase', () => { - it('should have pascalCase', () => { - assert.strictEqual(builder.hasOwnProperty('pascalCase'), true); - }); - - it('should be a function', () => { - assert.isFunction(builder.pascalCase); - }); - - it('should change capitalize dashes', () => { - assert.strictEqual(builder.pascalCase('hi-world'), 'HiWorld', true); - }); - - it('should capitalize based on environment path.sep', () => { - assert.strictEqual(builder.pascalCase(`this${path.sep}dir`), 'ThisDir', true); - }); - }); - - describe('#main', () => { - it('should have main', () => { - assert.strictEqual(builder.hasOwnProperty('main'), true); - }); - - it('should be a function', () => { - assert.isFunction(builder.main); - }); - }); - - describe('#getJsxString', () => { - it('should have getJsxString', () => { - assert.strictEqual(builder.hasOwnProperty('getJsxString'), true); - }); - - it('should be a function', () => { - assert.strictEqual(typeof builder.getJsxString === 'function', true); - }); - }); - - describe('#processFile', () => { - it('should have processFile', () => { - assert.strictEqual(builder.hasOwnProperty('processFile'), true); - }); - - it('should be a function', () => { - assert.isFunction(builder.processFile); - }); - }); - - describe('#processIndex', () => { - it('should have processIndex', () => { - assert.strictEqual(builder.hasOwnProperty('processIndex'), true); - }); - - it('should be a function', () => { - assert.isFunction(builder.processIndex); - }); - }); -}); - -describe('--output-dir', () => { - const options = { - svgDir: MUI_ICONS_SVG_DIR, - innerPath: '/svg/production/', - glob: '/**/production/*_24px.svg', - renameFilter: builder.RENAME_FILTER_MUI, - disableLog: DISABLE_LOG, - outputDir: null, - }; - let tempPath; - - before(() => { - tempPath = temp.mkdirSync(); - options.outputDir = tempPath; - }); - - after(() => { - temp.cleanupSync(); - }); - - it('script outputs to directory', done => { - builder.main(options, () => { - assert.strictEqual(fs.lstatSync(tempPath).isDirectory(), true); - assert.strictEqual(fs.lstatSync(path.join(tempPath, 'index.js')).isFile(), true); - done(); - }); - }); -}); - -describe('--svg-dir, --innerPath, --fileSuffix', () => { - const options = { - svgDir: GAME_ICONS_SVG_DIR, - glob: '**/*.svg', - innerPath: '/dice/svg/000000/transparent/', - muiRequire: 'absolute', - renameFilter: builder.RENAME_FILTER_DEFAULT, - disableLog: DISABLE_LOG, - outputDir: null, - }; - let tempPath; - - before(() => { - tempPath = temp.mkdirSync(); - options.outputDir = tempPath; - }); - - after(() => { - temp.cleanupSync(); - }); - - it('script outputs to directory', done => { - builder.main(options, () => { - assert.strictEqual(fs.lstatSync(tempPath).isDirectory(), true); - assert.strictEqual(fs.lstatSync(path.join(tempPath, 'delapouite')).isDirectory(), true); - - const actualFilePath = path.join( - tempPath, - 'delapouite', - 'dice', - 'svg', - '000000', - 'transparent', - 'dice-six-faces-four.js', - ); - assert.strictEqual(fs.existsSync(actualFilePath), true); - - const actualFileData = fs.readFileSync(actualFilePath, { encoding: 'utf8' }); - assert.include(actualFileData, "import createSvgIcon from './utils/createSvgIcon'"); - done(); - }); - }); -}); - -describe('Template rendering', () => { - const options = { - svgDir: MUI_ICONS_SVG_DIR, - innerPath: '/svg/production/', - glob: '/**/production/*_24px.svg', - renameFilter: builder.RENAME_FILTER_MUI, - muiRequire: 'absolute', - disableLog: DISABLE_LOG, - outputDir: null, - }; - let tempPath; - - before(() => { - tempPath = temp.mkdirSync(); - options.outputDir = tempPath; - }); - - after(() => { - temp.cleanupSync(); - }); - - it('should produce the expected output', done => { - builder.main(options, () => { - const expectedFilePath = path.join(MUI_ICONS_ROOT, 'expected', 'Accessibility.js'); - const actualFilePath = path.join(tempPath, 'Accessibility.js'); - - assert.strictEqual(fs.lstatSync(tempPath).isDirectory(), true); - assert.strictEqual(fs.existsSync(expectedFilePath), true); - assert.strictEqual(fs.existsSync(actualFilePath), true); - - const expected = fs.readFileSync(expectedFilePath, { encoding: 'utf8' }); - const actual = fs.readFileSync(actualFilePath, { encoding: 'utf8' }); - - assert.include(actual, expected); - done(); - }); - }); -}); diff --git a/yarn.lock b/yarn.lock index 590db7d09c6ff7..58ae54363051a6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2494,7 +2494,7 @@ body-parser@^1.16.1: raw-body "2.3.3" type-is "~1.6.16" -boolbase@~1.0.0: +boolbase@^1.0.0, boolbase@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" @@ -3059,6 +3059,12 @@ coa@~1.0.1: dependencies: q "^1.1.2" +coa@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.1.tgz#f3f8b0b15073e35d70263fb1042cb2c023db38af" + dependencies: + q "^1.1.2" + code-point-at@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" @@ -3432,6 +3438,10 @@ css-loader@^0.28.11: postcss-value-parser "^3.3.0" source-list-map "^2.0.0" +css-select-base-adapter@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.0.tgz#0102b3d14630df86c3eb9fa9f5456270106cf990" + css-select@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" @@ -3441,6 +3451,15 @@ css-select@~1.2.0: domutils "1.5.1" nth-check "~1.0.1" +css-select@~1.3.0-rc0: + version "1.3.0-rc0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.3.0-rc0.tgz#6f93196aaae737666ea1036a8cb14a8fcb7a9231" + dependencies: + boolbase "^1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "^1.0.1" + css-selector-tokenizer@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" @@ -3449,6 +3468,24 @@ css-selector-tokenizer@^0.7.0: fastparse "^1.1.1" regexpu-core "^1.0.0" +css-tree@1.0.0-alpha.29: + version "1.0.0-alpha.29" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39" + dependencies: + mdn-data "~1.1.0" + source-map "^0.5.3" + +css-tree@1.0.0-alpha25: + version "1.0.0-alpha25" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha25.tgz#1bbfabfbf6eeef4f01d9108ff2edd0be2fe35597" + dependencies: + mdn-data "^1.0.0" + source-map "^0.5.3" + +css-url-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec" + css-vendor@^0.3.8: version "0.3.8" resolved "https://registry.yarnpkg.com/css-vendor/-/css-vendor-0.3.8.tgz#6421cfd3034ce664fe7673972fd0119fc28941fa" @@ -3500,6 +3537,12 @@ cssnano@^3.10.0: postcss-value-parser "^3.2.3" postcss-zindex "^2.0.1" +csso@^3.5.0: + version "3.5.1" + resolved "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b" + dependencies: + css-tree "1.0.0-alpha.29" + csso@~2.3.1: version "2.3.2" resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" @@ -4948,7 +4991,7 @@ fs-extra@^5.0.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^6.0.0: +fs-extra@^6.0.0, fs-extra@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b" dependencies: @@ -6226,6 +6269,13 @@ js-yaml@^3.11.0, js-yaml@^3.9.0: argparse "^1.0.7" esprima "^4.0.0" +js-yaml@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + js-yaml@~3.7.0: version "3.7.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" @@ -6886,10 +6936,6 @@ marked@^0.4.0: buffers "~0.1.1" readable-stream "~1.0.0" -material-design-icons@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/material-design-icons/-/material-design-icons-3.0.1.tgz#9a71c48747218ebca51e51a66da682038cdcb7bf" - math-expression-evaluator@^1.2.14: version "1.2.17" resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" @@ -6932,6 +6978,10 @@ md5@^2.1.0, md5@^2.2.1: crypt "~0.0.1" is-buffer "~1.1.1" +mdn-data@^1.0.0, mdn-data@~1.1.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01" + media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" @@ -7527,7 +7577,7 @@ nprogress@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/nprogress/-/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1" -nth-check@~1.0.1: +nth-check@^1.0.1, nth-check@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.1.tgz#9929acdf628fc2c41098deab82ac580cf149aae4" dependencies: @@ -9493,7 +9543,7 @@ samsam@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/samsam/-/samsam-1.3.0.tgz#8d1d9350e25622da30de3e44ba692b5221ab7c50" -sax@>=0.6.0, sax@^1.2.4, sax@~1.2.1: +sax@>=0.6.0, sax@^1.2.4, sax@~1.2.1, sax@~1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" @@ -9926,6 +9976,10 @@ ssri@^5.2.4: dependencies: safe-buffer "^5.1.1" +stable@~0.1.6: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + stack-trace@0.0.10: version "0.0.10" resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" @@ -10146,6 +10200,25 @@ svgo@^0.7.0: sax "~1.2.1" whet.extend "~0.9.9" +svgo@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.0.5.tgz#7040364c062a0538abacff4401cea6a26a7a389a" + dependencies: + coa "~2.0.1" + colors "~1.1.2" + css-select "~1.3.0-rc0" + css-select-base-adapter "~0.1.0" + css-tree "1.0.0-alpha25" + css-url-regex "^1.1.0" + csso "^3.5.0" + js-yaml "~3.10.0" + mkdirp "~0.5.1" + object.values "^1.0.4" + sax "~1.2.4" + stable "~0.1.6" + unquote "~1.1.1" + util.promisify "~1.0.0" + symbol-observable@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" @@ -10588,6 +10661,10 @@ unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" +unquote@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" + unset-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" @@ -10706,7 +10783,7 @@ util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" -util.promisify@^1.0.0: +util.promisify@^1.0.0, util.promisify@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" dependencies: