diff --git a/.build/svgr-template.js b/.build/svgr-template.js new file mode 100644 index 000000000..ed7c593af --- /dev/null +++ b/.build/svgr-template.js @@ -0,0 +1,12 @@ +function template( + { template }, + opts, + { imports, componentName, props, jsx, exports }, +) { + return template.ast` + ${imports} + const ${componentName} = (size = 24, color = "currentColor", stroke = 2, ...props) => ${jsx} + ${exports} + ` +} +module.exports = template; diff --git a/gulpfile.js b/gulpfile.js index de440fcc7..c0e673b8d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -11,7 +11,8 @@ const gulp = require('gulp'), template = require('lodash.template'), sass = require('node-sass'), cleanCSS = require('clean-css'), - argv = require('minimist')(process.argv.slice(2)); + argv = require('minimist')(process.argv.slice(2)), + svgr = require('@svgr/core').default; async function asyncForEach(array, callback) { for (let index = 0; index < array.length; index++) { @@ -194,7 +195,7 @@ gulp.task('iconfont-svg-outline', function (cb) { let iconfontUnicode = {}; - if(fs.existsSync('./iconfont-unicode.json')) { + if (fs.existsSync('./iconfont-unicode.json')) { iconfontUnicode = require('./iconfont-unicode'); } @@ -218,7 +219,7 @@ gulp.task('iconfont-svg-outline', function (cb) { fixedWidth: true, color: 'black' }).then(outlined => { - if(unicode) { + if (unicode) { fs.writeFileSync(`icons-outlined/u${unicode.toUpperCase()}-${name}.svg`, outlined); } else { fs.writeFileSync(`icons-outlined/${name}.svg`, outlined); @@ -233,10 +234,10 @@ gulp.task('iconfont-svg-outline', function (cb) { gulp.task('iconfont', function () { let maxUnicode = 59905; - if(fs.existsSync('./iconfont-unicode.json')) { + if (fs.existsSync('./iconfont-unicode.json')) { const iconfontUnicode = require('./iconfont-unicode'); - for(const name in iconfontUnicode) { + for (const name in iconfontUnicode) { const unicode = parseInt(iconfontUnicode[name], 16); maxUnicode = Math.max(maxUnicode, unicode); @@ -258,7 +259,7 @@ gulp.task('iconfont', function () { let glyphsObject = {}; //sort glypht - glyphs = glyphs.sort(function(a, b){ + glyphs = glyphs.sort(function (a, b) { return ('' + a.name).localeCompare(b.name) }); @@ -399,7 +400,7 @@ gulp.task('icons-stroke', gulp.series('build-jekyll', function (cb) { })); gulp.task('optimize', function (cb) { - const addFloats = function(n1, n2) { + const addFloats = function (n1, n2) { return Math.round((parseFloat(n1) + parseFloat(n2)) * 1000) / 1000 }; @@ -418,20 +419,20 @@ gulp.task('optimize', function (cb) { .replace(/([Aa])\s?([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s?([0-1])\s?([0-1])\s?(-?[0-9.]+)\s?(-?[0-9.]+)/gi, '$1$2 $3 $4 $5 $6 $7 $8') .replace(/\n\n+/g, "\n") - .replace(/ { let files = glob.sync("./icons/*.svg"); @@ -541,4 +541,57 @@ gulp.task('svg-to-png', gulp.series('build-jekyll', 'clean-png', async (cb) => { cb(); })); -gulp.task('build', gulp.series('optimize', 'build-jekyll', 'build-copy', 'icons-sprite', 'icons-preview', 'svg-to-png', 'build-iconfont', 'changelog-image', 'build-zip')); +gulp.task('clean-react', function (cb) { + cp.exec('rm -fd ./icons-react/* && mkdir icons-react/icons-js', function () { + cb(); + }); +}); + +gulp.task('svg-to-react', gulp.series('clean-react', async function (cb) { + let files = glob.sync("./icons/*.svg"); + + const camelize = function (str) { + str = str.replace(/-/g, ' '); + + return str.replace(/(?:^\w|[A-Z]|\b\w)/g, function (word, index) { + return word.toUpperCase(); + }).replace(/\s+/g, ''); + }; + + const componentName = function (file) { + file = path.basename(file, '.svg'); + file = camelize(`Icon ${file}`); + + return file; + }; + + const optimizeSvgCode = function(svgCode) { + return svgCode.replace('', ''); + }; + + let indexCode = '', + indexDCode = `import { FC, SVGAttributes } from 'react';\n\ninterface TablerIconProps extends SVGAttributes { color?: string; size?: string | number; stroke?: string | number; }\n\ntype TablerIcon = FC;\n\n`; + + await asyncForEach(files, async function (file) { + const svgCode = optimizeSvgCode(fs.readFileSync(file).toString()), + fileName = path.basename(file, '.svg') + '.js', + iconComponentName = componentName(file); + + svgr(svgCode, { + icon: false, + svgProps: { width: '{size}', height: '{size}', strokeWidth: '{stroke}', stroke: '{color}' }, + template: require('./.build/svgr-template') + }, { componentName: iconComponentName }).then(jsCode => { + fs.writeFileSync('icons-react/icons-js/' + fileName, jsCode); + indexCode += `export { default as ${iconComponentName} } from './icons-js/${fileName}';\n`; + indexDCode += `export const ${iconComponentName}: TablerIcon;\n`; + }); + + fs.writeFileSync('icons-react/index.js', indexCode); + fs.writeFileSync('icons-react/index.d.js', indexDCode); + }); + + cb(); +})); + +gulp.task('build', gulp.series('optimize', 'build-jekyll', 'build-copy', 'icons-sprite', 'icons-react', 'icons-preview', 'svg-to-png', 'build-iconfont', 'changelog-image', 'build-zip')); diff --git a/icons-react/icons-js/2fa.js b/icons-react/icons-js/2fa.js new file mode 100644 index 000000000..89ccb5449 --- /dev/null +++ b/icons-react/icons-js/2fa.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const Icon2fa = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default Icon2fa; \ No newline at end of file diff --git a/icons-react/icons-js/a-b.js b/icons-react/icons-js/a-b.js new file mode 100644 index 000000000..78d6278d6 --- /dev/null +++ b/icons-react/icons-js/a-b.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAB = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAB; \ No newline at end of file diff --git a/icons-react/icons-js/accessible.js b/icons-react/icons-js/accessible.js new file mode 100644 index 000000000..da3a1dc3c --- /dev/null +++ b/icons-react/icons-js/accessible.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAccessible = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAccessible; \ No newline at end of file diff --git a/icons-react/icons-js/ad.js b/icons-react/icons-js/ad.js new file mode 100644 index 000000000..a08a2481f --- /dev/null +++ b/icons-react/icons-js/ad.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAd = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAd; \ No newline at end of file diff --git a/icons-react/icons-js/adjustments-alt.js b/icons-react/icons-js/adjustments-alt.js new file mode 100644 index 000000000..7af48e9fd --- /dev/null +++ b/icons-react/icons-js/adjustments-alt.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAdjustmentsAlt = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAdjustmentsAlt; \ No newline at end of file diff --git a/icons-react/icons-js/adjustments-horizontal.js b/icons-react/icons-js/adjustments-horizontal.js new file mode 100644 index 000000000..36e6cfcaf --- /dev/null +++ b/icons-react/icons-js/adjustments-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAdjustmentsHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAdjustmentsHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/adjustments.js b/icons-react/icons-js/adjustments.js new file mode 100644 index 000000000..cc3f9fb18 --- /dev/null +++ b/icons-react/icons-js/adjustments.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAdjustments = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAdjustments; \ No newline at end of file diff --git a/icons-react/icons-js/alarm.js b/icons-react/icons-js/alarm.js new file mode 100644 index 000000000..9762147f9 --- /dev/null +++ b/icons-react/icons-js/alarm.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAlarm = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAlarm; \ No newline at end of file diff --git a/icons-react/icons-js/alert-circle.js b/icons-react/icons-js/alert-circle.js new file mode 100644 index 000000000..9ac697e2e --- /dev/null +++ b/icons-react/icons-js/alert-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAlertCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAlertCircle; \ No newline at end of file diff --git a/icons-react/icons-js/alert-octagon.js b/icons-react/icons-js/alert-octagon.js new file mode 100644 index 000000000..9856a9e18 --- /dev/null +++ b/icons-react/icons-js/alert-octagon.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAlertOctagon = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAlertOctagon; \ No newline at end of file diff --git a/icons-react/icons-js/alert-triangle.js b/icons-react/icons-js/alert-triangle.js new file mode 100644 index 000000000..ae42dcee8 --- /dev/null +++ b/icons-react/icons-js/alert-triangle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAlertTriangle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAlertTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/alien.js b/icons-react/icons-js/alien.js new file mode 100644 index 000000000..60cd87932 --- /dev/null +++ b/icons-react/icons-js/alien.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAlien = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAlien; \ No newline at end of file diff --git a/icons-react/icons-js/align-center.js b/icons-react/icons-js/align-center.js new file mode 100644 index 000000000..96f7ddbf2 --- /dev/null +++ b/icons-react/icons-js/align-center.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAlignCenter = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAlignCenter; \ No newline at end of file diff --git a/icons-react/icons-js/align-justified.js b/icons-react/icons-js/align-justified.js new file mode 100644 index 000000000..294b357b6 --- /dev/null +++ b/icons-react/icons-js/align-justified.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAlignJustified = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAlignJustified; \ No newline at end of file diff --git a/icons-react/icons-js/align-left.js b/icons-react/icons-js/align-left.js new file mode 100644 index 000000000..51ffbd5cf --- /dev/null +++ b/icons-react/icons-js/align-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAlignLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAlignLeft; \ No newline at end of file diff --git a/icons-react/icons-js/align-right.js b/icons-react/icons-js/align-right.js new file mode 100644 index 000000000..e89341f8d --- /dev/null +++ b/icons-react/icons-js/align-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAlignRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAlignRight; \ No newline at end of file diff --git a/icons-react/icons-js/ambulance.js b/icons-react/icons-js/ambulance.js new file mode 100644 index 000000000..de132b5c3 --- /dev/null +++ b/icons-react/icons-js/ambulance.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAmbulance = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAmbulance; \ No newline at end of file diff --git a/icons-react/icons-js/anchor.js b/icons-react/icons-js/anchor.js new file mode 100644 index 000000000..42e58948c --- /dev/null +++ b/icons-react/icons-js/anchor.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAnchor = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAnchor; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-1.js b/icons-react/icons-js/antenna-bars-1.js new file mode 100644 index 000000000..8ea0b8a31 --- /dev/null +++ b/icons-react/icons-js/antenna-bars-1.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAntennaBars1 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAntennaBars1; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-2.js b/icons-react/icons-js/antenna-bars-2.js new file mode 100644 index 000000000..4628b9991 --- /dev/null +++ b/icons-react/icons-js/antenna-bars-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAntennaBars2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAntennaBars2; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-3.js b/icons-react/icons-js/antenna-bars-3.js new file mode 100644 index 000000000..54988f21a --- /dev/null +++ b/icons-react/icons-js/antenna-bars-3.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAntennaBars3 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAntennaBars3; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-4.js b/icons-react/icons-js/antenna-bars-4.js new file mode 100644 index 000000000..b0bddbb37 --- /dev/null +++ b/icons-react/icons-js/antenna-bars-4.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAntennaBars4 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAntennaBars4; \ No newline at end of file diff --git a/icons-react/icons-js/antenna-bars-5.js b/icons-react/icons-js/antenna-bars-5.js new file mode 100644 index 000000000..f964a8caa --- /dev/null +++ b/icons-react/icons-js/antenna-bars-5.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAntennaBars5 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAntennaBars5; \ No newline at end of file diff --git a/icons-react/icons-js/aperture.js b/icons-react/icons-js/aperture.js new file mode 100644 index 000000000..70eac5974 --- /dev/null +++ b/icons-react/icons-js/aperture.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAperture = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAperture; \ No newline at end of file diff --git a/icons-react/icons-js/apps.js b/icons-react/icons-js/apps.js new file mode 100644 index 000000000..787f31a9a --- /dev/null +++ b/icons-react/icons-js/apps.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconApps = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconApps; \ No newline at end of file diff --git a/icons-react/icons-js/archive.js b/icons-react/icons-js/archive.js new file mode 100644 index 000000000..36d077be7 --- /dev/null +++ b/icons-react/icons-js/archive.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArchive = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArchive; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-back-up.js b/icons-react/icons-js/arrow-back-up.js new file mode 100644 index 000000000..60741e7f4 --- /dev/null +++ b/icons-react/icons-js/arrow-back-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowBackUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowBackUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-back.js b/icons-react/icons-js/arrow-back.js new file mode 100644 index 000000000..6f8100d32 --- /dev/null +++ b/icons-react/icons-js/arrow-back.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowBack = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowBack; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-down.js b/icons-react/icons-js/arrow-bar-down.js new file mode 100644 index 000000000..143e5cff6 --- /dev/null +++ b/icons-react/icons-js/arrow-bar-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowBarDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowBarDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-left.js b/icons-react/icons-js/arrow-bar-left.js new file mode 100644 index 000000000..c68b2f60c --- /dev/null +++ b/icons-react/icons-js/arrow-bar-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowBarLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowBarLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-right.js b/icons-react/icons-js/arrow-bar-right.js new file mode 100644 index 000000000..88fd48aae --- /dev/null +++ b/icons-react/icons-js/arrow-bar-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowBarRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowBarRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-to-down.js b/icons-react/icons-js/arrow-bar-to-down.js new file mode 100644 index 000000000..7fbd6e8a8 --- /dev/null +++ b/icons-react/icons-js/arrow-bar-to-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowBarToDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowBarToDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-to-left.js b/icons-react/icons-js/arrow-bar-to-left.js new file mode 100644 index 000000000..978ada5c2 --- /dev/null +++ b/icons-react/icons-js/arrow-bar-to-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowBarToLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowBarToLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-to-right.js b/icons-react/icons-js/arrow-bar-to-right.js new file mode 100644 index 000000000..f6ad65945 --- /dev/null +++ b/icons-react/icons-js/arrow-bar-to-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowBarToRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowBarToRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-to-up.js b/icons-react/icons-js/arrow-bar-to-up.js new file mode 100644 index 000000000..220e6283a --- /dev/null +++ b/icons-react/icons-js/arrow-bar-to-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowBarToUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowBarToUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-bar-up.js b/icons-react/icons-js/arrow-bar-up.js new file mode 100644 index 000000000..b0ddd2866 --- /dev/null +++ b/icons-react/icons-js/arrow-bar-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowBarUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowBarUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-circle.js b/icons-react/icons-js/arrow-down-circle.js new file mode 100644 index 000000000..94c208534 --- /dev/null +++ b/icons-react/icons-js/arrow-down-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowDownCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowDownCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-left-circle.js b/icons-react/icons-js/arrow-down-left-circle.js new file mode 100644 index 000000000..1c1a15e40 --- /dev/null +++ b/icons-react/icons-js/arrow-down-left-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowDownLeftCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowDownLeftCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-left.js b/icons-react/icons-js/arrow-down-left.js new file mode 100644 index 000000000..7368df628 --- /dev/null +++ b/icons-react/icons-js/arrow-down-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowDownLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowDownLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-right-circle.js b/icons-react/icons-js/arrow-down-right-circle.js new file mode 100644 index 000000000..3e77caa7c --- /dev/null +++ b/icons-react/icons-js/arrow-down-right-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowDownRightCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowDownRightCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down-right.js b/icons-react/icons-js/arrow-down-right.js new file mode 100644 index 000000000..6c785e1cc --- /dev/null +++ b/icons-react/icons-js/arrow-down-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowDownRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowDownRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-down.js b/icons-react/icons-js/arrow-down.js new file mode 100644 index 000000000..2fa36e5f9 --- /dev/null +++ b/icons-react/icons-js/arrow-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-forward-up.js b/icons-react/icons-js/arrow-forward-up.js new file mode 100644 index 000000000..afecc018f --- /dev/null +++ b/icons-react/icons-js/arrow-forward-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowForwardUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowForwardUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-forward.js b/icons-react/icons-js/arrow-forward.js new file mode 100644 index 000000000..a65eb86e0 --- /dev/null +++ b/icons-react/icons-js/arrow-forward.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowForward = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowForward; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-left-circle.js b/icons-react/icons-js/arrow-left-circle.js new file mode 100644 index 000000000..0da14060e --- /dev/null +++ b/icons-react/icons-js/arrow-left-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowLeftCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowLeftCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-left.js b/icons-react/icons-js/arrow-left.js new file mode 100644 index 000000000..a3c3eb20f --- /dev/null +++ b/icons-react/icons-js/arrow-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-narrow-down.js b/icons-react/icons-js/arrow-narrow-down.js new file mode 100644 index 000000000..1e605a485 --- /dev/null +++ b/icons-react/icons-js/arrow-narrow-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowNarrowDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowNarrowDown; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-narrow-left.js b/icons-react/icons-js/arrow-narrow-left.js new file mode 100644 index 000000000..39b93121a --- /dev/null +++ b/icons-react/icons-js/arrow-narrow-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowNarrowLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowNarrowLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-narrow-right.js b/icons-react/icons-js/arrow-narrow-right.js new file mode 100644 index 000000000..75527433d --- /dev/null +++ b/icons-react/icons-js/arrow-narrow-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowNarrowRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowNarrowRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-narrow-up.js b/icons-react/icons-js/arrow-narrow-up.js new file mode 100644 index 000000000..8e09ff081 --- /dev/null +++ b/icons-react/icons-js/arrow-narrow-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowNarrowUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowNarrowUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-right-circle.js b/icons-react/icons-js/arrow-right-circle.js new file mode 100644 index 000000000..3c53e8cbd --- /dev/null +++ b/icons-react/icons-js/arrow-right-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowRightCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowRightCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-right.js b/icons-react/icons-js/arrow-right.js new file mode 100644 index 000000000..6c52f02ec --- /dev/null +++ b/icons-react/icons-js/arrow-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-circle.js b/icons-react/icons-js/arrow-up-circle.js new file mode 100644 index 000000000..9aa2af6f5 --- /dev/null +++ b/icons-react/icons-js/arrow-up-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowUpCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowUpCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-left-circle.js b/icons-react/icons-js/arrow-up-left-circle.js new file mode 100644 index 000000000..687e80fca --- /dev/null +++ b/icons-react/icons-js/arrow-up-left-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowUpLeftCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowUpLeftCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-left.js b/icons-react/icons-js/arrow-up-left.js new file mode 100644 index 000000000..aa6c6ef9d --- /dev/null +++ b/icons-react/icons-js/arrow-up-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowUpLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowUpLeft; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-right-circle.js b/icons-react/icons-js/arrow-up-right-circle.js new file mode 100644 index 000000000..ba3c053f6 --- /dev/null +++ b/icons-react/icons-js/arrow-up-right-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowUpRightCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowUpRightCircle; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up-right.js b/icons-react/icons-js/arrow-up-right.js new file mode 100644 index 000000000..4d39dee98 --- /dev/null +++ b/icons-react/icons-js/arrow-up-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowUpRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowUpRight; \ No newline at end of file diff --git a/icons-react/icons-js/arrow-up.js b/icons-react/icons-js/arrow-up.js new file mode 100644 index 000000000..5ca200354 --- /dev/null +++ b/icons-react/icons-js/arrow-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowUp; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-diagonal-2.js b/icons-react/icons-js/arrows-diagonal-2.js new file mode 100644 index 000000000..bebce3875 --- /dev/null +++ b/icons-react/icons-js/arrows-diagonal-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowsDiagonal2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowsDiagonal2; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-diagonal.js b/icons-react/icons-js/arrows-diagonal.js new file mode 100644 index 000000000..ab20f3fa3 --- /dev/null +++ b/icons-react/icons-js/arrows-diagonal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowsDiagonal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowsDiagonal; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-horizontal.js b/icons-react/icons-js/arrows-horizontal.js new file mode 100644 index 000000000..1dba66e0e --- /dev/null +++ b/icons-react/icons-js/arrows-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowsHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowsHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-maximize.js b/icons-react/icons-js/arrows-maximize.js new file mode 100644 index 000000000..0047e6ad1 --- /dev/null +++ b/icons-react/icons-js/arrows-maximize.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowsMaximize = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowsMaximize; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-minimize.js b/icons-react/icons-js/arrows-minimize.js new file mode 100644 index 000000000..37fdccae0 --- /dev/null +++ b/icons-react/icons-js/arrows-minimize.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowsMinimize = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowsMinimize; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-sort.js b/icons-react/icons-js/arrows-sort.js new file mode 100644 index 000000000..434fd4450 --- /dev/null +++ b/icons-react/icons-js/arrows-sort.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowsSort = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowsSort; \ No newline at end of file diff --git a/icons-react/icons-js/arrows-vertical.js b/icons-react/icons-js/arrows-vertical.js new file mode 100644 index 000000000..8d75cd54e --- /dev/null +++ b/icons-react/icons-js/arrows-vertical.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArrowsVertical = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArrowsVertical; \ No newline at end of file diff --git a/icons-react/icons-js/artboard.js b/icons-react/icons-js/artboard.js new file mode 100644 index 000000000..b0d9e1b63 --- /dev/null +++ b/icons-react/icons-js/artboard.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconArtboard = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconArtboard; \ No newline at end of file diff --git a/icons-react/icons-js/at.js b/icons-react/icons-js/at.js new file mode 100644 index 000000000..6fdba17ba --- /dev/null +++ b/icons-react/icons-js/at.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAt = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAt; \ No newline at end of file diff --git a/icons-react/icons-js/atom-2.js b/icons-react/icons-js/atom-2.js new file mode 100644 index 000000000..d783f4831 --- /dev/null +++ b/icons-react/icons-js/atom-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAtom2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAtom2; \ No newline at end of file diff --git a/icons-react/icons-js/atom.js b/icons-react/icons-js/atom.js new file mode 100644 index 000000000..ce95fbd39 --- /dev/null +++ b/icons-react/icons-js/atom.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAtom = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAtom; \ No newline at end of file diff --git a/icons-react/icons-js/award.js b/icons-react/icons-js/award.js new file mode 100644 index 000000000..b6c3e82c8 --- /dev/null +++ b/icons-react/icons-js/award.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconAward = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconAward; \ No newline at end of file diff --git a/icons-react/icons-js/backspace.js b/icons-react/icons-js/backspace.js new file mode 100644 index 000000000..f21ebe1a2 --- /dev/null +++ b/icons-react/icons-js/backspace.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBackspace = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBackspace; \ No newline at end of file diff --git a/icons-react/icons-js/ball-basketball.js b/icons-react/icons-js/ball-basketball.js new file mode 100644 index 000000000..7e2058482 --- /dev/null +++ b/icons-react/icons-js/ball-basketball.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBallBasketball = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBallBasketball; \ No newline at end of file diff --git a/icons-react/icons-js/ball-bowling.js b/icons-react/icons-js/ball-bowling.js new file mode 100644 index 000000000..fa5fbcd6b --- /dev/null +++ b/icons-react/icons-js/ball-bowling.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBallBowling = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBallBowling; \ No newline at end of file diff --git a/icons-react/icons-js/ball-tennis.js b/icons-react/icons-js/ball-tennis.js new file mode 100644 index 000000000..4a8f4db35 --- /dev/null +++ b/icons-react/icons-js/ball-tennis.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBallTennis = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBallTennis; \ No newline at end of file diff --git a/icons-react/icons-js/ball-volleyball.js b/icons-react/icons-js/ball-volleyball.js new file mode 100644 index 000000000..27b5c0214 --- /dev/null +++ b/icons-react/icons-js/ball-volleyball.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBallVolleyball = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBallVolleyball; \ No newline at end of file diff --git a/icons-react/icons-js/ban.js b/icons-react/icons-js/ban.js new file mode 100644 index 000000000..55c30f24d --- /dev/null +++ b/icons-react/icons-js/ban.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBan = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBan; \ No newline at end of file diff --git a/icons-react/icons-js/bandage.js b/icons-react/icons-js/bandage.js new file mode 100644 index 000000000..85039cd6a --- /dev/null +++ b/icons-react/icons-js/bandage.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBandage = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBandage; \ No newline at end of file diff --git a/icons-react/icons-js/barcode.js b/icons-react/icons-js/barcode.js new file mode 100644 index 000000000..26c9f824d --- /dev/null +++ b/icons-react/icons-js/barcode.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBarcode = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBarcode; \ No newline at end of file diff --git a/icons-react/icons-js/basket.js b/icons-react/icons-js/basket.js new file mode 100644 index 000000000..b33298832 --- /dev/null +++ b/icons-react/icons-js/basket.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBasket = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBasket; \ No newline at end of file diff --git a/icons-react/icons-js/battery-1.js b/icons-react/icons-js/battery-1.js new file mode 100644 index 000000000..c3ffb8474 --- /dev/null +++ b/icons-react/icons-js/battery-1.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBattery1 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBattery1; \ No newline at end of file diff --git a/icons-react/icons-js/battery-2.js b/icons-react/icons-js/battery-2.js new file mode 100644 index 000000000..454c04fd9 --- /dev/null +++ b/icons-react/icons-js/battery-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBattery2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBattery2; \ No newline at end of file diff --git a/icons-react/icons-js/battery-3.js b/icons-react/icons-js/battery-3.js new file mode 100644 index 000000000..3a8e10f6c --- /dev/null +++ b/icons-react/icons-js/battery-3.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBattery3 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBattery3; \ No newline at end of file diff --git a/icons-react/icons-js/battery-4.js b/icons-react/icons-js/battery-4.js new file mode 100644 index 000000000..a4bc9d59c --- /dev/null +++ b/icons-react/icons-js/battery-4.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBattery4 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBattery4; \ No newline at end of file diff --git a/icons-react/icons-js/battery-charging.js b/icons-react/icons-js/battery-charging.js new file mode 100644 index 000000000..111b6c52b --- /dev/null +++ b/icons-react/icons-js/battery-charging.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBatteryCharging = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBatteryCharging; \ No newline at end of file diff --git a/icons-react/icons-js/battery.js b/icons-react/icons-js/battery.js new file mode 100644 index 000000000..27329de49 --- /dev/null +++ b/icons-react/icons-js/battery.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBattery = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBattery; \ No newline at end of file diff --git a/icons-react/icons-js/bed.js b/icons-react/icons-js/bed.js new file mode 100644 index 000000000..ffc678060 --- /dev/null +++ b/icons-react/icons-js/bed.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBed = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBed; \ No newline at end of file diff --git a/icons-react/icons-js/bell.js b/icons-react/icons-js/bell.js new file mode 100644 index 000000000..36072c033 --- /dev/null +++ b/icons-react/icons-js/bell.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBell = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBell; \ No newline at end of file diff --git a/icons-react/icons-js/bike.js b/icons-react/icons-js/bike.js new file mode 100644 index 000000000..b4660f797 --- /dev/null +++ b/icons-react/icons-js/bike.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBike = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBike; \ No newline at end of file diff --git a/icons-react/icons-js/biohazard.js b/icons-react/icons-js/biohazard.js new file mode 100644 index 000000000..1a0f765c3 --- /dev/null +++ b/icons-react/icons-js/biohazard.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBiohazard = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBiohazard; \ No newline at end of file diff --git a/icons-react/icons-js/bluetooth.js b/icons-react/icons-js/bluetooth.js new file mode 100644 index 000000000..54a6480c1 --- /dev/null +++ b/icons-react/icons-js/bluetooth.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBluetooth = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBluetooth; \ No newline at end of file diff --git a/icons-react/icons-js/bold.js b/icons-react/icons-js/bold.js new file mode 100644 index 000000000..e3ed8a546 --- /dev/null +++ b/icons-react/icons-js/bold.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBold = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBold; \ No newline at end of file diff --git a/icons-react/icons-js/bolt.js b/icons-react/icons-js/bolt.js new file mode 100644 index 000000000..8fb1f0e14 --- /dev/null +++ b/icons-react/icons-js/bolt.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBolt = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBolt; \ No newline at end of file diff --git a/icons-react/icons-js/book.js b/icons-react/icons-js/book.js new file mode 100644 index 000000000..0671685e0 --- /dev/null +++ b/icons-react/icons-js/book.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBook = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBook; \ No newline at end of file diff --git a/icons-react/icons-js/bookmark.js b/icons-react/icons-js/bookmark.js new file mode 100644 index 000000000..06e144c41 --- /dev/null +++ b/icons-react/icons-js/bookmark.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBookmark = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBookmark; \ No newline at end of file diff --git a/icons-react/icons-js/border-all.js b/icons-react/icons-js/border-all.js new file mode 100644 index 000000000..ae7761df0 --- /dev/null +++ b/icons-react/icons-js/border-all.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderAll = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderAll; \ No newline at end of file diff --git a/icons-react/icons-js/border-bottom.js b/icons-react/icons-js/border-bottom.js new file mode 100644 index 000000000..dbd6fcb77 --- /dev/null +++ b/icons-react/icons-js/border-bottom.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderBottom = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderBottom; \ No newline at end of file diff --git a/icons-react/icons-js/border-horizontal.js b/icons-react/icons-js/border-horizontal.js new file mode 100644 index 000000000..cff75a52d --- /dev/null +++ b/icons-react/icons-js/border-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/border-inner.js b/icons-react/icons-js/border-inner.js new file mode 100644 index 000000000..0a3f8df33 --- /dev/null +++ b/icons-react/icons-js/border-inner.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderInner = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderInner; \ No newline at end of file diff --git a/icons-react/icons-js/border-left.js b/icons-react/icons-js/border-left.js new file mode 100644 index 000000000..8361c309c --- /dev/null +++ b/icons-react/icons-js/border-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderLeft; \ No newline at end of file diff --git a/icons-react/icons-js/border-none.js b/icons-react/icons-js/border-none.js new file mode 100644 index 000000000..d911cc716 --- /dev/null +++ b/icons-react/icons-js/border-none.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderNone = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderNone; \ No newline at end of file diff --git a/icons-react/icons-js/border-outer.js b/icons-react/icons-js/border-outer.js new file mode 100644 index 000000000..8eaa2da11 --- /dev/null +++ b/icons-react/icons-js/border-outer.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderOuter = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderOuter; \ No newline at end of file diff --git a/icons-react/icons-js/border-radius.js b/icons-react/icons-js/border-radius.js new file mode 100644 index 000000000..b1f6deec1 --- /dev/null +++ b/icons-react/icons-js/border-radius.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderRadius = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderRadius; \ No newline at end of file diff --git a/icons-react/icons-js/border-right.js b/icons-react/icons-js/border-right.js new file mode 100644 index 000000000..42b4c8a82 --- /dev/null +++ b/icons-react/icons-js/border-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderRight; \ No newline at end of file diff --git a/icons-react/icons-js/border-top.js b/icons-react/icons-js/border-top.js new file mode 100644 index 000000000..e82894586 --- /dev/null +++ b/icons-react/icons-js/border-top.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderTop = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderTop; \ No newline at end of file diff --git a/icons-react/icons-js/border-vertical.js b/icons-react/icons-js/border-vertical.js new file mode 100644 index 000000000..0393668aa --- /dev/null +++ b/icons-react/icons-js/border-vertical.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBorderVertical = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBorderVertical; \ No newline at end of file diff --git a/icons-react/icons-js/box.js b/icons-react/icons-js/box.js new file mode 100644 index 000000000..848660f43 --- /dev/null +++ b/icons-react/icons-js/box.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBox = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBox; \ No newline at end of file diff --git a/icons-react/icons-js/braces.js b/icons-react/icons-js/braces.js new file mode 100644 index 000000000..204cfdf6e --- /dev/null +++ b/icons-react/icons-js/braces.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBraces = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBraces; \ No newline at end of file diff --git a/icons-react/icons-js/brackets.js b/icons-react/icons-js/brackets.js new file mode 100644 index 000000000..e85611617 --- /dev/null +++ b/icons-react/icons-js/brackets.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrackets = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrackets; \ No newline at end of file diff --git a/icons-react/icons-js/brand-android.js b/icons-react/icons-js/brand-android.js new file mode 100644 index 000000000..7d53b5eee --- /dev/null +++ b/icons-react/icons-js/brand-android.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandAndroid = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandAndroid; \ No newline at end of file diff --git a/icons-react/icons-js/brand-apple.js b/icons-react/icons-js/brand-apple.js new file mode 100644 index 000000000..cd9955c01 --- /dev/null +++ b/icons-react/icons-js/brand-apple.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandApple = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandApple; \ No newline at end of file diff --git a/icons-react/icons-js/brand-behance.js b/icons-react/icons-js/brand-behance.js new file mode 100644 index 000000000..49906a261 --- /dev/null +++ b/icons-react/icons-js/brand-behance.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandBehance = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandBehance; \ No newline at end of file diff --git a/icons-react/icons-js/brand-chrome.js b/icons-react/icons-js/brand-chrome.js new file mode 100644 index 000000000..380c1cd0c --- /dev/null +++ b/icons-react/icons-js/brand-chrome.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandChrome = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandChrome; \ No newline at end of file diff --git a/icons-react/icons-js/brand-codepen.js b/icons-react/icons-js/brand-codepen.js new file mode 100644 index 000000000..e9230ee62 --- /dev/null +++ b/icons-react/icons-js/brand-codepen.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandCodepen = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandCodepen; \ No newline at end of file diff --git a/icons-react/icons-js/brand-dribbble.js b/icons-react/icons-js/brand-dribbble.js new file mode 100644 index 000000000..353830828 --- /dev/null +++ b/icons-react/icons-js/brand-dribbble.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandDribbble = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandDribbble; \ No newline at end of file diff --git a/icons-react/icons-js/brand-facebook.js b/icons-react/icons-js/brand-facebook.js new file mode 100644 index 000000000..a3d83404d --- /dev/null +++ b/icons-react/icons-js/brand-facebook.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandFacebook = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandFacebook; \ No newline at end of file diff --git a/icons-react/icons-js/brand-figma.js b/icons-react/icons-js/brand-figma.js new file mode 100644 index 000000000..f8c7c6e07 --- /dev/null +++ b/icons-react/icons-js/brand-figma.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandFigma = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandFigma; \ No newline at end of file diff --git a/icons-react/icons-js/brand-framer.js b/icons-react/icons-js/brand-framer.js new file mode 100644 index 000000000..f2ecd6d08 --- /dev/null +++ b/icons-react/icons-js/brand-framer.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandFramer = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandFramer; \ No newline at end of file diff --git a/icons-react/icons-js/brand-github.js b/icons-react/icons-js/brand-github.js new file mode 100644 index 000000000..7d667c3fe --- /dev/null +++ b/icons-react/icons-js/brand-github.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandGithub = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandGithub; \ No newline at end of file diff --git a/icons-react/icons-js/brand-gitlab.js b/icons-react/icons-js/brand-gitlab.js new file mode 100644 index 000000000..ced9f77d7 --- /dev/null +++ b/icons-react/icons-js/brand-gitlab.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandGitlab = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandGitlab; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google-drive.js b/icons-react/icons-js/brand-google-drive.js new file mode 100644 index 000000000..5f0ff28ed --- /dev/null +++ b/icons-react/icons-js/brand-google-drive.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandGoogleDrive = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandGoogleDrive; \ No newline at end of file diff --git a/icons-react/icons-js/brand-google.js b/icons-react/icons-js/brand-google.js new file mode 100644 index 000000000..b705c7e8d --- /dev/null +++ b/icons-react/icons-js/brand-google.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandGoogle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandGoogle; \ No newline at end of file diff --git a/icons-react/icons-js/brand-instagram.js b/icons-react/icons-js/brand-instagram.js new file mode 100644 index 000000000..e16cf5ff9 --- /dev/null +++ b/icons-react/icons-js/brand-instagram.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandInstagram = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandInstagram; \ No newline at end of file diff --git a/icons-react/icons-js/brand-linkedin.js b/icons-react/icons-js/brand-linkedin.js new file mode 100644 index 000000000..65b3394ca --- /dev/null +++ b/icons-react/icons-js/brand-linkedin.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandLinkedin = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandLinkedin; \ No newline at end of file diff --git a/icons-react/icons-js/brand-medium.js b/icons-react/icons-js/brand-medium.js new file mode 100644 index 000000000..c543b8497 --- /dev/null +++ b/icons-react/icons-js/brand-medium.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandMedium = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandMedium; \ No newline at end of file diff --git a/icons-react/icons-js/brand-messenger.js b/icons-react/icons-js/brand-messenger.js new file mode 100644 index 000000000..9eb515e7c --- /dev/null +++ b/icons-react/icons-js/brand-messenger.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandMessenger = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandMessenger; \ No newline at end of file diff --git a/icons-react/icons-js/brand-opera.js b/icons-react/icons-js/brand-opera.js new file mode 100644 index 000000000..cba0ccfe6 --- /dev/null +++ b/icons-react/icons-js/brand-opera.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandOpera = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandOpera; \ No newline at end of file diff --git a/icons-react/icons-js/brand-paypal.js b/icons-react/icons-js/brand-paypal.js new file mode 100644 index 000000000..164a49ccb --- /dev/null +++ b/icons-react/icons-js/brand-paypal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandPaypal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandPaypal; \ No newline at end of file diff --git a/icons-react/icons-js/brand-pinterest.js b/icons-react/icons-js/brand-pinterest.js new file mode 100644 index 000000000..3da718572 --- /dev/null +++ b/icons-react/icons-js/brand-pinterest.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandPinterest = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandPinterest; \ No newline at end of file diff --git a/icons-react/icons-js/brand-reddit.js b/icons-react/icons-js/brand-reddit.js new file mode 100644 index 000000000..504726fdb --- /dev/null +++ b/icons-react/icons-js/brand-reddit.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandReddit = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandReddit; \ No newline at end of file diff --git a/icons-react/icons-js/brand-safari.js b/icons-react/icons-js/brand-safari.js new file mode 100644 index 000000000..39c94f761 --- /dev/null +++ b/icons-react/icons-js/brand-safari.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandSafari = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandSafari; \ No newline at end of file diff --git a/icons-react/icons-js/brand-sketch.js b/icons-react/icons-js/brand-sketch.js new file mode 100644 index 000000000..dda837948 --- /dev/null +++ b/icons-react/icons-js/brand-sketch.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandSketch = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandSketch; \ No newline at end of file diff --git a/icons-react/icons-js/brand-slack.js b/icons-react/icons-js/brand-slack.js new file mode 100644 index 000000000..5a9835407 --- /dev/null +++ b/icons-react/icons-js/brand-slack.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandSlack = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandSlack; \ No newline at end of file diff --git a/icons-react/icons-js/brand-snapchat.js b/icons-react/icons-js/brand-snapchat.js new file mode 100644 index 000000000..5aabc070a --- /dev/null +++ b/icons-react/icons-js/brand-snapchat.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandSnapchat = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandSnapchat; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tabler.js b/icons-react/icons-js/brand-tabler.js new file mode 100644 index 000000000..961585dfb --- /dev/null +++ b/icons-react/icons-js/brand-tabler.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandTabler = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandTabler; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tailwind.js b/icons-react/icons-js/brand-tailwind.js new file mode 100644 index 000000000..9fe192997 --- /dev/null +++ b/icons-react/icons-js/brand-tailwind.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandTailwind = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandTailwind; \ No newline at end of file diff --git a/icons-react/icons-js/brand-telegram.js b/icons-react/icons-js/brand-telegram.js new file mode 100644 index 000000000..e6f29d01d --- /dev/null +++ b/icons-react/icons-js/brand-telegram.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandTelegram = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandTelegram; \ No newline at end of file diff --git a/icons-react/icons-js/brand-tiktok.js b/icons-react/icons-js/brand-tiktok.js new file mode 100644 index 000000000..131c55f29 --- /dev/null +++ b/icons-react/icons-js/brand-tiktok.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandTiktok = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandTiktok; \ No newline at end of file diff --git a/icons-react/icons-js/brand-twitter.js b/icons-react/icons-js/brand-twitter.js new file mode 100644 index 000000000..543ed5ab7 --- /dev/null +++ b/icons-react/icons-js/brand-twitter.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandTwitter = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandTwitter; \ No newline at end of file diff --git a/icons-react/icons-js/brand-whatsapp.js b/icons-react/icons-js/brand-whatsapp.js new file mode 100644 index 000000000..79e96da90 --- /dev/null +++ b/icons-react/icons-js/brand-whatsapp.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandWhatsapp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandWhatsapp; \ No newline at end of file diff --git a/icons-react/icons-js/brand-youtube.js b/icons-react/icons-js/brand-youtube.js new file mode 100644 index 000000000..06368087b --- /dev/null +++ b/icons-react/icons-js/brand-youtube.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrandYoutube = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrandYoutube; \ No newline at end of file diff --git a/icons-react/icons-js/briefcase.js b/icons-react/icons-js/briefcase.js new file mode 100644 index 000000000..da6428483 --- /dev/null +++ b/icons-react/icons-js/briefcase.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBriefcase = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBriefcase; \ No newline at end of file diff --git a/icons-react/icons-js/brightness-down.js b/icons-react/icons-js/brightness-down.js new file mode 100644 index 000000000..5d08474ca --- /dev/null +++ b/icons-react/icons-js/brightness-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrightnessDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrightnessDown; \ No newline at end of file diff --git a/icons-react/icons-js/brightness-up.js b/icons-react/icons-js/brightness-up.js new file mode 100644 index 000000000..b68c6e058 --- /dev/null +++ b/icons-react/icons-js/brightness-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrightnessUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrightnessUp; \ No newline at end of file diff --git a/icons-react/icons-js/brightness.js b/icons-react/icons-js/brightness.js new file mode 100644 index 000000000..120a6aa91 --- /dev/null +++ b/icons-react/icons-js/brightness.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrightness = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrightness; \ No newline at end of file diff --git a/icons-react/icons-js/browser.js b/icons-react/icons-js/browser.js new file mode 100644 index 000000000..d0561b748 --- /dev/null +++ b/icons-react/icons-js/browser.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrowser = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrowser; \ No newline at end of file diff --git a/icons-react/icons-js/brush.js b/icons-react/icons-js/brush.js new file mode 100644 index 000000000..68ba41c02 --- /dev/null +++ b/icons-react/icons-js/brush.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBrush = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBrush; \ No newline at end of file diff --git a/icons-react/icons-js/bucket.js b/icons-react/icons-js/bucket.js new file mode 100644 index 000000000..9ea82b1e4 --- /dev/null +++ b/icons-react/icons-js/bucket.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBucket = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBucket; \ No newline at end of file diff --git a/icons-react/icons-js/bug.js b/icons-react/icons-js/bug.js new file mode 100644 index 000000000..d9dc3e708 --- /dev/null +++ b/icons-react/icons-js/bug.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBug = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBug; \ No newline at end of file diff --git a/icons-react/icons-js/building-arch.js b/icons-react/icons-js/building-arch.js new file mode 100644 index 000000000..d62b79e1b --- /dev/null +++ b/icons-react/icons-js/building-arch.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingArch = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingArch; \ No newline at end of file diff --git a/icons-react/icons-js/building-bank.js b/icons-react/icons-js/building-bank.js new file mode 100644 index 000000000..694556178 --- /dev/null +++ b/icons-react/icons-js/building-bank.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingBank = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingBank; \ No newline at end of file diff --git a/icons-react/icons-js/building-bridge-2.js b/icons-react/icons-js/building-bridge-2.js new file mode 100644 index 000000000..712c0986c --- /dev/null +++ b/icons-react/icons-js/building-bridge-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingBridge2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingBridge2; \ No newline at end of file diff --git a/icons-react/icons-js/building-bridge.js b/icons-react/icons-js/building-bridge.js new file mode 100644 index 000000000..293b1897d --- /dev/null +++ b/icons-react/icons-js/building-bridge.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingBridge = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingBridge; \ No newline at end of file diff --git a/icons-react/icons-js/building-church.js b/icons-react/icons-js/building-church.js new file mode 100644 index 000000000..3aaf3edbc --- /dev/null +++ b/icons-react/icons-js/building-church.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingChurch = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingChurch; \ No newline at end of file diff --git a/icons-react/icons-js/building-community.js b/icons-react/icons-js/building-community.js new file mode 100644 index 000000000..0b161b12a --- /dev/null +++ b/icons-react/icons-js/building-community.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingCommunity = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingCommunity; \ No newline at end of file diff --git a/icons-react/icons-js/building-hospital.js b/icons-react/icons-js/building-hospital.js new file mode 100644 index 000000000..b9660ee47 --- /dev/null +++ b/icons-react/icons-js/building-hospital.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingHospital = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingHospital; \ No newline at end of file diff --git a/icons-react/icons-js/building-pavilon.js b/icons-react/icons-js/building-pavilon.js new file mode 100644 index 000000000..20ba8a193 --- /dev/null +++ b/icons-react/icons-js/building-pavilon.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingPavilon = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingPavilon; \ No newline at end of file diff --git a/icons-react/icons-js/building-skyscraper.js b/icons-react/icons-js/building-skyscraper.js new file mode 100644 index 000000000..3b83ca2cc --- /dev/null +++ b/icons-react/icons-js/building-skyscraper.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingSkyscraper = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingSkyscraper; \ No newline at end of file diff --git a/icons-react/icons-js/building-store.js b/icons-react/icons-js/building-store.js new file mode 100644 index 000000000..c09e8bc8a --- /dev/null +++ b/icons-react/icons-js/building-store.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingStore = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingStore; \ No newline at end of file diff --git a/icons-react/icons-js/building-warehouse.js b/icons-react/icons-js/building-warehouse.js new file mode 100644 index 000000000..eb33d095b --- /dev/null +++ b/icons-react/icons-js/building-warehouse.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuildingWarehouse = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuildingWarehouse; \ No newline at end of file diff --git a/icons-react/icons-js/building.js b/icons-react/icons-js/building.js new file mode 100644 index 000000000..06ebcb973 --- /dev/null +++ b/icons-react/icons-js/building.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBuilding = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBuilding; \ No newline at end of file diff --git a/icons-react/icons-js/bulb-off.js b/icons-react/icons-js/bulb-off.js new file mode 100644 index 000000000..7360535c3 --- /dev/null +++ b/icons-react/icons-js/bulb-off.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBulbOff = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBulbOff; \ No newline at end of file diff --git a/icons-react/icons-js/bulb.js b/icons-react/icons-js/bulb.js new file mode 100644 index 000000000..efd8d2cec --- /dev/null +++ b/icons-react/icons-js/bulb.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBulb = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBulb; \ No newline at end of file diff --git a/icons-react/icons-js/bus.js b/icons-react/icons-js/bus.js new file mode 100644 index 000000000..3db4e1c38 --- /dev/null +++ b/icons-react/icons-js/bus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconBus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconBus; \ No newline at end of file diff --git a/icons-react/icons-js/calculator.js b/icons-react/icons-js/calculator.js new file mode 100644 index 000000000..f261c02af --- /dev/null +++ b/icons-react/icons-js/calculator.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCalculator = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCalculator; \ No newline at end of file diff --git a/icons-react/icons-js/calendar-event.js b/icons-react/icons-js/calendar-event.js new file mode 100644 index 000000000..eb2dceee9 --- /dev/null +++ b/icons-react/icons-js/calendar-event.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCalendarEvent = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCalendarEvent; \ No newline at end of file diff --git a/icons-react/icons-js/calendar-minus.js b/icons-react/icons-js/calendar-minus.js new file mode 100644 index 000000000..61a3b0832 --- /dev/null +++ b/icons-react/icons-js/calendar-minus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCalendarMinus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCalendarMinus; \ No newline at end of file diff --git a/icons-react/icons-js/calendar-plus.js b/icons-react/icons-js/calendar-plus.js new file mode 100644 index 000000000..3426ae002 --- /dev/null +++ b/icons-react/icons-js/calendar-plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCalendarPlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCalendarPlus; \ No newline at end of file diff --git a/icons-react/icons-js/calendar.js b/icons-react/icons-js/calendar.js new file mode 100644 index 000000000..db8cd0d22 --- /dev/null +++ b/icons-react/icons-js/calendar.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCalendar = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCalendar; \ No newline at end of file diff --git a/icons-react/icons-js/camera-minus.js b/icons-react/icons-js/camera-minus.js new file mode 100644 index 000000000..dae301bd0 --- /dev/null +++ b/icons-react/icons-js/camera-minus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCameraMinus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCameraMinus; \ No newline at end of file diff --git a/icons-react/icons-js/camera-plus.js b/icons-react/icons-js/camera-plus.js new file mode 100644 index 000000000..e91a45b63 --- /dev/null +++ b/icons-react/icons-js/camera-plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCameraPlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCameraPlus; \ No newline at end of file diff --git a/icons-react/icons-js/camera.js b/icons-react/icons-js/camera.js new file mode 100644 index 000000000..b4a05fa02 --- /dev/null +++ b/icons-react/icons-js/camera.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCamera = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCamera; \ No newline at end of file diff --git a/icons-react/icons-js/capture.js b/icons-react/icons-js/capture.js new file mode 100644 index 000000000..2a6ed2bdb --- /dev/null +++ b/icons-react/icons-js/capture.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCapture = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCapture; \ No newline at end of file diff --git a/icons-react/icons-js/car.js b/icons-react/icons-js/car.js new file mode 100644 index 000000000..e04bad187 --- /dev/null +++ b/icons-react/icons-js/car.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCar = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCar; \ No newline at end of file diff --git a/icons-react/icons-js/caravan.js b/icons-react/icons-js/caravan.js new file mode 100644 index 000000000..b3c16b0d0 --- /dev/null +++ b/icons-react/icons-js/caravan.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCaravan = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCaravan; \ No newline at end of file diff --git a/icons-react/icons-js/caret-down.js b/icons-react/icons-js/caret-down.js new file mode 100644 index 000000000..9679d9e8a --- /dev/null +++ b/icons-react/icons-js/caret-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCaretDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCaretDown; \ No newline at end of file diff --git a/icons-react/icons-js/caret-left.js b/icons-react/icons-js/caret-left.js new file mode 100644 index 000000000..fce6d2f2c --- /dev/null +++ b/icons-react/icons-js/caret-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCaretLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCaretLeft; \ No newline at end of file diff --git a/icons-react/icons-js/caret-right.js b/icons-react/icons-js/caret-right.js new file mode 100644 index 000000000..2d8780545 --- /dev/null +++ b/icons-react/icons-js/caret-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCaretRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCaretRight; \ No newline at end of file diff --git a/icons-react/icons-js/caret-up.js b/icons-react/icons-js/caret-up.js new file mode 100644 index 000000000..d83bd563f --- /dev/null +++ b/icons-react/icons-js/caret-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCaretUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCaretUp; \ No newline at end of file diff --git a/icons-react/icons-js/cash.js b/icons-react/icons-js/cash.js new file mode 100644 index 000000000..61026d745 --- /dev/null +++ b/icons-react/icons-js/cash.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCash = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCash; \ No newline at end of file diff --git a/icons-react/icons-js/cast.js b/icons-react/icons-js/cast.js new file mode 100644 index 000000000..0cd029bfc --- /dev/null +++ b/icons-react/icons-js/cast.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCast = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCast; \ No newline at end of file diff --git a/icons-react/icons-js/chart-area-line.js b/icons-react/icons-js/chart-area-line.js new file mode 100644 index 000000000..2abdc5b1c --- /dev/null +++ b/icons-react/icons-js/chart-area-line.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChartAreaLine = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChartAreaLine; \ No newline at end of file diff --git a/icons-react/icons-js/chart-area.js b/icons-react/icons-js/chart-area.js new file mode 100644 index 000000000..c1d828c0d --- /dev/null +++ b/icons-react/icons-js/chart-area.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChartArea = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChartArea; \ No newline at end of file diff --git a/icons-react/icons-js/chart-bar.js b/icons-react/icons-js/chart-bar.js new file mode 100644 index 000000000..d3e905ec5 --- /dev/null +++ b/icons-react/icons-js/chart-bar.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChartBar = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChartBar; \ No newline at end of file diff --git a/icons-react/icons-js/chart-bubble.js b/icons-react/icons-js/chart-bubble.js new file mode 100644 index 000000000..595efbc2f --- /dev/null +++ b/icons-react/icons-js/chart-bubble.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChartBubble = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChartBubble; \ No newline at end of file diff --git a/icons-react/icons-js/chart-candle.js b/icons-react/icons-js/chart-candle.js new file mode 100644 index 000000000..75c9ad38e --- /dev/null +++ b/icons-react/icons-js/chart-candle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChartCandle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChartCandle; \ No newline at end of file diff --git a/icons-react/icons-js/chart-donut.js b/icons-react/icons-js/chart-donut.js new file mode 100644 index 000000000..8087289c0 --- /dev/null +++ b/icons-react/icons-js/chart-donut.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChartDonut = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChartDonut; \ No newline at end of file diff --git a/icons-react/icons-js/chart-line.js b/icons-react/icons-js/chart-line.js new file mode 100644 index 000000000..d32d3f0fa --- /dev/null +++ b/icons-react/icons-js/chart-line.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChartLine = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChartLine; \ No newline at end of file diff --git a/icons-react/icons-js/chart-pie.js b/icons-react/icons-js/chart-pie.js new file mode 100644 index 000000000..6527b16bc --- /dev/null +++ b/icons-react/icons-js/chart-pie.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChartPie = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChartPie; \ No newline at end of file diff --git a/icons-react/icons-js/check.js b/icons-react/icons-js/check.js new file mode 100644 index 000000000..cd4cbb29c --- /dev/null +++ b/icons-react/icons-js/check.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCheck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCheck; \ No newline at end of file diff --git a/icons-react/icons-js/checkbox.js b/icons-react/icons-js/checkbox.js new file mode 100644 index 000000000..3e77e15b1 --- /dev/null +++ b/icons-react/icons-js/checkbox.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCheckbox = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCheckbox; \ No newline at end of file diff --git a/icons-react/icons-js/checks.js b/icons-react/icons-js/checks.js new file mode 100644 index 000000000..15aa941ef --- /dev/null +++ b/icons-react/icons-js/checks.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChecks = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChecks; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-down.js b/icons-react/icons-js/chevron-down.js new file mode 100644 index 000000000..65c4d654e --- /dev/null +++ b/icons-react/icons-js/chevron-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChevronDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChevronDown; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-left.js b/icons-react/icons-js/chevron-left.js new file mode 100644 index 000000000..364256ca2 --- /dev/null +++ b/icons-react/icons-js/chevron-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChevronLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChevronLeft; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-right.js b/icons-react/icons-js/chevron-right.js new file mode 100644 index 000000000..2505fe8b9 --- /dev/null +++ b/icons-react/icons-js/chevron-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChevronRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChevronRight; \ No newline at end of file diff --git a/icons-react/icons-js/chevron-up.js b/icons-react/icons-js/chevron-up.js new file mode 100644 index 000000000..3d36c7ce5 --- /dev/null +++ b/icons-react/icons-js/chevron-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChevronUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChevronUp; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-down.js b/icons-react/icons-js/chevrons-down.js new file mode 100644 index 000000000..295134740 --- /dev/null +++ b/icons-react/icons-js/chevrons-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChevronsDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChevronsDown; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-left.js b/icons-react/icons-js/chevrons-left.js new file mode 100644 index 000000000..d109e54c7 --- /dev/null +++ b/icons-react/icons-js/chevrons-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChevronsLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChevronsLeft; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-right.js b/icons-react/icons-js/chevrons-right.js new file mode 100644 index 000000000..7eac74b1b --- /dev/null +++ b/icons-react/icons-js/chevrons-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChevronsRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChevronsRight; \ No newline at end of file diff --git a/icons-react/icons-js/chevrons-up.js b/icons-react/icons-js/chevrons-up.js new file mode 100644 index 000000000..1a973c998 --- /dev/null +++ b/icons-react/icons-js/chevrons-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconChevronsUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconChevronsUp; \ No newline at end of file diff --git a/icons-react/icons-js/circle-check.js b/icons-react/icons-js/circle-check.js new file mode 100644 index 000000000..980ba9e83 --- /dev/null +++ b/icons-react/icons-js/circle-check.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCircleCheck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCircleCheck; \ No newline at end of file diff --git a/icons-react/icons-js/circle-minus.js b/icons-react/icons-js/circle-minus.js new file mode 100644 index 000000000..f67fcbd7f --- /dev/null +++ b/icons-react/icons-js/circle-minus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCircleMinus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCircleMinus; \ No newline at end of file diff --git a/icons-react/icons-js/circle-plus.js b/icons-react/icons-js/circle-plus.js new file mode 100644 index 000000000..996da9a87 --- /dev/null +++ b/icons-react/icons-js/circle-plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCirclePlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCirclePlus; \ No newline at end of file diff --git a/icons-react/icons-js/circle-x.js b/icons-react/icons-js/circle-x.js new file mode 100644 index 000000000..09d9bb26e --- /dev/null +++ b/icons-react/icons-js/circle-x.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCircleX = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCircleX; \ No newline at end of file diff --git a/icons-react/icons-js/circle.js b/icons-react/icons-js/circle.js new file mode 100644 index 000000000..b525033ca --- /dev/null +++ b/icons-react/icons-js/circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCircle; \ No newline at end of file diff --git a/icons-react/icons-js/clear-formatting.js b/icons-react/icons-js/clear-formatting.js new file mode 100644 index 000000000..42eba06f0 --- /dev/null +++ b/icons-react/icons-js/clear-formatting.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconClearFormatting = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconClearFormatting; \ No newline at end of file diff --git a/icons-react/icons-js/click.js b/icons-react/icons-js/click.js new file mode 100644 index 000000000..d012e6e37 --- /dev/null +++ b/icons-react/icons-js/click.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconClick = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconClick; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-check.js b/icons-react/icons-js/clipboard-check.js new file mode 100644 index 000000000..d9959a801 --- /dev/null +++ b/icons-react/icons-js/clipboard-check.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconClipboardCheck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconClipboardCheck; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-list.js b/icons-react/icons-js/clipboard-list.js new file mode 100644 index 000000000..08e9c5527 --- /dev/null +++ b/icons-react/icons-js/clipboard-list.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconClipboardList = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconClipboardList; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard-x.js b/icons-react/icons-js/clipboard-x.js new file mode 100644 index 000000000..7b3cdb561 --- /dev/null +++ b/icons-react/icons-js/clipboard-x.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconClipboardX = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconClipboardX; \ No newline at end of file diff --git a/icons-react/icons-js/clipboard.js b/icons-react/icons-js/clipboard.js new file mode 100644 index 000000000..fe2c28034 --- /dev/null +++ b/icons-react/icons-js/clipboard.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconClipboard = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconClipboard; \ No newline at end of file diff --git a/icons-react/icons-js/clock.js b/icons-react/icons-js/clock.js new file mode 100644 index 000000000..d09bb78f1 --- /dev/null +++ b/icons-react/icons-js/clock.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconClock = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconClock; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-download.js b/icons-react/icons-js/cloud-download.js new file mode 100644 index 000000000..403f2cfa2 --- /dev/null +++ b/icons-react/icons-js/cloud-download.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCloudDownload = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCloudDownload; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-rain.js b/icons-react/icons-js/cloud-rain.js new file mode 100644 index 000000000..66687f709 --- /dev/null +++ b/icons-react/icons-js/cloud-rain.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCloudRain = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCloudRain; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-snow.js b/icons-react/icons-js/cloud-snow.js new file mode 100644 index 000000000..bab3b95a7 --- /dev/null +++ b/icons-react/icons-js/cloud-snow.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCloudSnow = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCloudSnow; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-storm.js b/icons-react/icons-js/cloud-storm.js new file mode 100644 index 000000000..2914b6e67 --- /dev/null +++ b/icons-react/icons-js/cloud-storm.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCloudStorm = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCloudStorm; \ No newline at end of file diff --git a/icons-react/icons-js/cloud-upload.js b/icons-react/icons-js/cloud-upload.js new file mode 100644 index 000000000..878956501 --- /dev/null +++ b/icons-react/icons-js/cloud-upload.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCloudUpload = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCloudUpload; \ No newline at end of file diff --git a/icons-react/icons-js/cloud.js b/icons-react/icons-js/cloud.js new file mode 100644 index 000000000..7cb9cc5ad --- /dev/null +++ b/icons-react/icons-js/cloud.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCloud = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCloud; \ No newline at end of file diff --git a/icons-react/icons-js/code.js b/icons-react/icons-js/code.js new file mode 100644 index 000000000..897ef2143 --- /dev/null +++ b/icons-react/icons-js/code.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCode = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCode; \ No newline at end of file diff --git a/icons-react/icons-js/coin.js b/icons-react/icons-js/coin.js new file mode 100644 index 000000000..84d8d7d32 --- /dev/null +++ b/icons-react/icons-js/coin.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCoin = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCoin; \ No newline at end of file diff --git a/icons-react/icons-js/color-picker.js b/icons-react/icons-js/color-picker.js new file mode 100644 index 000000000..03ba167b7 --- /dev/null +++ b/icons-react/icons-js/color-picker.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconColorPicker = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconColorPicker; \ No newline at end of file diff --git a/icons-react/icons-js/color-swatch.js b/icons-react/icons-js/color-swatch.js new file mode 100644 index 000000000..966efa336 --- /dev/null +++ b/icons-react/icons-js/color-swatch.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconColorSwatch = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconColorSwatch; \ No newline at end of file diff --git a/icons-react/icons-js/columns.js b/icons-react/icons-js/columns.js new file mode 100644 index 000000000..137345d85 --- /dev/null +++ b/icons-react/icons-js/columns.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconColumns = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconColumns; \ No newline at end of file diff --git a/icons-react/icons-js/comet.js b/icons-react/icons-js/comet.js new file mode 100644 index 000000000..a6519291c --- /dev/null +++ b/icons-react/icons-js/comet.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconComet = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconComet; \ No newline at end of file diff --git a/icons-react/icons-js/command.js b/icons-react/icons-js/command.js new file mode 100644 index 000000000..76d09ed2e --- /dev/null +++ b/icons-react/icons-js/command.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCommand = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCommand; \ No newline at end of file diff --git a/icons-react/icons-js/compass.js b/icons-react/icons-js/compass.js new file mode 100644 index 000000000..e4663742b --- /dev/null +++ b/icons-react/icons-js/compass.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCompass = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCompass; \ No newline at end of file diff --git a/icons-react/icons-js/contrast.js b/icons-react/icons-js/contrast.js new file mode 100644 index 000000000..7d05d2943 --- /dev/null +++ b/icons-react/icons-js/contrast.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconContrast = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconContrast; \ No newline at end of file diff --git a/icons-react/icons-js/copy.js b/icons-react/icons-js/copy.js new file mode 100644 index 000000000..3281b93cc --- /dev/null +++ b/icons-react/icons-js/copy.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCopy = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCopy; \ No newline at end of file diff --git a/icons-react/icons-js/copyleft.js b/icons-react/icons-js/copyleft.js new file mode 100644 index 000000000..41408123f --- /dev/null +++ b/icons-react/icons-js/copyleft.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCopyleft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCopyleft; \ No newline at end of file diff --git a/icons-react/icons-js/copyright.js b/icons-react/icons-js/copyright.js new file mode 100644 index 000000000..ab3cb0d74 --- /dev/null +++ b/icons-react/icons-js/copyright.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCopyright = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCopyright; \ No newline at end of file diff --git a/icons-react/icons-js/corner-down-left.js b/icons-react/icons-js/corner-down-left.js new file mode 100644 index 000000000..562cb1503 --- /dev/null +++ b/icons-react/icons-js/corner-down-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCornerDownLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCornerDownLeft; \ No newline at end of file diff --git a/icons-react/icons-js/corner-down-right.js b/icons-react/icons-js/corner-down-right.js new file mode 100644 index 000000000..1858f1ef3 --- /dev/null +++ b/icons-react/icons-js/corner-down-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCornerDownRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCornerDownRight; \ No newline at end of file diff --git a/icons-react/icons-js/corner-left-down.js b/icons-react/icons-js/corner-left-down.js new file mode 100644 index 000000000..9842cf617 --- /dev/null +++ b/icons-react/icons-js/corner-left-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCornerLeftDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCornerLeftDown; \ No newline at end of file diff --git a/icons-react/icons-js/corner-left-up.js b/icons-react/icons-js/corner-left-up.js new file mode 100644 index 000000000..7eb81714a --- /dev/null +++ b/icons-react/icons-js/corner-left-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCornerLeftUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCornerLeftUp; \ No newline at end of file diff --git a/icons-react/icons-js/corner-right-down.js b/icons-react/icons-js/corner-right-down.js new file mode 100644 index 000000000..ec92c1950 --- /dev/null +++ b/icons-react/icons-js/corner-right-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCornerRightDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCornerRightDown; \ No newline at end of file diff --git a/icons-react/icons-js/corner-right-up.js b/icons-react/icons-js/corner-right-up.js new file mode 100644 index 000000000..9124b45ed --- /dev/null +++ b/icons-react/icons-js/corner-right-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCornerRightUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCornerRightUp; \ No newline at end of file diff --git a/icons-react/icons-js/corner-up-left.js b/icons-react/icons-js/corner-up-left.js new file mode 100644 index 000000000..648fa3f75 --- /dev/null +++ b/icons-react/icons-js/corner-up-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCornerUpLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCornerUpLeft; \ No newline at end of file diff --git a/icons-react/icons-js/corner-up-right.js b/icons-react/icons-js/corner-up-right.js new file mode 100644 index 000000000..995903628 --- /dev/null +++ b/icons-react/icons-js/corner-up-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCornerUpRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCornerUpRight; \ No newline at end of file diff --git a/icons-react/icons-js/credit-card.js b/icons-react/icons-js/credit-card.js new file mode 100644 index 000000000..2ef8dc7f7 --- /dev/null +++ b/icons-react/icons-js/credit-card.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCreditCard = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCreditCard; \ No newline at end of file diff --git a/icons-react/icons-js/crop.js b/icons-react/icons-js/crop.js new file mode 100644 index 000000000..86b420131 --- /dev/null +++ b/icons-react/icons-js/crop.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCrop = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCrop; \ No newline at end of file diff --git a/icons-react/icons-js/crosshair.js b/icons-react/icons-js/crosshair.js new file mode 100644 index 000000000..c27c3496a --- /dev/null +++ b/icons-react/icons-js/crosshair.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCrosshair = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCrosshair; \ No newline at end of file diff --git a/icons-react/icons-js/currency-bitcoin.js b/icons-react/icons-js/currency-bitcoin.js new file mode 100644 index 000000000..5984fda7e --- /dev/null +++ b/icons-react/icons-js/currency-bitcoin.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCurrencyBitcoin = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCurrencyBitcoin; \ No newline at end of file diff --git a/icons-react/icons-js/currency-dollar.js b/icons-react/icons-js/currency-dollar.js new file mode 100644 index 000000000..33a74cc3a --- /dev/null +++ b/icons-react/icons-js/currency-dollar.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCurrencyDollar = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCurrencyDollar; \ No newline at end of file diff --git a/icons-react/icons-js/currency-euro.js b/icons-react/icons-js/currency-euro.js new file mode 100644 index 000000000..1edd0f491 --- /dev/null +++ b/icons-react/icons-js/currency-euro.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCurrencyEuro = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCurrencyEuro; \ No newline at end of file diff --git a/icons-react/icons-js/currency-pound.js b/icons-react/icons-js/currency-pound.js new file mode 100644 index 000000000..0c76b2686 --- /dev/null +++ b/icons-react/icons-js/currency-pound.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCurrencyPound = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCurrencyPound; \ No newline at end of file diff --git a/icons-react/icons-js/currency-rupee.js b/icons-react/icons-js/currency-rupee.js new file mode 100644 index 000000000..dbcdf8c5b --- /dev/null +++ b/icons-react/icons-js/currency-rupee.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCurrencyRupee = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCurrencyRupee; \ No newline at end of file diff --git a/icons-react/icons-js/currency-yen.js b/icons-react/icons-js/currency-yen.js new file mode 100644 index 000000000..d3a257898 --- /dev/null +++ b/icons-react/icons-js/currency-yen.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCurrencyYen = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCurrencyYen; \ No newline at end of file diff --git a/icons-react/icons-js/cut.js b/icons-react/icons-js/cut.js new file mode 100644 index 000000000..2011a9cba --- /dev/null +++ b/icons-react/icons-js/cut.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCut = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconCut; \ No newline at end of file diff --git a/icons-react/icons-js/dashboard.js b/icons-react/icons-js/dashboard.js new file mode 100644 index 000000000..ae4a651c5 --- /dev/null +++ b/icons-react/icons-js/dashboard.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDashboard = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDashboard; \ No newline at end of file diff --git a/icons-react/icons-js/database.js b/icons-react/icons-js/database.js new file mode 100644 index 000000000..b95edb795 --- /dev/null +++ b/icons-react/icons-js/database.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDatabase = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDatabase; \ No newline at end of file diff --git a/icons-react/icons-js/device-desktop.js b/icons-react/icons-js/device-desktop.js new file mode 100644 index 000000000..2b90e0aea --- /dev/null +++ b/icons-react/icons-js/device-desktop.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDeviceDesktop = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDeviceDesktop; \ No newline at end of file diff --git a/icons-react/icons-js/device-floppy.js b/icons-react/icons-js/device-floppy.js new file mode 100644 index 000000000..1a010572c --- /dev/null +++ b/icons-react/icons-js/device-floppy.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDeviceFloppy = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDeviceFloppy; \ No newline at end of file diff --git a/icons-react/icons-js/device-gamepad.js b/icons-react/icons-js/device-gamepad.js new file mode 100644 index 000000000..f1756c74d --- /dev/null +++ b/icons-react/icons-js/device-gamepad.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDeviceGamepad = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDeviceGamepad; \ No newline at end of file diff --git a/icons-react/icons-js/device-laptop.js b/icons-react/icons-js/device-laptop.js new file mode 100644 index 000000000..68023e364 --- /dev/null +++ b/icons-react/icons-js/device-laptop.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDeviceLaptop = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDeviceLaptop; \ No newline at end of file diff --git a/icons-react/icons-js/device-mobile-vibration.js b/icons-react/icons-js/device-mobile-vibration.js new file mode 100644 index 000000000..45cc23dea --- /dev/null +++ b/icons-react/icons-js/device-mobile-vibration.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDeviceMobileVibration = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDeviceMobileVibration; \ No newline at end of file diff --git a/icons-react/icons-js/device-mobile.js b/icons-react/icons-js/device-mobile.js new file mode 100644 index 000000000..e2eea7b88 --- /dev/null +++ b/icons-react/icons-js/device-mobile.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDeviceMobile = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDeviceMobile; \ No newline at end of file diff --git a/icons-react/icons-js/device-speaker.js b/icons-react/icons-js/device-speaker.js new file mode 100644 index 000000000..5d391b9d3 --- /dev/null +++ b/icons-react/icons-js/device-speaker.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDeviceSpeaker = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDeviceSpeaker; \ No newline at end of file diff --git a/icons-react/icons-js/device-tablet.js b/icons-react/icons-js/device-tablet.js new file mode 100644 index 000000000..a979eb6bc --- /dev/null +++ b/icons-react/icons-js/device-tablet.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDeviceTablet = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDeviceTablet; \ No newline at end of file diff --git a/icons-react/icons-js/device-tv.js b/icons-react/icons-js/device-tv.js new file mode 100644 index 000000000..ade5734c9 --- /dev/null +++ b/icons-react/icons-js/device-tv.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDeviceTv = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDeviceTv; \ No newline at end of file diff --git a/icons-react/icons-js/device-watch.js b/icons-react/icons-js/device-watch.js new file mode 100644 index 000000000..5263e5f83 --- /dev/null +++ b/icons-react/icons-js/device-watch.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDeviceWatch = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDeviceWatch; \ No newline at end of file diff --git a/icons-react/icons-js/devices.js b/icons-react/icons-js/devices.js new file mode 100644 index 000000000..5e750565f --- /dev/null +++ b/icons-react/icons-js/devices.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDevices = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDevices; \ No newline at end of file diff --git a/icons-react/icons-js/diamond.js b/icons-react/icons-js/diamond.js new file mode 100644 index 000000000..62e55fe69 --- /dev/null +++ b/icons-react/icons-js/diamond.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDiamond = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDiamond; \ No newline at end of file diff --git a/icons-react/icons-js/dice.js b/icons-react/icons-js/dice.js new file mode 100644 index 000000000..b2b26c8a9 --- /dev/null +++ b/icons-react/icons-js/dice.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDice = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDice; \ No newline at end of file diff --git a/icons-react/icons-js/direction-horizontal.js b/icons-react/icons-js/direction-horizontal.js new file mode 100644 index 000000000..0d3d1bb39 --- /dev/null +++ b/icons-react/icons-js/direction-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDirectionHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDirectionHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/direction.js b/icons-react/icons-js/direction.js new file mode 100644 index 000000000..e7f839b32 --- /dev/null +++ b/icons-react/icons-js/direction.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDirection = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDirection; \ No newline at end of file diff --git a/icons-react/icons-js/directions.js b/icons-react/icons-js/directions.js new file mode 100644 index 000000000..5f27e092c --- /dev/null +++ b/icons-react/icons-js/directions.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDirections = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDirections; \ No newline at end of file diff --git a/icons-react/icons-js/disabled-2.js b/icons-react/icons-js/disabled-2.js new file mode 100644 index 000000000..5d0889e9d --- /dev/null +++ b/icons-react/icons-js/disabled-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDisabled2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDisabled2; \ No newline at end of file diff --git a/icons-react/icons-js/disabled.js b/icons-react/icons-js/disabled.js new file mode 100644 index 000000000..c94b2c01e --- /dev/null +++ b/icons-react/icons-js/disabled.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDisabled = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDisabled; \ No newline at end of file diff --git a/icons-react/icons-js/disc.js b/icons-react/icons-js/disc.js new file mode 100644 index 000000000..f18526d15 --- /dev/null +++ b/icons-react/icons-js/disc.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDisc = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDisc; \ No newline at end of file diff --git a/icons-react/icons-js/discount.js b/icons-react/icons-js/discount.js new file mode 100644 index 000000000..e20ec09cd --- /dev/null +++ b/icons-react/icons-js/discount.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDiscount = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDiscount; \ No newline at end of file diff --git a/icons-react/icons-js/dots-circle-horizontal.js b/icons-react/icons-js/dots-circle-horizontal.js new file mode 100644 index 000000000..8d63c1112 --- /dev/null +++ b/icons-react/icons-js/dots-circle-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDotsCircleHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDotsCircleHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/dots-diagonal-2.js b/icons-react/icons-js/dots-diagonal-2.js new file mode 100644 index 000000000..634e7fa5b --- /dev/null +++ b/icons-react/icons-js/dots-diagonal-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDotsDiagonal2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDotsDiagonal2; \ No newline at end of file diff --git a/icons-react/icons-js/dots-diagonal.js b/icons-react/icons-js/dots-diagonal.js new file mode 100644 index 000000000..98400a989 --- /dev/null +++ b/icons-react/icons-js/dots-diagonal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDotsDiagonal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDotsDiagonal; \ No newline at end of file diff --git a/icons-react/icons-js/dots-vertical.js b/icons-react/icons-js/dots-vertical.js new file mode 100644 index 000000000..eb497992d --- /dev/null +++ b/icons-react/icons-js/dots-vertical.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDotsVertical = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDotsVertical; \ No newline at end of file diff --git a/icons-react/icons-js/dots.js b/icons-react/icons-js/dots.js new file mode 100644 index 000000000..82f5a66b5 --- /dev/null +++ b/icons-react/icons-js/dots.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDots = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDots; \ No newline at end of file diff --git a/icons-react/icons-js/download.js b/icons-react/icons-js/download.js new file mode 100644 index 000000000..8ed26ab6f --- /dev/null +++ b/icons-react/icons-js/download.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDownload = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDownload; \ No newline at end of file diff --git a/icons-react/icons-js/drag-drop-2.js b/icons-react/icons-js/drag-drop-2.js new file mode 100644 index 000000000..c84e0c3e7 --- /dev/null +++ b/icons-react/icons-js/drag-drop-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDragDrop2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDragDrop2; \ No newline at end of file diff --git a/icons-react/icons-js/drag-drop.js b/icons-react/icons-js/drag-drop.js new file mode 100644 index 000000000..c67360b78 --- /dev/null +++ b/icons-react/icons-js/drag-drop.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDragDrop = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDragDrop; \ No newline at end of file diff --git a/icons-react/icons-js/droplet.js b/icons-react/icons-js/droplet.js new file mode 100644 index 000000000..8ade36fc9 --- /dev/null +++ b/icons-react/icons-js/droplet.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconDroplet = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconDroplet; \ No newline at end of file diff --git a/icons-react/icons-js/ear.js b/icons-react/icons-js/ear.js new file mode 100644 index 000000000..e061e4bdd --- /dev/null +++ b/icons-react/icons-js/ear.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconEar = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconEar; \ No newline at end of file diff --git a/icons-react/icons-js/edit.js b/icons-react/icons-js/edit.js new file mode 100644 index 000000000..fe29bad14 --- /dev/null +++ b/icons-react/icons-js/edit.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconEdit = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconEdit; \ No newline at end of file diff --git a/icons-react/icons-js/egg.js b/icons-react/icons-js/egg.js new file mode 100644 index 000000000..746341d26 --- /dev/null +++ b/icons-react/icons-js/egg.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconEgg = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconEgg; \ No newline at end of file diff --git a/icons-react/icons-js/emphasis.js b/icons-react/icons-js/emphasis.js new file mode 100644 index 000000000..cac84549f --- /dev/null +++ b/icons-react/icons-js/emphasis.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconEmphasis = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconEmphasis; \ No newline at end of file diff --git a/icons-react/icons-js/eraser.js b/icons-react/icons-js/eraser.js new file mode 100644 index 000000000..f810b9111 --- /dev/null +++ b/icons-react/icons-js/eraser.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconEraser = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconEraser; \ No newline at end of file diff --git a/icons-react/icons-js/exchange.js b/icons-react/icons-js/exchange.js new file mode 100644 index 000000000..ff46648ca --- /dev/null +++ b/icons-react/icons-js/exchange.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconExchange = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconExchange; \ No newline at end of file diff --git a/icons-react/icons-js/exposure.js b/icons-react/icons-js/exposure.js new file mode 100644 index 000000000..4240b60d3 --- /dev/null +++ b/icons-react/icons-js/exposure.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconExposure = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconExposure; \ No newline at end of file diff --git a/icons-react/icons-js/external-link.js b/icons-react/icons-js/external-link.js new file mode 100644 index 000000000..6fe767493 --- /dev/null +++ b/icons-react/icons-js/external-link.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconExternalLink = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconExternalLink; \ No newline at end of file diff --git a/icons-react/icons-js/eye.js b/icons-react/icons-js/eye.js new file mode 100644 index 000000000..4e0196e79 --- /dev/null +++ b/icons-react/icons-js/eye.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconEye = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconEye; \ No newline at end of file diff --git a/icons-react/icons-js/face-id.js b/icons-react/icons-js/face-id.js new file mode 100644 index 000000000..753cdb2b8 --- /dev/null +++ b/icons-react/icons-js/face-id.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFaceId = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFaceId; \ No newline at end of file diff --git a/icons-react/icons-js/fall.js b/icons-react/icons-js/fall.js new file mode 100644 index 000000000..3c4ca4209 --- /dev/null +++ b/icons-react/icons-js/fall.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFall = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFall; \ No newline at end of file diff --git a/icons-react/icons-js/file-check.js b/icons-react/icons-js/file-check.js new file mode 100644 index 000000000..08071e3c3 --- /dev/null +++ b/icons-react/icons-js/file-check.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileCheck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileCheck; \ No newline at end of file diff --git a/icons-react/icons-js/file-code.js b/icons-react/icons-js/file-code.js new file mode 100644 index 000000000..030766ba6 --- /dev/null +++ b/icons-react/icons-js/file-code.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileCode = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileCode; \ No newline at end of file diff --git a/icons-react/icons-js/file-download.js b/icons-react/icons-js/file-download.js new file mode 100644 index 000000000..72dc42fa6 --- /dev/null +++ b/icons-react/icons-js/file-download.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileDownload = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileDownload; \ No newline at end of file diff --git a/icons-react/icons-js/file-horizontal.js b/icons-react/icons-js/file-horizontal.js new file mode 100644 index 000000000..ff40e5874 --- /dev/null +++ b/icons-react/icons-js/file-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/file-invoice.js b/icons-react/icons-js/file-invoice.js new file mode 100644 index 000000000..ba2b470ff --- /dev/null +++ b/icons-react/icons-js/file-invoice.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileInvoice = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileInvoice; \ No newline at end of file diff --git a/icons-react/icons-js/file-minus.js b/icons-react/icons-js/file-minus.js new file mode 100644 index 000000000..99535c49c --- /dev/null +++ b/icons-react/icons-js/file-minus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileMinus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileMinus; \ No newline at end of file diff --git a/icons-react/icons-js/file-music.js b/icons-react/icons-js/file-music.js new file mode 100644 index 000000000..8a609723e --- /dev/null +++ b/icons-react/icons-js/file-music.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileMusic = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileMusic; \ No newline at end of file diff --git a/icons-react/icons-js/file-plus.js b/icons-react/icons-js/file-plus.js new file mode 100644 index 000000000..6d62767f9 --- /dev/null +++ b/icons-react/icons-js/file-plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFilePlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFilePlus; \ No newline at end of file diff --git a/icons-react/icons-js/file-shredder.js b/icons-react/icons-js/file-shredder.js new file mode 100644 index 000000000..5372d6da5 --- /dev/null +++ b/icons-react/icons-js/file-shredder.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileShredder = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileShredder; \ No newline at end of file diff --git a/icons-react/icons-js/file-text.js b/icons-react/icons-js/file-text.js new file mode 100644 index 000000000..0c612d9c1 --- /dev/null +++ b/icons-react/icons-js/file-text.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileText = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileText; \ No newline at end of file diff --git a/icons-react/icons-js/file-upload.js b/icons-react/icons-js/file-upload.js new file mode 100644 index 000000000..1ab11a41f --- /dev/null +++ b/icons-react/icons-js/file-upload.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileUpload = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileUpload; \ No newline at end of file diff --git a/icons-react/icons-js/file-x.js b/icons-react/icons-js/file-x.js new file mode 100644 index 000000000..24e7b51c1 --- /dev/null +++ b/icons-react/icons-js/file-x.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFileX = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFileX; \ No newline at end of file diff --git a/icons-react/icons-js/file.js b/icons-react/icons-js/file.js new file mode 100644 index 000000000..aafcf20d7 --- /dev/null +++ b/icons-react/icons-js/file.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFile = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFile; \ No newline at end of file diff --git a/icons-react/icons-js/filter.js b/icons-react/icons-js/filter.js new file mode 100644 index 000000000..410c8b4f0 --- /dev/null +++ b/icons-react/icons-js/filter.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFilter = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFilter; \ No newline at end of file diff --git a/icons-react/icons-js/fingerprint.js b/icons-react/icons-js/fingerprint.js new file mode 100644 index 000000000..0029b8bc2 --- /dev/null +++ b/icons-react/icons-js/fingerprint.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFingerprint = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFingerprint; \ No newline at end of file diff --git a/icons-react/icons-js/firetruck.js b/icons-react/icons-js/firetruck.js new file mode 100644 index 000000000..5f603a84c --- /dev/null +++ b/icons-react/icons-js/firetruck.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFiretruck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFiretruck; \ No newline at end of file diff --git a/icons-react/icons-js/flag.js b/icons-react/icons-js/flag.js new file mode 100644 index 000000000..4b6a74469 --- /dev/null +++ b/icons-react/icons-js/flag.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFlag = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFlag; \ No newline at end of file diff --git a/icons-react/icons-js/flame.js b/icons-react/icons-js/flame.js new file mode 100644 index 000000000..b4fc1067d --- /dev/null +++ b/icons-react/icons-js/flame.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFlame = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFlame; \ No newline at end of file diff --git a/icons-react/icons-js/flask.js b/icons-react/icons-js/flask.js new file mode 100644 index 000000000..d82236294 --- /dev/null +++ b/icons-react/icons-js/flask.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFlask = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFlask; \ No newline at end of file diff --git a/icons-react/icons-js/flip-horizontal.js b/icons-react/icons-js/flip-horizontal.js new file mode 100644 index 000000000..73321cda0 --- /dev/null +++ b/icons-react/icons-js/flip-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFlipHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFlipHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/flip-vertical.js b/icons-react/icons-js/flip-vertical.js new file mode 100644 index 000000000..c64c33a26 --- /dev/null +++ b/icons-react/icons-js/flip-vertical.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFlipVertical = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFlipVertical; \ No newline at end of file diff --git a/icons-react/icons-js/float-center.js b/icons-react/icons-js/float-center.js new file mode 100644 index 000000000..bfb659d38 --- /dev/null +++ b/icons-react/icons-js/float-center.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFloatCenter = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFloatCenter; \ No newline at end of file diff --git a/icons-react/icons-js/float-left.js b/icons-react/icons-js/float-left.js new file mode 100644 index 000000000..8b3ba647f --- /dev/null +++ b/icons-react/icons-js/float-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFloatLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFloatLeft; \ No newline at end of file diff --git a/icons-react/icons-js/float-right.js b/icons-react/icons-js/float-right.js new file mode 100644 index 000000000..6c123fd73 --- /dev/null +++ b/icons-react/icons-js/float-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFloatRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFloatRight; \ No newline at end of file diff --git a/icons-react/icons-js/focus-2.js b/icons-react/icons-js/focus-2.js new file mode 100644 index 000000000..5915dbff8 --- /dev/null +++ b/icons-react/icons-js/focus-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFocus2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFocus2; \ No newline at end of file diff --git a/icons-react/icons-js/focus.js b/icons-react/icons-js/focus.js new file mode 100644 index 000000000..afd3ce8b7 --- /dev/null +++ b/icons-react/icons-js/focus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFocus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFocus; \ No newline at end of file diff --git a/icons-react/icons-js/folder-minus.js b/icons-react/icons-js/folder-minus.js new file mode 100644 index 000000000..4e2405495 --- /dev/null +++ b/icons-react/icons-js/folder-minus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFolderMinus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFolderMinus; \ No newline at end of file diff --git a/icons-react/icons-js/folder-plus.js b/icons-react/icons-js/folder-plus.js new file mode 100644 index 000000000..ce62259ec --- /dev/null +++ b/icons-react/icons-js/folder-plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFolderPlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFolderPlus; \ No newline at end of file diff --git a/icons-react/icons-js/folder-x.js b/icons-react/icons-js/folder-x.js new file mode 100644 index 000000000..22da6825c --- /dev/null +++ b/icons-react/icons-js/folder-x.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFolderX = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFolderX; \ No newline at end of file diff --git a/icons-react/icons-js/folder.js b/icons-react/icons-js/folder.js new file mode 100644 index 000000000..571978f3b --- /dev/null +++ b/icons-react/icons-js/folder.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFolder = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFolder; \ No newline at end of file diff --git a/icons-react/icons-js/folders.js b/icons-react/icons-js/folders.js new file mode 100644 index 000000000..03b479785 --- /dev/null +++ b/icons-react/icons-js/folders.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFolders = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFolders; \ No newline at end of file diff --git a/icons-react/icons-js/forbid-2.js b/icons-react/icons-js/forbid-2.js new file mode 100644 index 000000000..ca9a58577 --- /dev/null +++ b/icons-react/icons-js/forbid-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconForbid2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconForbid2; \ No newline at end of file diff --git a/icons-react/icons-js/forbid.js b/icons-react/icons-js/forbid.js new file mode 100644 index 000000000..2a5654eb9 --- /dev/null +++ b/icons-react/icons-js/forbid.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconForbid = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconForbid; \ No newline at end of file diff --git a/icons-react/icons-js/forklift.js b/icons-react/icons-js/forklift.js new file mode 100644 index 000000000..5d6e0f6a3 --- /dev/null +++ b/icons-react/icons-js/forklift.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconForklift = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconForklift; \ No newline at end of file diff --git a/icons-react/icons-js/frame.js b/icons-react/icons-js/frame.js new file mode 100644 index 000000000..99cd5ba73 --- /dev/null +++ b/icons-react/icons-js/frame.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFrame = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFrame; \ No newline at end of file diff --git a/icons-react/icons-js/friends.js b/icons-react/icons-js/friends.js new file mode 100644 index 000000000..0053b9c57 --- /dev/null +++ b/icons-react/icons-js/friends.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconFriends = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconFriends; \ No newline at end of file diff --git a/icons-react/icons-js/gas-station.js b/icons-react/icons-js/gas-station.js new file mode 100644 index 000000000..f6fc30088 --- /dev/null +++ b/icons-react/icons-js/gas-station.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGasStation = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGasStation; \ No newline at end of file diff --git a/icons-react/icons-js/gauge.js b/icons-react/icons-js/gauge.js new file mode 100644 index 000000000..9a4148ea2 --- /dev/null +++ b/icons-react/icons-js/gauge.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGauge = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGauge; \ No newline at end of file diff --git a/icons-react/icons-js/ghost.js b/icons-react/icons-js/ghost.js new file mode 100644 index 000000000..40d7ec0c2 --- /dev/null +++ b/icons-react/icons-js/ghost.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGhost = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGhost; \ No newline at end of file diff --git a/icons-react/icons-js/gift.js b/icons-react/icons-js/gift.js new file mode 100644 index 000000000..da4eb5062 --- /dev/null +++ b/icons-react/icons-js/gift.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGift = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGift; \ No newline at end of file diff --git a/icons-react/icons-js/git-branch.js b/icons-react/icons-js/git-branch.js new file mode 100644 index 000000000..90b3796ee --- /dev/null +++ b/icons-react/icons-js/git-branch.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGitBranch = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGitBranch; \ No newline at end of file diff --git a/icons-react/icons-js/git-commit.js b/icons-react/icons-js/git-commit.js new file mode 100644 index 000000000..048cdaa52 --- /dev/null +++ b/icons-react/icons-js/git-commit.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGitCommit = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGitCommit; \ No newline at end of file diff --git a/icons-react/icons-js/git-compare.js b/icons-react/icons-js/git-compare.js new file mode 100644 index 000000000..cdae1dae6 --- /dev/null +++ b/icons-react/icons-js/git-compare.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGitCompare = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGitCompare; \ No newline at end of file diff --git a/icons-react/icons-js/git-fork.js b/icons-react/icons-js/git-fork.js new file mode 100644 index 000000000..a211c5b99 --- /dev/null +++ b/icons-react/icons-js/git-fork.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGitFork = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGitFork; \ No newline at end of file diff --git a/icons-react/icons-js/git-merge.js b/icons-react/icons-js/git-merge.js new file mode 100644 index 000000000..90bd7fe19 --- /dev/null +++ b/icons-react/icons-js/git-merge.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGitMerge = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGitMerge; \ No newline at end of file diff --git a/icons-react/icons-js/git-pull-request.js b/icons-react/icons-js/git-pull-request.js new file mode 100644 index 000000000..d3b74468b --- /dev/null +++ b/icons-react/icons-js/git-pull-request.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGitPullRequest = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGitPullRequest; \ No newline at end of file diff --git a/icons-react/icons-js/glass-full.js b/icons-react/icons-js/glass-full.js new file mode 100644 index 000000000..2467f535c --- /dev/null +++ b/icons-react/icons-js/glass-full.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGlassFull = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGlassFull; \ No newline at end of file diff --git a/icons-react/icons-js/glass.js b/icons-react/icons-js/glass.js new file mode 100644 index 000000000..36b868130 --- /dev/null +++ b/icons-react/icons-js/glass.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGlass = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGlass; \ No newline at end of file diff --git a/icons-react/icons-js/globe.js b/icons-react/icons-js/globe.js new file mode 100644 index 000000000..9b422b8ed --- /dev/null +++ b/icons-react/icons-js/globe.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGlobe = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGlobe; \ No newline at end of file diff --git a/icons-react/icons-js/grid-dots.js b/icons-react/icons-js/grid-dots.js new file mode 100644 index 000000000..94d5cccb5 --- /dev/null +++ b/icons-react/icons-js/grid-dots.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGridDots = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGridDots; \ No newline at end of file diff --git a/icons-react/icons-js/grid.js b/icons-react/icons-js/grid.js new file mode 100644 index 000000000..db0467faa --- /dev/null +++ b/icons-react/icons-js/grid.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGrid = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGrid; \ No newline at end of file diff --git a/icons-react/icons-js/grip-horizontal.js b/icons-react/icons-js/grip-horizontal.js new file mode 100644 index 000000000..a5aeec2bb --- /dev/null +++ b/icons-react/icons-js/grip-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGripHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGripHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/grip-vertical.js b/icons-react/icons-js/grip-vertical.js new file mode 100644 index 000000000..7b629a955 --- /dev/null +++ b/icons-react/icons-js/grip-vertical.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconGripVertical = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconGripVertical; \ No newline at end of file diff --git a/icons-react/icons-js/h-1.js b/icons-react/icons-js/h-1.js new file mode 100644 index 000000000..fe3a8f2b1 --- /dev/null +++ b/icons-react/icons-js/h-1.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconH1 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconH1; \ No newline at end of file diff --git a/icons-react/icons-js/h-2.js b/icons-react/icons-js/h-2.js new file mode 100644 index 000000000..e06b21490 --- /dev/null +++ b/icons-react/icons-js/h-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconH2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconH2; \ No newline at end of file diff --git a/icons-react/icons-js/h-3.js b/icons-react/icons-js/h-3.js new file mode 100644 index 000000000..1cdabfbce --- /dev/null +++ b/icons-react/icons-js/h-3.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconH3 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconH3; \ No newline at end of file diff --git a/icons-react/icons-js/h-4.js b/icons-react/icons-js/h-4.js new file mode 100644 index 000000000..5d34fa5d8 --- /dev/null +++ b/icons-react/icons-js/h-4.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconH4 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconH4; \ No newline at end of file diff --git a/icons-react/icons-js/h-5.js b/icons-react/icons-js/h-5.js new file mode 100644 index 000000000..875b7e0c0 --- /dev/null +++ b/icons-react/icons-js/h-5.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconH5 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconH5; \ No newline at end of file diff --git a/icons-react/icons-js/h-6.js b/icons-react/icons-js/h-6.js new file mode 100644 index 000000000..c8c76fdc9 --- /dev/null +++ b/icons-react/icons-js/h-6.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconH6 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconH6; \ No newline at end of file diff --git a/icons-react/icons-js/hand-middle-finger.js b/icons-react/icons-js/hand-middle-finger.js new file mode 100644 index 000000000..1bc115b5d --- /dev/null +++ b/icons-react/icons-js/hand-middle-finger.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHandMiddleFinger = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHandMiddleFinger; \ No newline at end of file diff --git a/icons-react/icons-js/hand-stop.js b/icons-react/icons-js/hand-stop.js new file mode 100644 index 000000000..5b94f3d67 --- /dev/null +++ b/icons-react/icons-js/hand-stop.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHandStop = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHandStop; \ No newline at end of file diff --git a/icons-react/icons-js/hash.js b/icons-react/icons-js/hash.js new file mode 100644 index 000000000..02e8106b9 --- /dev/null +++ b/icons-react/icons-js/hash.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHash = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHash; \ No newline at end of file diff --git a/icons-react/icons-js/headphones.js b/icons-react/icons-js/headphones.js new file mode 100644 index 000000000..9e0edb291 --- /dev/null +++ b/icons-react/icons-js/headphones.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHeadphones = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHeadphones; \ No newline at end of file diff --git a/icons-react/icons-js/headset.js b/icons-react/icons-js/headset.js new file mode 100644 index 000000000..e8606f627 --- /dev/null +++ b/icons-react/icons-js/headset.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHeadset = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHeadset; \ No newline at end of file diff --git a/icons-react/icons-js/heart-broken.js b/icons-react/icons-js/heart-broken.js new file mode 100644 index 000000000..9a9302ec4 --- /dev/null +++ b/icons-react/icons-js/heart-broken.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHeartBroken = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHeartBroken; \ No newline at end of file diff --git a/icons-react/icons-js/heart.js b/icons-react/icons-js/heart.js new file mode 100644 index 000000000..ca1d220e4 --- /dev/null +++ b/icons-react/icons-js/heart.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHeart = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHeart; \ No newline at end of file diff --git a/icons-react/icons-js/help.js b/icons-react/icons-js/help.js new file mode 100644 index 000000000..a1f7922bc --- /dev/null +++ b/icons-react/icons-js/help.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHelp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHelp; \ No newline at end of file diff --git a/icons-react/icons-js/hexagon.js b/icons-react/icons-js/hexagon.js new file mode 100644 index 000000000..cd4ce732b --- /dev/null +++ b/icons-react/icons-js/hexagon.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHexagon = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHexagon; \ No newline at end of file diff --git a/icons-react/icons-js/history.js b/icons-react/icons-js/history.js new file mode 100644 index 000000000..7830eebf0 --- /dev/null +++ b/icons-react/icons-js/history.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHistory = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHistory; \ No newline at end of file diff --git a/icons-react/icons-js/home-2.js b/icons-react/icons-js/home-2.js new file mode 100644 index 000000000..9c6e487cd --- /dev/null +++ b/icons-react/icons-js/home-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHome2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHome2; \ No newline at end of file diff --git a/icons-react/icons-js/home.js b/icons-react/icons-js/home.js new file mode 100644 index 000000000..e4800bab8 --- /dev/null +++ b/icons-react/icons-js/home.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconHome = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconHome; \ No newline at end of file diff --git a/icons-react/icons-js/ice-cream.js b/icons-react/icons-js/ice-cream.js new file mode 100644 index 000000000..f85bb3d00 --- /dev/null +++ b/icons-react/icons-js/ice-cream.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconIceCream = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconIceCream; \ No newline at end of file diff --git a/icons-react/icons-js/id.js b/icons-react/icons-js/id.js new file mode 100644 index 000000000..c33faade0 --- /dev/null +++ b/icons-react/icons-js/id.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconId = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconId; \ No newline at end of file diff --git a/icons-react/icons-js/inbox.js b/icons-react/icons-js/inbox.js new file mode 100644 index 000000000..e9f3b6266 --- /dev/null +++ b/icons-react/icons-js/inbox.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconInbox = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconInbox; \ No newline at end of file diff --git a/icons-react/icons-js/indent-decrease.js b/icons-react/icons-js/indent-decrease.js new file mode 100644 index 000000000..74963d605 --- /dev/null +++ b/icons-react/icons-js/indent-decrease.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconIndentDecrease = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconIndentDecrease; \ No newline at end of file diff --git a/icons-react/icons-js/indent-increase.js b/icons-react/icons-js/indent-increase.js new file mode 100644 index 000000000..50a3f781b --- /dev/null +++ b/icons-react/icons-js/indent-increase.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconIndentIncrease = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconIndentIncrease; \ No newline at end of file diff --git a/icons-react/icons-js/infinity.js b/icons-react/icons-js/infinity.js new file mode 100644 index 000000000..c9a87e355 --- /dev/null +++ b/icons-react/icons-js/infinity.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconInfinity = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconInfinity; \ No newline at end of file diff --git a/icons-react/icons-js/info-circle.js b/icons-react/icons-js/info-circle.js new file mode 100644 index 000000000..31772de7f --- /dev/null +++ b/icons-react/icons-js/info-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconInfoCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconInfoCircle; \ No newline at end of file diff --git a/icons-react/icons-js/info-square.js b/icons-react/icons-js/info-square.js new file mode 100644 index 000000000..cf05115cb --- /dev/null +++ b/icons-react/icons-js/info-square.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconInfoSquare = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconInfoSquare; \ No newline at end of file diff --git a/icons-react/icons-js/italic.js b/icons-react/icons-js/italic.js new file mode 100644 index 000000000..9d9fd5118 --- /dev/null +++ b/icons-react/icons-js/italic.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconItalic = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconItalic; \ No newline at end of file diff --git a/icons-react/icons-js/key.js b/icons-react/icons-js/key.js new file mode 100644 index 000000000..cdf653727 --- /dev/null +++ b/icons-react/icons-js/key.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconKey = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconKey; \ No newline at end of file diff --git a/icons-react/icons-js/keyboard-hide.js b/icons-react/icons-js/keyboard-hide.js new file mode 100644 index 000000000..d609e24ca --- /dev/null +++ b/icons-react/icons-js/keyboard-hide.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconKeyboardHide = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconKeyboardHide; \ No newline at end of file diff --git a/icons-react/icons-js/keyboard-show.js b/icons-react/icons-js/keyboard-show.js new file mode 100644 index 000000000..7512096a1 --- /dev/null +++ b/icons-react/icons-js/keyboard-show.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconKeyboardShow = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconKeyboardShow; \ No newline at end of file diff --git a/icons-react/icons-js/keyboard.js b/icons-react/icons-js/keyboard.js new file mode 100644 index 000000000..38e92abf2 --- /dev/null +++ b/icons-react/icons-js/keyboard.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconKeyboard = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconKeyboard; \ No newline at end of file diff --git a/icons-react/icons-js/language.js b/icons-react/icons-js/language.js new file mode 100644 index 000000000..c68bdae10 --- /dev/null +++ b/icons-react/icons-js/language.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLanguage = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLanguage; \ No newline at end of file diff --git a/icons-react/icons-js/layers-difference.js b/icons-react/icons-js/layers-difference.js new file mode 100644 index 000000000..60b7dcd83 --- /dev/null +++ b/icons-react/icons-js/layers-difference.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayersDifference = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayersDifference; \ No newline at end of file diff --git a/icons-react/icons-js/layers-intersect.js b/icons-react/icons-js/layers-intersect.js new file mode 100644 index 000000000..179b49c52 --- /dev/null +++ b/icons-react/icons-js/layers-intersect.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayersIntersect = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayersIntersect; \ No newline at end of file diff --git a/icons-react/icons-js/layers-subtract.js b/icons-react/icons-js/layers-subtract.js new file mode 100644 index 000000000..cc960559b --- /dev/null +++ b/icons-react/icons-js/layers-subtract.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayersSubtract = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayersSubtract; \ No newline at end of file diff --git a/icons-react/icons-js/layers-union.js b/icons-react/icons-js/layers-union.js new file mode 100644 index 000000000..b00ffde65 --- /dev/null +++ b/icons-react/icons-js/layers-union.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayersUnion = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayersUnion; \ No newline at end of file diff --git a/icons-react/icons-js/layout-2.js b/icons-react/icons-js/layout-2.js new file mode 100644 index 000000000..8bc6dab52 --- /dev/null +++ b/icons-react/icons-js/layout-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayout2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayout2; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-bottom.js b/icons-react/icons-js/layout-align-bottom.js new file mode 100644 index 000000000..22bce566f --- /dev/null +++ b/icons-react/icons-js/layout-align-bottom.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutAlignBottom = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutAlignBottom; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-center.js b/icons-react/icons-js/layout-align-center.js new file mode 100644 index 000000000..60948fdb0 --- /dev/null +++ b/icons-react/icons-js/layout-align-center.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutAlignCenter = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutAlignCenter; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-left.js b/icons-react/icons-js/layout-align-left.js new file mode 100644 index 000000000..00d51f634 --- /dev/null +++ b/icons-react/icons-js/layout-align-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutAlignLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutAlignLeft; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-middle.js b/icons-react/icons-js/layout-align-middle.js new file mode 100644 index 000000000..661d7ec3a --- /dev/null +++ b/icons-react/icons-js/layout-align-middle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutAlignMiddle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutAlignMiddle; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-right.js b/icons-react/icons-js/layout-align-right.js new file mode 100644 index 000000000..9953b484e --- /dev/null +++ b/icons-react/icons-js/layout-align-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutAlignRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutAlignRight; \ No newline at end of file diff --git a/icons-react/icons-js/layout-align-top.js b/icons-react/icons-js/layout-align-top.js new file mode 100644 index 000000000..d08c72779 --- /dev/null +++ b/icons-react/icons-js/layout-align-top.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutAlignTop = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutAlignTop; \ No newline at end of file diff --git a/icons-react/icons-js/layout-bottombar.js b/icons-react/icons-js/layout-bottombar.js new file mode 100644 index 000000000..a0b0cd297 --- /dev/null +++ b/icons-react/icons-js/layout-bottombar.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutBottombar = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutBottombar; \ No newline at end of file diff --git a/icons-react/icons-js/layout-cards.js b/icons-react/icons-js/layout-cards.js new file mode 100644 index 000000000..5c536b722 --- /dev/null +++ b/icons-react/icons-js/layout-cards.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutCards = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutCards; \ No newline at end of file diff --git a/icons-react/icons-js/layout-columns.js b/icons-react/icons-js/layout-columns.js new file mode 100644 index 000000000..4116609a0 --- /dev/null +++ b/icons-react/icons-js/layout-columns.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutColumns = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutColumns; \ No newline at end of file diff --git a/icons-react/icons-js/layout-distribute-horizontal.js b/icons-react/icons-js/layout-distribute-horizontal.js new file mode 100644 index 000000000..a4439b09e --- /dev/null +++ b/icons-react/icons-js/layout-distribute-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutDistributeHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutDistributeHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/layout-distribute-vertical.js b/icons-react/icons-js/layout-distribute-vertical.js new file mode 100644 index 000000000..ee5ddad17 --- /dev/null +++ b/icons-react/icons-js/layout-distribute-vertical.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutDistributeVertical = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutDistributeVertical; \ No newline at end of file diff --git a/icons-react/icons-js/layout-kanban.js b/icons-react/icons-js/layout-kanban.js new file mode 100644 index 000000000..c96bd3dc5 --- /dev/null +++ b/icons-react/icons-js/layout-kanban.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutKanban = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutKanban; \ No newline at end of file diff --git a/icons-react/icons-js/layout-list.js b/icons-react/icons-js/layout-list.js new file mode 100644 index 000000000..dd8ac24cf --- /dev/null +++ b/icons-react/icons-js/layout-list.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutList = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutList; \ No newline at end of file diff --git a/icons-react/icons-js/layout-navbar.js b/icons-react/icons-js/layout-navbar.js new file mode 100644 index 000000000..5cb5d2744 --- /dev/null +++ b/icons-react/icons-js/layout-navbar.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutNavbar = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutNavbar; \ No newline at end of file diff --git a/icons-react/icons-js/layout-rows.js b/icons-react/icons-js/layout-rows.js new file mode 100644 index 000000000..78f65fbcd --- /dev/null +++ b/icons-react/icons-js/layout-rows.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutRows = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutRows; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar-right.js b/icons-react/icons-js/layout-sidebar-right.js new file mode 100644 index 000000000..809bc27cf --- /dev/null +++ b/icons-react/icons-js/layout-sidebar-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutSidebarRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutSidebarRight; \ No newline at end of file diff --git a/icons-react/icons-js/layout-sidebar.js b/icons-react/icons-js/layout-sidebar.js new file mode 100644 index 000000000..35c7fd8d5 --- /dev/null +++ b/icons-react/icons-js/layout-sidebar.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayoutSidebar = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayoutSidebar; \ No newline at end of file diff --git a/icons-react/icons-js/layout.js b/icons-react/icons-js/layout.js new file mode 100644 index 000000000..8df8e1998 --- /dev/null +++ b/icons-react/icons-js/layout.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLayout = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLayout; \ No newline at end of file diff --git a/icons-react/icons-js/lego.js b/icons-react/icons-js/lego.js new file mode 100644 index 000000000..9fe08002b --- /dev/null +++ b/icons-react/icons-js/lego.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLego = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLego; \ No newline at end of file diff --git a/icons-react/icons-js/letter-a.js b/icons-react/icons-js/letter-a.js new file mode 100644 index 000000000..38a374386 --- /dev/null +++ b/icons-react/icons-js/letter-a.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterA = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterA; \ No newline at end of file diff --git a/icons-react/icons-js/letter-b.js b/icons-react/icons-js/letter-b.js new file mode 100644 index 000000000..a1cf9d67b --- /dev/null +++ b/icons-react/icons-js/letter-b.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterB = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterB; \ No newline at end of file diff --git a/icons-react/icons-js/letter-c.js b/icons-react/icons-js/letter-c.js new file mode 100644 index 000000000..e3b3f87d8 --- /dev/null +++ b/icons-react/icons-js/letter-c.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterC = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterC; \ No newline at end of file diff --git a/icons-react/icons-js/letter-d.js b/icons-react/icons-js/letter-d.js new file mode 100644 index 000000000..a560c642a --- /dev/null +++ b/icons-react/icons-js/letter-d.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterD = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterD; \ No newline at end of file diff --git a/icons-react/icons-js/letter-e.js b/icons-react/icons-js/letter-e.js new file mode 100644 index 000000000..b7252dded --- /dev/null +++ b/icons-react/icons-js/letter-e.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterE = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterE; \ No newline at end of file diff --git a/icons-react/icons-js/letter-f.js b/icons-react/icons-js/letter-f.js new file mode 100644 index 000000000..7c8acfc69 --- /dev/null +++ b/icons-react/icons-js/letter-f.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterF = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterF; \ No newline at end of file diff --git a/icons-react/icons-js/letter-g.js b/icons-react/icons-js/letter-g.js new file mode 100644 index 000000000..e0baf9cbe --- /dev/null +++ b/icons-react/icons-js/letter-g.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterG = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterG; \ No newline at end of file diff --git a/icons-react/icons-js/letter-h.js b/icons-react/icons-js/letter-h.js new file mode 100644 index 000000000..e7d81c3fb --- /dev/null +++ b/icons-react/icons-js/letter-h.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterH = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterH; \ No newline at end of file diff --git a/icons-react/icons-js/letter-i.js b/icons-react/icons-js/letter-i.js new file mode 100644 index 000000000..5395763b0 --- /dev/null +++ b/icons-react/icons-js/letter-i.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterI = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterI; \ No newline at end of file diff --git a/icons-react/icons-js/letter-j.js b/icons-react/icons-js/letter-j.js new file mode 100644 index 000000000..7eec0634c --- /dev/null +++ b/icons-react/icons-js/letter-j.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterJ = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterJ; \ No newline at end of file diff --git a/icons-react/icons-js/letter-k.js b/icons-react/icons-js/letter-k.js new file mode 100644 index 000000000..749443550 --- /dev/null +++ b/icons-react/icons-js/letter-k.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterK = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterK; \ No newline at end of file diff --git a/icons-react/icons-js/letter-l.js b/icons-react/icons-js/letter-l.js new file mode 100644 index 000000000..5c125fb4b --- /dev/null +++ b/icons-react/icons-js/letter-l.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterL = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterL; \ No newline at end of file diff --git a/icons-react/icons-js/letter-m.js b/icons-react/icons-js/letter-m.js new file mode 100644 index 000000000..096360e98 --- /dev/null +++ b/icons-react/icons-js/letter-m.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterM = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterM; \ No newline at end of file diff --git a/icons-react/icons-js/letter-n.js b/icons-react/icons-js/letter-n.js new file mode 100644 index 000000000..515f425d2 --- /dev/null +++ b/icons-react/icons-js/letter-n.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterN = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterN; \ No newline at end of file diff --git a/icons-react/icons-js/letter-o.js b/icons-react/icons-js/letter-o.js new file mode 100644 index 000000000..b94ca6691 --- /dev/null +++ b/icons-react/icons-js/letter-o.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterO = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterO; \ No newline at end of file diff --git a/icons-react/icons-js/letter-p.js b/icons-react/icons-js/letter-p.js new file mode 100644 index 000000000..c7ec456a2 --- /dev/null +++ b/icons-react/icons-js/letter-p.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterP = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterP; \ No newline at end of file diff --git a/icons-react/icons-js/letter-q.js b/icons-react/icons-js/letter-q.js new file mode 100644 index 000000000..25818cfc9 --- /dev/null +++ b/icons-react/icons-js/letter-q.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterQ = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterQ; \ No newline at end of file diff --git a/icons-react/icons-js/letter-r.js b/icons-react/icons-js/letter-r.js new file mode 100644 index 000000000..542b00a1b --- /dev/null +++ b/icons-react/icons-js/letter-r.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterR = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterR; \ No newline at end of file diff --git a/icons-react/icons-js/letter-s.js b/icons-react/icons-js/letter-s.js new file mode 100644 index 000000000..f7056ca7b --- /dev/null +++ b/icons-react/icons-js/letter-s.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterS = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterS; \ No newline at end of file diff --git a/icons-react/icons-js/letter-t.js b/icons-react/icons-js/letter-t.js new file mode 100644 index 000000000..bdfcbe60b --- /dev/null +++ b/icons-react/icons-js/letter-t.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterT = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterT; \ No newline at end of file diff --git a/icons-react/icons-js/letter-u.js b/icons-react/icons-js/letter-u.js new file mode 100644 index 000000000..adc903304 --- /dev/null +++ b/icons-react/icons-js/letter-u.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterU = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterU; \ No newline at end of file diff --git a/icons-react/icons-js/letter-v.js b/icons-react/icons-js/letter-v.js new file mode 100644 index 000000000..65ae44800 --- /dev/null +++ b/icons-react/icons-js/letter-v.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterV = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterV; \ No newline at end of file diff --git a/icons-react/icons-js/letter-w.js b/icons-react/icons-js/letter-w.js new file mode 100644 index 000000000..dfa8752a2 --- /dev/null +++ b/icons-react/icons-js/letter-w.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterW = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterW; \ No newline at end of file diff --git a/icons-react/icons-js/letter-x.js b/icons-react/icons-js/letter-x.js new file mode 100644 index 000000000..27043130e --- /dev/null +++ b/icons-react/icons-js/letter-x.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterX = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterX; \ No newline at end of file diff --git a/icons-react/icons-js/letter-y.js b/icons-react/icons-js/letter-y.js new file mode 100644 index 000000000..db01e2c96 --- /dev/null +++ b/icons-react/icons-js/letter-y.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterY = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterY; \ No newline at end of file diff --git a/icons-react/icons-js/letter-z.js b/icons-react/icons-js/letter-z.js new file mode 100644 index 000000000..17a147806 --- /dev/null +++ b/icons-react/icons-js/letter-z.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLetterZ = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLetterZ; \ No newline at end of file diff --git a/icons-react/icons-js/letters-case.js b/icons-react/icons-js/letters-case.js new file mode 100644 index 000000000..de3f667d6 --- /dev/null +++ b/icons-react/icons-js/letters-case.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLettersCase = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLettersCase; \ No newline at end of file diff --git a/icons-react/icons-js/license.js b/icons-react/icons-js/license.js new file mode 100644 index 000000000..f1cfb5cd0 --- /dev/null +++ b/icons-react/icons-js/license.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLicense = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLicense; \ No newline at end of file diff --git a/icons-react/icons-js/lifebuoy.js b/icons-react/icons-js/lifebuoy.js new file mode 100644 index 000000000..953f6725b --- /dev/null +++ b/icons-react/icons-js/lifebuoy.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLifebuoy = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLifebuoy; \ No newline at end of file diff --git a/icons-react/icons-js/line-height.js b/icons-react/icons-js/line-height.js new file mode 100644 index 000000000..2a2524f23 --- /dev/null +++ b/icons-react/icons-js/line-height.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLineHeight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLineHeight; \ No newline at end of file diff --git a/icons-react/icons-js/line.js b/icons-react/icons-js/line.js new file mode 100644 index 000000000..317c67b35 --- /dev/null +++ b/icons-react/icons-js/line.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLine = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLine; \ No newline at end of file diff --git a/icons-react/icons-js/link.js b/icons-react/icons-js/link.js new file mode 100644 index 000000000..8be4aeaa2 --- /dev/null +++ b/icons-react/icons-js/link.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLink = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLink; \ No newline at end of file diff --git a/icons-react/icons-js/list-check.js b/icons-react/icons-js/list-check.js new file mode 100644 index 000000000..0dbe0dca1 --- /dev/null +++ b/icons-react/icons-js/list-check.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconListCheck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconListCheck; \ No newline at end of file diff --git a/icons-react/icons-js/list.js b/icons-react/icons-js/list.js new file mode 100644 index 000000000..1f9583e1b --- /dev/null +++ b/icons-react/icons-js/list.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconList = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconList; \ No newline at end of file diff --git a/icons-react/icons-js/live-photo.js b/icons-react/icons-js/live-photo.js new file mode 100644 index 000000000..5c261e914 --- /dev/null +++ b/icons-react/icons-js/live-photo.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLivePhoto = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLivePhoto; \ No newline at end of file diff --git a/icons-react/icons-js/live-view.js b/icons-react/icons-js/live-view.js new file mode 100644 index 000000000..14a4d017a --- /dev/null +++ b/icons-react/icons-js/live-view.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLiveView = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLiveView; \ No newline at end of file diff --git a/icons-react/icons-js/loader-quarter.js b/icons-react/icons-js/loader-quarter.js new file mode 100644 index 000000000..e81264d73 --- /dev/null +++ b/icons-react/icons-js/loader-quarter.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLoaderQuarter = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLoaderQuarter; \ No newline at end of file diff --git a/icons-react/icons-js/loader.js b/icons-react/icons-js/loader.js new file mode 100644 index 000000000..a0d7256c9 --- /dev/null +++ b/icons-react/icons-js/loader.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLoader = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLoader; \ No newline at end of file diff --git a/icons-react/icons-js/location.js b/icons-react/icons-js/location.js new file mode 100644 index 000000000..2712956c3 --- /dev/null +++ b/icons-react/icons-js/location.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLocation = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLocation; \ No newline at end of file diff --git a/icons-react/icons-js/lock-open.js b/icons-react/icons-js/lock-open.js new file mode 100644 index 000000000..5d6df3b7d --- /dev/null +++ b/icons-react/icons-js/lock-open.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLockOpen = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLockOpen; \ No newline at end of file diff --git a/icons-react/icons-js/lock.js b/icons-react/icons-js/lock.js new file mode 100644 index 000000000..06f0bffa3 --- /dev/null +++ b/icons-react/icons-js/lock.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLock = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLock; \ No newline at end of file diff --git a/icons-react/icons-js/login.js b/icons-react/icons-js/login.js new file mode 100644 index 000000000..35c94dc84 --- /dev/null +++ b/icons-react/icons-js/login.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLogin = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLogin; \ No newline at end of file diff --git a/icons-react/icons-js/logout.js b/icons-react/icons-js/logout.js new file mode 100644 index 000000000..4635ada15 --- /dev/null +++ b/icons-react/icons-js/logout.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconLogout = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconLogout; \ No newline at end of file diff --git a/icons-react/icons-js/magnet.js b/icons-react/icons-js/magnet.js new file mode 100644 index 000000000..2c18d9e4c --- /dev/null +++ b/icons-react/icons-js/magnet.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMagnet = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMagnet; \ No newline at end of file diff --git a/icons-react/icons-js/mail-opened.js b/icons-react/icons-js/mail-opened.js new file mode 100644 index 000000000..c25e225e6 --- /dev/null +++ b/icons-react/icons-js/mail-opened.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMailOpened = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMailOpened; \ No newline at end of file diff --git a/icons-react/icons-js/mail.js b/icons-react/icons-js/mail.js new file mode 100644 index 000000000..e7e39275f --- /dev/null +++ b/icons-react/icons-js/mail.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMail = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMail; \ No newline at end of file diff --git a/icons-react/icons-js/man.js b/icons-react/icons-js/man.js new file mode 100644 index 000000000..1b0b1602a --- /dev/null +++ b/icons-react/icons-js/man.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMan = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMan; \ No newline at end of file diff --git a/icons-react/icons-js/map-2.js b/icons-react/icons-js/map-2.js new file mode 100644 index 000000000..598ce0e26 --- /dev/null +++ b/icons-react/icons-js/map-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMap2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMap2; \ No newline at end of file diff --git a/icons-react/icons-js/map-pin.js b/icons-react/icons-js/map-pin.js new file mode 100644 index 000000000..bd94b4889 --- /dev/null +++ b/icons-react/icons-js/map-pin.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMapPin = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMapPin; \ No newline at end of file diff --git a/icons-react/icons-js/map.js b/icons-react/icons-js/map.js new file mode 100644 index 000000000..6d44a83ac --- /dev/null +++ b/icons-react/icons-js/map.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMap = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMap; \ No newline at end of file diff --git a/icons-react/icons-js/markdown.js b/icons-react/icons-js/markdown.js new file mode 100644 index 000000000..df6112455 --- /dev/null +++ b/icons-react/icons-js/markdown.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMarkdown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMarkdown; \ No newline at end of file diff --git a/icons-react/icons-js/marquee.js b/icons-react/icons-js/marquee.js new file mode 100644 index 000000000..8dab700e6 --- /dev/null +++ b/icons-react/icons-js/marquee.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMarquee = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMarquee; \ No newline at end of file diff --git a/icons-react/icons-js/mars.js b/icons-react/icons-js/mars.js new file mode 100644 index 000000000..b8544e7f5 --- /dev/null +++ b/icons-react/icons-js/mars.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMars = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMars; \ No newline at end of file diff --git a/icons-react/icons-js/math.js b/icons-react/icons-js/math.js new file mode 100644 index 000000000..dd76f7794 --- /dev/null +++ b/icons-react/icons-js/math.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMath = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMath; \ No newline at end of file diff --git a/icons-react/icons-js/maximize.js b/icons-react/icons-js/maximize.js new file mode 100644 index 000000000..25f70c606 --- /dev/null +++ b/icons-react/icons-js/maximize.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMaximize = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMaximize; \ No newline at end of file diff --git a/icons-react/icons-js/medal.js b/icons-react/icons-js/medal.js new file mode 100644 index 000000000..41dcae225 --- /dev/null +++ b/icons-react/icons-js/medal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMedal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMedal; \ No newline at end of file diff --git a/icons-react/icons-js/medical-cross.js b/icons-react/icons-js/medical-cross.js new file mode 100644 index 000000000..73b6d05a6 --- /dev/null +++ b/icons-react/icons-js/medical-cross.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMedicalCross = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMedicalCross; \ No newline at end of file diff --git a/icons-react/icons-js/menu-2.js b/icons-react/icons-js/menu-2.js new file mode 100644 index 000000000..45d0336f9 --- /dev/null +++ b/icons-react/icons-js/menu-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMenu2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMenu2; \ No newline at end of file diff --git a/icons-react/icons-js/menu.js b/icons-react/icons-js/menu.js new file mode 100644 index 000000000..f012355fc --- /dev/null +++ b/icons-react/icons-js/menu.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMenu = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMenu; \ No newline at end of file diff --git a/icons-react/icons-js/message-2.js b/icons-react/icons-js/message-2.js new file mode 100644 index 000000000..4cd242cef --- /dev/null +++ b/icons-react/icons-js/message-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMessage2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMessage2; \ No newline at end of file diff --git a/icons-react/icons-js/message-circle.js b/icons-react/icons-js/message-circle.js new file mode 100644 index 000000000..74f96d465 --- /dev/null +++ b/icons-react/icons-js/message-circle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMessageCircle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMessageCircle; \ No newline at end of file diff --git a/icons-react/icons-js/message-dots.js b/icons-react/icons-js/message-dots.js new file mode 100644 index 000000000..4963c1a6c --- /dev/null +++ b/icons-react/icons-js/message-dots.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMessageDots = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMessageDots; \ No newline at end of file diff --git a/icons-react/icons-js/message-plus.js b/icons-react/icons-js/message-plus.js new file mode 100644 index 000000000..091458d8a --- /dev/null +++ b/icons-react/icons-js/message-plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMessagePlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMessagePlus; \ No newline at end of file diff --git a/icons-react/icons-js/message-report.js b/icons-react/icons-js/message-report.js new file mode 100644 index 000000000..0da06a35f --- /dev/null +++ b/icons-react/icons-js/message-report.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMessageReport = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMessageReport; \ No newline at end of file diff --git a/icons-react/icons-js/message.js b/icons-react/icons-js/message.js new file mode 100644 index 000000000..608e3aefc --- /dev/null +++ b/icons-react/icons-js/message.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMessage = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMessage; \ No newline at end of file diff --git a/icons-react/icons-js/messages.js b/icons-react/icons-js/messages.js new file mode 100644 index 000000000..e7bfc9172 --- /dev/null +++ b/icons-react/icons-js/messages.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMessages = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMessages; \ No newline at end of file diff --git a/icons-react/icons-js/microphone.js b/icons-react/icons-js/microphone.js new file mode 100644 index 000000000..cb2b714fc --- /dev/null +++ b/icons-react/icons-js/microphone.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMicrophone = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMicrophone; \ No newline at end of file diff --git a/icons-react/icons-js/minimize.js b/icons-react/icons-js/minimize.js new file mode 100644 index 000000000..9191bf094 --- /dev/null +++ b/icons-react/icons-js/minimize.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMinimize = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMinimize; \ No newline at end of file diff --git a/icons-react/icons-js/minus.js b/icons-react/icons-js/minus.js new file mode 100644 index 000000000..b702f89b9 --- /dev/null +++ b/icons-react/icons-js/minus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMinus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMinus; \ No newline at end of file diff --git a/icons-react/icons-js/mist.js b/icons-react/icons-js/mist.js new file mode 100644 index 000000000..ef2e17bba --- /dev/null +++ b/icons-react/icons-js/mist.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMist = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMist; \ No newline at end of file diff --git a/icons-react/icons-js/mood-confuzed.js b/icons-react/icons-js/mood-confuzed.js new file mode 100644 index 000000000..c83f6e742 --- /dev/null +++ b/icons-react/icons-js/mood-confuzed.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoodConfuzed = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoodConfuzed; \ No newline at end of file diff --git a/icons-react/icons-js/mood-cry.js b/icons-react/icons-js/mood-cry.js new file mode 100644 index 000000000..419fb3ff3 --- /dev/null +++ b/icons-react/icons-js/mood-cry.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoodCry = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoodCry; \ No newline at end of file diff --git a/icons-react/icons-js/mood-happy.js b/icons-react/icons-js/mood-happy.js new file mode 100644 index 000000000..80ace2f5c --- /dev/null +++ b/icons-react/icons-js/mood-happy.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoodHappy = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoodHappy; \ No newline at end of file diff --git a/icons-react/icons-js/mood-kid.js b/icons-react/icons-js/mood-kid.js new file mode 100644 index 000000000..7d1a5a95b --- /dev/null +++ b/icons-react/icons-js/mood-kid.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoodKid = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoodKid; \ No newline at end of file diff --git a/icons-react/icons-js/mood-neutral.js b/icons-react/icons-js/mood-neutral.js new file mode 100644 index 000000000..92d85221e --- /dev/null +++ b/icons-react/icons-js/mood-neutral.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoodNeutral = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoodNeutral; \ No newline at end of file diff --git a/icons-react/icons-js/mood-sad.js b/icons-react/icons-js/mood-sad.js new file mode 100644 index 000000000..2c11c9c25 --- /dev/null +++ b/icons-react/icons-js/mood-sad.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoodSad = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoodSad; \ No newline at end of file diff --git a/icons-react/icons-js/mood-smile.js b/icons-react/icons-js/mood-smile.js new file mode 100644 index 000000000..139ab718f --- /dev/null +++ b/icons-react/icons-js/mood-smile.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoodSmile = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoodSmile; \ No newline at end of file diff --git a/icons-react/icons-js/mood-suprised.js b/icons-react/icons-js/mood-suprised.js new file mode 100644 index 000000000..49e434e30 --- /dev/null +++ b/icons-react/icons-js/mood-suprised.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoodSuprised = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoodSuprised; \ No newline at end of file diff --git a/icons-react/icons-js/mood-tongue.js b/icons-react/icons-js/mood-tongue.js new file mode 100644 index 000000000..196756b2a --- /dev/null +++ b/icons-react/icons-js/mood-tongue.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoodTongue = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoodTongue; \ No newline at end of file diff --git a/icons-react/icons-js/moon.js b/icons-react/icons-js/moon.js new file mode 100644 index 000000000..d1c7f7e32 --- /dev/null +++ b/icons-react/icons-js/moon.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoon = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoon; \ No newline at end of file diff --git a/icons-react/icons-js/moped.js b/icons-react/icons-js/moped.js new file mode 100644 index 000000000..fc37f21c3 --- /dev/null +++ b/icons-react/icons-js/moped.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMoped = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMoped; \ No newline at end of file diff --git a/icons-react/icons-js/mouse.js b/icons-react/icons-js/mouse.js new file mode 100644 index 000000000..75846f593 --- /dev/null +++ b/icons-react/icons-js/mouse.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMouse = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMouse; \ No newline at end of file diff --git a/icons-react/icons-js/movie.js b/icons-react/icons-js/movie.js new file mode 100644 index 000000000..a9880dadb --- /dev/null +++ b/icons-react/icons-js/movie.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMovie = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMovie; \ No newline at end of file diff --git a/icons-react/icons-js/mug.js b/icons-react/icons-js/mug.js new file mode 100644 index 000000000..fa9f2b2e7 --- /dev/null +++ b/icons-react/icons-js/mug.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMug = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMug; \ No newline at end of file diff --git a/icons-react/icons-js/music.js b/icons-react/icons-js/music.js new file mode 100644 index 000000000..2b45f680a --- /dev/null +++ b/icons-react/icons-js/music.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconMusic = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconMusic; \ No newline at end of file diff --git a/icons-react/icons-js/new-section.js b/icons-react/icons-js/new-section.js new file mode 100644 index 000000000..aa7208429 --- /dev/null +++ b/icons-react/icons-js/new-section.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconNewSection = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconNewSection; \ No newline at end of file diff --git a/icons-react/icons-js/news.js b/icons-react/icons-js/news.js new file mode 100644 index 000000000..7a07b521e --- /dev/null +++ b/icons-react/icons-js/news.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconNews = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconNews; \ No newline at end of file diff --git a/icons-react/icons-js/note.js b/icons-react/icons-js/note.js new file mode 100644 index 000000000..1fe48e3b6 --- /dev/null +++ b/icons-react/icons-js/note.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconNote = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconNote; \ No newline at end of file diff --git a/icons-react/icons-js/notebook.js b/icons-react/icons-js/notebook.js new file mode 100644 index 000000000..bd0e99967 --- /dev/null +++ b/icons-react/icons-js/notebook.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconNotebook = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconNotebook; \ No newline at end of file diff --git a/icons-react/icons-js/notes.js b/icons-react/icons-js/notes.js new file mode 100644 index 000000000..db5ddaf24 --- /dev/null +++ b/icons-react/icons-js/notes.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconNotes = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconNotes; \ No newline at end of file diff --git a/icons-react/icons-js/notification.js b/icons-react/icons-js/notification.js new file mode 100644 index 000000000..b7f18a0ab --- /dev/null +++ b/icons-react/icons-js/notification.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconNotification = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconNotification; \ No newline at end of file diff --git a/icons-react/icons-js/octagon.js b/icons-react/icons-js/octagon.js new file mode 100644 index 000000000..06ebb2180 --- /dev/null +++ b/icons-react/icons-js/octagon.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconOctagon = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconOctagon; \ No newline at end of file diff --git a/icons-react/icons-js/omega.js b/icons-react/icons-js/omega.js new file mode 100644 index 000000000..b4c525eb6 --- /dev/null +++ b/icons-react/icons-js/omega.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconOmega = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconOmega; \ No newline at end of file diff --git a/icons-react/icons-js/outlet.js b/icons-react/icons-js/outlet.js new file mode 100644 index 000000000..aaedb566a --- /dev/null +++ b/icons-react/icons-js/outlet.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconOutlet = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconOutlet; \ No newline at end of file diff --git a/icons-react/icons-js/package.js b/icons-react/icons-js/package.js new file mode 100644 index 000000000..972229498 --- /dev/null +++ b/icons-react/icons-js/package.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPackage = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPackage; \ No newline at end of file diff --git a/icons-react/icons-js/page-break.js b/icons-react/icons-js/page-break.js new file mode 100644 index 000000000..e2b19ae01 --- /dev/null +++ b/icons-react/icons-js/page-break.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPageBreak = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPageBreak; \ No newline at end of file diff --git a/icons-react/icons-js/paint.js b/icons-react/icons-js/paint.js new file mode 100644 index 000000000..972150dc8 --- /dev/null +++ b/icons-react/icons-js/paint.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPaint = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPaint; \ No newline at end of file diff --git a/icons-react/icons-js/palette.js b/icons-react/icons-js/palette.js new file mode 100644 index 000000000..c35191962 --- /dev/null +++ b/icons-react/icons-js/palette.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPalette = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPalette; \ No newline at end of file diff --git a/icons-react/icons-js/paperclip.js b/icons-react/icons-js/paperclip.js new file mode 100644 index 000000000..6f9b4ff2d --- /dev/null +++ b/icons-react/icons-js/paperclip.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPaperclip = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPaperclip; \ No newline at end of file diff --git a/icons-react/icons-js/parentheses.js b/icons-react/icons-js/parentheses.js new file mode 100644 index 000000000..c8389cb6e --- /dev/null +++ b/icons-react/icons-js/parentheses.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconParentheses = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconParentheses; \ No newline at end of file diff --git a/icons-react/icons-js/parking.js b/icons-react/icons-js/parking.js new file mode 100644 index 000000000..5baad166c --- /dev/null +++ b/icons-react/icons-js/parking.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconParking = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconParking; \ No newline at end of file diff --git a/icons-react/icons-js/pause.js b/icons-react/icons-js/pause.js new file mode 100644 index 000000000..f6f006c1f --- /dev/null +++ b/icons-react/icons-js/pause.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPause = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPause; \ No newline at end of file diff --git a/icons-react/icons-js/peace.js b/icons-react/icons-js/peace.js new file mode 100644 index 000000000..2c9d02224 --- /dev/null +++ b/icons-react/icons-js/peace.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPeace = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPeace; \ No newline at end of file diff --git a/icons-react/icons-js/pencil.js b/icons-react/icons-js/pencil.js new file mode 100644 index 000000000..73502b92e --- /dev/null +++ b/icons-react/icons-js/pencil.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPencil = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPencil; \ No newline at end of file diff --git a/icons-react/icons-js/phone-call.js b/icons-react/icons-js/phone-call.js new file mode 100644 index 000000000..8724c4b06 --- /dev/null +++ b/icons-react/icons-js/phone-call.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPhoneCall = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPhoneCall; \ No newline at end of file diff --git a/icons-react/icons-js/phone-calling.js b/icons-react/icons-js/phone-calling.js new file mode 100644 index 000000000..1252e89d4 --- /dev/null +++ b/icons-react/icons-js/phone-calling.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPhoneCalling = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPhoneCalling; \ No newline at end of file diff --git a/icons-react/icons-js/phone-check.js b/icons-react/icons-js/phone-check.js new file mode 100644 index 000000000..2ece62f39 --- /dev/null +++ b/icons-react/icons-js/phone-check.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPhoneCheck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPhoneCheck; \ No newline at end of file diff --git a/icons-react/icons-js/phone-incoming.js b/icons-react/icons-js/phone-incoming.js new file mode 100644 index 000000000..927989bc1 --- /dev/null +++ b/icons-react/icons-js/phone-incoming.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPhoneIncoming = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPhoneIncoming; \ No newline at end of file diff --git a/icons-react/icons-js/phone-outgoing.js b/icons-react/icons-js/phone-outgoing.js new file mode 100644 index 000000000..3a36f892e --- /dev/null +++ b/icons-react/icons-js/phone-outgoing.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPhoneOutgoing = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPhoneOutgoing; \ No newline at end of file diff --git a/icons-react/icons-js/phone-pause.js b/icons-react/icons-js/phone-pause.js new file mode 100644 index 000000000..91af85c69 --- /dev/null +++ b/icons-react/icons-js/phone-pause.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPhonePause = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPhonePause; \ No newline at end of file diff --git a/icons-react/icons-js/phone-plus.js b/icons-react/icons-js/phone-plus.js new file mode 100644 index 000000000..68ff423b5 --- /dev/null +++ b/icons-react/icons-js/phone-plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPhonePlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPhonePlus; \ No newline at end of file diff --git a/icons-react/icons-js/phone-x.js b/icons-react/icons-js/phone-x.js new file mode 100644 index 000000000..4e395fe59 --- /dev/null +++ b/icons-react/icons-js/phone-x.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPhoneX = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPhoneX; \ No newline at end of file diff --git a/icons-react/icons-js/phone.js b/icons-react/icons-js/phone.js new file mode 100644 index 000000000..afe4a9a92 --- /dev/null +++ b/icons-react/icons-js/phone.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPhone = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPhone; \ No newline at end of file diff --git a/icons-react/icons-js/photo.js b/icons-react/icons-js/photo.js new file mode 100644 index 000000000..3fc5c19e7 --- /dev/null +++ b/icons-react/icons-js/photo.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPhoto = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPhoto; \ No newline at end of file diff --git a/icons-react/icons-js/pill.js b/icons-react/icons-js/pill.js new file mode 100644 index 000000000..e455e5c65 --- /dev/null +++ b/icons-react/icons-js/pill.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPill = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPill; \ No newline at end of file diff --git a/icons-react/icons-js/pin.js b/icons-react/icons-js/pin.js new file mode 100644 index 000000000..46789ec4e --- /dev/null +++ b/icons-react/icons-js/pin.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPin = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPin; \ No newline at end of file diff --git a/icons-react/icons-js/plane-arrival.js b/icons-react/icons-js/plane-arrival.js new file mode 100644 index 000000000..ab888b3f6 --- /dev/null +++ b/icons-react/icons-js/plane-arrival.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPlaneArrival = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPlaneArrival; \ No newline at end of file diff --git a/icons-react/icons-js/plane-departure.js b/icons-react/icons-js/plane-departure.js new file mode 100644 index 000000000..38b625244 --- /dev/null +++ b/icons-react/icons-js/plane-departure.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPlaneDeparture = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPlaneDeparture; \ No newline at end of file diff --git a/icons-react/icons-js/plane.js b/icons-react/icons-js/plane.js new file mode 100644 index 000000000..35540ce63 --- /dev/null +++ b/icons-react/icons-js/plane.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPlane = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPlane; \ No newline at end of file diff --git a/icons-react/icons-js/planet.js b/icons-react/icons-js/planet.js new file mode 100644 index 000000000..cf4c42907 --- /dev/null +++ b/icons-react/icons-js/planet.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPlanet = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPlanet; \ No newline at end of file diff --git a/icons-react/icons-js/play.js b/icons-react/icons-js/play.js new file mode 100644 index 000000000..99eb07667 --- /dev/null +++ b/icons-react/icons-js/play.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPlay = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPlay; \ No newline at end of file diff --git a/icons-react/icons-js/plug.js b/icons-react/icons-js/plug.js new file mode 100644 index 000000000..6aeace08e --- /dev/null +++ b/icons-react/icons-js/plug.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPlug = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPlug; \ No newline at end of file diff --git a/icons-react/icons-js/plus.js b/icons-react/icons-js/plus.js new file mode 100644 index 000000000..25679b783 --- /dev/null +++ b/icons-react/icons-js/plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPlus; \ No newline at end of file diff --git a/icons-react/icons-js/point.js b/icons-react/icons-js/point.js new file mode 100644 index 000000000..fc8c07df6 --- /dev/null +++ b/icons-react/icons-js/point.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPoint = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPoint; \ No newline at end of file diff --git a/icons-react/icons-js/power.js b/icons-react/icons-js/power.js new file mode 100644 index 000000000..3d46461c9 --- /dev/null +++ b/icons-react/icons-js/power.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPower = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPower; \ No newline at end of file diff --git a/icons-react/icons-js/pray.js b/icons-react/icons-js/pray.js new file mode 100644 index 000000000..35e30b759 --- /dev/null +++ b/icons-react/icons-js/pray.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPray = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPray; \ No newline at end of file diff --git a/icons-react/icons-js/presentation.js b/icons-react/icons-js/presentation.js new file mode 100644 index 000000000..e79b7e9b4 --- /dev/null +++ b/icons-react/icons-js/presentation.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPresentation = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPresentation; \ No newline at end of file diff --git a/icons-react/icons-js/printer.js b/icons-react/icons-js/printer.js new file mode 100644 index 000000000..eae71f6e3 --- /dev/null +++ b/icons-react/icons-js/printer.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPrinter = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPrinter; \ No newline at end of file diff --git a/icons-react/icons-js/prompt.js b/icons-react/icons-js/prompt.js new file mode 100644 index 000000000..59cb5ed6e --- /dev/null +++ b/icons-react/icons-js/prompt.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPrompt = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPrompt; \ No newline at end of file diff --git a/icons-react/icons-js/puzzle.js b/icons-react/icons-js/puzzle.js new file mode 100644 index 000000000..ddecea79e --- /dev/null +++ b/icons-react/icons-js/puzzle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconPuzzle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconPuzzle; \ No newline at end of file diff --git a/icons-react/icons-js/qrcode.js b/icons-react/icons-js/qrcode.js new file mode 100644 index 000000000..7bc541678 --- /dev/null +++ b/icons-react/icons-js/qrcode.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconQrcode = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconQrcode; \ No newline at end of file diff --git a/icons-react/icons-js/question-mark.js b/icons-react/icons-js/question-mark.js new file mode 100644 index 000000000..c12f68526 --- /dev/null +++ b/icons-react/icons-js/question-mark.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconQuestionMark = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconQuestionMark; \ No newline at end of file diff --git a/icons-react/icons-js/radioactive.js b/icons-react/icons-js/radioactive.js new file mode 100644 index 000000000..87770d574 --- /dev/null +++ b/icons-react/icons-js/radioactive.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRadioactive = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRadioactive; \ No newline at end of file diff --git a/icons-react/icons-js/record-mail.js b/icons-react/icons-js/record-mail.js new file mode 100644 index 000000000..192897421 --- /dev/null +++ b/icons-react/icons-js/record-mail.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRecordMail = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRecordMail; \ No newline at end of file diff --git a/icons-react/icons-js/recycle.js b/icons-react/icons-js/recycle.js new file mode 100644 index 000000000..21f853d73 --- /dev/null +++ b/icons-react/icons-js/recycle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRecycle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRecycle; \ No newline at end of file diff --git a/icons-react/icons-js/refresh.js b/icons-react/icons-js/refresh.js new file mode 100644 index 000000000..9e3b3aebc --- /dev/null +++ b/icons-react/icons-js/refresh.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRefresh = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRefresh; \ No newline at end of file diff --git a/icons-react/icons-js/registered.js b/icons-react/icons-js/registered.js new file mode 100644 index 000000000..4a1d3521b --- /dev/null +++ b/icons-react/icons-js/registered.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRegistered = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRegistered; \ No newline at end of file diff --git a/icons-react/icons-js/repeat-once.js b/icons-react/icons-js/repeat-once.js new file mode 100644 index 000000000..994be741b --- /dev/null +++ b/icons-react/icons-js/repeat-once.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRepeatOnce = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRepeatOnce; \ No newline at end of file diff --git a/icons-react/icons-js/repeat.js b/icons-react/icons-js/repeat.js new file mode 100644 index 000000000..d6f12fc6a --- /dev/null +++ b/icons-react/icons-js/repeat.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRepeat = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRepeat; \ No newline at end of file diff --git a/icons-react/icons-js/replace.js b/icons-react/icons-js/replace.js new file mode 100644 index 000000000..f1b351e8a --- /dev/null +++ b/icons-react/icons-js/replace.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconReplace = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconReplace; \ No newline at end of file diff --git a/icons-react/icons-js/rocket.js b/icons-react/icons-js/rocket.js new file mode 100644 index 000000000..b918bde51 --- /dev/null +++ b/icons-react/icons-js/rocket.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRocket = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRocket; \ No newline at end of file diff --git a/icons-react/icons-js/rotate-2.js b/icons-react/icons-js/rotate-2.js new file mode 100644 index 000000000..e492a844c --- /dev/null +++ b/icons-react/icons-js/rotate-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRotate2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRotate2; \ No newline at end of file diff --git a/icons-react/icons-js/rotate-clockwise-2.js b/icons-react/icons-js/rotate-clockwise-2.js new file mode 100644 index 000000000..2b191502e --- /dev/null +++ b/icons-react/icons-js/rotate-clockwise-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRotateClockwise2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRotateClockwise2; \ No newline at end of file diff --git a/icons-react/icons-js/rotate-clockwise.js b/icons-react/icons-js/rotate-clockwise.js new file mode 100644 index 000000000..9065590c2 --- /dev/null +++ b/icons-react/icons-js/rotate-clockwise.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRotateClockwise = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRotateClockwise; \ No newline at end of file diff --git a/icons-react/icons-js/rotate-rectangle.js b/icons-react/icons-js/rotate-rectangle.js new file mode 100644 index 000000000..095f24515 --- /dev/null +++ b/icons-react/icons-js/rotate-rectangle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRotateRectangle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRotateRectangle; \ No newline at end of file diff --git a/icons-react/icons-js/rotate.js b/icons-react/icons-js/rotate.js new file mode 100644 index 000000000..b9bd1547d --- /dev/null +++ b/icons-react/icons-js/rotate.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRotate = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRotate; \ No newline at end of file diff --git a/icons-react/icons-js/route.js b/icons-react/icons-js/route.js new file mode 100644 index 000000000..1543de84a --- /dev/null +++ b/icons-react/icons-js/route.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRoute = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRoute; \ No newline at end of file diff --git a/icons-react/icons-js/router.js b/icons-react/icons-js/router.js new file mode 100644 index 000000000..1a16cfb91 --- /dev/null +++ b/icons-react/icons-js/router.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRouter = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRouter; \ No newline at end of file diff --git a/icons-react/icons-js/rss.js b/icons-react/icons-js/rss.js new file mode 100644 index 000000000..447684887 --- /dev/null +++ b/icons-react/icons-js/rss.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRss = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRss; \ No newline at end of file diff --git a/icons-react/icons-js/ruler.js b/icons-react/icons-js/ruler.js new file mode 100644 index 000000000..fead858dc --- /dev/null +++ b/icons-react/icons-js/ruler.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRuler = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRuler; \ No newline at end of file diff --git a/icons-react/icons-js/run.js b/icons-react/icons-js/run.js new file mode 100644 index 000000000..5ea939248 --- /dev/null +++ b/icons-react/icons-js/run.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconRun = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconRun; \ No newline at end of file diff --git a/icons-react/icons-js/sailboat.js b/icons-react/icons-js/sailboat.js new file mode 100644 index 000000000..34310e24c --- /dev/null +++ b/icons-react/icons-js/sailboat.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSailboat = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSailboat; \ No newline at end of file diff --git a/icons-react/icons-js/scale.js b/icons-react/icons-js/scale.js new file mode 100644 index 000000000..29ebdbc32 --- /dev/null +++ b/icons-react/icons-js/scale.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconScale = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconScale; \ No newline at end of file diff --git a/icons-react/icons-js/scan.js b/icons-react/icons-js/scan.js new file mode 100644 index 000000000..65d64738c --- /dev/null +++ b/icons-react/icons-js/scan.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconScan = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconScan; \ No newline at end of file diff --git a/icons-react/icons-js/scissors.js b/icons-react/icons-js/scissors.js new file mode 100644 index 000000000..8647f94b2 --- /dev/null +++ b/icons-react/icons-js/scissors.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconScissors = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconScissors; \ No newline at end of file diff --git a/icons-react/icons-js/scooter-electric.js b/icons-react/icons-js/scooter-electric.js new file mode 100644 index 000000000..89ab3e5c9 --- /dev/null +++ b/icons-react/icons-js/scooter-electric.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconScooterElectric = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconScooterElectric; \ No newline at end of file diff --git a/icons-react/icons-js/scooter.js b/icons-react/icons-js/scooter.js new file mode 100644 index 000000000..460f43ca5 --- /dev/null +++ b/icons-react/icons-js/scooter.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconScooter = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconScooter; \ No newline at end of file diff --git a/icons-react/icons-js/search.js b/icons-react/icons-js/search.js new file mode 100644 index 000000000..5a58e09c2 --- /dev/null +++ b/icons-react/icons-js/search.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSearch = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSearch; \ No newline at end of file diff --git a/icons-react/icons-js/select.js b/icons-react/icons-js/select.js new file mode 100644 index 000000000..0d5f3211b --- /dev/null +++ b/icons-react/icons-js/select.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSelect = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSelect; \ No newline at end of file diff --git a/icons-react/icons-js/selector.js b/icons-react/icons-js/selector.js new file mode 100644 index 000000000..a938c1eea --- /dev/null +++ b/icons-react/icons-js/selector.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSelector = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSelector; \ No newline at end of file diff --git a/icons-react/icons-js/send.js b/icons-react/icons-js/send.js new file mode 100644 index 000000000..b659b907b --- /dev/null +++ b/icons-react/icons-js/send.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSend = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSend; \ No newline at end of file diff --git a/icons-react/icons-js/separator-horizontal.js b/icons-react/icons-js/separator-horizontal.js new file mode 100644 index 000000000..d4bf4f409 --- /dev/null +++ b/icons-react/icons-js/separator-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSeparatorHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSeparatorHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/separator-vertical.js b/icons-react/icons-js/separator-vertical.js new file mode 100644 index 000000000..c6d07802e --- /dev/null +++ b/icons-react/icons-js/separator-vertical.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSeparatorVertical = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSeparatorVertical; \ No newline at end of file diff --git a/icons-react/icons-js/separator.js b/icons-react/icons-js/separator.js new file mode 100644 index 000000000..55fb8760d --- /dev/null +++ b/icons-react/icons-js/separator.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSeparator = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSeparator; \ No newline at end of file diff --git a/icons-react/icons-js/server.js b/icons-react/icons-js/server.js new file mode 100644 index 000000000..e570c49dc --- /dev/null +++ b/icons-react/icons-js/server.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconServer = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconServer; \ No newline at end of file diff --git a/icons-react/icons-js/servicemark.js b/icons-react/icons-js/servicemark.js new file mode 100644 index 000000000..c9ae100f4 --- /dev/null +++ b/icons-react/icons-js/servicemark.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconServicemark = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconServicemark; \ No newline at end of file diff --git a/icons-react/icons-js/settings.js b/icons-react/icons-js/settings.js new file mode 100644 index 000000000..16eab9145 --- /dev/null +++ b/icons-react/icons-js/settings.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSettings = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSettings; \ No newline at end of file diff --git a/icons-react/icons-js/shape.js b/icons-react/icons-js/shape.js new file mode 100644 index 000000000..f10acd73e --- /dev/null +++ b/icons-react/icons-js/shape.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconShape = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconShape; \ No newline at end of file diff --git a/icons-react/icons-js/share.js b/icons-react/icons-js/share.js new file mode 100644 index 000000000..ebf6a8f97 --- /dev/null +++ b/icons-react/icons-js/share.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconShare = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconShare; \ No newline at end of file diff --git a/icons-react/icons-js/shield-check.js b/icons-react/icons-js/shield-check.js new file mode 100644 index 000000000..e7c093b8a --- /dev/null +++ b/icons-react/icons-js/shield-check.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconShieldCheck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconShieldCheck; \ No newline at end of file diff --git a/icons-react/icons-js/shield-x.js b/icons-react/icons-js/shield-x.js new file mode 100644 index 000000000..af13ed2b2 --- /dev/null +++ b/icons-react/icons-js/shield-x.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconShieldX = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconShieldX; \ No newline at end of file diff --git a/icons-react/icons-js/shield.js b/icons-react/icons-js/shield.js new file mode 100644 index 000000000..f35d9e3c1 --- /dev/null +++ b/icons-react/icons-js/shield.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconShield = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconShield; \ No newline at end of file diff --git a/icons-react/icons-js/ship.js b/icons-react/icons-js/ship.js new file mode 100644 index 000000000..6867dc862 --- /dev/null +++ b/icons-react/icons-js/ship.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconShip = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconShip; \ No newline at end of file diff --git a/icons-react/icons-js/shirt.js b/icons-react/icons-js/shirt.js new file mode 100644 index 000000000..bb48bbb10 --- /dev/null +++ b/icons-react/icons-js/shirt.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconShirt = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconShirt; \ No newline at end of file diff --git a/icons-react/icons-js/shopping-cart.js b/icons-react/icons-js/shopping-cart.js new file mode 100644 index 000000000..77f64f719 --- /dev/null +++ b/icons-react/icons-js/shopping-cart.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconShoppingCart = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconShoppingCart; \ No newline at end of file diff --git a/icons-react/icons-js/sitemap.js b/icons-react/icons-js/sitemap.js new file mode 100644 index 000000000..8f5e8784d --- /dev/null +++ b/icons-react/icons-js/sitemap.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSitemap = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSitemap; \ No newline at end of file diff --git a/icons-react/icons-js/skateboard.js b/icons-react/icons-js/skateboard.js new file mode 100644 index 000000000..2200255cd --- /dev/null +++ b/icons-react/icons-js/skateboard.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSkateboard = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSkateboard; \ No newline at end of file diff --git a/icons-react/icons-js/skip-back.js b/icons-react/icons-js/skip-back.js new file mode 100644 index 000000000..fcdaa3c0b --- /dev/null +++ b/icons-react/icons-js/skip-back.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSkipBack = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSkipBack; \ No newline at end of file diff --git a/icons-react/icons-js/skip-forward.js b/icons-react/icons-js/skip-forward.js new file mode 100644 index 000000000..9ed7cd3c6 --- /dev/null +++ b/icons-react/icons-js/skip-forward.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSkipForward = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSkipForward; \ No newline at end of file diff --git a/icons-react/icons-js/slice.js b/icons-react/icons-js/slice.js new file mode 100644 index 000000000..1e8f117a1 --- /dev/null +++ b/icons-react/icons-js/slice.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSlice = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSlice; \ No newline at end of file diff --git a/icons-react/icons-js/slideshow.js b/icons-react/icons-js/slideshow.js new file mode 100644 index 000000000..189d09ad6 --- /dev/null +++ b/icons-react/icons-js/slideshow.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSlideshow = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSlideshow; \ No newline at end of file diff --git a/icons-react/icons-js/smoking-no.js b/icons-react/icons-js/smoking-no.js new file mode 100644 index 000000000..2eb68fe99 --- /dev/null +++ b/icons-react/icons-js/smoking-no.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSmokingNo = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSmokingNo; \ No newline at end of file diff --git a/icons-react/icons-js/smoking.js b/icons-react/icons-js/smoking.js new file mode 100644 index 000000000..eb3611e64 --- /dev/null +++ b/icons-react/icons-js/smoking.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSmoking = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSmoking; \ No newline at end of file diff --git a/icons-react/icons-js/snowflake.js b/icons-react/icons-js/snowflake.js new file mode 100644 index 000000000..f17bec59c --- /dev/null +++ b/icons-react/icons-js/snowflake.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSnowflake = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSnowflake; \ No newline at end of file diff --git a/icons-react/icons-js/social.js b/icons-react/icons-js/social.js new file mode 100644 index 000000000..dfc5bbed3 --- /dev/null +++ b/icons-react/icons-js/social.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSocial = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSocial; \ No newline at end of file diff --git a/icons-react/icons-js/sort-ascending.js b/icons-react/icons-js/sort-ascending.js new file mode 100644 index 000000000..aa44b1992 --- /dev/null +++ b/icons-react/icons-js/sort-ascending.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSortAscending = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSortAscending; \ No newline at end of file diff --git a/icons-react/icons-js/sort-descending.js b/icons-react/icons-js/sort-descending.js new file mode 100644 index 000000000..ea214c0db --- /dev/null +++ b/icons-react/icons-js/sort-descending.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSortDescending = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSortDescending; \ No newline at end of file diff --git a/icons-react/icons-js/space.js b/icons-react/icons-js/space.js new file mode 100644 index 000000000..2cb0d0c84 --- /dev/null +++ b/icons-react/icons-js/space.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSpace = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSpace; \ No newline at end of file diff --git a/icons-react/icons-js/square-check.js b/icons-react/icons-js/square-check.js new file mode 100644 index 000000000..ad88a2a6c --- /dev/null +++ b/icons-react/icons-js/square-check.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSquareCheck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSquareCheck; \ No newline at end of file diff --git a/icons-react/icons-js/square-minus.js b/icons-react/icons-js/square-minus.js new file mode 100644 index 000000000..ac8fa1cd6 --- /dev/null +++ b/icons-react/icons-js/square-minus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSquareMinus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSquareMinus; \ No newline at end of file diff --git a/icons-react/icons-js/square-plus.js b/icons-react/icons-js/square-plus.js new file mode 100644 index 000000000..56fffd545 --- /dev/null +++ b/icons-react/icons-js/square-plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSquarePlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSquarePlus; \ No newline at end of file diff --git a/icons-react/icons-js/square-x.js b/icons-react/icons-js/square-x.js new file mode 100644 index 000000000..d09f9afa9 --- /dev/null +++ b/icons-react/icons-js/square-x.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSquareX = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSquareX; \ No newline at end of file diff --git a/icons-react/icons-js/square.js b/icons-react/icons-js/square.js new file mode 100644 index 000000000..35842458a --- /dev/null +++ b/icons-react/icons-js/square.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSquare = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSquare; \ No newline at end of file diff --git a/icons-react/icons-js/stack.js b/icons-react/icons-js/stack.js new file mode 100644 index 000000000..290c1c5b7 --- /dev/null +++ b/icons-react/icons-js/stack.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconStack = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconStack; \ No newline at end of file diff --git a/icons-react/icons-js/stairs-down.js b/icons-react/icons-js/stairs-down.js new file mode 100644 index 000000000..98b84295f --- /dev/null +++ b/icons-react/icons-js/stairs-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconStairsDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconStairsDown; \ No newline at end of file diff --git a/icons-react/icons-js/stairs-up.js b/icons-react/icons-js/stairs-up.js new file mode 100644 index 000000000..b6307d739 --- /dev/null +++ b/icons-react/icons-js/stairs-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconStairsUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconStairsUp; \ No newline at end of file diff --git a/icons-react/icons-js/stairs.js b/icons-react/icons-js/stairs.js new file mode 100644 index 000000000..f79c7f9ef --- /dev/null +++ b/icons-react/icons-js/stairs.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconStairs = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconStairs; \ No newline at end of file diff --git a/icons-react/icons-js/star.js b/icons-react/icons-js/star.js new file mode 100644 index 000000000..6f620f043 --- /dev/null +++ b/icons-react/icons-js/star.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconStar = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconStar; \ No newline at end of file diff --git a/icons-react/icons-js/steering-wheel.js b/icons-react/icons-js/steering-wheel.js new file mode 100644 index 000000000..8eea5c7c4 --- /dev/null +++ b/icons-react/icons-js/steering-wheel.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSteeringWheel = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSteeringWheel; \ No newline at end of file diff --git a/icons-react/icons-js/sticker.js b/icons-react/icons-js/sticker.js new file mode 100644 index 000000000..bac165d92 --- /dev/null +++ b/icons-react/icons-js/sticker.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSticker = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSticker; \ No newline at end of file diff --git a/icons-react/icons-js/strikethrough.js b/icons-react/icons-js/strikethrough.js new file mode 100644 index 000000000..81bd326f4 --- /dev/null +++ b/icons-react/icons-js/strikethrough.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconStrikethrough = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconStrikethrough; \ No newline at end of file diff --git a/icons-react/icons-js/subscript.js b/icons-react/icons-js/subscript.js new file mode 100644 index 000000000..9f1b848d4 --- /dev/null +++ b/icons-react/icons-js/subscript.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSubscript = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSubscript; \ No newline at end of file diff --git a/icons-react/icons-js/subtask.js b/icons-react/icons-js/subtask.js new file mode 100644 index 000000000..97602aac7 --- /dev/null +++ b/icons-react/icons-js/subtask.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSubtask = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSubtask; \ No newline at end of file diff --git a/icons-react/icons-js/sum.js b/icons-react/icons-js/sum.js new file mode 100644 index 000000000..a4f3ff46c --- /dev/null +++ b/icons-react/icons-js/sum.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSum = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSum; \ No newline at end of file diff --git a/icons-react/icons-js/sun.js b/icons-react/icons-js/sun.js new file mode 100644 index 000000000..79fa87de0 --- /dev/null +++ b/icons-react/icons-js/sun.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSun = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSun; \ No newline at end of file diff --git a/icons-react/icons-js/sunset.js b/icons-react/icons-js/sunset.js new file mode 100644 index 000000000..95c9f0e84 --- /dev/null +++ b/icons-react/icons-js/sunset.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSunset = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSunset; \ No newline at end of file diff --git a/icons-react/icons-js/sunshine.js b/icons-react/icons-js/sunshine.js new file mode 100644 index 000000000..d6b3a9b1f --- /dev/null +++ b/icons-react/icons-js/sunshine.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSunshine = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSunshine; \ No newline at end of file diff --git a/icons-react/icons-js/superscript.js b/icons-react/icons-js/superscript.js new file mode 100644 index 000000000..3300e0103 --- /dev/null +++ b/icons-react/icons-js/superscript.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSuperscript = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSuperscript; \ No newline at end of file diff --git a/icons-react/icons-js/swimming.js b/icons-react/icons-js/swimming.js new file mode 100644 index 000000000..53283e959 --- /dev/null +++ b/icons-react/icons-js/swimming.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSwimming = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSwimming; \ No newline at end of file diff --git a/icons-react/icons-js/switch-horizontal.js b/icons-react/icons-js/switch-horizontal.js new file mode 100644 index 000000000..b604b48c6 --- /dev/null +++ b/icons-react/icons-js/switch-horizontal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSwitchHorizontal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSwitchHorizontal; \ No newline at end of file diff --git a/icons-react/icons-js/switch-vertical.js b/icons-react/icons-js/switch-vertical.js new file mode 100644 index 000000000..46b31f35f --- /dev/null +++ b/icons-react/icons-js/switch-vertical.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSwitchVertical = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSwitchVertical; \ No newline at end of file diff --git a/icons-react/icons-js/switch.js b/icons-react/icons-js/switch.js new file mode 100644 index 000000000..f5aef2ee1 --- /dev/null +++ b/icons-react/icons-js/switch.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconSwitch = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconSwitch; \ No newline at end of file diff --git a/icons-react/icons-js/table.js b/icons-react/icons-js/table.js new file mode 100644 index 000000000..3231ccdb8 --- /dev/null +++ b/icons-react/icons-js/table.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTable = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTable; \ No newline at end of file diff --git a/icons-react/icons-js/tag.js b/icons-react/icons-js/tag.js new file mode 100644 index 000000000..3e0069dfa --- /dev/null +++ b/icons-react/icons-js/tag.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTag = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTag; \ No newline at end of file diff --git a/icons-react/icons-js/tallymark-1.js b/icons-react/icons-js/tallymark-1.js new file mode 100644 index 000000000..ea2bf8b63 --- /dev/null +++ b/icons-react/icons-js/tallymark-1.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTallymark1 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTallymark1; \ No newline at end of file diff --git a/icons-react/icons-js/tallymark-2.js b/icons-react/icons-js/tallymark-2.js new file mode 100644 index 000000000..5f5ae1f08 --- /dev/null +++ b/icons-react/icons-js/tallymark-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTallymark2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTallymark2; \ No newline at end of file diff --git a/icons-react/icons-js/tallymark-3.js b/icons-react/icons-js/tallymark-3.js new file mode 100644 index 000000000..c9c5989f3 --- /dev/null +++ b/icons-react/icons-js/tallymark-3.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTallymark3 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTallymark3; \ No newline at end of file diff --git a/icons-react/icons-js/tallymark-4.js b/icons-react/icons-js/tallymark-4.js new file mode 100644 index 000000000..a6bd84275 --- /dev/null +++ b/icons-react/icons-js/tallymark-4.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTallymark4 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTallymark4; \ No newline at end of file diff --git a/icons-react/icons-js/tallymarks.js b/icons-react/icons-js/tallymarks.js new file mode 100644 index 000000000..eb22c180e --- /dev/null +++ b/icons-react/icons-js/tallymarks.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTallymarks = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTallymarks; \ No newline at end of file diff --git a/icons-react/icons-js/target.js b/icons-react/icons-js/target.js new file mode 100644 index 000000000..d6f65330f --- /dev/null +++ b/icons-react/icons-js/target.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTarget = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTarget; \ No newline at end of file diff --git a/icons-react/icons-js/tax.js b/icons-react/icons-js/tax.js new file mode 100644 index 000000000..03469251d --- /dev/null +++ b/icons-react/icons-js/tax.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTax = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTax; \ No newline at end of file diff --git a/icons-react/icons-js/temperature-celsius.js b/icons-react/icons-js/temperature-celsius.js new file mode 100644 index 000000000..98cb9590b --- /dev/null +++ b/icons-react/icons-js/temperature-celsius.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTemperatureCelsius = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTemperatureCelsius; \ No newline at end of file diff --git a/icons-react/icons-js/temperature-fahrenheit.js b/icons-react/icons-js/temperature-fahrenheit.js new file mode 100644 index 000000000..41b9e4982 --- /dev/null +++ b/icons-react/icons-js/temperature-fahrenheit.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTemperatureFahrenheit = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTemperatureFahrenheit; \ No newline at end of file diff --git a/icons-react/icons-js/temperature-minus.js b/icons-react/icons-js/temperature-minus.js new file mode 100644 index 000000000..e01e7a910 --- /dev/null +++ b/icons-react/icons-js/temperature-minus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTemperatureMinus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTemperatureMinus; \ No newline at end of file diff --git a/icons-react/icons-js/temperature-plus.js b/icons-react/icons-js/temperature-plus.js new file mode 100644 index 000000000..b20a1fad9 --- /dev/null +++ b/icons-react/icons-js/temperature-plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTemperaturePlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTemperaturePlus; \ No newline at end of file diff --git a/icons-react/icons-js/temperature.js b/icons-react/icons-js/temperature.js new file mode 100644 index 000000000..26969567d --- /dev/null +++ b/icons-react/icons-js/temperature.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTemperature = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTemperature; \ No newline at end of file diff --git a/icons-react/icons-js/template.js b/icons-react/icons-js/template.js new file mode 100644 index 000000000..e5e977c85 --- /dev/null +++ b/icons-react/icons-js/template.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTemplate = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTemplate; \ No newline at end of file diff --git a/icons-react/icons-js/terminal-2.js b/icons-react/icons-js/terminal-2.js new file mode 100644 index 000000000..90b35d872 --- /dev/null +++ b/icons-react/icons-js/terminal-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTerminal2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTerminal2; \ No newline at end of file diff --git a/icons-react/icons-js/terminal.js b/icons-react/icons-js/terminal.js new file mode 100644 index 000000000..d8345cc55 --- /dev/null +++ b/icons-react/icons-js/terminal.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTerminal = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTerminal; \ No newline at end of file diff --git a/icons-react/icons-js/test-pipe.js b/icons-react/icons-js/test-pipe.js new file mode 100644 index 000000000..f62f5a5ee --- /dev/null +++ b/icons-react/icons-js/test-pipe.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTestPipe = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTestPipe; \ No newline at end of file diff --git a/icons-react/icons-js/text-wrap-disabled.js b/icons-react/icons-js/text-wrap-disabled.js new file mode 100644 index 000000000..b242bb94b --- /dev/null +++ b/icons-react/icons-js/text-wrap-disabled.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTextWrapDisabled = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTextWrapDisabled; \ No newline at end of file diff --git a/icons-react/icons-js/text-wrap.js b/icons-react/icons-js/text-wrap.js new file mode 100644 index 000000000..e3cdfe1c8 --- /dev/null +++ b/icons-react/icons-js/text-wrap.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTextWrap = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTextWrap; \ No newline at end of file diff --git a/icons-react/icons-js/thumb-down.js b/icons-react/icons-js/thumb-down.js new file mode 100644 index 000000000..4b884a566 --- /dev/null +++ b/icons-react/icons-js/thumb-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconThumbDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconThumbDown; \ No newline at end of file diff --git a/icons-react/icons-js/thumb-up.js b/icons-react/icons-js/thumb-up.js new file mode 100644 index 000000000..b6843cb5b --- /dev/null +++ b/icons-react/icons-js/thumb-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconThumbUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconThumbUp; \ No newline at end of file diff --git a/icons-react/icons-js/ticket.js b/icons-react/icons-js/ticket.js new file mode 100644 index 000000000..a8461f0cb --- /dev/null +++ b/icons-react/icons-js/ticket.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTicket = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTicket; \ No newline at end of file diff --git a/icons-react/icons-js/tir.js b/icons-react/icons-js/tir.js new file mode 100644 index 000000000..814308bae --- /dev/null +++ b/icons-react/icons-js/tir.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTir = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTir; \ No newline at end of file diff --git a/icons-react/icons-js/toggle-left.js b/icons-react/icons-js/toggle-left.js new file mode 100644 index 000000000..faacbfbfe --- /dev/null +++ b/icons-react/icons-js/toggle-left.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconToggleLeft = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconToggleLeft; \ No newline at end of file diff --git a/icons-react/icons-js/toggle-right.js b/icons-react/icons-js/toggle-right.js new file mode 100644 index 000000000..9d12bcd82 --- /dev/null +++ b/icons-react/icons-js/toggle-right.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconToggleRight = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconToggleRight; \ No newline at end of file diff --git a/icons-react/icons-js/tool.js b/icons-react/icons-js/tool.js new file mode 100644 index 000000000..1b6f08d83 --- /dev/null +++ b/icons-react/icons-js/tool.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTool = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTool; \ No newline at end of file diff --git a/icons-react/icons-js/tools.js b/icons-react/icons-js/tools.js new file mode 100644 index 000000000..442251579 --- /dev/null +++ b/icons-react/icons-js/tools.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTools = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTools; \ No newline at end of file diff --git a/icons-react/icons-js/tournament.js b/icons-react/icons-js/tournament.js new file mode 100644 index 000000000..8d620b0ed --- /dev/null +++ b/icons-react/icons-js/tournament.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTournament = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTournament; \ No newline at end of file diff --git a/icons-react/icons-js/track-next.js b/icons-react/icons-js/track-next.js new file mode 100644 index 000000000..8245af27a --- /dev/null +++ b/icons-react/icons-js/track-next.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrackNext = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTrackNext; \ No newline at end of file diff --git a/icons-react/icons-js/track-prev.js b/icons-react/icons-js/track-prev.js new file mode 100644 index 000000000..655ccf62a --- /dev/null +++ b/icons-react/icons-js/track-prev.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrackPrev = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTrackPrev; \ No newline at end of file diff --git a/icons-react/icons-js/tractor.js b/icons-react/icons-js/tractor.js new file mode 100644 index 000000000..5b2945c45 --- /dev/null +++ b/icons-react/icons-js/tractor.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTractor = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTractor; \ No newline at end of file diff --git a/icons-react/icons-js/trademark.js b/icons-react/icons-js/trademark.js new file mode 100644 index 000000000..654018213 --- /dev/null +++ b/icons-react/icons-js/trademark.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrademark = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTrademark; \ No newline at end of file diff --git a/icons-react/icons-js/traffic-cone.js b/icons-react/icons-js/traffic-cone.js new file mode 100644 index 000000000..75d079e22 --- /dev/null +++ b/icons-react/icons-js/traffic-cone.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrafficCone = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTrafficCone; \ No newline at end of file diff --git a/icons-react/icons-js/trash.js b/icons-react/icons-js/trash.js new file mode 100644 index 000000000..dd5270507 --- /dev/null +++ b/icons-react/icons-js/trash.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrash = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTrash; \ No newline at end of file diff --git a/icons-react/icons-js/trees.js b/icons-react/icons-js/trees.js new file mode 100644 index 000000000..0735bebf5 --- /dev/null +++ b/icons-react/icons-js/trees.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrees = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTrees; \ No newline at end of file diff --git a/icons-react/icons-js/trending-down.js b/icons-react/icons-js/trending-down.js new file mode 100644 index 000000000..e5fc40e1d --- /dev/null +++ b/icons-react/icons-js/trending-down.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrendingDown = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTrendingDown; \ No newline at end of file diff --git a/icons-react/icons-js/trending-up.js b/icons-react/icons-js/trending-up.js new file mode 100644 index 000000000..7efd932fc --- /dev/null +++ b/icons-react/icons-js/trending-up.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrendingUp = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTrendingUp; \ No newline at end of file diff --git a/icons-react/icons-js/triangle.js b/icons-react/icons-js/triangle.js new file mode 100644 index 000000000..54fb1feba --- /dev/null +++ b/icons-react/icons-js/triangle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTriangle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/trident.js b/icons-react/icons-js/trident.js new file mode 100644 index 000000000..b47d7411b --- /dev/null +++ b/icons-react/icons-js/trident.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrident = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTrident; \ No newline at end of file diff --git a/icons-react/icons-js/trophy.js b/icons-react/icons-js/trophy.js new file mode 100644 index 000000000..de7c7acfa --- /dev/null +++ b/icons-react/icons-js/trophy.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTrophy = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTrophy; \ No newline at end of file diff --git a/icons-react/icons-js/truck-delivery.js b/icons-react/icons-js/truck-delivery.js new file mode 100644 index 000000000..d63111c1c --- /dev/null +++ b/icons-react/icons-js/truck-delivery.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTruckDelivery = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTruckDelivery; \ No newline at end of file diff --git a/icons-react/icons-js/truck-return.js b/icons-react/icons-js/truck-return.js new file mode 100644 index 000000000..cc03125d0 --- /dev/null +++ b/icons-react/icons-js/truck-return.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTruckReturn = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTruckReturn; \ No newline at end of file diff --git a/icons-react/icons-js/truck.js b/icons-react/icons-js/truck.js new file mode 100644 index 000000000..b7ab27cd3 --- /dev/null +++ b/icons-react/icons-js/truck.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTruck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTruck; \ No newline at end of file diff --git a/icons-react/icons-js/typography.js b/icons-react/icons-js/typography.js new file mode 100644 index 000000000..4e1cce227 --- /dev/null +++ b/icons-react/icons-js/typography.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconTypography = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconTypography; \ No newline at end of file diff --git a/icons-react/icons-js/umbrella.js b/icons-react/icons-js/umbrella.js new file mode 100644 index 000000000..6908a97e8 --- /dev/null +++ b/icons-react/icons-js/umbrella.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUmbrella = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUmbrella; \ No newline at end of file diff --git a/icons-react/icons-js/underline.js b/icons-react/icons-js/underline.js new file mode 100644 index 000000000..618e8db2d --- /dev/null +++ b/icons-react/icons-js/underline.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUnderline = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUnderline; \ No newline at end of file diff --git a/icons-react/icons-js/unlink.js b/icons-react/icons-js/unlink.js new file mode 100644 index 000000000..b8a473013 --- /dev/null +++ b/icons-react/icons-js/unlink.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUnlink = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUnlink; \ No newline at end of file diff --git a/icons-react/icons-js/upload.js b/icons-react/icons-js/upload.js new file mode 100644 index 000000000..4f4374109 --- /dev/null +++ b/icons-react/icons-js/upload.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUpload = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUpload; \ No newline at end of file diff --git a/icons-react/icons-js/urgent.js b/icons-react/icons-js/urgent.js new file mode 100644 index 000000000..472d4cff8 --- /dev/null +++ b/icons-react/icons-js/urgent.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUrgent = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUrgent; \ No newline at end of file diff --git a/icons-react/icons-js/user-check.js b/icons-react/icons-js/user-check.js new file mode 100644 index 000000000..22c6f60fd --- /dev/null +++ b/icons-react/icons-js/user-check.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUserCheck = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUserCheck; \ No newline at end of file diff --git a/icons-react/icons-js/user-exclamation.js b/icons-react/icons-js/user-exclamation.js new file mode 100644 index 000000000..62aae6e6c --- /dev/null +++ b/icons-react/icons-js/user-exclamation.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUserExclamation = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUserExclamation; \ No newline at end of file diff --git a/icons-react/icons-js/user-minus.js b/icons-react/icons-js/user-minus.js new file mode 100644 index 000000000..62e016db4 --- /dev/null +++ b/icons-react/icons-js/user-minus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUserMinus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUserMinus; \ No newline at end of file diff --git a/icons-react/icons-js/user-plus.js b/icons-react/icons-js/user-plus.js new file mode 100644 index 000000000..d5d8d0630 --- /dev/null +++ b/icons-react/icons-js/user-plus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUserPlus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUserPlus; \ No newline at end of file diff --git a/icons-react/icons-js/user-x.js b/icons-react/icons-js/user-x.js new file mode 100644 index 000000000..c91e2a275 --- /dev/null +++ b/icons-react/icons-js/user-x.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUserX = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUserX; \ No newline at end of file diff --git a/icons-react/icons-js/user.js b/icons-react/icons-js/user.js new file mode 100644 index 000000000..e85af5c5c --- /dev/null +++ b/icons-react/icons-js/user.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUser = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUser; \ No newline at end of file diff --git a/icons-react/icons-js/users.js b/icons-react/icons-js/users.js new file mode 100644 index 000000000..2d5df8f1f --- /dev/null +++ b/icons-react/icons-js/users.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconUsers = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconUsers; \ No newline at end of file diff --git a/icons-react/icons-js/vector-triangle.js b/icons-react/icons-js/vector-triangle.js new file mode 100644 index 000000000..c1d5775ed --- /dev/null +++ b/icons-react/icons-js/vector-triangle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconVectorTriangle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconVectorTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/vector.js b/icons-react/icons-js/vector.js new file mode 100644 index 000000000..8c5cca578 --- /dev/null +++ b/icons-react/icons-js/vector.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconVector = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconVector; \ No newline at end of file diff --git a/icons-react/icons-js/venus.js b/icons-react/icons-js/venus.js new file mode 100644 index 000000000..d1e091936 --- /dev/null +++ b/icons-react/icons-js/venus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconVenus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconVenus; \ No newline at end of file diff --git a/icons-react/icons-js/viewfinder.js b/icons-react/icons-js/viewfinder.js new file mode 100644 index 000000000..c56ad2a93 --- /dev/null +++ b/icons-react/icons-js/viewfinder.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconViewfinder = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconViewfinder; \ No newline at end of file diff --git a/icons-react/icons-js/viewport-narrow.js b/icons-react/icons-js/viewport-narrow.js new file mode 100644 index 000000000..d4018899d --- /dev/null +++ b/icons-react/icons-js/viewport-narrow.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconViewportNarrow = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconViewportNarrow; \ No newline at end of file diff --git a/icons-react/icons-js/viewport-wide.js b/icons-react/icons-js/viewport-wide.js new file mode 100644 index 000000000..e08156921 --- /dev/null +++ b/icons-react/icons-js/viewport-wide.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconViewportWide = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconViewportWide; \ No newline at end of file diff --git a/icons-react/icons-js/virus.js b/icons-react/icons-js/virus.js new file mode 100644 index 000000000..306c3a615 --- /dev/null +++ b/icons-react/icons-js/virus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconVirus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconVirus; \ No newline at end of file diff --git a/icons-react/icons-js/volume-2.js b/icons-react/icons-js/volume-2.js new file mode 100644 index 000000000..b19074399 --- /dev/null +++ b/icons-react/icons-js/volume-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconVolume2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconVolume2; \ No newline at end of file diff --git a/icons-react/icons-js/volume-3.js b/icons-react/icons-js/volume-3.js new file mode 100644 index 000000000..7749ef5aa --- /dev/null +++ b/icons-react/icons-js/volume-3.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconVolume3 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconVolume3; \ No newline at end of file diff --git a/icons-react/icons-js/volume.js b/icons-react/icons-js/volume.js new file mode 100644 index 000000000..815aeea64 --- /dev/null +++ b/icons-react/icons-js/volume.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconVolume = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconVolume; \ No newline at end of file diff --git a/icons-react/icons-js/walk.js b/icons-react/icons-js/walk.js new file mode 100644 index 000000000..269cb7348 --- /dev/null +++ b/icons-react/icons-js/walk.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWalk = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWalk; \ No newline at end of file diff --git a/icons-react/icons-js/wallet.js b/icons-react/icons-js/wallet.js new file mode 100644 index 000000000..2ae6f9e7c --- /dev/null +++ b/icons-react/icons-js/wallet.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWallet = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWallet; \ No newline at end of file diff --git a/icons-react/icons-js/wand.js b/icons-react/icons-js/wand.js new file mode 100644 index 000000000..c2e61e9c7 --- /dev/null +++ b/icons-react/icons-js/wand.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWand = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWand; \ No newline at end of file diff --git a/icons-react/icons-js/wave-saw-tool.js b/icons-react/icons-js/wave-saw-tool.js new file mode 100644 index 000000000..e78ddc99d --- /dev/null +++ b/icons-react/icons-js/wave-saw-tool.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWaveSawTool = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWaveSawTool; \ No newline at end of file diff --git a/icons-react/icons-js/wave-sine.js b/icons-react/icons-js/wave-sine.js new file mode 100644 index 000000000..ad633a1db --- /dev/null +++ b/icons-react/icons-js/wave-sine.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWaveSine = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWaveSine; \ No newline at end of file diff --git a/icons-react/icons-js/wave-square.js b/icons-react/icons-js/wave-square.js new file mode 100644 index 000000000..df2b371ee --- /dev/null +++ b/icons-react/icons-js/wave-square.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWaveSquare = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWaveSquare; \ No newline at end of file diff --git a/icons-react/icons-js/wave-triangle.js b/icons-react/icons-js/wave-triangle.js new file mode 100644 index 000000000..787b230eb --- /dev/null +++ b/icons-react/icons-js/wave-triangle.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWaveTriangle = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWaveTriangle; \ No newline at end of file diff --git a/icons-react/icons-js/wifi-0.js b/icons-react/icons-js/wifi-0.js new file mode 100644 index 000000000..9e2c8be6e --- /dev/null +++ b/icons-react/icons-js/wifi-0.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWifi0 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWifi0; \ No newline at end of file diff --git a/icons-react/icons-js/wifi-1.js b/icons-react/icons-js/wifi-1.js new file mode 100644 index 000000000..5ebd796e6 --- /dev/null +++ b/icons-react/icons-js/wifi-1.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWifi1 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWifi1; \ No newline at end of file diff --git a/icons-react/icons-js/wifi-2.js b/icons-react/icons-js/wifi-2.js new file mode 100644 index 000000000..00790d83e --- /dev/null +++ b/icons-react/icons-js/wifi-2.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWifi2 = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWifi2; \ No newline at end of file diff --git a/icons-react/icons-js/wifi.js b/icons-react/icons-js/wifi.js new file mode 100644 index 000000000..931af3c43 --- /dev/null +++ b/icons-react/icons-js/wifi.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWifi = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWifi; \ No newline at end of file diff --git a/icons-react/icons-js/wind.js b/icons-react/icons-js/wind.js new file mode 100644 index 000000000..cf65afb8c --- /dev/null +++ b/icons-react/icons-js/wind.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWind = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWind; \ No newline at end of file diff --git a/icons-react/icons-js/wiper-wash.js b/icons-react/icons-js/wiper-wash.js new file mode 100644 index 000000000..5f7f17430 --- /dev/null +++ b/icons-react/icons-js/wiper-wash.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWiperWash = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWiperWash; \ No newline at end of file diff --git a/icons-react/icons-js/wiper.js b/icons-react/icons-js/wiper.js new file mode 100644 index 000000000..648625e6c --- /dev/null +++ b/icons-react/icons-js/wiper.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWiper = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWiper; \ No newline at end of file diff --git a/icons-react/icons-js/woman.js b/icons-react/icons-js/woman.js new file mode 100644 index 000000000..f05d07bba --- /dev/null +++ b/icons-react/icons-js/woman.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWoman = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWoman; \ No newline at end of file diff --git a/icons-react/icons-js/world.js b/icons-react/icons-js/world.js new file mode 100644 index 000000000..37df9d79b --- /dev/null +++ b/icons-react/icons-js/world.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconWorld = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconWorld; \ No newline at end of file diff --git a/icons-react/icons-js/x.js b/icons-react/icons-js/x.js new file mode 100644 index 000000000..8185e99a1 --- /dev/null +++ b/icons-react/icons-js/x.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconX = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconX; \ No newline at end of file diff --git a/icons-react/icons-js/yin-yang.js b/icons-react/icons-js/yin-yang.js new file mode 100644 index 000000000..a7689d951 --- /dev/null +++ b/icons-react/icons-js/yin-yang.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconYinYang = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconYinYang; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-aquarius.js b/icons-react/icons-js/zodiac-aquarius.js new file mode 100644 index 000000000..d6da0ef76 --- /dev/null +++ b/icons-react/icons-js/zodiac-aquarius.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacAquarius = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacAquarius; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-aries.js b/icons-react/icons-js/zodiac-aries.js new file mode 100644 index 000000000..9669b1586 --- /dev/null +++ b/icons-react/icons-js/zodiac-aries.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacAries = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacAries; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-cancer.js b/icons-react/icons-js/zodiac-cancer.js new file mode 100644 index 000000000..54d808a34 --- /dev/null +++ b/icons-react/icons-js/zodiac-cancer.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacCancer = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacCancer; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-capricorn.js b/icons-react/icons-js/zodiac-capricorn.js new file mode 100644 index 000000000..a3c070d7a --- /dev/null +++ b/icons-react/icons-js/zodiac-capricorn.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacCapricorn = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacCapricorn; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-gemini.js b/icons-react/icons-js/zodiac-gemini.js new file mode 100644 index 000000000..001c114be --- /dev/null +++ b/icons-react/icons-js/zodiac-gemini.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacGemini = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacGemini; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-leo.js b/icons-react/icons-js/zodiac-leo.js new file mode 100644 index 000000000..933d53623 --- /dev/null +++ b/icons-react/icons-js/zodiac-leo.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacLeo = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacLeo; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-libra.js b/icons-react/icons-js/zodiac-libra.js new file mode 100644 index 000000000..08fae211e --- /dev/null +++ b/icons-react/icons-js/zodiac-libra.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacLibra = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacLibra; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-pisces.js b/icons-react/icons-js/zodiac-pisces.js new file mode 100644 index 000000000..941ab6f7f --- /dev/null +++ b/icons-react/icons-js/zodiac-pisces.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacPisces = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacPisces; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-sagittarius.js b/icons-react/icons-js/zodiac-sagittarius.js new file mode 100644 index 000000000..39d2b7c74 --- /dev/null +++ b/icons-react/icons-js/zodiac-sagittarius.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacSagittarius = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacSagittarius; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-scorpio.js b/icons-react/icons-js/zodiac-scorpio.js new file mode 100644 index 000000000..a62fb9cd6 --- /dev/null +++ b/icons-react/icons-js/zodiac-scorpio.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacScorpio = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacScorpio; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-taurus.js b/icons-react/icons-js/zodiac-taurus.js new file mode 100644 index 000000000..2614a1e93 --- /dev/null +++ b/icons-react/icons-js/zodiac-taurus.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacTaurus = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacTaurus; \ No newline at end of file diff --git a/icons-react/icons-js/zodiac-virgo.js b/icons-react/icons-js/zodiac-virgo.js new file mode 100644 index 000000000..cfa9c4497 --- /dev/null +++ b/icons-react/icons-js/zodiac-virgo.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZodiacVirgo = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZodiacVirgo; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-cancel.js b/icons-react/icons-js/zoom-cancel.js new file mode 100644 index 000000000..d717a7454 --- /dev/null +++ b/icons-react/icons-js/zoom-cancel.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZoomCancel = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZoomCancel; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-in.js b/icons-react/icons-js/zoom-in.js new file mode 100644 index 000000000..31e1e1468 --- /dev/null +++ b/icons-react/icons-js/zoom-in.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZoomIn = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZoomIn; \ No newline at end of file diff --git a/icons-react/icons-js/zoom-out.js b/icons-react/icons-js/zoom-out.js new file mode 100644 index 000000000..5ab93a30a --- /dev/null +++ b/icons-react/icons-js/zoom-out.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconZoomOut = (size = 24, color = "currentColor", stroke = 2, ...props) => ; + +export default IconZoomOut; \ No newline at end of file diff --git a/icons-react/index.d.js b/icons-react/index.d.js new file mode 100644 index 000000000..f278607f1 --- /dev/null +++ b/icons-react/index.d.js @@ -0,0 +1,714 @@ +import { FC, SVGAttributes } from 'react'; + +interface TablerIconProps extends SVGAttributes { color?: string; size?: string | number; stroke?: string | number; } + +type TablerIcon = FC; + +export const Icon2fa: TablerIcon; +export const IconAB: TablerIcon; +export const IconAccessible: TablerIcon; +export const IconAd: TablerIcon; +export const IconAdjustmentsAlt: TablerIcon; +export const IconAdjustmentsHorizontal: TablerIcon; +export const IconAdjustments: TablerIcon; +export const IconAlarm: TablerIcon; +export const IconAlertCircle: TablerIcon; +export const IconAlertOctagon: TablerIcon; +export const IconAlertTriangle: TablerIcon; +export const IconAlien: TablerIcon; +export const IconAlignCenter: TablerIcon; +export const IconAlignJustified: TablerIcon; +export const IconAlignLeft: TablerIcon; +export const IconAlignRight: TablerIcon; +export const IconAmbulance: TablerIcon; +export const IconAnchor: TablerIcon; +export const IconAntennaBars1: TablerIcon; +export const IconAntennaBars2: TablerIcon; +export const IconAntennaBars3: TablerIcon; +export const IconAntennaBars4: TablerIcon; +export const IconAntennaBars5: TablerIcon; +export const IconAperture: TablerIcon; +export const IconApps: TablerIcon; +export const IconArchive: TablerIcon; +export const IconArrowBackUp: TablerIcon; +export const IconArrowBack: TablerIcon; +export const IconArrowBarDown: TablerIcon; +export const IconArrowBarLeft: TablerIcon; +export const IconArrowBarRight: TablerIcon; +export const IconArrowBarToDown: TablerIcon; +export const IconArrowBarToLeft: TablerIcon; +export const IconArrowBarToRight: TablerIcon; +export const IconArrowBarToUp: TablerIcon; +export const IconArrowBarUp: TablerIcon; +export const IconArrowDownCircle: TablerIcon; +export const IconArrowDownLeftCircle: TablerIcon; +export const IconArrowDownLeft: TablerIcon; +export const IconArrowDownRightCircle: TablerIcon; +export const IconArrowDownRight: TablerIcon; +export const IconArrowDown: TablerIcon; +export const IconArrowForwardUp: TablerIcon; +export const IconArrowForward: TablerIcon; +export const IconArrowLeftCircle: TablerIcon; +export const IconArrowLeft: TablerIcon; +export const IconArrowNarrowDown: TablerIcon; +export const IconArrowNarrowLeft: TablerIcon; +export const IconArrowNarrowRight: TablerIcon; +export const IconArrowNarrowUp: TablerIcon; +export const IconArrowRightCircle: TablerIcon; +export const IconArrowRight: TablerIcon; +export const IconArrowUpCircle: TablerIcon; +export const IconArrowUpLeftCircle: TablerIcon; +export const IconArrowUpLeft: TablerIcon; +export const IconArrowUpRightCircle: TablerIcon; +export const IconArrowUpRight: TablerIcon; +export const IconArrowUp: TablerIcon; +export const IconArrowsDiagonal2: TablerIcon; +export const IconArrowsDiagonal: TablerIcon; +export const IconArrowsHorizontal: TablerIcon; +export const IconArrowsMaximize: TablerIcon; +export const IconArrowsMinimize: TablerIcon; +export const IconArrowsSort: TablerIcon; +export const IconArrowsVertical: TablerIcon; +export const IconArtboard: TablerIcon; +export const IconAt: TablerIcon; +export const IconAtom2: TablerIcon; +export const IconAtom: TablerIcon; +export const IconAward: TablerIcon; +export const IconBackspace: TablerIcon; +export const IconBallBasketball: TablerIcon; +export const IconBallBowling: TablerIcon; +export const IconBallTennis: TablerIcon; +export const IconBallVolleyball: TablerIcon; +export const IconBan: TablerIcon; +export const IconBandage: TablerIcon; +export const IconBarcode: TablerIcon; +export const IconBasket: TablerIcon; +export const IconBattery1: TablerIcon; +export const IconBattery2: TablerIcon; +export const IconBattery3: TablerIcon; +export const IconBattery4: TablerIcon; +export const IconBatteryCharging: TablerIcon; +export const IconBattery: TablerIcon; +export const IconBed: TablerIcon; +export const IconBell: TablerIcon; +export const IconBike: TablerIcon; +export const IconBiohazard: TablerIcon; +export const IconBluetooth: TablerIcon; +export const IconBold: TablerIcon; +export const IconBolt: TablerIcon; +export const IconBook: TablerIcon; +export const IconBookmark: TablerIcon; +export const IconBorderAll: TablerIcon; +export const IconBorderBottom: TablerIcon; +export const IconBorderHorizontal: TablerIcon; +export const IconBorderInner: TablerIcon; +export const IconBorderLeft: TablerIcon; +export const IconBorderNone: TablerIcon; +export const IconBorderOuter: TablerIcon; +export const IconBorderRadius: TablerIcon; +export const IconBorderRight: TablerIcon; +export const IconBorderTop: TablerIcon; +export const IconBorderVertical: TablerIcon; +export const IconBox: TablerIcon; +export const IconBraces: TablerIcon; +export const IconBrackets: TablerIcon; +export const IconBrandAndroid: TablerIcon; +export const IconBrandApple: TablerIcon; +export const IconBrandBehance: TablerIcon; +export const IconBrandChrome: TablerIcon; +export const IconBrandCodepen: TablerIcon; +export const IconBrandDribbble: TablerIcon; +export const IconBrandFacebook: TablerIcon; +export const IconBrandFigma: TablerIcon; +export const IconBrandFramer: TablerIcon; +export const IconBrandGithub: TablerIcon; +export const IconBrandGitlab: TablerIcon; +export const IconBrandGoogleDrive: TablerIcon; +export const IconBrandGoogle: TablerIcon; +export const IconBrandInstagram: TablerIcon; +export const IconBrandLinkedin: TablerIcon; +export const IconBrandMedium: TablerIcon; +export const IconBrandMessenger: TablerIcon; +export const IconBrandOpera: TablerIcon; +export const IconBrandPaypal: TablerIcon; +export const IconBrandPinterest: TablerIcon; +export const IconBrandReddit: TablerIcon; +export const IconBrandSafari: TablerIcon; +export const IconBrandSketch: TablerIcon; +export const IconBrandSlack: TablerIcon; +export const IconBrandSnapchat: TablerIcon; +export const IconBrandTabler: TablerIcon; +export const IconBrandTailwind: TablerIcon; +export const IconBrandTelegram: TablerIcon; +export const IconBrandTiktok: TablerIcon; +export const IconBrandTwitter: TablerIcon; +export const IconBrandWhatsapp: TablerIcon; +export const IconBrandYoutube: TablerIcon; +export const IconBriefcase: TablerIcon; +export const IconBrightnessDown: TablerIcon; +export const IconBrightnessUp: TablerIcon; +export const IconBrightness: TablerIcon; +export const IconBrowser: TablerIcon; +export const IconBrush: TablerIcon; +export const IconBucket: TablerIcon; +export const IconBug: TablerIcon; +export const IconBuildingArch: TablerIcon; +export const IconBuildingBank: TablerIcon; +export const IconBuildingBridge2: TablerIcon; +export const IconBuildingBridge: TablerIcon; +export const IconBuildingChurch: TablerIcon; +export const IconBuildingCommunity: TablerIcon; +export const IconBuildingHospital: TablerIcon; +export const IconBuildingPavilon: TablerIcon; +export const IconBuildingSkyscraper: TablerIcon; +export const IconBuildingStore: TablerIcon; +export const IconBuildingWarehouse: TablerIcon; +export const IconBuilding: TablerIcon; +export const IconBulbOff: TablerIcon; +export const IconBulb: TablerIcon; +export const IconBus: TablerIcon; +export const IconCalculator: TablerIcon; +export const IconCalendarEvent: TablerIcon; +export const IconCalendarMinus: TablerIcon; +export const IconCalendarPlus: TablerIcon; +export const IconCalendar: TablerIcon; +export const IconCameraMinus: TablerIcon; +export const IconCameraPlus: TablerIcon; +export const IconCamera: TablerIcon; +export const IconCapture: TablerIcon; +export const IconCar: TablerIcon; +export const IconCaravan: TablerIcon; +export const IconCaretDown: TablerIcon; +export const IconCaretLeft: TablerIcon; +export const IconCaretRight: TablerIcon; +export const IconCaretUp: TablerIcon; +export const IconCash: TablerIcon; +export const IconCast: TablerIcon; +export const IconChartAreaLine: TablerIcon; +export const IconChartArea: TablerIcon; +export const IconChartBar: TablerIcon; +export const IconChartBubble: TablerIcon; +export const IconChartCandle: TablerIcon; +export const IconChartDonut: TablerIcon; +export const IconChartLine: TablerIcon; +export const IconChartPie: TablerIcon; +export const IconCheck: TablerIcon; +export const IconCheckbox: TablerIcon; +export const IconChecks: TablerIcon; +export const IconChevronDown: TablerIcon; +export const IconChevronLeft: TablerIcon; +export const IconChevronRight: TablerIcon; +export const IconChevronUp: TablerIcon; +export const IconChevronsDown: TablerIcon; +export const IconChevronsLeft: TablerIcon; +export const IconChevronsRight: TablerIcon; +export const IconChevronsUp: TablerIcon; +export const IconCircleCheck: TablerIcon; +export const IconCircleMinus: TablerIcon; +export const IconCirclePlus: TablerIcon; +export const IconCircleX: TablerIcon; +export const IconCircle: TablerIcon; +export const IconClearFormatting: TablerIcon; +export const IconClick: TablerIcon; +export const IconClipboardCheck: TablerIcon; +export const IconClipboardList: TablerIcon; +export const IconClipboardX: TablerIcon; +export const IconClipboard: TablerIcon; +export const IconClock: TablerIcon; +export const IconCloudDownload: TablerIcon; +export const IconCloudRain: TablerIcon; +export const IconCloudSnow: TablerIcon; +export const IconCloudStorm: TablerIcon; +export const IconCloudUpload: TablerIcon; +export const IconCloud: TablerIcon; +export const IconCode: TablerIcon; +export const IconCoin: TablerIcon; +export const IconColorPicker: TablerIcon; +export const IconColorSwatch: TablerIcon; +export const IconColumns: TablerIcon; +export const IconComet: TablerIcon; +export const IconCommand: TablerIcon; +export const IconCompass: TablerIcon; +export const IconContrast: TablerIcon; +export const IconCopy: TablerIcon; +export const IconCopyleft: TablerIcon; +export const IconCopyright: TablerIcon; +export const IconCornerDownLeft: TablerIcon; +export const IconCornerDownRight: TablerIcon; +export const IconCornerLeftDown: TablerIcon; +export const IconCornerLeftUp: TablerIcon; +export const IconCornerRightDown: TablerIcon; +export const IconCornerRightUp: TablerIcon; +export const IconCornerUpLeft: TablerIcon; +export const IconCornerUpRight: TablerIcon; +export const IconCreditCard: TablerIcon; +export const IconCrop: TablerIcon; +export const IconCrosshair: TablerIcon; +export const IconCurrencyBitcoin: TablerIcon; +export const IconCurrencyDollar: TablerIcon; +export const IconCurrencyEuro: TablerIcon; +export const IconCurrencyPound: TablerIcon; +export const IconCurrencyRupee: TablerIcon; +export const IconCurrencyYen: TablerIcon; +export const IconCut: TablerIcon; +export const IconDashboard: TablerIcon; +export const IconDatabase: TablerIcon; +export const IconDeviceDesktop: TablerIcon; +export const IconDeviceFloppy: TablerIcon; +export const IconDeviceGamepad: TablerIcon; +export const IconDeviceLaptop: TablerIcon; +export const IconDeviceMobileVibration: TablerIcon; +export const IconDeviceMobile: TablerIcon; +export const IconDeviceSpeaker: TablerIcon; +export const IconDeviceTablet: TablerIcon; +export const IconDeviceTv: TablerIcon; +export const IconDeviceWatch: TablerIcon; +export const IconDevices: TablerIcon; +export const IconDiamond: TablerIcon; +export const IconDice: TablerIcon; +export const IconDirectionHorizontal: TablerIcon; +export const IconDirection: TablerIcon; +export const IconDirections: TablerIcon; +export const IconDisabled2: TablerIcon; +export const IconDisabled: TablerIcon; +export const IconDisc: TablerIcon; +export const IconDiscount: TablerIcon; +export const IconDotsCircleHorizontal: TablerIcon; +export const IconDotsDiagonal2: TablerIcon; +export const IconDotsDiagonal: TablerIcon; +export const IconDotsVertical: TablerIcon; +export const IconDots: TablerIcon; +export const IconDownload: TablerIcon; +export const IconDragDrop2: TablerIcon; +export const IconDragDrop: TablerIcon; +export const IconDroplet: TablerIcon; +export const IconEar: TablerIcon; +export const IconEdit: TablerIcon; +export const IconEgg: TablerIcon; +export const IconEmphasis: TablerIcon; +export const IconEraser: TablerIcon; +export const IconExchange: TablerIcon; +export const IconExposure: TablerIcon; +export const IconExternalLink: TablerIcon; +export const IconEye: TablerIcon; +export const IconFaceId: TablerIcon; +export const IconFall: TablerIcon; +export const IconFileCheck: TablerIcon; +export const IconFileCode: TablerIcon; +export const IconFileDownload: TablerIcon; +export const IconFileHorizontal: TablerIcon; +export const IconFileInvoice: TablerIcon; +export const IconFileMinus: TablerIcon; +export const IconFileMusic: TablerIcon; +export const IconFilePlus: TablerIcon; +export const IconFileShredder: TablerIcon; +export const IconFileText: TablerIcon; +export const IconFileUpload: TablerIcon; +export const IconFileX: TablerIcon; +export const IconFile: TablerIcon; +export const IconFilter: TablerIcon; +export const IconFingerprint: TablerIcon; +export const IconFiretruck: TablerIcon; +export const IconFlag: TablerIcon; +export const IconFlame: TablerIcon; +export const IconFlask: TablerIcon; +export const IconFlipHorizontal: TablerIcon; +export const IconFlipVertical: TablerIcon; +export const IconFloatCenter: TablerIcon; +export const IconFloatLeft: TablerIcon; +export const IconFloatRight: TablerIcon; +export const IconFocus2: TablerIcon; +export const IconFocus: TablerIcon; +export const IconFolderMinus: TablerIcon; +export const IconFolderPlus: TablerIcon; +export const IconFolderX: TablerIcon; +export const IconFolder: TablerIcon; +export const IconFolders: TablerIcon; +export const IconForbid2: TablerIcon; +export const IconForbid: TablerIcon; +export const IconForklift: TablerIcon; +export const IconFrame: TablerIcon; +export const IconFriends: TablerIcon; +export const IconGasStation: TablerIcon; +export const IconGauge: TablerIcon; +export const IconGhost: TablerIcon; +export const IconGift: TablerIcon; +export const IconGitBranch: TablerIcon; +export const IconGitCommit: TablerIcon; +export const IconGitCompare: TablerIcon; +export const IconGitFork: TablerIcon; +export const IconGitMerge: TablerIcon; +export const IconGitPullRequest: TablerIcon; +export const IconGlassFull: TablerIcon; +export const IconGlass: TablerIcon; +export const IconGlobe: TablerIcon; +export const IconGridDots: TablerIcon; +export const IconGrid: TablerIcon; +export const IconGripHorizontal: TablerIcon; +export const IconGripVertical: TablerIcon; +export const IconH1: TablerIcon; +export const IconH2: TablerIcon; +export const IconH3: TablerIcon; +export const IconH4: TablerIcon; +export const IconH5: TablerIcon; +export const IconH6: TablerIcon; +export const IconHandMiddleFinger: TablerIcon; +export const IconHandStop: TablerIcon; +export const IconHash: TablerIcon; +export const IconHeadphones: TablerIcon; +export const IconHeadset: TablerIcon; +export const IconHeartBroken: TablerIcon; +export const IconHeart: TablerIcon; +export const IconHelp: TablerIcon; +export const IconHexagon: TablerIcon; +export const IconHistory: TablerIcon; +export const IconHome2: TablerIcon; +export const IconHome: TablerIcon; +export const IconIceCream: TablerIcon; +export const IconId: TablerIcon; +export const IconInbox: TablerIcon; +export const IconIndentDecrease: TablerIcon; +export const IconIndentIncrease: TablerIcon; +export const IconInfinity: TablerIcon; +export const IconInfoCircle: TablerIcon; +export const IconInfoSquare: TablerIcon; +export const IconItalic: TablerIcon; +export const IconKey: TablerIcon; +export const IconKeyboardHide: TablerIcon; +export const IconKeyboardShow: TablerIcon; +export const IconKeyboard: TablerIcon; +export const IconLanguage: TablerIcon; +export const IconLayersDifference: TablerIcon; +export const IconLayersIntersect: TablerIcon; +export const IconLayersSubtract: TablerIcon; +export const IconLayersUnion: TablerIcon; +export const IconLayout2: TablerIcon; +export const IconLayoutAlignBottom: TablerIcon; +export const IconLayoutAlignCenter: TablerIcon; +export const IconLayoutAlignLeft: TablerIcon; +export const IconLayoutAlignMiddle: TablerIcon; +export const IconLayoutAlignRight: TablerIcon; +export const IconLayoutAlignTop: TablerIcon; +export const IconLayoutBottombar: TablerIcon; +export const IconLayoutCards: TablerIcon; +export const IconLayoutColumns: TablerIcon; +export const IconLayoutDistributeHorizontal: TablerIcon; +export const IconLayoutDistributeVertical: TablerIcon; +export const IconLayoutKanban: TablerIcon; +export const IconLayoutList: TablerIcon; +export const IconLayoutNavbar: TablerIcon; +export const IconLayoutRows: TablerIcon; +export const IconLayoutSidebarRight: TablerIcon; +export const IconLayoutSidebar: TablerIcon; +export const IconLayout: TablerIcon; +export const IconLego: TablerIcon; +export const IconLetterA: TablerIcon; +export const IconLetterB: TablerIcon; +export const IconLetterC: TablerIcon; +export const IconLetterD: TablerIcon; +export const IconLetterE: TablerIcon; +export const IconLetterF: TablerIcon; +export const IconLetterG: TablerIcon; +export const IconLetterH: TablerIcon; +export const IconLetterI: TablerIcon; +export const IconLetterJ: TablerIcon; +export const IconLetterK: TablerIcon; +export const IconLetterL: TablerIcon; +export const IconLetterM: TablerIcon; +export const IconLetterN: TablerIcon; +export const IconLetterO: TablerIcon; +export const IconLetterP: TablerIcon; +export const IconLetterQ: TablerIcon; +export const IconLetterR: TablerIcon; +export const IconLetterS: TablerIcon; +export const IconLetterT: TablerIcon; +export const IconLetterU: TablerIcon; +export const IconLetterV: TablerIcon; +export const IconLetterW: TablerIcon; +export const IconLetterX: TablerIcon; +export const IconLetterY: TablerIcon; +export const IconLetterZ: TablerIcon; +export const IconLettersCase: TablerIcon; +export const IconLicense: TablerIcon; +export const IconLifebuoy: TablerIcon; +export const IconLineHeight: TablerIcon; +export const IconLine: TablerIcon; +export const IconLink: TablerIcon; +export const IconListCheck: TablerIcon; +export const IconList: TablerIcon; +export const IconLivePhoto: TablerIcon; +export const IconLiveView: TablerIcon; +export const IconLoaderQuarter: TablerIcon; +export const IconLoader: TablerIcon; +export const IconLocation: TablerIcon; +export const IconLockOpen: TablerIcon; +export const IconLock: TablerIcon; +export const IconLogin: TablerIcon; +export const IconLogout: TablerIcon; +export const IconMagnet: TablerIcon; +export const IconMailOpened: TablerIcon; +export const IconMail: TablerIcon; +export const IconMan: TablerIcon; +export const IconMap2: TablerIcon; +export const IconMapPin: TablerIcon; +export const IconMap: TablerIcon; +export const IconMarkdown: TablerIcon; +export const IconMarquee: TablerIcon; +export const IconMars: TablerIcon; +export const IconMath: TablerIcon; +export const IconMaximize: TablerIcon; +export const IconMedal: TablerIcon; +export const IconMedicalCross: TablerIcon; +export const IconMenu2: TablerIcon; +export const IconMenu: TablerIcon; +export const IconMessage2: TablerIcon; +export const IconMessageCircle: TablerIcon; +export const IconMessageDots: TablerIcon; +export const IconMessagePlus: TablerIcon; +export const IconMessageReport: TablerIcon; +export const IconMessage: TablerIcon; +export const IconMessages: TablerIcon; +export const IconMicrophone: TablerIcon; +export const IconMinimize: TablerIcon; +export const IconMinus: TablerIcon; +export const IconMist: TablerIcon; +export const IconMoodConfuzed: TablerIcon; +export const IconMoodCry: TablerIcon; +export const IconMoodHappy: TablerIcon; +export const IconMoodKid: TablerIcon; +export const IconMoodNeutral: TablerIcon; +export const IconMoodSad: TablerIcon; +export const IconMoodSmile: TablerIcon; +export const IconMoodSuprised: TablerIcon; +export const IconMoodTongue: TablerIcon; +export const IconMoon: TablerIcon; +export const IconMoped: TablerIcon; +export const IconMouse: TablerIcon; +export const IconMovie: TablerIcon; +export const IconMug: TablerIcon; +export const IconMusic: TablerIcon; +export const IconNewSection: TablerIcon; +export const IconNews: TablerIcon; +export const IconNote: TablerIcon; +export const IconNotebook: TablerIcon; +export const IconNotes: TablerIcon; +export const IconNotification: TablerIcon; +export const IconOctagon: TablerIcon; +export const IconOmega: TablerIcon; +export const IconOutlet: TablerIcon; +export const IconPackage: TablerIcon; +export const IconPageBreak: TablerIcon; +export const IconPaint: TablerIcon; +export const IconPalette: TablerIcon; +export const IconPaperclip: TablerIcon; +export const IconParentheses: TablerIcon; +export const IconParking: TablerIcon; +export const IconPause: TablerIcon; +export const IconPeace: TablerIcon; +export const IconPencil: TablerIcon; +export const IconPhoneCall: TablerIcon; +export const IconPhoneCalling: TablerIcon; +export const IconPhoneCheck: TablerIcon; +export const IconPhoneIncoming: TablerIcon; +export const IconPhoneOutgoing: TablerIcon; +export const IconPhonePause: TablerIcon; +export const IconPhonePlus: TablerIcon; +export const IconPhoneX: TablerIcon; +export const IconPhone: TablerIcon; +export const IconPhoto: TablerIcon; +export const IconPill: TablerIcon; +export const IconPin: TablerIcon; +export const IconPlaneArrival: TablerIcon; +export const IconPlaneDeparture: TablerIcon; +export const IconPlane: TablerIcon; +export const IconPlanet: TablerIcon; +export const IconPlay: TablerIcon; +export const IconPlug: TablerIcon; +export const IconPlus: TablerIcon; +export const IconPoint: TablerIcon; +export const IconPower: TablerIcon; +export const IconPray: TablerIcon; +export const IconPresentation: TablerIcon; +export const IconPrinter: TablerIcon; +export const IconPrompt: TablerIcon; +export const IconPuzzle: TablerIcon; +export const IconQrcode: TablerIcon; +export const IconQuestionMark: TablerIcon; +export const IconRadioactive: TablerIcon; +export const IconRecordMail: TablerIcon; +export const IconRecycle: TablerIcon; +export const IconRefresh: TablerIcon; +export const IconRegistered: TablerIcon; +export const IconRepeatOnce: TablerIcon; +export const IconRepeat: TablerIcon; +export const IconReplace: TablerIcon; +export const IconRocket: TablerIcon; +export const IconRotate2: TablerIcon; +export const IconRotateClockwise2: TablerIcon; +export const IconRotateClockwise: TablerIcon; +export const IconRotateRectangle: TablerIcon; +export const IconRotate: TablerIcon; +export const IconRoute: TablerIcon; +export const IconRouter: TablerIcon; +export const IconRss: TablerIcon; +export const IconRuler: TablerIcon; +export const IconRun: TablerIcon; +export const IconSailboat: TablerIcon; +export const IconScale: TablerIcon; +export const IconScan: TablerIcon; +export const IconScissors: TablerIcon; +export const IconScooterElectric: TablerIcon; +export const IconScooter: TablerIcon; +export const IconSearch: TablerIcon; +export const IconSelect: TablerIcon; +export const IconSelector: TablerIcon; +export const IconSend: TablerIcon; +export const IconSeparatorHorizontal: TablerIcon; +export const IconSeparatorVertical: TablerIcon; +export const IconSeparator: TablerIcon; +export const IconServer: TablerIcon; +export const IconServicemark: TablerIcon; +export const IconSettings: TablerIcon; +export const IconShape: TablerIcon; +export const IconShare: TablerIcon; +export const IconShieldCheck: TablerIcon; +export const IconShieldX: TablerIcon; +export const IconShield: TablerIcon; +export const IconShip: TablerIcon; +export const IconShirt: TablerIcon; +export const IconShoppingCart: TablerIcon; +export const IconSitemap: TablerIcon; +export const IconSkateboard: TablerIcon; +export const IconSkipBack: TablerIcon; +export const IconSkipForward: TablerIcon; +export const IconSlice: TablerIcon; +export const IconSlideshow: TablerIcon; +export const IconSmokingNo: TablerIcon; +export const IconSmoking: TablerIcon; +export const IconSnowflake: TablerIcon; +export const IconSocial: TablerIcon; +export const IconSortAscending: TablerIcon; +export const IconSortDescending: TablerIcon; +export const IconSpace: TablerIcon; +export const IconSquareCheck: TablerIcon; +export const IconSquareMinus: TablerIcon; +export const IconSquarePlus: TablerIcon; +export const IconSquareX: TablerIcon; +export const IconSquare: TablerIcon; +export const IconStack: TablerIcon; +export const IconStairsDown: TablerIcon; +export const IconStairsUp: TablerIcon; +export const IconStairs: TablerIcon; +export const IconStar: TablerIcon; +export const IconSteeringWheel: TablerIcon; +export const IconSticker: TablerIcon; +export const IconStrikethrough: TablerIcon; +export const IconSubscript: TablerIcon; +export const IconSubtask: TablerIcon; +export const IconSum: TablerIcon; +export const IconSun: TablerIcon; +export const IconSunset: TablerIcon; +export const IconSunshine: TablerIcon; +export const IconSuperscript: TablerIcon; +export const IconSwimming: TablerIcon; +export const IconSwitchHorizontal: TablerIcon; +export const IconSwitchVertical: TablerIcon; +export const IconSwitch: TablerIcon; +export const IconTable: TablerIcon; +export const IconTag: TablerIcon; +export const IconTallymark1: TablerIcon; +export const IconTallymark2: TablerIcon; +export const IconTallymark3: TablerIcon; +export const IconTallymark4: TablerIcon; +export const IconTallymarks: TablerIcon; +export const IconTarget: TablerIcon; +export const IconTax: TablerIcon; +export const IconTemperatureCelsius: TablerIcon; +export const IconTemperatureFahrenheit: TablerIcon; +export const IconTemperatureMinus: TablerIcon; +export const IconTemperaturePlus: TablerIcon; +export const IconTemperature: TablerIcon; +export const IconTemplate: TablerIcon; +export const IconTerminal2: TablerIcon; +export const IconTerminal: TablerIcon; +export const IconTestPipe: TablerIcon; +export const IconTextWrapDisabled: TablerIcon; +export const IconTextWrap: TablerIcon; +export const IconThumbDown: TablerIcon; +export const IconThumbUp: TablerIcon; +export const IconTicket: TablerIcon; +export const IconTir: TablerIcon; +export const IconToggleLeft: TablerIcon; +export const IconToggleRight: TablerIcon; +export const IconTool: TablerIcon; +export const IconTools: TablerIcon; +export const IconTournament: TablerIcon; +export const IconTrackNext: TablerIcon; +export const IconTrackPrev: TablerIcon; +export const IconTractor: TablerIcon; +export const IconTrademark: TablerIcon; +export const IconTrafficCone: TablerIcon; +export const IconTrash: TablerIcon; +export const IconTrees: TablerIcon; +export const IconTrendingDown: TablerIcon; +export const IconTrendingUp: TablerIcon; +export const IconTriangle: TablerIcon; +export const IconTrident: TablerIcon; +export const IconTrophy: TablerIcon; +export const IconTruckDelivery: TablerIcon; +export const IconTruckReturn: TablerIcon; +export const IconTruck: TablerIcon; +export const IconTypography: TablerIcon; +export const IconUmbrella: TablerIcon; +export const IconUnderline: TablerIcon; +export const IconUnlink: TablerIcon; +export const IconUpload: TablerIcon; +export const IconUrgent: TablerIcon; +export const IconUserCheck: TablerIcon; +export const IconUserExclamation: TablerIcon; +export const IconUserMinus: TablerIcon; +export const IconUserPlus: TablerIcon; +export const IconUserX: TablerIcon; +export const IconUser: TablerIcon; +export const IconUsers: TablerIcon; +export const IconVectorTriangle: TablerIcon; +export const IconVector: TablerIcon; +export const IconVenus: TablerIcon; +export const IconViewfinder: TablerIcon; +export const IconViewportNarrow: TablerIcon; +export const IconViewportWide: TablerIcon; +export const IconVirus: TablerIcon; +export const IconVolume2: TablerIcon; +export const IconVolume3: TablerIcon; +export const IconVolume: TablerIcon; +export const IconWalk: TablerIcon; +export const IconWallet: TablerIcon; +export const IconWand: TablerIcon; +export const IconWaveSawTool: TablerIcon; +export const IconWaveSine: TablerIcon; +export const IconWaveSquare: TablerIcon; +export const IconWaveTriangle: TablerIcon; +export const IconWifi0: TablerIcon; +export const IconWifi1: TablerIcon; +export const IconWifi2: TablerIcon; +export const IconWifi: TablerIcon; +export const IconWind: TablerIcon; +export const IconWiperWash: TablerIcon; +export const IconWiper: TablerIcon; +export const IconWoman: TablerIcon; +export const IconWorld: TablerIcon; +export const IconX: TablerIcon; +export const IconYinYang: TablerIcon; +export const IconZodiacAquarius: TablerIcon; +export const IconZodiacAries: TablerIcon; +export const IconZodiacCancer: TablerIcon; +export const IconZodiacCapricorn: TablerIcon; +export const IconZodiacGemini: TablerIcon; +export const IconZodiacLeo: TablerIcon; +export const IconZodiacLibra: TablerIcon; +export const IconZodiacPisces: TablerIcon; +export const IconZodiacSagittarius: TablerIcon; +export const IconZodiacScorpio: TablerIcon; +export const IconZodiacTaurus: TablerIcon; +export const IconZodiacVirgo: TablerIcon; +export const IconZoomCancel: TablerIcon; diff --git a/icons-react/index.js b/icons-react/index.js new file mode 100644 index 000000000..8a6e9478c --- /dev/null +++ b/icons-react/index.js @@ -0,0 +1,708 @@ +export { default as Icon2fa } from './icons-js/2fa.js'; +export { default as IconAB } from './icons-js/a-b.js'; +export { default as IconAccessible } from './icons-js/accessible.js'; +export { default as IconAd } from './icons-js/ad.js'; +export { default as IconAdjustmentsAlt } from './icons-js/adjustments-alt.js'; +export { default as IconAdjustmentsHorizontal } from './icons-js/adjustments-horizontal.js'; +export { default as IconAdjustments } from './icons-js/adjustments.js'; +export { default as IconAlarm } from './icons-js/alarm.js'; +export { default as IconAlertCircle } from './icons-js/alert-circle.js'; +export { default as IconAlertOctagon } from './icons-js/alert-octagon.js'; +export { default as IconAlertTriangle } from './icons-js/alert-triangle.js'; +export { default as IconAlien } from './icons-js/alien.js'; +export { default as IconAlignCenter } from './icons-js/align-center.js'; +export { default as IconAlignJustified } from './icons-js/align-justified.js'; +export { default as IconAlignLeft } from './icons-js/align-left.js'; +export { default as IconAlignRight } from './icons-js/align-right.js'; +export { default as IconAmbulance } from './icons-js/ambulance.js'; +export { default as IconAnchor } from './icons-js/anchor.js'; +export { default as IconAntennaBars1 } from './icons-js/antenna-bars-1.js'; +export { default as IconAntennaBars2 } from './icons-js/antenna-bars-2.js'; +export { default as IconAntennaBars3 } from './icons-js/antenna-bars-3.js'; +export { default as IconAntennaBars4 } from './icons-js/antenna-bars-4.js'; +export { default as IconAntennaBars5 } from './icons-js/antenna-bars-5.js'; +export { default as IconAperture } from './icons-js/aperture.js'; +export { default as IconApps } from './icons-js/apps.js'; +export { default as IconArchive } from './icons-js/archive.js'; +export { default as IconArrowBackUp } from './icons-js/arrow-back-up.js'; +export { default as IconArrowBack } from './icons-js/arrow-back.js'; +export { default as IconArrowBarDown } from './icons-js/arrow-bar-down.js'; +export { default as IconArrowBarLeft } from './icons-js/arrow-bar-left.js'; +export { default as IconArrowBarRight } from './icons-js/arrow-bar-right.js'; +export { default as IconArrowBarToDown } from './icons-js/arrow-bar-to-down.js'; +export { default as IconArrowBarToLeft } from './icons-js/arrow-bar-to-left.js'; +export { default as IconArrowBarToRight } from './icons-js/arrow-bar-to-right.js'; +export { default as IconArrowBarToUp } from './icons-js/arrow-bar-to-up.js'; +export { default as IconArrowBarUp } from './icons-js/arrow-bar-up.js'; +export { default as IconArrowDownCircle } from './icons-js/arrow-down-circle.js'; +export { default as IconArrowDownLeftCircle } from './icons-js/arrow-down-left-circle.js'; +export { default as IconArrowDownLeft } from './icons-js/arrow-down-left.js'; +export { default as IconArrowDownRightCircle } from './icons-js/arrow-down-right-circle.js'; +export { default as IconArrowDownRight } from './icons-js/arrow-down-right.js'; +export { default as IconArrowDown } from './icons-js/arrow-down.js'; +export { default as IconArrowForwardUp } from './icons-js/arrow-forward-up.js'; +export { default as IconArrowForward } from './icons-js/arrow-forward.js'; +export { default as IconArrowLeftCircle } from './icons-js/arrow-left-circle.js'; +export { default as IconArrowLeft } from './icons-js/arrow-left.js'; +export { default as IconArrowNarrowDown } from './icons-js/arrow-narrow-down.js'; +export { default as IconArrowNarrowLeft } from './icons-js/arrow-narrow-left.js'; +export { default as IconArrowNarrowRight } from './icons-js/arrow-narrow-right.js'; +export { default as IconArrowNarrowUp } from './icons-js/arrow-narrow-up.js'; +export { default as IconArrowRightCircle } from './icons-js/arrow-right-circle.js'; +export { default as IconArrowRight } from './icons-js/arrow-right.js'; +export { default as IconArrowUpCircle } from './icons-js/arrow-up-circle.js'; +export { default as IconArrowUpLeftCircle } from './icons-js/arrow-up-left-circle.js'; +export { default as IconArrowUpLeft } from './icons-js/arrow-up-left.js'; +export { default as IconArrowUpRightCircle } from './icons-js/arrow-up-right-circle.js'; +export { default as IconArrowUpRight } from './icons-js/arrow-up-right.js'; +export { default as IconArrowUp } from './icons-js/arrow-up.js'; +export { default as IconArrowsDiagonal2 } from './icons-js/arrows-diagonal-2.js'; +export { default as IconArrowsDiagonal } from './icons-js/arrows-diagonal.js'; +export { default as IconArrowsHorizontal } from './icons-js/arrows-horizontal.js'; +export { default as IconArrowsMaximize } from './icons-js/arrows-maximize.js'; +export { default as IconArrowsMinimize } from './icons-js/arrows-minimize.js'; +export { default as IconArrowsSort } from './icons-js/arrows-sort.js'; +export { default as IconArrowsVertical } from './icons-js/arrows-vertical.js'; +export { default as IconArtboard } from './icons-js/artboard.js'; +export { default as IconAt } from './icons-js/at.js'; +export { default as IconAtom2 } from './icons-js/atom-2.js'; +export { default as IconAtom } from './icons-js/atom.js'; +export { default as IconAward } from './icons-js/award.js'; +export { default as IconBackspace } from './icons-js/backspace.js'; +export { default as IconBallBasketball } from './icons-js/ball-basketball.js'; +export { default as IconBallBowling } from './icons-js/ball-bowling.js'; +export { default as IconBallTennis } from './icons-js/ball-tennis.js'; +export { default as IconBallVolleyball } from './icons-js/ball-volleyball.js'; +export { default as IconBan } from './icons-js/ban.js'; +export { default as IconBandage } from './icons-js/bandage.js'; +export { default as IconBarcode } from './icons-js/barcode.js'; +export { default as IconBasket } from './icons-js/basket.js'; +export { default as IconBattery1 } from './icons-js/battery-1.js'; +export { default as IconBattery2 } from './icons-js/battery-2.js'; +export { default as IconBattery3 } from './icons-js/battery-3.js'; +export { default as IconBattery4 } from './icons-js/battery-4.js'; +export { default as IconBatteryCharging } from './icons-js/battery-charging.js'; +export { default as IconBattery } from './icons-js/battery.js'; +export { default as IconBed } from './icons-js/bed.js'; +export { default as IconBell } from './icons-js/bell.js'; +export { default as IconBike } from './icons-js/bike.js'; +export { default as IconBiohazard } from './icons-js/biohazard.js'; +export { default as IconBluetooth } from './icons-js/bluetooth.js'; +export { default as IconBold } from './icons-js/bold.js'; +export { default as IconBolt } from './icons-js/bolt.js'; +export { default as IconBook } from './icons-js/book.js'; +export { default as IconBookmark } from './icons-js/bookmark.js'; +export { default as IconBorderAll } from './icons-js/border-all.js'; +export { default as IconBorderBottom } from './icons-js/border-bottom.js'; +export { default as IconBorderHorizontal } from './icons-js/border-horizontal.js'; +export { default as IconBorderInner } from './icons-js/border-inner.js'; +export { default as IconBorderLeft } from './icons-js/border-left.js'; +export { default as IconBorderNone } from './icons-js/border-none.js'; +export { default as IconBorderOuter } from './icons-js/border-outer.js'; +export { default as IconBorderRadius } from './icons-js/border-radius.js'; +export { default as IconBorderRight } from './icons-js/border-right.js'; +export { default as IconBorderTop } from './icons-js/border-top.js'; +export { default as IconBorderVertical } from './icons-js/border-vertical.js'; +export { default as IconBox } from './icons-js/box.js'; +export { default as IconBraces } from './icons-js/braces.js'; +export { default as IconBrackets } from './icons-js/brackets.js'; +export { default as IconBrandAndroid } from './icons-js/brand-android.js'; +export { default as IconBrandApple } from './icons-js/brand-apple.js'; +export { default as IconBrandBehance } from './icons-js/brand-behance.js'; +export { default as IconBrandChrome } from './icons-js/brand-chrome.js'; +export { default as IconBrandCodepen } from './icons-js/brand-codepen.js'; +export { default as IconBrandDribbble } from './icons-js/brand-dribbble.js'; +export { default as IconBrandFacebook } from './icons-js/brand-facebook.js'; +export { default as IconBrandFigma } from './icons-js/brand-figma.js'; +export { default as IconBrandFramer } from './icons-js/brand-framer.js'; +export { default as IconBrandGithub } from './icons-js/brand-github.js'; +export { default as IconBrandGitlab } from './icons-js/brand-gitlab.js'; +export { default as IconBrandGoogleDrive } from './icons-js/brand-google-drive.js'; +export { default as IconBrandGoogle } from './icons-js/brand-google.js'; +export { default as IconBrandInstagram } from './icons-js/brand-instagram.js'; +export { default as IconBrandLinkedin } from './icons-js/brand-linkedin.js'; +export { default as IconBrandMedium } from './icons-js/brand-medium.js'; +export { default as IconBrandMessenger } from './icons-js/brand-messenger.js'; +export { default as IconBrandOpera } from './icons-js/brand-opera.js'; +export { default as IconBrandPaypal } from './icons-js/brand-paypal.js'; +export { default as IconBrandPinterest } from './icons-js/brand-pinterest.js'; +export { default as IconBrandReddit } from './icons-js/brand-reddit.js'; +export { default as IconBrandSafari } from './icons-js/brand-safari.js'; +export { default as IconBrandSketch } from './icons-js/brand-sketch.js'; +export { default as IconBrandSlack } from './icons-js/brand-slack.js'; +export { default as IconBrandSnapchat } from './icons-js/brand-snapchat.js'; +export { default as IconBrandTabler } from './icons-js/brand-tabler.js'; +export { default as IconBrandTailwind } from './icons-js/brand-tailwind.js'; +export { default as IconBrandTelegram } from './icons-js/brand-telegram.js'; +export { default as IconBrandTiktok } from './icons-js/brand-tiktok.js'; +export { default as IconBrandTwitter } from './icons-js/brand-twitter.js'; +export { default as IconBrandWhatsapp } from './icons-js/brand-whatsapp.js'; +export { default as IconBrandYoutube } from './icons-js/brand-youtube.js'; +export { default as IconBriefcase } from './icons-js/briefcase.js'; +export { default as IconBrightnessDown } from './icons-js/brightness-down.js'; +export { default as IconBrightnessUp } from './icons-js/brightness-up.js'; +export { default as IconBrightness } from './icons-js/brightness.js'; +export { default as IconBrowser } from './icons-js/browser.js'; +export { default as IconBrush } from './icons-js/brush.js'; +export { default as IconBucket } from './icons-js/bucket.js'; +export { default as IconBug } from './icons-js/bug.js'; +export { default as IconBuildingArch } from './icons-js/building-arch.js'; +export { default as IconBuildingBank } from './icons-js/building-bank.js'; +export { default as IconBuildingBridge2 } from './icons-js/building-bridge-2.js'; +export { default as IconBuildingBridge } from './icons-js/building-bridge.js'; +export { default as IconBuildingChurch } from './icons-js/building-church.js'; +export { default as IconBuildingCommunity } from './icons-js/building-community.js'; +export { default as IconBuildingHospital } from './icons-js/building-hospital.js'; +export { default as IconBuildingPavilon } from './icons-js/building-pavilon.js'; +export { default as IconBuildingSkyscraper } from './icons-js/building-skyscraper.js'; +export { default as IconBuildingStore } from './icons-js/building-store.js'; +export { default as IconBuildingWarehouse } from './icons-js/building-warehouse.js'; +export { default as IconBuilding } from './icons-js/building.js'; +export { default as IconBulbOff } from './icons-js/bulb-off.js'; +export { default as IconBulb } from './icons-js/bulb.js'; +export { default as IconBus } from './icons-js/bus.js'; +export { default as IconCalculator } from './icons-js/calculator.js'; +export { default as IconCalendarEvent } from './icons-js/calendar-event.js'; +export { default as IconCalendarMinus } from './icons-js/calendar-minus.js'; +export { default as IconCalendarPlus } from './icons-js/calendar-plus.js'; +export { default as IconCalendar } from './icons-js/calendar.js'; +export { default as IconCameraMinus } from './icons-js/camera-minus.js'; +export { default as IconCameraPlus } from './icons-js/camera-plus.js'; +export { default as IconCamera } from './icons-js/camera.js'; +export { default as IconCapture } from './icons-js/capture.js'; +export { default as IconCar } from './icons-js/car.js'; +export { default as IconCaravan } from './icons-js/caravan.js'; +export { default as IconCaretDown } from './icons-js/caret-down.js'; +export { default as IconCaretLeft } from './icons-js/caret-left.js'; +export { default as IconCaretRight } from './icons-js/caret-right.js'; +export { default as IconCaretUp } from './icons-js/caret-up.js'; +export { default as IconCash } from './icons-js/cash.js'; +export { default as IconCast } from './icons-js/cast.js'; +export { default as IconChartAreaLine } from './icons-js/chart-area-line.js'; +export { default as IconChartArea } from './icons-js/chart-area.js'; +export { default as IconChartBar } from './icons-js/chart-bar.js'; +export { default as IconChartBubble } from './icons-js/chart-bubble.js'; +export { default as IconChartCandle } from './icons-js/chart-candle.js'; +export { default as IconChartDonut } from './icons-js/chart-donut.js'; +export { default as IconChartLine } from './icons-js/chart-line.js'; +export { default as IconChartPie } from './icons-js/chart-pie.js'; +export { default as IconCheck } from './icons-js/check.js'; +export { default as IconCheckbox } from './icons-js/checkbox.js'; +export { default as IconChecks } from './icons-js/checks.js'; +export { default as IconChevronDown } from './icons-js/chevron-down.js'; +export { default as IconChevronLeft } from './icons-js/chevron-left.js'; +export { default as IconChevronRight } from './icons-js/chevron-right.js'; +export { default as IconChevronUp } from './icons-js/chevron-up.js'; +export { default as IconChevronsDown } from './icons-js/chevrons-down.js'; +export { default as IconChevronsLeft } from './icons-js/chevrons-left.js'; +export { default as IconChevronsRight } from './icons-js/chevrons-right.js'; +export { default as IconChevronsUp } from './icons-js/chevrons-up.js'; +export { default as IconCircleCheck } from './icons-js/circle-check.js'; +export { default as IconCircleMinus } from './icons-js/circle-minus.js'; +export { default as IconCirclePlus } from './icons-js/circle-plus.js'; +export { default as IconCircleX } from './icons-js/circle-x.js'; +export { default as IconCircle } from './icons-js/circle.js'; +export { default as IconClearFormatting } from './icons-js/clear-formatting.js'; +export { default as IconClick } from './icons-js/click.js'; +export { default as IconClipboardCheck } from './icons-js/clipboard-check.js'; +export { default as IconClipboardList } from './icons-js/clipboard-list.js'; +export { default as IconClipboardX } from './icons-js/clipboard-x.js'; +export { default as IconClipboard } from './icons-js/clipboard.js'; +export { default as IconClock } from './icons-js/clock.js'; +export { default as IconCloudDownload } from './icons-js/cloud-download.js'; +export { default as IconCloudRain } from './icons-js/cloud-rain.js'; +export { default as IconCloudSnow } from './icons-js/cloud-snow.js'; +export { default as IconCloudStorm } from './icons-js/cloud-storm.js'; +export { default as IconCloudUpload } from './icons-js/cloud-upload.js'; +export { default as IconCloud } from './icons-js/cloud.js'; +export { default as IconCode } from './icons-js/code.js'; +export { default as IconCoin } from './icons-js/coin.js'; +export { default as IconColorPicker } from './icons-js/color-picker.js'; +export { default as IconColorSwatch } from './icons-js/color-swatch.js'; +export { default as IconColumns } from './icons-js/columns.js'; +export { default as IconComet } from './icons-js/comet.js'; +export { default as IconCommand } from './icons-js/command.js'; +export { default as IconCompass } from './icons-js/compass.js'; +export { default as IconContrast } from './icons-js/contrast.js'; +export { default as IconCopy } from './icons-js/copy.js'; +export { default as IconCopyleft } from './icons-js/copyleft.js'; +export { default as IconCopyright } from './icons-js/copyright.js'; +export { default as IconCornerDownLeft } from './icons-js/corner-down-left.js'; +export { default as IconCornerDownRight } from './icons-js/corner-down-right.js'; +export { default as IconCornerLeftDown } from './icons-js/corner-left-down.js'; +export { default as IconCornerLeftUp } from './icons-js/corner-left-up.js'; +export { default as IconCornerRightDown } from './icons-js/corner-right-down.js'; +export { default as IconCornerRightUp } from './icons-js/corner-right-up.js'; +export { default as IconCornerUpLeft } from './icons-js/corner-up-left.js'; +export { default as IconCornerUpRight } from './icons-js/corner-up-right.js'; +export { default as IconCreditCard } from './icons-js/credit-card.js'; +export { default as IconCrop } from './icons-js/crop.js'; +export { default as IconCrosshair } from './icons-js/crosshair.js'; +export { default as IconCurrencyBitcoin } from './icons-js/currency-bitcoin.js'; +export { default as IconCurrencyDollar } from './icons-js/currency-dollar.js'; +export { default as IconCurrencyEuro } from './icons-js/currency-euro.js'; +export { default as IconCurrencyPound } from './icons-js/currency-pound.js'; +export { default as IconCurrencyRupee } from './icons-js/currency-rupee.js'; +export { default as IconCurrencyYen } from './icons-js/currency-yen.js'; +export { default as IconCut } from './icons-js/cut.js'; +export { default as IconDashboard } from './icons-js/dashboard.js'; +export { default as IconDatabase } from './icons-js/database.js'; +export { default as IconDeviceDesktop } from './icons-js/device-desktop.js'; +export { default as IconDeviceFloppy } from './icons-js/device-floppy.js'; +export { default as IconDeviceGamepad } from './icons-js/device-gamepad.js'; +export { default as IconDeviceLaptop } from './icons-js/device-laptop.js'; +export { default as IconDeviceMobileVibration } from './icons-js/device-mobile-vibration.js'; +export { default as IconDeviceMobile } from './icons-js/device-mobile.js'; +export { default as IconDeviceSpeaker } from './icons-js/device-speaker.js'; +export { default as IconDeviceTablet } from './icons-js/device-tablet.js'; +export { default as IconDeviceTv } from './icons-js/device-tv.js'; +export { default as IconDeviceWatch } from './icons-js/device-watch.js'; +export { default as IconDevices } from './icons-js/devices.js'; +export { default as IconDiamond } from './icons-js/diamond.js'; +export { default as IconDice } from './icons-js/dice.js'; +export { default as IconDirectionHorizontal } from './icons-js/direction-horizontal.js'; +export { default as IconDirection } from './icons-js/direction.js'; +export { default as IconDirections } from './icons-js/directions.js'; +export { default as IconDisabled2 } from './icons-js/disabled-2.js'; +export { default as IconDisabled } from './icons-js/disabled.js'; +export { default as IconDisc } from './icons-js/disc.js'; +export { default as IconDiscount } from './icons-js/discount.js'; +export { default as IconDotsCircleHorizontal } from './icons-js/dots-circle-horizontal.js'; +export { default as IconDotsDiagonal2 } from './icons-js/dots-diagonal-2.js'; +export { default as IconDotsDiagonal } from './icons-js/dots-diagonal.js'; +export { default as IconDotsVertical } from './icons-js/dots-vertical.js'; +export { default as IconDots } from './icons-js/dots.js'; +export { default as IconDownload } from './icons-js/download.js'; +export { default as IconDragDrop2 } from './icons-js/drag-drop-2.js'; +export { default as IconDragDrop } from './icons-js/drag-drop.js'; +export { default as IconDroplet } from './icons-js/droplet.js'; +export { default as IconEar } from './icons-js/ear.js'; +export { default as IconEdit } from './icons-js/edit.js'; +export { default as IconEgg } from './icons-js/egg.js'; +export { default as IconEmphasis } from './icons-js/emphasis.js'; +export { default as IconEraser } from './icons-js/eraser.js'; +export { default as IconExchange } from './icons-js/exchange.js'; +export { default as IconExposure } from './icons-js/exposure.js'; +export { default as IconExternalLink } from './icons-js/external-link.js'; +export { default as IconEye } from './icons-js/eye.js'; +export { default as IconFaceId } from './icons-js/face-id.js'; +export { default as IconFall } from './icons-js/fall.js'; +export { default as IconFileCheck } from './icons-js/file-check.js'; +export { default as IconFileCode } from './icons-js/file-code.js'; +export { default as IconFileDownload } from './icons-js/file-download.js'; +export { default as IconFileHorizontal } from './icons-js/file-horizontal.js'; +export { default as IconFileInvoice } from './icons-js/file-invoice.js'; +export { default as IconFileMinus } from './icons-js/file-minus.js'; +export { default as IconFileMusic } from './icons-js/file-music.js'; +export { default as IconFilePlus } from './icons-js/file-plus.js'; +export { default as IconFileShredder } from './icons-js/file-shredder.js'; +export { default as IconFileText } from './icons-js/file-text.js'; +export { default as IconFileUpload } from './icons-js/file-upload.js'; +export { default as IconFileX } from './icons-js/file-x.js'; +export { default as IconFile } from './icons-js/file.js'; +export { default as IconFilter } from './icons-js/filter.js'; +export { default as IconFingerprint } from './icons-js/fingerprint.js'; +export { default as IconFiretruck } from './icons-js/firetruck.js'; +export { default as IconFlag } from './icons-js/flag.js'; +export { default as IconFlame } from './icons-js/flame.js'; +export { default as IconFlask } from './icons-js/flask.js'; +export { default as IconFlipHorizontal } from './icons-js/flip-horizontal.js'; +export { default as IconFlipVertical } from './icons-js/flip-vertical.js'; +export { default as IconFloatCenter } from './icons-js/float-center.js'; +export { default as IconFloatLeft } from './icons-js/float-left.js'; +export { default as IconFloatRight } from './icons-js/float-right.js'; +export { default as IconFocus2 } from './icons-js/focus-2.js'; +export { default as IconFocus } from './icons-js/focus.js'; +export { default as IconFolderMinus } from './icons-js/folder-minus.js'; +export { default as IconFolderPlus } from './icons-js/folder-plus.js'; +export { default as IconFolderX } from './icons-js/folder-x.js'; +export { default as IconFolder } from './icons-js/folder.js'; +export { default as IconFolders } from './icons-js/folders.js'; +export { default as IconForbid2 } from './icons-js/forbid-2.js'; +export { default as IconForbid } from './icons-js/forbid.js'; +export { default as IconForklift } from './icons-js/forklift.js'; +export { default as IconFrame } from './icons-js/frame.js'; +export { default as IconFriends } from './icons-js/friends.js'; +export { default as IconGasStation } from './icons-js/gas-station.js'; +export { default as IconGauge } from './icons-js/gauge.js'; +export { default as IconGhost } from './icons-js/ghost.js'; +export { default as IconGift } from './icons-js/gift.js'; +export { default as IconGitBranch } from './icons-js/git-branch.js'; +export { default as IconGitCommit } from './icons-js/git-commit.js'; +export { default as IconGitCompare } from './icons-js/git-compare.js'; +export { default as IconGitFork } from './icons-js/git-fork.js'; +export { default as IconGitMerge } from './icons-js/git-merge.js'; +export { default as IconGitPullRequest } from './icons-js/git-pull-request.js'; +export { default as IconGlassFull } from './icons-js/glass-full.js'; +export { default as IconGlass } from './icons-js/glass.js'; +export { default as IconGlobe } from './icons-js/globe.js'; +export { default as IconGridDots } from './icons-js/grid-dots.js'; +export { default as IconGrid } from './icons-js/grid.js'; +export { default as IconGripHorizontal } from './icons-js/grip-horizontal.js'; +export { default as IconGripVertical } from './icons-js/grip-vertical.js'; +export { default as IconH1 } from './icons-js/h-1.js'; +export { default as IconH2 } from './icons-js/h-2.js'; +export { default as IconH3 } from './icons-js/h-3.js'; +export { default as IconH4 } from './icons-js/h-4.js'; +export { default as IconH5 } from './icons-js/h-5.js'; +export { default as IconH6 } from './icons-js/h-6.js'; +export { default as IconHandMiddleFinger } from './icons-js/hand-middle-finger.js'; +export { default as IconHandStop } from './icons-js/hand-stop.js'; +export { default as IconHash } from './icons-js/hash.js'; +export { default as IconHeadphones } from './icons-js/headphones.js'; +export { default as IconHeadset } from './icons-js/headset.js'; +export { default as IconHeartBroken } from './icons-js/heart-broken.js'; +export { default as IconHeart } from './icons-js/heart.js'; +export { default as IconHelp } from './icons-js/help.js'; +export { default as IconHexagon } from './icons-js/hexagon.js'; +export { default as IconHistory } from './icons-js/history.js'; +export { default as IconHome2 } from './icons-js/home-2.js'; +export { default as IconHome } from './icons-js/home.js'; +export { default as IconIceCream } from './icons-js/ice-cream.js'; +export { default as IconId } from './icons-js/id.js'; +export { default as IconInbox } from './icons-js/inbox.js'; +export { default as IconIndentDecrease } from './icons-js/indent-decrease.js'; +export { default as IconIndentIncrease } from './icons-js/indent-increase.js'; +export { default as IconInfinity } from './icons-js/infinity.js'; +export { default as IconInfoCircle } from './icons-js/info-circle.js'; +export { default as IconInfoSquare } from './icons-js/info-square.js'; +export { default as IconItalic } from './icons-js/italic.js'; +export { default as IconKey } from './icons-js/key.js'; +export { default as IconKeyboardHide } from './icons-js/keyboard-hide.js'; +export { default as IconKeyboardShow } from './icons-js/keyboard-show.js'; +export { default as IconKeyboard } from './icons-js/keyboard.js'; +export { default as IconLanguage } from './icons-js/language.js'; +export { default as IconLayersDifference } from './icons-js/layers-difference.js'; +export { default as IconLayersIntersect } from './icons-js/layers-intersect.js'; +export { default as IconLayersSubtract } from './icons-js/layers-subtract.js'; +export { default as IconLayersUnion } from './icons-js/layers-union.js'; +export { default as IconLayout2 } from './icons-js/layout-2.js'; +export { default as IconLayoutAlignBottom } from './icons-js/layout-align-bottom.js'; +export { default as IconLayoutAlignCenter } from './icons-js/layout-align-center.js'; +export { default as IconLayoutAlignLeft } from './icons-js/layout-align-left.js'; +export { default as IconLayoutAlignMiddle } from './icons-js/layout-align-middle.js'; +export { default as IconLayoutAlignRight } from './icons-js/layout-align-right.js'; +export { default as IconLayoutAlignTop } from './icons-js/layout-align-top.js'; +export { default as IconLayoutBottombar } from './icons-js/layout-bottombar.js'; +export { default as IconLayoutCards } from './icons-js/layout-cards.js'; +export { default as IconLayoutColumns } from './icons-js/layout-columns.js'; +export { default as IconLayoutDistributeHorizontal } from './icons-js/layout-distribute-horizontal.js'; +export { default as IconLayoutDistributeVertical } from './icons-js/layout-distribute-vertical.js'; +export { default as IconLayoutKanban } from './icons-js/layout-kanban.js'; +export { default as IconLayoutList } from './icons-js/layout-list.js'; +export { default as IconLayoutNavbar } from './icons-js/layout-navbar.js'; +export { default as IconLayoutRows } from './icons-js/layout-rows.js'; +export { default as IconLayoutSidebarRight } from './icons-js/layout-sidebar-right.js'; +export { default as IconLayoutSidebar } from './icons-js/layout-sidebar.js'; +export { default as IconLayout } from './icons-js/layout.js'; +export { default as IconLego } from './icons-js/lego.js'; +export { default as IconLetterA } from './icons-js/letter-a.js'; +export { default as IconLetterB } from './icons-js/letter-b.js'; +export { default as IconLetterC } from './icons-js/letter-c.js'; +export { default as IconLetterD } from './icons-js/letter-d.js'; +export { default as IconLetterE } from './icons-js/letter-e.js'; +export { default as IconLetterF } from './icons-js/letter-f.js'; +export { default as IconLetterG } from './icons-js/letter-g.js'; +export { default as IconLetterH } from './icons-js/letter-h.js'; +export { default as IconLetterI } from './icons-js/letter-i.js'; +export { default as IconLetterJ } from './icons-js/letter-j.js'; +export { default as IconLetterK } from './icons-js/letter-k.js'; +export { default as IconLetterL } from './icons-js/letter-l.js'; +export { default as IconLetterM } from './icons-js/letter-m.js'; +export { default as IconLetterN } from './icons-js/letter-n.js'; +export { default as IconLetterO } from './icons-js/letter-o.js'; +export { default as IconLetterP } from './icons-js/letter-p.js'; +export { default as IconLetterQ } from './icons-js/letter-q.js'; +export { default as IconLetterR } from './icons-js/letter-r.js'; +export { default as IconLetterS } from './icons-js/letter-s.js'; +export { default as IconLetterT } from './icons-js/letter-t.js'; +export { default as IconLetterU } from './icons-js/letter-u.js'; +export { default as IconLetterV } from './icons-js/letter-v.js'; +export { default as IconLetterW } from './icons-js/letter-w.js'; +export { default as IconLetterX } from './icons-js/letter-x.js'; +export { default as IconLetterY } from './icons-js/letter-y.js'; +export { default as IconLetterZ } from './icons-js/letter-z.js'; +export { default as IconLettersCase } from './icons-js/letters-case.js'; +export { default as IconLicense } from './icons-js/license.js'; +export { default as IconLifebuoy } from './icons-js/lifebuoy.js'; +export { default as IconLineHeight } from './icons-js/line-height.js'; +export { default as IconLine } from './icons-js/line.js'; +export { default as IconLink } from './icons-js/link.js'; +export { default as IconListCheck } from './icons-js/list-check.js'; +export { default as IconList } from './icons-js/list.js'; +export { default as IconLivePhoto } from './icons-js/live-photo.js'; +export { default as IconLiveView } from './icons-js/live-view.js'; +export { default as IconLoaderQuarter } from './icons-js/loader-quarter.js'; +export { default as IconLoader } from './icons-js/loader.js'; +export { default as IconLocation } from './icons-js/location.js'; +export { default as IconLockOpen } from './icons-js/lock-open.js'; +export { default as IconLock } from './icons-js/lock.js'; +export { default as IconLogin } from './icons-js/login.js'; +export { default as IconLogout } from './icons-js/logout.js'; +export { default as IconMagnet } from './icons-js/magnet.js'; +export { default as IconMailOpened } from './icons-js/mail-opened.js'; +export { default as IconMail } from './icons-js/mail.js'; +export { default as IconMan } from './icons-js/man.js'; +export { default as IconMap2 } from './icons-js/map-2.js'; +export { default as IconMapPin } from './icons-js/map-pin.js'; +export { default as IconMap } from './icons-js/map.js'; +export { default as IconMarkdown } from './icons-js/markdown.js'; +export { default as IconMarquee } from './icons-js/marquee.js'; +export { default as IconMars } from './icons-js/mars.js'; +export { default as IconMath } from './icons-js/math.js'; +export { default as IconMaximize } from './icons-js/maximize.js'; +export { default as IconMedal } from './icons-js/medal.js'; +export { default as IconMedicalCross } from './icons-js/medical-cross.js'; +export { default as IconMenu2 } from './icons-js/menu-2.js'; +export { default as IconMenu } from './icons-js/menu.js'; +export { default as IconMessage2 } from './icons-js/message-2.js'; +export { default as IconMessageCircle } from './icons-js/message-circle.js'; +export { default as IconMessageDots } from './icons-js/message-dots.js'; +export { default as IconMessagePlus } from './icons-js/message-plus.js'; +export { default as IconMessageReport } from './icons-js/message-report.js'; +export { default as IconMessage } from './icons-js/message.js'; +export { default as IconMessages } from './icons-js/messages.js'; +export { default as IconMicrophone } from './icons-js/microphone.js'; +export { default as IconMinimize } from './icons-js/minimize.js'; +export { default as IconMinus } from './icons-js/minus.js'; +export { default as IconMist } from './icons-js/mist.js'; +export { default as IconMoodConfuzed } from './icons-js/mood-confuzed.js'; +export { default as IconMoodCry } from './icons-js/mood-cry.js'; +export { default as IconMoodHappy } from './icons-js/mood-happy.js'; +export { default as IconMoodKid } from './icons-js/mood-kid.js'; +export { default as IconMoodNeutral } from './icons-js/mood-neutral.js'; +export { default as IconMoodSad } from './icons-js/mood-sad.js'; +export { default as IconMoodSmile } from './icons-js/mood-smile.js'; +export { default as IconMoodSuprised } from './icons-js/mood-suprised.js'; +export { default as IconMoodTongue } from './icons-js/mood-tongue.js'; +export { default as IconMoon } from './icons-js/moon.js'; +export { default as IconMoped } from './icons-js/moped.js'; +export { default as IconMouse } from './icons-js/mouse.js'; +export { default as IconMovie } from './icons-js/movie.js'; +export { default as IconMug } from './icons-js/mug.js'; +export { default as IconMusic } from './icons-js/music.js'; +export { default as IconNewSection } from './icons-js/new-section.js'; +export { default as IconNews } from './icons-js/news.js'; +export { default as IconNote } from './icons-js/note.js'; +export { default as IconNotebook } from './icons-js/notebook.js'; +export { default as IconNotes } from './icons-js/notes.js'; +export { default as IconNotification } from './icons-js/notification.js'; +export { default as IconOctagon } from './icons-js/octagon.js'; +export { default as IconOmega } from './icons-js/omega.js'; +export { default as IconOutlet } from './icons-js/outlet.js'; +export { default as IconPackage } from './icons-js/package.js'; +export { default as IconPageBreak } from './icons-js/page-break.js'; +export { default as IconPaint } from './icons-js/paint.js'; +export { default as IconPalette } from './icons-js/palette.js'; +export { default as IconPaperclip } from './icons-js/paperclip.js'; +export { default as IconParentheses } from './icons-js/parentheses.js'; +export { default as IconParking } from './icons-js/parking.js'; +export { default as IconPause } from './icons-js/pause.js'; +export { default as IconPeace } from './icons-js/peace.js'; +export { default as IconPencil } from './icons-js/pencil.js'; +export { default as IconPhoneCall } from './icons-js/phone-call.js'; +export { default as IconPhoneCalling } from './icons-js/phone-calling.js'; +export { default as IconPhoneCheck } from './icons-js/phone-check.js'; +export { default as IconPhoneIncoming } from './icons-js/phone-incoming.js'; +export { default as IconPhoneOutgoing } from './icons-js/phone-outgoing.js'; +export { default as IconPhonePause } from './icons-js/phone-pause.js'; +export { default as IconPhonePlus } from './icons-js/phone-plus.js'; +export { default as IconPhoneX } from './icons-js/phone-x.js'; +export { default as IconPhone } from './icons-js/phone.js'; +export { default as IconPhoto } from './icons-js/photo.js'; +export { default as IconPill } from './icons-js/pill.js'; +export { default as IconPin } from './icons-js/pin.js'; +export { default as IconPlaneArrival } from './icons-js/plane-arrival.js'; +export { default as IconPlaneDeparture } from './icons-js/plane-departure.js'; +export { default as IconPlane } from './icons-js/plane.js'; +export { default as IconPlanet } from './icons-js/planet.js'; +export { default as IconPlay } from './icons-js/play.js'; +export { default as IconPlug } from './icons-js/plug.js'; +export { default as IconPlus } from './icons-js/plus.js'; +export { default as IconPoint } from './icons-js/point.js'; +export { default as IconPower } from './icons-js/power.js'; +export { default as IconPray } from './icons-js/pray.js'; +export { default as IconPresentation } from './icons-js/presentation.js'; +export { default as IconPrinter } from './icons-js/printer.js'; +export { default as IconPrompt } from './icons-js/prompt.js'; +export { default as IconPuzzle } from './icons-js/puzzle.js'; +export { default as IconQrcode } from './icons-js/qrcode.js'; +export { default as IconQuestionMark } from './icons-js/question-mark.js'; +export { default as IconRadioactive } from './icons-js/radioactive.js'; +export { default as IconRecordMail } from './icons-js/record-mail.js'; +export { default as IconRecycle } from './icons-js/recycle.js'; +export { default as IconRefresh } from './icons-js/refresh.js'; +export { default as IconRegistered } from './icons-js/registered.js'; +export { default as IconRepeatOnce } from './icons-js/repeat-once.js'; +export { default as IconRepeat } from './icons-js/repeat.js'; +export { default as IconReplace } from './icons-js/replace.js'; +export { default as IconRocket } from './icons-js/rocket.js'; +export { default as IconRotate2 } from './icons-js/rotate-2.js'; +export { default as IconRotateClockwise2 } from './icons-js/rotate-clockwise-2.js'; +export { default as IconRotateClockwise } from './icons-js/rotate-clockwise.js'; +export { default as IconRotateRectangle } from './icons-js/rotate-rectangle.js'; +export { default as IconRotate } from './icons-js/rotate.js'; +export { default as IconRoute } from './icons-js/route.js'; +export { default as IconRouter } from './icons-js/router.js'; +export { default as IconRss } from './icons-js/rss.js'; +export { default as IconRuler } from './icons-js/ruler.js'; +export { default as IconRun } from './icons-js/run.js'; +export { default as IconSailboat } from './icons-js/sailboat.js'; +export { default as IconScale } from './icons-js/scale.js'; +export { default as IconScan } from './icons-js/scan.js'; +export { default as IconScissors } from './icons-js/scissors.js'; +export { default as IconScooterElectric } from './icons-js/scooter-electric.js'; +export { default as IconScooter } from './icons-js/scooter.js'; +export { default as IconSearch } from './icons-js/search.js'; +export { default as IconSelect } from './icons-js/select.js'; +export { default as IconSelector } from './icons-js/selector.js'; +export { default as IconSend } from './icons-js/send.js'; +export { default as IconSeparatorHorizontal } from './icons-js/separator-horizontal.js'; +export { default as IconSeparatorVertical } from './icons-js/separator-vertical.js'; +export { default as IconSeparator } from './icons-js/separator.js'; +export { default as IconServer } from './icons-js/server.js'; +export { default as IconServicemark } from './icons-js/servicemark.js'; +export { default as IconSettings } from './icons-js/settings.js'; +export { default as IconShape } from './icons-js/shape.js'; +export { default as IconShare } from './icons-js/share.js'; +export { default as IconShieldCheck } from './icons-js/shield-check.js'; +export { default as IconShieldX } from './icons-js/shield-x.js'; +export { default as IconShield } from './icons-js/shield.js'; +export { default as IconShip } from './icons-js/ship.js'; +export { default as IconShirt } from './icons-js/shirt.js'; +export { default as IconShoppingCart } from './icons-js/shopping-cart.js'; +export { default as IconSitemap } from './icons-js/sitemap.js'; +export { default as IconSkateboard } from './icons-js/skateboard.js'; +export { default as IconSkipBack } from './icons-js/skip-back.js'; +export { default as IconSkipForward } from './icons-js/skip-forward.js'; +export { default as IconSlice } from './icons-js/slice.js'; +export { default as IconSlideshow } from './icons-js/slideshow.js'; +export { default as IconSmokingNo } from './icons-js/smoking-no.js'; +export { default as IconSmoking } from './icons-js/smoking.js'; +export { default as IconSnowflake } from './icons-js/snowflake.js'; +export { default as IconSocial } from './icons-js/social.js'; +export { default as IconSortAscending } from './icons-js/sort-ascending.js'; +export { default as IconSortDescending } from './icons-js/sort-descending.js'; +export { default as IconSpace } from './icons-js/space.js'; +export { default as IconSquareCheck } from './icons-js/square-check.js'; +export { default as IconSquareMinus } from './icons-js/square-minus.js'; +export { default as IconSquarePlus } from './icons-js/square-plus.js'; +export { default as IconSquareX } from './icons-js/square-x.js'; +export { default as IconSquare } from './icons-js/square.js'; +export { default as IconStack } from './icons-js/stack.js'; +export { default as IconStairsDown } from './icons-js/stairs-down.js'; +export { default as IconStairsUp } from './icons-js/stairs-up.js'; +export { default as IconStairs } from './icons-js/stairs.js'; +export { default as IconStar } from './icons-js/star.js'; +export { default as IconSteeringWheel } from './icons-js/steering-wheel.js'; +export { default as IconSticker } from './icons-js/sticker.js'; +export { default as IconStrikethrough } from './icons-js/strikethrough.js'; +export { default as IconSubscript } from './icons-js/subscript.js'; +export { default as IconSubtask } from './icons-js/subtask.js'; +export { default as IconSum } from './icons-js/sum.js'; +export { default as IconSun } from './icons-js/sun.js'; +export { default as IconSunset } from './icons-js/sunset.js'; +export { default as IconSunshine } from './icons-js/sunshine.js'; +export { default as IconSuperscript } from './icons-js/superscript.js'; +export { default as IconSwimming } from './icons-js/swimming.js'; +export { default as IconSwitchHorizontal } from './icons-js/switch-horizontal.js'; +export { default as IconSwitchVertical } from './icons-js/switch-vertical.js'; +export { default as IconSwitch } from './icons-js/switch.js'; +export { default as IconTable } from './icons-js/table.js'; +export { default as IconTag } from './icons-js/tag.js'; +export { default as IconTallymark1 } from './icons-js/tallymark-1.js'; +export { default as IconTallymark2 } from './icons-js/tallymark-2.js'; +export { default as IconTallymark3 } from './icons-js/tallymark-3.js'; +export { default as IconTallymark4 } from './icons-js/tallymark-4.js'; +export { default as IconTallymarks } from './icons-js/tallymarks.js'; +export { default as IconTarget } from './icons-js/target.js'; +export { default as IconTax } from './icons-js/tax.js'; +export { default as IconTemperatureCelsius } from './icons-js/temperature-celsius.js'; +export { default as IconTemperatureFahrenheit } from './icons-js/temperature-fahrenheit.js'; +export { default as IconTemperatureMinus } from './icons-js/temperature-minus.js'; +export { default as IconTemperaturePlus } from './icons-js/temperature-plus.js'; +export { default as IconTemperature } from './icons-js/temperature.js'; +export { default as IconTemplate } from './icons-js/template.js'; +export { default as IconTerminal2 } from './icons-js/terminal-2.js'; +export { default as IconTerminal } from './icons-js/terminal.js'; +export { default as IconTestPipe } from './icons-js/test-pipe.js'; +export { default as IconTextWrapDisabled } from './icons-js/text-wrap-disabled.js'; +export { default as IconTextWrap } from './icons-js/text-wrap.js'; +export { default as IconThumbDown } from './icons-js/thumb-down.js'; +export { default as IconThumbUp } from './icons-js/thumb-up.js'; +export { default as IconTicket } from './icons-js/ticket.js'; +export { default as IconTir } from './icons-js/tir.js'; +export { default as IconToggleLeft } from './icons-js/toggle-left.js'; +export { default as IconToggleRight } from './icons-js/toggle-right.js'; +export { default as IconTool } from './icons-js/tool.js'; +export { default as IconTools } from './icons-js/tools.js'; +export { default as IconTournament } from './icons-js/tournament.js'; +export { default as IconTrackNext } from './icons-js/track-next.js'; +export { default as IconTrackPrev } from './icons-js/track-prev.js'; +export { default as IconTractor } from './icons-js/tractor.js'; +export { default as IconTrademark } from './icons-js/trademark.js'; +export { default as IconTrafficCone } from './icons-js/traffic-cone.js'; +export { default as IconTrash } from './icons-js/trash.js'; +export { default as IconTrees } from './icons-js/trees.js'; +export { default as IconTrendingDown } from './icons-js/trending-down.js'; +export { default as IconTrendingUp } from './icons-js/trending-up.js'; +export { default as IconTriangle } from './icons-js/triangle.js'; +export { default as IconTrident } from './icons-js/trident.js'; +export { default as IconTrophy } from './icons-js/trophy.js'; +export { default as IconTruckDelivery } from './icons-js/truck-delivery.js'; +export { default as IconTruckReturn } from './icons-js/truck-return.js'; +export { default as IconTruck } from './icons-js/truck.js'; +export { default as IconTypography } from './icons-js/typography.js'; +export { default as IconUmbrella } from './icons-js/umbrella.js'; +export { default as IconUnderline } from './icons-js/underline.js'; +export { default as IconUnlink } from './icons-js/unlink.js'; +export { default as IconUpload } from './icons-js/upload.js'; +export { default as IconUrgent } from './icons-js/urgent.js'; +export { default as IconUserCheck } from './icons-js/user-check.js'; +export { default as IconUserExclamation } from './icons-js/user-exclamation.js'; +export { default as IconUserMinus } from './icons-js/user-minus.js'; +export { default as IconUserPlus } from './icons-js/user-plus.js'; +export { default as IconUserX } from './icons-js/user-x.js'; +export { default as IconUser } from './icons-js/user.js'; +export { default as IconUsers } from './icons-js/users.js'; +export { default as IconVectorTriangle } from './icons-js/vector-triangle.js'; +export { default as IconVector } from './icons-js/vector.js'; +export { default as IconVenus } from './icons-js/venus.js'; +export { default as IconViewfinder } from './icons-js/viewfinder.js'; +export { default as IconViewportNarrow } from './icons-js/viewport-narrow.js'; +export { default as IconViewportWide } from './icons-js/viewport-wide.js'; +export { default as IconVirus } from './icons-js/virus.js'; +export { default as IconVolume2 } from './icons-js/volume-2.js'; +export { default as IconVolume3 } from './icons-js/volume-3.js'; +export { default as IconVolume } from './icons-js/volume.js'; +export { default as IconWalk } from './icons-js/walk.js'; +export { default as IconWallet } from './icons-js/wallet.js'; +export { default as IconWand } from './icons-js/wand.js'; +export { default as IconWaveSawTool } from './icons-js/wave-saw-tool.js'; +export { default as IconWaveSine } from './icons-js/wave-sine.js'; +export { default as IconWaveSquare } from './icons-js/wave-square.js'; +export { default as IconWaveTriangle } from './icons-js/wave-triangle.js'; +export { default as IconWifi0 } from './icons-js/wifi-0.js'; +export { default as IconWifi1 } from './icons-js/wifi-1.js'; +export { default as IconWifi2 } from './icons-js/wifi-2.js'; +export { default as IconWifi } from './icons-js/wifi.js'; +export { default as IconWind } from './icons-js/wind.js'; +export { default as IconWiperWash } from './icons-js/wiper-wash.js'; +export { default as IconWiper } from './icons-js/wiper.js'; +export { default as IconWoman } from './icons-js/woman.js'; +export { default as IconWorld } from './icons-js/world.js'; +export { default as IconX } from './icons-js/x.js'; +export { default as IconYinYang } from './icons-js/yin-yang.js'; +export { default as IconZodiacAquarius } from './icons-js/zodiac-aquarius.js'; +export { default as IconZodiacAries } from './icons-js/zodiac-aries.js'; +export { default as IconZodiacCancer } from './icons-js/zodiac-cancer.js'; +export { default as IconZodiacCapricorn } from './icons-js/zodiac-capricorn.js'; +export { default as IconZodiacGemini } from './icons-js/zodiac-gemini.js'; +export { default as IconZodiacLeo } from './icons-js/zodiac-leo.js'; +export { default as IconZodiacLibra } from './icons-js/zodiac-libra.js'; +export { default as IconZodiacPisces } from './icons-js/zodiac-pisces.js'; +export { default as IconZodiacSagittarius } from './icons-js/zodiac-sagittarius.js'; +export { default as IconZodiacScorpio } from './icons-js/zodiac-scorpio.js'; +export { default as IconZodiacTaurus } from './icons-js/zodiac-taurus.js'; +export { default as IconZodiacVirgo } from './icons-js/zodiac-virgo.js'; +export { default as IconZoomCancel } from './icons-js/zoom-cancel.js'; diff --git a/package.json b/package.json index 2322023b8..659327efb 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,8 @@ "type": "git", "url": "git+https://github.com/tabler/tabler-icons.git" }, + "module": "./icons-react/index.js", + "types": "./icons-react/index.d.ts", "author": "", "license": "MIT", "bugs": { @@ -30,17 +32,19 @@ }, "description": "", "devDependencies": { - "lodash.template": "4.5.0", - "node-sass": "4.13.1", + "@svgr/core": "^5.4.0", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", "clean-css": "4.2.3", "glob": "7.1.6", "gulp": "4.0.2", "gulp-iconfont": "10.0.3", - "gulp-zip": "5.0.1", + "gulp-zip": "5.0.2", + "lodash.template": "4.5.0", "minimist": "1.2.5", - "puppeteer": "2.1.1", - "release-it": "13.1.2", - "svg-outline-stroke": "1.2.4" + "node-sass": "4.14.1", + "puppeteer": "5.2.1", + "release-it": "14.0.2", + "svg-outline-stroke": "1.3.0" }, "release-it": { "hooks": {