diff --git a/.npmrc b/.npmrc deleted file mode 100644 index 319e41e6..00000000 --- a/.npmrc +++ /dev/null @@ -1 +0,0 @@ -strict-peer-dependencies=false diff --git a/bin/build.js b/bin/build.js index dd868f12..a7a84528 100644 --- a/bin/build.js +++ b/bin/build.js @@ -249,6 +249,7 @@ const tasks = new Listr( 'bin/templates/icon-template.cjs', '--index-template', 'bin/templates/index-template.cjs', + '--', ctx.tmpDir, ], { preferLocal: true }, @@ -283,6 +284,7 @@ const tasks = new Listr( 'bin/templates/icon-template-server-component.cjs', '--index-template', 'bin/templates/index-template.cjs', + '--', ctx.tmpDir, ], { preferLocal: true }, diff --git a/bin/buildVue.js b/bin/buildVue.js index a567333f..fb5a379c 100644 --- a/bin/buildVue.js +++ b/bin/buildVue.js @@ -15,7 +15,7 @@ export async function buildVueIcons(srcDir, { outDir = './out/' }) { await fs.writeFile( path.join(outDir, providerKeyFileName + '.ts'), providerKey, - 'utf8' + 'utf8', ); const fileNames = []; @@ -35,7 +35,7 @@ export async function buildVueIcons(srcDir, { outDir = './out/' }) { await fs.writeFile( path.join(outDir, pascalCaseFileName), component, - 'utf8' + 'utf8', ); fileNames.push(pascalCaseFileName); diff --git a/bin/prepublish.js b/bin/prepublish.js index 309e4a0b..21952602 100644 --- a/bin/prepublish.js +++ b/bin/prepublish.js @@ -33,7 +33,7 @@ function publishPubPackage(name) { fs.writeFileSync( pubspecFilepath, - updateYamlKey('version', newVersion, pubspecContents) + updateYamlKey('version', newVersion, pubspecContents), ); console.info('pubspec.yaml updated'); diff --git a/bin/templates/icon-template-server-component.cjs b/bin/templates/icon-template-server-component.cjs index 4c79e634..79e63fba 100644 --- a/bin/templates/icon-template-server-component.cjs +++ b/bin/templates/icon-template-server-component.cjs @@ -1,22 +1,15 @@ -const template = ( - { template }, - opts, - { imports, interfaces, componentName, props, jsx, exports } -) => { - const plugins = ['jsx']; - if (opts.typescript) { - plugins.push('typescript'); - } - const typeScriptTpl = template.smart({ plugins }); - return typeScriptTpl.ast`${imports} +const template = (variables, { tpl }) => { + return tpl` +${variables.imports}; -${interfaces} +${variables.interfaces}; -function ${componentName}(${props}) { - return ${jsx}; -} -${exports} - `; +const ${variables.componentName} = (${variables.props}) => ( + ${variables.jsx} +); + +${variables.exports}; +`; }; module.exports = template; diff --git a/bin/templates/icon-template.cjs b/bin/templates/icon-template.cjs index c72f8ac0..d1dd7d79 100644 --- a/bin/templates/icon-template.cjs +++ b/bin/templates/icon-template.cjs @@ -1,26 +1,30 @@ -const template = ( - { template }, - opts, - { imports, interfaces, componentName, props, jsx, exports } -) => { - const plugins = ['jsx']; - if (opts.typescript) { - plugins.push('typescript'); +const template = (variables, { tpl }) => { + variables.props[0].name = 'passedProps'; + + // Workaround to fix ref type for React Native + const isNative = variables.imports.some( + (i) => i.source?.value === 'react-native-svg', + ); + + if (isNative) { + variables.props[1].typeAnnotation.typeAnnotation.typeParameters.params[0].typeName.name = + 'Svg'; } - const typeScriptTpl = template.smart({ plugins }); - props[0].name = 'passedProps'; - return typeScriptTpl.ast`${imports} -import { IconoirContext } from './IconoirContext' -${interfaces} + return tpl` +${variables.imports}; +import { IconoirContext } from './IconoirContext'; -function ${componentName}(${props}) { +${variables.interfaces}; + +const ${variables.componentName} = (${variables.props}) => { const context = React.useContext(IconoirContext); const props = { ...context, ...passedProps }; - return ${jsx}; -} -${exports} - `; + return ${variables.jsx}; +}; + +${variables.exports}; +`; }; module.exports = template; diff --git a/bin/templates/index-template.cjs b/bin/templates/index-template.cjs index 6f3b6685..c3e9c4b6 100644 --- a/bin/templates/index-template.cjs +++ b/bin/templates/index-template.cjs @@ -1,13 +1,13 @@ const path = require('path'); function template(filePaths) { - const exportEntries = filePaths.map((filePath) => { + const exportEntries = filePaths.map(({ path: filePath }) => { const basename = path.basename(filePath, path.extname(filePath)); const exportName = /^\d/.test(basename) ? `Svg${basename}` : basename; return `export { default as ${exportName} } from './${basename}'`; }); exportEntries.push( - "export { IconoirProvider, IconoirContext, IconoirContextValue } from './IconoirContext'" + "export { IconoirProvider, IconoirContext, IconoirContextValue } from './IconoirContext'", ); return exportEntries.join('\n'); } diff --git a/bin/templates/vue/provider-key-template.cjs b/bin/templates/vue/provider-key-template.cjs index f1af345a..a252f30c 100644 --- a/bin/templates/vue/provider-key-template.cjs +++ b/bin/templates/vue/provider-key-template.cjs @@ -1,4 +1,5 @@ -const template = () => `import type { InjectionKey, SVGAttributes } from "vue-demi"; +const template = + () => `import type { InjectionKey, SVGAttributes } from "vue-demi"; const providerKey = Symbol() as InjectionKey; export default providerKey; `; diff --git a/constants.js b/constants.js index 4a0c52db..735f3d3f 100644 --- a/constants.js +++ b/constants.js @@ -13,5 +13,5 @@ export const incompatibleNames = { export const flutterIncompatibleNames = { ...incompatibleNames, - 'color-filter': 'color-filter-icon' + 'color-filter': 'color-filter-icon', }; diff --git a/package.json b/package.json index 389fcd7f..74f7de66 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "icons" ], "scripts": { - "lint": "eslint ./bin/build.js", - "lint:fix": "npm run lint -- --fix", + "lint": "eslint \"./bin/**/*.{cjs,js}\"", + "lint:fix": "pnpm run lint --fix", "build": "node ./bin/build.js", "prepublish-all": "node ./bin/prepublish.js", "dist": "pnpm -r --filter './packages/**' run dist" @@ -34,7 +34,7 @@ "homepage": "https://iconoir.com", "devDependencies": { "@atomist/yaml-updater": "^1.0.2", - "@svgr/cli": "^5.5.0", + "@svgr/cli": "^8.1.0", "@types/svg-parser": "^2.0.3", "eslint": "^8.50.0", "eslint-config-prettier": "^9.0.0", @@ -47,10 +47,5 @@ "semver": "^7.5.4", "svg-parser": "^2.0.4" }, - "pnpm": { - "overrides": { - "@types/react": "^17.0.29" - } - }, "packageManager": "pnpm@8.7.6" } diff --git a/packages/iconoir-react-native/package.json b/packages/iconoir-react-native/package.json index 73d13174..728bfe46 100644 --- a/packages/iconoir-react-native/package.json +++ b/packages/iconoir-react-native/package.json @@ -31,13 +31,13 @@ "peerDependencies": { "react": "^16.8.6 || ^17 || ^18", "react-native": ">=0.50.0", - "react-native-svg": "^12.1.1" + "react-native-svg": ">=12.1.1" }, "devDependencies": { - "@types/react": "^17.0.29", - "@types/react-native": "^0.50.0", - "react": "^17.0.2", - "react-native-svg": "^12.1.1", + "@types/react": "^18.2.22", + "@types/react-native": "^0.72.2", + "react": "^18.2.0", + "react-native-svg": "^13.14.0", "typescript": "^5.2.2" } -} \ No newline at end of file +} diff --git a/packages/iconoir-react-native/src/3DAddHole.tsx b/packages/iconoir-react-native/src/3DAddHole.tsx index 05467931..cefa722d 100644 --- a/packages/iconoir-react-native/src/3DAddHole.tsx +++ b/packages/iconoir-react-native/src/3DAddHole.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DAddHole( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DAddHole = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function Svg3DAddHole( ); -} -const ForwardRef = React.forwardRef(Svg3DAddHole); +}; +const ForwardRef = forwardRef(Svg3DAddHole); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DArc.tsx b/packages/iconoir-react-native/src/3DArc.tsx index eacffb77..09772858 100644 --- a/packages/iconoir-react-native/src/3DArc.tsx +++ b/packages/iconoir-react-native/src/3DArc.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DArc( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DArc = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function Svg3DArc( ); -} -const ForwardRef = React.forwardRef(Svg3DArc); +}; +const ForwardRef = forwardRef(Svg3DArc); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DArcCenterPt.tsx b/packages/iconoir-react-native/src/3DArcCenterPt.tsx index fd0f68bb..7a5dfdd3 100644 --- a/packages/iconoir-react-native/src/3DArcCenterPt.tsx +++ b/packages/iconoir-react-native/src/3DArcCenterPt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DArcCenterPt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DArcCenterPt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,42 +13,42 @@ function Svg3DArcCenterPt( ); -} -const ForwardRef = React.forwardRef(Svg3DArcCenterPt); +}; +const ForwardRef = forwardRef(Svg3DArcCenterPt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DBridge.tsx b/packages/iconoir-react-native/src/3DBridge.tsx index 3d8ce54c..7027c693 100644 --- a/packages/iconoir-react-native/src/3DBridge.tsx +++ b/packages/iconoir-react-native/src/3DBridge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DBridge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DBridge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function Svg3DBridge( ); -} -const ForwardRef = React.forwardRef(Svg3DBridge); +}; +const ForwardRef = forwardRef(Svg3DBridge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DCenterBox.tsx b/packages/iconoir-react-native/src/3DCenterBox.tsx index 8cccfa81..be2e21d5 100644 --- a/packages/iconoir-react-native/src/3DCenterBox.tsx +++ b/packages/iconoir-react-native/src/3DCenterBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DCenterBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DCenterBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function Svg3DCenterBox( ); -} -const ForwardRef = React.forwardRef(Svg3DCenterBox); +}; +const ForwardRef = forwardRef(Svg3DCenterBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DDraftFace.tsx b/packages/iconoir-react-native/src/3DDraftFace.tsx index 920ab749..781403b4 100644 --- a/packages/iconoir-react-native/src/3DDraftFace.tsx +++ b/packages/iconoir-react-native/src/3DDraftFace.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DDraftFace( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DDraftFace = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function Svg3DDraftFace( ); -} -const ForwardRef = React.forwardRef(Svg3DDraftFace); +}; +const ForwardRef = forwardRef(Svg3DDraftFace); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DEllipse.tsx b/packages/iconoir-react-native/src/3DEllipse.tsx index 1f60f982..e8cb48bf 100644 --- a/packages/iconoir-react-native/src/3DEllipse.tsx +++ b/packages/iconoir-react-native/src/3DEllipse.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DEllipse( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DEllipse = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,35 +13,35 @@ function Svg3DEllipse( ); -} -const ForwardRef = React.forwardRef(Svg3DEllipse); +}; +const ForwardRef = forwardRef(Svg3DEllipse); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DEllipseThreePts.tsx b/packages/iconoir-react-native/src/3DEllipseThreePts.tsx index 068a5244..9b713bd6 100644 --- a/packages/iconoir-react-native/src/3DEllipseThreePts.tsx +++ b/packages/iconoir-react-native/src/3DEllipseThreePts.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DEllipseThreePts( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DEllipseThreePts = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,55 +13,55 @@ function Svg3DEllipseThreePts( ); -} -const ForwardRef = React.forwardRef(Svg3DEllipseThreePts); +}; +const ForwardRef = forwardRef(Svg3DEllipseThreePts); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DPtBox.tsx b/packages/iconoir-react-native/src/3DPtBox.tsx index b7775a8b..0a49852e 100644 --- a/packages/iconoir-react-native/src/3DPtBox.tsx +++ b/packages/iconoir-react-native/src/3DPtBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DPtBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DPtBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function Svg3DPtBox( ); -} -const ForwardRef = React.forwardRef(Svg3DPtBox); +}; +const ForwardRef = forwardRef(Svg3DPtBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DRectCornerToCorner.tsx b/packages/iconoir-react-native/src/3DRectCornerToCorner.tsx index 6863e15f..6f4ed559 100644 --- a/packages/iconoir-react-native/src/3DRectCornerToCorner.tsx +++ b/packages/iconoir-react-native/src/3DRectCornerToCorner.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DRectCornerToCorner( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DRectCornerToCorner = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function Svg3DRectCornerToCorner( ); -} -const ForwardRef = React.forwardRef(Svg3DRectCornerToCorner); +}; +const ForwardRef = forwardRef(Svg3DRectCornerToCorner); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DRectFromCenter.tsx b/packages/iconoir-react-native/src/3DRectFromCenter.tsx index e951b0eb..52eec7b5 100644 --- a/packages/iconoir-react-native/src/3DRectFromCenter.tsx +++ b/packages/iconoir-react-native/src/3DRectFromCenter.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DRectFromCenter( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DRectFromCenter = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function Svg3DRectFromCenter( ); -} -const ForwardRef = React.forwardRef(Svg3DRectFromCenter); +}; +const ForwardRef = forwardRef(Svg3DRectFromCenter); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DRectThreePts.tsx b/packages/iconoir-react-native/src/3DRectThreePts.tsx index 40da2cb5..e911594e 100644 --- a/packages/iconoir-react-native/src/3DRectThreePts.tsx +++ b/packages/iconoir-react-native/src/3DRectThreePts.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DRectThreePts( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DRectThreePts = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function Svg3DRectThreePts( - + ); -} -const ForwardRef = React.forwardRef(Svg3DRectThreePts); +}; +const ForwardRef = forwardRef(Svg3DRectThreePts); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DSelectEdge.tsx b/packages/iconoir-react-native/src/3DSelectEdge.tsx index aa4bb2b6..61c3cc3f 100644 --- a/packages/iconoir-react-native/src/3DSelectEdge.tsx +++ b/packages/iconoir-react-native/src/3DSelectEdge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DSelectEdge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DSelectEdge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function Svg3DSelectEdge( ); -} -const ForwardRef = React.forwardRef(Svg3DSelectEdge); +}; +const ForwardRef = forwardRef(Svg3DSelectEdge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DSelectFace.tsx b/packages/iconoir-react-native/src/3DSelectFace.tsx index db4a1547..73f47ca2 100644 --- a/packages/iconoir-react-native/src/3DSelectFace.tsx +++ b/packages/iconoir-react-native/src/3DSelectFace.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DSelectFace( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DSelectFace = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function Svg3DSelectFace( ); -} -const ForwardRef = React.forwardRef(Svg3DSelectFace); +}; +const ForwardRef = forwardRef(Svg3DSelectFace); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DSelectPoint.tsx b/packages/iconoir-react-native/src/3DSelectPoint.tsx index ad5d6eae..9e016393 100644 --- a/packages/iconoir-react-native/src/3DSelectPoint.tsx +++ b/packages/iconoir-react-native/src/3DSelectPoint.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DSelectPoint( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DSelectPoint = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function Svg3DSelectPoint( ); -} -const ForwardRef = React.forwardRef(Svg3DSelectPoint); +}; +const ForwardRef = forwardRef(Svg3DSelectPoint); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DSelectSolid.tsx b/packages/iconoir-react-native/src/3DSelectSolid.tsx index 76e75199..41e91457 100644 --- a/packages/iconoir-react-native/src/3DSelectSolid.tsx +++ b/packages/iconoir-react-native/src/3DSelectSolid.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DSelectSolid( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DSelectSolid = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function Svg3DSelectSolid( ); -} -const ForwardRef = React.forwardRef(Svg3DSelectSolid); +}; +const ForwardRef = forwardRef(Svg3DSelectSolid); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/3DThreePtsBox.tsx b/packages/iconoir-react-native/src/3DThreePtsBox.tsx index fec8e7a7..9b3d1391 100644 --- a/packages/iconoir-react-native/src/3DThreePtsBox.tsx +++ b/packages/iconoir-react-native/src/3DThreePtsBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DThreePtsBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const Svg3DThreePtsBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function Svg3DThreePtsBox( ); -} -const ForwardRef = React.forwardRef(Svg3DThreePtsBox); +}; +const ForwardRef = forwardRef(Svg3DThreePtsBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Accessibility.tsx b/packages/iconoir-react-native/src/Accessibility.tsx index a08774b9..bdb67a3c 100644 --- a/packages/iconoir-react-native/src/Accessibility.tsx +++ b/packages/iconoir-react-native/src/Accessibility.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAccessibility( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAccessibility = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgAccessibility( ); -} -const ForwardRef = React.forwardRef(SvgAccessibility); +}; +const ForwardRef = forwardRef(SvgAccessibility); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AccessibilitySign.tsx b/packages/iconoir-react-native/src/AccessibilitySign.tsx index 2c4263ba..0439fed8 100644 --- a/packages/iconoir-react-native/src/AccessibilitySign.tsx +++ b/packages/iconoir-react-native/src/AccessibilitySign.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAccessibilitySign( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAccessibilitySign = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAccessibilitySign( ); -} -const ForwardRef = React.forwardRef(SvgAccessibilitySign); +}; +const ForwardRef = forwardRef(SvgAccessibilitySign); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AccessibilityTech.tsx b/packages/iconoir-react-native/src/AccessibilityTech.tsx index 9c56bf0e..533e03cb 100644 --- a/packages/iconoir-react-native/src/AccessibilityTech.tsx +++ b/packages/iconoir-react-native/src/AccessibilityTech.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAccessibilityTech( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAccessibilityTech = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,38 +13,38 @@ function SvgAccessibilityTech( ); -} -const ForwardRef = React.forwardRef(SvgAccessibilityTech); +}; +const ForwardRef = forwardRef(SvgAccessibilityTech); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Activity.tsx b/packages/iconoir-react-native/src/Activity.tsx index e3111b81..6787dd71 100644 --- a/packages/iconoir-react-native/src/Activity.tsx +++ b/packages/iconoir-react-native/src/Activity.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgActivity( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgActivity = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgActivity( ); -} -const ForwardRef = React.forwardRef(SvgActivity); +}; +const ForwardRef = forwardRef(SvgActivity); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddCircle.tsx b/packages/iconoir-react-native/src/AddCircle.tsx index 78803535..5497ca53 100644 --- a/packages/iconoir-react-native/src/AddCircle.tsx +++ b/packages/iconoir-react-native/src/AddCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAddCircle( ); -} -const ForwardRef = React.forwardRef(SvgAddCircle); +}; +const ForwardRef = forwardRef(SvgAddCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddDatabaseScript.tsx b/packages/iconoir-react-native/src/AddDatabaseScript.tsx index 8d7da2b7..ff17a850 100644 --- a/packages/iconoir-react-native/src/AddDatabaseScript.tsx +++ b/packages/iconoir-react-native/src/AddDatabaseScript.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddDatabaseScript( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddDatabaseScript = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAddDatabaseScript( ); -} -const ForwardRef = React.forwardRef(SvgAddDatabaseScript); +}; +const ForwardRef = forwardRef(SvgAddDatabaseScript); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddFolder.tsx b/packages/iconoir-react-native/src/AddFolder.tsx index 8e3d06c6..945102ad 100644 --- a/packages/iconoir-react-native/src/AddFolder.tsx +++ b/packages/iconoir-react-native/src/AddFolder.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddFolder( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddFolder = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAddFolder( ); -} -const ForwardRef = React.forwardRef(SvgAddFolder); +}; +const ForwardRef = forwardRef(SvgAddFolder); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddFrame.tsx b/packages/iconoir-react-native/src/AddFrame.tsx index 917db87a..fca8af16 100644 --- a/packages/iconoir-react-native/src/AddFrame.tsx +++ b/packages/iconoir-react-native/src/AddFrame.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddFrame( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddFrame = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgAddFrame( ); -} -const ForwardRef = React.forwardRef(SvgAddFrame); +}; +const ForwardRef = forwardRef(SvgAddFrame); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddHexagon.tsx b/packages/iconoir-react-native/src/AddHexagon.tsx index 1bda9469..a0271821 100644 --- a/packages/iconoir-react-native/src/AddHexagon.tsx +++ b/packages/iconoir-react-native/src/AddHexagon.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddHexagon( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddHexagon = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAddHexagon( ); -} -const ForwardRef = React.forwardRef(SvgAddHexagon); +}; +const ForwardRef = forwardRef(SvgAddHexagon); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddKeyframe.tsx b/packages/iconoir-react-native/src/AddKeyframe.tsx index 197dd6d7..b752721f 100644 --- a/packages/iconoir-react-native/src/AddKeyframe.tsx +++ b/packages/iconoir-react-native/src/AddKeyframe.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddKeyframe( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddKeyframe = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAddKeyframe( ); -} -const ForwardRef = React.forwardRef(SvgAddKeyframe); +}; +const ForwardRef = forwardRef(SvgAddKeyframe); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddKeyframeAlt.tsx b/packages/iconoir-react-native/src/AddKeyframeAlt.tsx index d7a78346..1fcec987 100644 --- a/packages/iconoir-react-native/src/AddKeyframeAlt.tsx +++ b/packages/iconoir-react-native/src/AddKeyframeAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddKeyframeAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddKeyframeAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAddKeyframeAlt( ); -} -const ForwardRef = React.forwardRef(SvgAddKeyframeAlt); +}; +const ForwardRef = forwardRef(SvgAddKeyframeAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddKeyframes.tsx b/packages/iconoir-react-native/src/AddKeyframes.tsx index 788a22fa..b39d18bf 100644 --- a/packages/iconoir-react-native/src/AddKeyframes.tsx +++ b/packages/iconoir-react-native/src/AddKeyframes.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddKeyframes( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddKeyframes = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgAddKeyframes( ); -} -const ForwardRef = React.forwardRef(SvgAddKeyframes); +}; +const ForwardRef = forwardRef(SvgAddKeyframes); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddLens.tsx b/packages/iconoir-react-native/src/AddLens.tsx index 1dbd5b38..b40a53c2 100644 --- a/packages/iconoir-react-native/src/AddLens.tsx +++ b/packages/iconoir-react-native/src/AddLens.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddLens( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddLens = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgAddLens( + ); -} -const ForwardRef = React.forwardRef(SvgAddLens); +}; +const ForwardRef = forwardRef(SvgAddLens); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddMediaImage.tsx b/packages/iconoir-react-native/src/AddMediaImage.tsx index 8bfda82b..67b75a28 100644 --- a/packages/iconoir-react-native/src/AddMediaImage.tsx +++ b/packages/iconoir-react-native/src/AddMediaImage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddMediaImage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddMediaImage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAddMediaImage( ); -} -const ForwardRef = React.forwardRef(SvgAddMediaImage); +}; +const ForwardRef = forwardRef(SvgAddMediaImage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddMediaVideo.tsx b/packages/iconoir-react-native/src/AddMediaVideo.tsx index cba820ef..9ae0be06 100644 --- a/packages/iconoir-react-native/src/AddMediaVideo.tsx +++ b/packages/iconoir-react-native/src/AddMediaVideo.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddMediaVideo( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddMediaVideo = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAddMediaVideo( ); -} -const ForwardRef = React.forwardRef(SvgAddMediaVideo); +}; +const ForwardRef = forwardRef(SvgAddMediaVideo); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddPage.tsx b/packages/iconoir-react-native/src/AddPage.tsx index bb17f559..c71765e0 100644 --- a/packages/iconoir-react-native/src/AddPage.tsx +++ b/packages/iconoir-react-native/src/AddPage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddPage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddPage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAddPage( ); -} -const ForwardRef = React.forwardRef(SvgAddPage); +}; +const ForwardRef = forwardRef(SvgAddPage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddPageAlt.tsx b/packages/iconoir-react-native/src/AddPageAlt.tsx index 2a1ee907..1375efcc 100644 --- a/packages/iconoir-react-native/src/AddPageAlt.tsx +++ b/packages/iconoir-react-native/src/AddPageAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddPageAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddPageAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAddPageAlt( ); -} -const ForwardRef = React.forwardRef(SvgAddPageAlt); +}; +const ForwardRef = forwardRef(SvgAddPageAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddPinAlt.tsx b/packages/iconoir-react-native/src/AddPinAlt.tsx index 4c2dbed7..08a3789c 100644 --- a/packages/iconoir-react-native/src/AddPinAlt.tsx +++ b/packages/iconoir-react-native/src/AddPinAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddPinAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddPinAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgAddPinAlt( ); -} -const ForwardRef = React.forwardRef(SvgAddPinAlt); +}; +const ForwardRef = forwardRef(SvgAddPinAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddSelection.tsx b/packages/iconoir-react-native/src/AddSelection.tsx index 90c84c00..b8e0d711 100644 --- a/packages/iconoir-react-native/src/AddSelection.tsx +++ b/packages/iconoir-react-native/src/AddSelection.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddSelection( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddSelection = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAddSelection( ); -} -const ForwardRef = React.forwardRef(SvgAddSelection); +}; +const ForwardRef = forwardRef(SvgAddSelection); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddSquare.tsx b/packages/iconoir-react-native/src/AddSquare.tsx index fa7df544..b3f236ea 100644 --- a/packages/iconoir-react-native/src/AddSquare.tsx +++ b/packages/iconoir-react-native/src/AddSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAddSquare( ); -} -const ForwardRef = React.forwardRef(SvgAddSquare); +}; +const ForwardRef = forwardRef(SvgAddSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddToCart.tsx b/packages/iconoir-react-native/src/AddToCart.tsx index cc970444..e06df3a6 100644 --- a/packages/iconoir-react-native/src/AddToCart.tsx +++ b/packages/iconoir-react-native/src/AddToCart.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddToCart( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddToCart = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAddToCart( ); -} -const ForwardRef = React.forwardRef(SvgAddToCart); +}; +const ForwardRef = forwardRef(SvgAddToCart); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AddUser.tsx b/packages/iconoir-react-native/src/AddUser.tsx index 9cc49261..5e8e6369 100644 --- a/packages/iconoir-react-native/src/AddUser.tsx +++ b/packages/iconoir-react-native/src/AddUser.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddUser( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAddUser = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAddUser( ); -} -const ForwardRef = React.forwardRef(SvgAddUser); +}; +const ForwardRef = forwardRef(SvgAddUser); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AdobeAfterEffects.tsx b/packages/iconoir-react-native/src/AdobeAfterEffects.tsx index 52885681..e22c5b1b 100644 --- a/packages/iconoir-react-native/src/AdobeAfterEffects.tsx +++ b/packages/iconoir-react-native/src/AdobeAfterEffects.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobeAfterEffects( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAdobeAfterEffects = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAdobeAfterEffects( ); -} -const ForwardRef = React.forwardRef(SvgAdobeAfterEffects); +}; +const ForwardRef = forwardRef(SvgAdobeAfterEffects); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AdobeIllustrator.tsx b/packages/iconoir-react-native/src/AdobeIllustrator.tsx index 50e37b52..76dc4c7e 100644 --- a/packages/iconoir-react-native/src/AdobeIllustrator.tsx +++ b/packages/iconoir-react-native/src/AdobeIllustrator.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobeIllustrator( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAdobeIllustrator = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAdobeIllustrator( ); -} -const ForwardRef = React.forwardRef(SvgAdobeIllustrator); +}; +const ForwardRef = forwardRef(SvgAdobeIllustrator); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AdobeIndesign.tsx b/packages/iconoir-react-native/src/AdobeIndesign.tsx index c8ea46df..c74a175a 100644 --- a/packages/iconoir-react-native/src/AdobeIndesign.tsx +++ b/packages/iconoir-react-native/src/AdobeIndesign.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobeIndesign( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAdobeIndesign = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAdobeIndesign( ); -} -const ForwardRef = React.forwardRef(SvgAdobeIndesign); +}; +const ForwardRef = forwardRef(SvgAdobeIndesign); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AdobeLightroom.tsx b/packages/iconoir-react-native/src/AdobeLightroom.tsx index a475d84e..6cdd664f 100644 --- a/packages/iconoir-react-native/src/AdobeLightroom.tsx +++ b/packages/iconoir-react-native/src/AdobeLightroom.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobeLightroom( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAdobeLightroom = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAdobeLightroom( ); -} -const ForwardRef = React.forwardRef(SvgAdobeLightroom); +}; +const ForwardRef = forwardRef(SvgAdobeLightroom); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AdobePhotoshop.tsx b/packages/iconoir-react-native/src/AdobePhotoshop.tsx index 1ddc220c..a3699506 100644 --- a/packages/iconoir-react-native/src/AdobePhotoshop.tsx +++ b/packages/iconoir-react-native/src/AdobePhotoshop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobePhotoshop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAdobePhotoshop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAdobePhotoshop( ); -} -const ForwardRef = React.forwardRef(SvgAdobePhotoshop); +}; +const ForwardRef = forwardRef(SvgAdobePhotoshop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AdobeXd.tsx b/packages/iconoir-react-native/src/AdobeXd.tsx index 040bb198..b350c563 100644 --- a/packages/iconoir-react-native/src/AdobeXd.tsx +++ b/packages/iconoir-react-native/src/AdobeXd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobeXd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAdobeXd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAdobeXd( ); -} -const ForwardRef = React.forwardRef(SvgAdobeXd); +}; +const ForwardRef = forwardRef(SvgAdobeXd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AfricanTree.tsx b/packages/iconoir-react-native/src/AfricanTree.tsx index 1401e02e..091c8206 100644 --- a/packages/iconoir-react-native/src/AfricanTree.tsx +++ b/packages/iconoir-react-native/src/AfricanTree.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAfricanTree( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAfricanTree = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgAfricanTree( - + - + ); -} -const ForwardRef = React.forwardRef(SvgAfricanTree); +}; +const ForwardRef = forwardRef(SvgAfricanTree); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Agile.tsx b/packages/iconoir-react-native/src/Agile.tsx index 3730289d..363f6a83 100644 --- a/packages/iconoir-react-native/src/Agile.tsx +++ b/packages/iconoir-react-native/src/Agile.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAgile( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAgile = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgAgile( ); -} -const ForwardRef = React.forwardRef(SvgAgile); +}; +const ForwardRef = forwardRef(SvgAgile); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AirConditioner.tsx b/packages/iconoir-react-native/src/AirConditioner.tsx index 67cf4f7f..96ba7cfe 100644 --- a/packages/iconoir-react-native/src/AirConditioner.tsx +++ b/packages/iconoir-react-native/src/AirConditioner.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirConditioner( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAirConditioner = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAirConditioner( ); -} -const ForwardRef = React.forwardRef(SvgAirConditioner); +}; +const ForwardRef = forwardRef(SvgAirConditioner); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Airplane.tsx b/packages/iconoir-react-native/src/Airplane.tsx index 7732562e..7581ff8e 100644 --- a/packages/iconoir-react-native/src/Airplane.tsx +++ b/packages/iconoir-react-native/src/Airplane.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplane( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAirplane = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAirplane( ); -} -const ForwardRef = React.forwardRef(SvgAirplane); +}; +const ForwardRef = forwardRef(SvgAirplane); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AirplaneHelix.tsx b/packages/iconoir-react-native/src/AirplaneHelix.tsx index d08546bb..fc4df480 100644 --- a/packages/iconoir-react-native/src/AirplaneHelix.tsx +++ b/packages/iconoir-react-native/src/AirplaneHelix.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplaneHelix( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAirplaneHelix = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,30 +13,30 @@ function SvgAirplaneHelix( ); -} -const ForwardRef = React.forwardRef(SvgAirplaneHelix); +}; +const ForwardRef = forwardRef(SvgAirplaneHelix); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AirplaneHelix45Deg.tsx b/packages/iconoir-react-native/src/AirplaneHelix45Deg.tsx index 610f175e..97fa21e1 100644 --- a/packages/iconoir-react-native/src/AirplaneHelix45Deg.tsx +++ b/packages/iconoir-react-native/src/AirplaneHelix45Deg.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplaneHelix45Deg( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAirplaneHelix45Deg = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,30 +13,30 @@ function SvgAirplaneHelix45Deg( ); -} -const ForwardRef = React.forwardRef(SvgAirplaneHelix45Deg); +}; +const ForwardRef = forwardRef(SvgAirplaneHelix45Deg); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AirplaneOff.tsx b/packages/iconoir-react-native/src/AirplaneOff.tsx index fb05c3a6..cb37dff6 100644 --- a/packages/iconoir-react-native/src/AirplaneOff.tsx +++ b/packages/iconoir-react-native/src/AirplaneOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplaneOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAirplaneOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAirplaneOff( ); -} -const ForwardRef = React.forwardRef(SvgAirplaneOff); +}; +const ForwardRef = forwardRef(SvgAirplaneOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AirplaneRotation.tsx b/packages/iconoir-react-native/src/AirplaneRotation.tsx index 8860b6aa..815730aa 100644 --- a/packages/iconoir-react-native/src/AirplaneRotation.tsx +++ b/packages/iconoir-react-native/src/AirplaneRotation.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplaneRotation( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAirplaneRotation = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,37 +13,37 @@ function SvgAirplaneRotation( ); -} -const ForwardRef = React.forwardRef(SvgAirplaneRotation); +}; +const ForwardRef = forwardRef(SvgAirplaneRotation); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Airplay.tsx b/packages/iconoir-react-native/src/Airplay.tsx index 7aa28069..0ee9d936 100644 --- a/packages/iconoir-react-native/src/Airplay.tsx +++ b/packages/iconoir-react-native/src/Airplay.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplay( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAirplay = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgAirplay( ); -} -const ForwardRef = React.forwardRef(SvgAirplay); +}; +const ForwardRef = forwardRef(SvgAirplay); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Alarm.tsx b/packages/iconoir-react-native/src/Alarm.tsx index 8f6ae16b..872d4736 100644 --- a/packages/iconoir-react-native/src/Alarm.tsx +++ b/packages/iconoir-react-native/src/Alarm.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlarm( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlarm = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAlarm( ); -} -const ForwardRef = React.forwardRef(SvgAlarm); +}; +const ForwardRef = forwardRef(SvgAlarm); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Album.tsx b/packages/iconoir-react-native/src/Album.tsx index a7c2a389..fe37fcb1 100644 --- a/packages/iconoir-react-native/src/Album.tsx +++ b/packages/iconoir-react-native/src/Album.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlbum( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlbum = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,24 +13,24 @@ function SvgAlbum( ); -} -const ForwardRef = React.forwardRef(SvgAlbum); +}; +const ForwardRef = forwardRef(SvgAlbum); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlbumCarousel.tsx b/packages/iconoir-react-native/src/AlbumCarousel.tsx index 7cc3a6e4..5439f9ec 100644 --- a/packages/iconoir-react-native/src/AlbumCarousel.tsx +++ b/packages/iconoir-react-native/src/AlbumCarousel.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlbumCarousel( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlbumCarousel = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,24 +13,24 @@ function SvgAlbumCarousel( ); -} -const ForwardRef = React.forwardRef(SvgAlbumCarousel); +}; +const ForwardRef = forwardRef(SvgAlbumCarousel); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlbumList.tsx b/packages/iconoir-react-native/src/AlbumList.tsx index 91e9efc7..d82418e5 100644 --- a/packages/iconoir-react-native/src/AlbumList.tsx +++ b/packages/iconoir-react-native/src/AlbumList.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlbumList( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlbumList = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,24 +13,24 @@ function SvgAlbumList( ); -} -const ForwardRef = React.forwardRef(SvgAlbumList); +}; +const ForwardRef = forwardRef(SvgAlbumList); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlbumOpen.tsx b/packages/iconoir-react-native/src/AlbumOpen.tsx index 1f1c10a4..ef24d17e 100644 --- a/packages/iconoir-react-native/src/AlbumOpen.tsx +++ b/packages/iconoir-react-native/src/AlbumOpen.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlbumOpen( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlbumOpen = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgAlbumOpen( + - ); -} -const ForwardRef = React.forwardRef(SvgAlbumOpen); +}; +const ForwardRef = forwardRef(SvgAlbumOpen); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignBottomBox.tsx b/packages/iconoir-react-native/src/AlignBottomBox.tsx index 4247e4e1..8186747a 100644 --- a/packages/iconoir-react-native/src/AlignBottomBox.tsx +++ b/packages/iconoir-react-native/src/AlignBottomBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignBottomBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignBottomBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAlignBottomBox( ); -} -const ForwardRef = React.forwardRef(SvgAlignBottomBox); +}; +const ForwardRef = forwardRef(SvgAlignBottomBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignCenter.tsx b/packages/iconoir-react-native/src/AlignCenter.tsx index 2e82c9d0..c7cfdcc1 100644 --- a/packages/iconoir-react-native/src/AlignCenter.tsx +++ b/packages/iconoir-react-native/src/AlignCenter.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignCenter( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignCenter = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAlignCenter( ); -} -const ForwardRef = React.forwardRef(SvgAlignCenter); +}; +const ForwardRef = forwardRef(SvgAlignCenter); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignHorizontalCenters.tsx b/packages/iconoir-react-native/src/AlignHorizontalCenters.tsx index b8868958..f9eb5403 100644 --- a/packages/iconoir-react-native/src/AlignHorizontalCenters.tsx +++ b/packages/iconoir-react-native/src/AlignHorizontalCenters.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignHorizontalCenters( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignHorizontalCenters = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgAlignHorizontalCenters( ); -} -const ForwardRef = React.forwardRef(SvgAlignHorizontalCenters); +}; +const ForwardRef = forwardRef(SvgAlignHorizontalCenters); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignHorizontalSpacing.tsx b/packages/iconoir-react-native/src/AlignHorizontalSpacing.tsx index 1ebbc1f1..7ab8e401 100644 --- a/packages/iconoir-react-native/src/AlignHorizontalSpacing.tsx +++ b/packages/iconoir-react-native/src/AlignHorizontalSpacing.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignHorizontalSpacing( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignHorizontalSpacing = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgAlignHorizontalSpacing( ); -} -const ForwardRef = React.forwardRef(SvgAlignHorizontalSpacing); +}; +const ForwardRef = forwardRef(SvgAlignHorizontalSpacing); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignJustify.tsx b/packages/iconoir-react-native/src/AlignJustify.tsx index 96b90503..792e6714 100644 --- a/packages/iconoir-react-native/src/AlignJustify.tsx +++ b/packages/iconoir-react-native/src/AlignJustify.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignJustify( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignJustify = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAlignJustify( ); -} -const ForwardRef = React.forwardRef(SvgAlignJustify); +}; +const ForwardRef = forwardRef(SvgAlignJustify); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignLeft.tsx b/packages/iconoir-react-native/src/AlignLeft.tsx index b9ad113d..2770fb0b 100644 --- a/packages/iconoir-react-native/src/AlignLeft.tsx +++ b/packages/iconoir-react-native/src/AlignLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAlignLeft( ); -} -const ForwardRef = React.forwardRef(SvgAlignLeft); +}; +const ForwardRef = forwardRef(SvgAlignLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignLeftBox.tsx b/packages/iconoir-react-native/src/AlignLeftBox.tsx index 089e2c52..f03f3dae 100644 --- a/packages/iconoir-react-native/src/AlignLeftBox.tsx +++ b/packages/iconoir-react-native/src/AlignLeftBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignLeftBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignLeftBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAlignLeftBox( ); -} -const ForwardRef = React.forwardRef(SvgAlignLeftBox); +}; +const ForwardRef = forwardRef(SvgAlignLeftBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignRight.tsx b/packages/iconoir-react-native/src/AlignRight.tsx index 6101a67e..31b6060b 100644 --- a/packages/iconoir-react-native/src/AlignRight.tsx +++ b/packages/iconoir-react-native/src/AlignRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAlignRight( ); -} -const ForwardRef = React.forwardRef(SvgAlignRight); +}; +const ForwardRef = forwardRef(SvgAlignRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignRightBox.tsx b/packages/iconoir-react-native/src/AlignRightBox.tsx index 88bf954f..313d9823 100644 --- a/packages/iconoir-react-native/src/AlignRightBox.tsx +++ b/packages/iconoir-react-native/src/AlignRightBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignRightBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignRightBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAlignRightBox( ); -} -const ForwardRef = React.forwardRef(SvgAlignRightBox); +}; +const ForwardRef = forwardRef(SvgAlignRightBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignTopBox.tsx b/packages/iconoir-react-native/src/AlignTopBox.tsx index ce117c68..19a6f40b 100644 --- a/packages/iconoir-react-native/src/AlignTopBox.tsx +++ b/packages/iconoir-react-native/src/AlignTopBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignTopBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignTopBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAlignTopBox( ); -} -const ForwardRef = React.forwardRef(SvgAlignTopBox); +}; +const ForwardRef = forwardRef(SvgAlignTopBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignVerticalCenters.tsx b/packages/iconoir-react-native/src/AlignVerticalCenters.tsx index 65af0332..08a60685 100644 --- a/packages/iconoir-react-native/src/AlignVerticalCenters.tsx +++ b/packages/iconoir-react-native/src/AlignVerticalCenters.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignVerticalCenters( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignVerticalCenters = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgAlignVerticalCenters( ); -} -const ForwardRef = React.forwardRef(SvgAlignVerticalCenters); +}; +const ForwardRef = forwardRef(SvgAlignVerticalCenters); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AlignVerticalSpacing.tsx b/packages/iconoir-react-native/src/AlignVerticalSpacing.tsx index e3386397..54757bd6 100644 --- a/packages/iconoir-react-native/src/AlignVerticalSpacing.tsx +++ b/packages/iconoir-react-native/src/AlignVerticalSpacing.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignVerticalSpacing( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAlignVerticalSpacing = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgAlignVerticalSpacing( ); -} -const ForwardRef = React.forwardRef(SvgAlignVerticalSpacing); +}; +const ForwardRef = forwardRef(SvgAlignVerticalSpacing); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AngleTool.tsx b/packages/iconoir-react-native/src/AngleTool.tsx index b838fa56..739caf41 100644 --- a/packages/iconoir-react-native/src/AngleTool.tsx +++ b/packages/iconoir-react-native/src/AngleTool.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAngleTool( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAngleTool = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgAngleTool( ); -} -const ForwardRef = React.forwardRef(SvgAngleTool); +}; +const ForwardRef = forwardRef(SvgAngleTool); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Antenna.tsx b/packages/iconoir-react-native/src/Antenna.tsx index c427aa2c..b483bd32 100644 --- a/packages/iconoir-react-native/src/Antenna.tsx +++ b/packages/iconoir-react-native/src/Antenna.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAntenna( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAntenna = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgAntenna( ); -} -const ForwardRef = React.forwardRef(SvgAntenna); +}; +const ForwardRef = forwardRef(SvgAntenna); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AntennaOff.tsx b/packages/iconoir-react-native/src/AntennaOff.tsx index 197cee15..4938d719 100644 --- a/packages/iconoir-react-native/src/AntennaOff.tsx +++ b/packages/iconoir-react-native/src/AntennaOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAntennaOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAntennaOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgAntennaOff( ); -} -const ForwardRef = React.forwardRef(SvgAntennaOff); +}; +const ForwardRef = forwardRef(SvgAntennaOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AntennaSignal.tsx b/packages/iconoir-react-native/src/AntennaSignal.tsx index 822e7bf1..02f4a093 100644 --- a/packages/iconoir-react-native/src/AntennaSignal.tsx +++ b/packages/iconoir-react-native/src/AntennaSignal.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAntennaSignal( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAntennaSignal = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgAntennaSignal( ); -} -const ForwardRef = React.forwardRef(SvgAntennaSignal); +}; +const ForwardRef = forwardRef(SvgAntennaSignal); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AntennaSignalTag.tsx b/packages/iconoir-react-native/src/AntennaSignalTag.tsx index e94440d7..718fb211 100644 --- a/packages/iconoir-react-native/src/AntennaSignalTag.tsx +++ b/packages/iconoir-react-native/src/AntennaSignalTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAntennaSignalTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAntennaSignalTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgAntennaSignalTag( ); -} -const ForwardRef = React.forwardRef(SvgAntennaSignalTag); +}; +const ForwardRef = forwardRef(SvgAntennaSignalTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppNotification.tsx b/packages/iconoir-react-native/src/AppNotification.tsx index 51d67cdf..bf52ac3a 100644 --- a/packages/iconoir-react-native/src/AppNotification.tsx +++ b/packages/iconoir-react-native/src/AppNotification.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppNotification( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppNotification = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAppNotification( ); -} -const ForwardRef = React.forwardRef(SvgAppNotification); +}; +const ForwardRef = forwardRef(SvgAppNotification); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppStore.tsx b/packages/iconoir-react-native/src/AppStore.tsx index 033e8417..50c40bdc 100644 --- a/packages/iconoir-react-native/src/AppStore.tsx +++ b/packages/iconoir-react-native/src/AppStore.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppStore( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppStore = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAppStore( ); -} -const ForwardRef = React.forwardRef(SvgAppStore); +}; +const ForwardRef = forwardRef(SvgAppStore); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppWindow.tsx b/packages/iconoir-react-native/src/AppWindow.tsx index ac7b0718..38130a68 100644 --- a/packages/iconoir-react-native/src/AppWindow.tsx +++ b/packages/iconoir-react-native/src/AppWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgAppWindow( ); -} -const ForwardRef = React.forwardRef(SvgAppWindow); +}; +const ForwardRef = forwardRef(SvgAppWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Apple.tsx b/packages/iconoir-react-native/src/Apple.tsx index be2710d6..e22820d6 100644 --- a/packages/iconoir-react-native/src/Apple.tsx +++ b/packages/iconoir-react-native/src/Apple.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgApple( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgApple = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgApple( ); -} -const ForwardRef = React.forwardRef(SvgApple); +}; +const ForwardRef = forwardRef(SvgApple); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppleHalf.tsx b/packages/iconoir-react-native/src/AppleHalf.tsx index 253ed3ea..0b56d4cc 100644 --- a/packages/iconoir-react-native/src/AppleHalf.tsx +++ b/packages/iconoir-react-native/src/AppleHalf.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleHalf( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppleHalf = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgAppleHalf( - + ); -} -const ForwardRef = React.forwardRef(SvgAppleHalf); +}; +const ForwardRef = forwardRef(SvgAppleHalf); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppleHalfAlt.tsx b/packages/iconoir-react-native/src/AppleHalfAlt.tsx index f1d894de..1cb9d201 100644 --- a/packages/iconoir-react-native/src/AppleHalfAlt.tsx +++ b/packages/iconoir-react-native/src/AppleHalfAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleHalfAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppleHalfAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgAppleHalfAlt( - + ); -} -const ForwardRef = React.forwardRef(SvgAppleHalfAlt); +}; +const ForwardRef = forwardRef(SvgAppleHalfAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppleImac2021.tsx b/packages/iconoir-react-native/src/AppleImac2021.tsx index 5d23d484..205b152b 100644 --- a/packages/iconoir-react-native/src/AppleImac2021.tsx +++ b/packages/iconoir-react-native/src/AppleImac2021.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleImac2021( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppleImac2021 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAppleImac2021( ); -} -const ForwardRef = React.forwardRef(SvgAppleImac2021); +}; +const ForwardRef = forwardRef(SvgAppleImac2021); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppleImac2021Side.tsx b/packages/iconoir-react-native/src/AppleImac2021Side.tsx index f9cc0931..374ccec6 100644 --- a/packages/iconoir-react-native/src/AppleImac2021Side.tsx +++ b/packages/iconoir-react-native/src/AppleImac2021Side.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleImac2021Side( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppleImac2021Side = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAppleImac2021Side( ); -} -const ForwardRef = React.forwardRef(SvgAppleImac2021Side); +}; +const ForwardRef = forwardRef(SvgAppleImac2021Side); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppleMac.tsx b/packages/iconoir-react-native/src/AppleMac.tsx index 81e4ad36..a991ce68 100644 --- a/packages/iconoir-react-native/src/AppleMac.tsx +++ b/packages/iconoir-react-native/src/AppleMac.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleMac( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppleMac = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,23 @@ function SvgAppleMac( ); -} -const ForwardRef = React.forwardRef(SvgAppleMac); +}; +const ForwardRef = forwardRef(SvgAppleMac); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppleShortcuts.tsx b/packages/iconoir-react-native/src/AppleShortcuts.tsx index c11aaf1b..4f901cba 100644 --- a/packages/iconoir-react-native/src/AppleShortcuts.tsx +++ b/packages/iconoir-react-native/src/AppleShortcuts.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleShortcuts( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppleShortcuts = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,24 @@ function SvgAppleShortcuts( - - - + + + - + ); -} -const ForwardRef = React.forwardRef(SvgAppleShortcuts); +}; +const ForwardRef = forwardRef(SvgAppleShortcuts); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppleSwift.tsx b/packages/iconoir-react-native/src/AppleSwift.tsx index 7800be3d..a821e7cd 100644 --- a/packages/iconoir-react-native/src/AppleSwift.tsx +++ b/packages/iconoir-react-native/src/AppleSwift.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleSwift( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppleSwift = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAppleSwift( ); -} -const ForwardRef = React.forwardRef(SvgAppleSwift); +}; +const ForwardRef = forwardRef(SvgAppleSwift); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AppleWallet.tsx b/packages/iconoir-react-native/src/AppleWallet.tsx index 7e4d186d..88d3bca9 100644 --- a/packages/iconoir-react-native/src/AppleWallet.tsx +++ b/packages/iconoir-react-native/src/AppleWallet.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleWallet( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAppleWallet = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,24 +12,24 @@ function SvgAppleWallet( return ( ); -} -const ForwardRef = React.forwardRef(SvgAppleWallet); +}; +const ForwardRef = forwardRef(SvgAppleWallet); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArSymbol.tsx b/packages/iconoir-react-native/src/ArSymbol.tsx index 7db57a5c..4de9c0b8 100644 --- a/packages/iconoir-react-native/src/ArSymbol.tsx +++ b/packages/iconoir-react-native/src/ArSymbol.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArSymbol( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArSymbol = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgArSymbol( ); -} -const ForwardRef = React.forwardRef(SvgArSymbol); +}; +const ForwardRef = forwardRef(SvgArSymbol); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Arcade.tsx b/packages/iconoir-react-native/src/Arcade.tsx index f629baa5..52992b3c 100644 --- a/packages/iconoir-react-native/src/Arcade.tsx +++ b/packages/iconoir-react-native/src/Arcade.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArcade( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArcade = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,36 +13,36 @@ function SvgArcade( - + ); -} -const ForwardRef = React.forwardRef(SvgArcade); +}; +const ForwardRef = forwardRef(SvgArcade); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Archery.tsx b/packages/iconoir-react-native/src/Archery.tsx index baea76b2..94f95f9d 100644 --- a/packages/iconoir-react-native/src/Archery.tsx +++ b/packages/iconoir-react-native/src/Archery.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArchery( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArchery = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArchery( ); -} -const ForwardRef = React.forwardRef(SvgArchery); +}; +const ForwardRef = forwardRef(SvgArchery); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArcheryMatch.tsx b/packages/iconoir-react-native/src/ArcheryMatch.tsx index 86e5e6c6..30f2440e 100644 --- a/packages/iconoir-react-native/src/ArcheryMatch.tsx +++ b/packages/iconoir-react-native/src/ArcheryMatch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArcheryMatch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArcheryMatch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArcheryMatch( ); -} -const ForwardRef = React.forwardRef(SvgArcheryMatch); +}; +const ForwardRef = forwardRef(SvgArcheryMatch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Archive.tsx b/packages/iconoir-react-native/src/Archive.tsx index 5484a7be..a9769019 100644 --- a/packages/iconoir-react-native/src/Archive.tsx +++ b/packages/iconoir-react-native/src/Archive.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArchive( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArchive = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgArchive( ); -} -const ForwardRef = React.forwardRef(SvgArchive); +}; +const ForwardRef = forwardRef(SvgArchive); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AreaSearch.tsx b/packages/iconoir-react-native/src/AreaSearch.tsx index c05c0cf4..afd31e48 100644 --- a/packages/iconoir-react-native/src/AreaSearch.tsx +++ b/packages/iconoir-react-native/src/AreaSearch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAreaSearch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAreaSearch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAreaSearch( ); -} -const ForwardRef = React.forwardRef(SvgAreaSearch); +}; +const ForwardRef = forwardRef(SvgAreaSearch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowArchery.tsx b/packages/iconoir-react-native/src/ArrowArchery.tsx index 7ff8169c..60c955b6 100644 --- a/packages/iconoir-react-native/src/ArrowArchery.tsx +++ b/packages/iconoir-react-native/src/ArrowArchery.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowArchery( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowArchery = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowArchery( ); -} -const ForwardRef = React.forwardRef(SvgArrowArchery); +}; +const ForwardRef = forwardRef(SvgArrowArchery); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowBl.tsx b/packages/iconoir-react-native/src/ArrowBl.tsx index 8056e2a9..1a169628 100644 --- a/packages/iconoir-react-native/src/ArrowBl.tsx +++ b/packages/iconoir-react-native/src/ArrowBl.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBl( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowBl = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowBl( ); -} -const ForwardRef = React.forwardRef(SvgArrowBl); +}; +const ForwardRef = forwardRef(SvgArrowBl); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowBlCircle.tsx b/packages/iconoir-react-native/src/ArrowBlCircle.tsx index 6fa71aea..e25880b6 100644 --- a/packages/iconoir-react-native/src/ArrowBlCircle.tsx +++ b/packages/iconoir-react-native/src/ArrowBlCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBlCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowBlCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowBlCircle( ); -} -const ForwardRef = React.forwardRef(SvgArrowBlCircle); +}; +const ForwardRef = forwardRef(SvgArrowBlCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowBlSquare.tsx b/packages/iconoir-react-native/src/ArrowBlSquare.tsx index faf59ef3..4f04ff23 100644 --- a/packages/iconoir-react-native/src/ArrowBlSquare.tsx +++ b/packages/iconoir-react-native/src/ArrowBlSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBlSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowBlSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowBlSquare( ); -} -const ForwardRef = React.forwardRef(SvgArrowBlSquare); +}; +const ForwardRef = forwardRef(SvgArrowBlSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowBr.tsx b/packages/iconoir-react-native/src/ArrowBr.tsx index ed87d238..5070a601 100644 --- a/packages/iconoir-react-native/src/ArrowBr.tsx +++ b/packages/iconoir-react-native/src/ArrowBr.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBr( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowBr = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowBr( ); -} -const ForwardRef = React.forwardRef(SvgArrowBr); +}; +const ForwardRef = forwardRef(SvgArrowBr); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowBrCircle.tsx b/packages/iconoir-react-native/src/ArrowBrCircle.tsx index 4c6a9532..c8d8b128 100644 --- a/packages/iconoir-react-native/src/ArrowBrCircle.tsx +++ b/packages/iconoir-react-native/src/ArrowBrCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBrCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowBrCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowBrCircle( ); -} -const ForwardRef = React.forwardRef(SvgArrowBrCircle); +}; +const ForwardRef = forwardRef(SvgArrowBrCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowBrSquare.tsx b/packages/iconoir-react-native/src/ArrowBrSquare.tsx index 69a85358..9ec832bb 100644 --- a/packages/iconoir-react-native/src/ArrowBrSquare.tsx +++ b/packages/iconoir-react-native/src/ArrowBrSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBrSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowBrSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowBrSquare( ); -} -const ForwardRef = React.forwardRef(SvgArrowBrSquare); +}; +const ForwardRef = forwardRef(SvgArrowBrSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowDown.tsx b/packages/iconoir-react-native/src/ArrowDown.tsx index 16d768df..c4181a2a 100644 --- a/packages/iconoir-react-native/src/ArrowDown.tsx +++ b/packages/iconoir-react-native/src/ArrowDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowDown( ); -} -const ForwardRef = React.forwardRef(SvgArrowDown); +}; +const ForwardRef = forwardRef(SvgArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowDownCircle.tsx b/packages/iconoir-react-native/src/ArrowDownCircle.tsx index 417b14a2..0212c6c3 100644 --- a/packages/iconoir-react-native/src/ArrowDownCircle.tsx +++ b/packages/iconoir-react-native/src/ArrowDownCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowDownCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowDownCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowDownCircle( ); -} -const ForwardRef = React.forwardRef(SvgArrowDownCircle); +}; +const ForwardRef = forwardRef(SvgArrowDownCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowEmailForward.tsx b/packages/iconoir-react-native/src/ArrowEmailForward.tsx index 5ec6ae1c..aac54204 100644 --- a/packages/iconoir-react-native/src/ArrowEmailForward.tsx +++ b/packages/iconoir-react-native/src/ArrowEmailForward.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowEmailForward( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowEmailForward = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowEmailForward( ); -} -const ForwardRef = React.forwardRef(SvgArrowEmailForward); +}; +const ForwardRef = forwardRef(SvgArrowEmailForward); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowLeft.tsx b/packages/iconoir-react-native/src/ArrowLeft.tsx index 369b7aa5..291910f0 100644 --- a/packages/iconoir-react-native/src/ArrowLeft.tsx +++ b/packages/iconoir-react-native/src/ArrowLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowLeft( ); -} -const ForwardRef = React.forwardRef(SvgArrowLeft); +}; +const ForwardRef = forwardRef(SvgArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowLeftCircle.tsx b/packages/iconoir-react-native/src/ArrowLeftCircle.tsx index aedbd900..44844a6f 100644 --- a/packages/iconoir-react-native/src/ArrowLeftCircle.tsx +++ b/packages/iconoir-react-native/src/ArrowLeftCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowLeftCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowLeftCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowLeftCircle( ); -} -const ForwardRef = React.forwardRef(SvgArrowLeftCircle); +}; +const ForwardRef = forwardRef(SvgArrowLeftCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowRight.tsx b/packages/iconoir-react-native/src/ArrowRight.tsx index 7b486874..c02db91c 100644 --- a/packages/iconoir-react-native/src/ArrowRight.tsx +++ b/packages/iconoir-react-native/src/ArrowRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowRight( ); -} -const ForwardRef = React.forwardRef(SvgArrowRight); +}; +const ForwardRef = forwardRef(SvgArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowRightCircle.tsx b/packages/iconoir-react-native/src/ArrowRightCircle.tsx index c46feab4..61f9bdcd 100644 --- a/packages/iconoir-react-native/src/ArrowRightCircle.tsx +++ b/packages/iconoir-react-native/src/ArrowRightCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowRightCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowRightCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowRightCircle( ); -} -const ForwardRef = React.forwardRef(SvgArrowRightCircle); +}; +const ForwardRef = forwardRef(SvgArrowRightCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowSeparate.tsx b/packages/iconoir-react-native/src/ArrowSeparate.tsx index 8ce4ab0e..f700c82a 100644 --- a/packages/iconoir-react-native/src/ArrowSeparate.tsx +++ b/packages/iconoir-react-native/src/ArrowSeparate.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowSeparate( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowSeparate = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowSeparate( ); -} -const ForwardRef = React.forwardRef(SvgArrowSeparate); +}; +const ForwardRef = forwardRef(SvgArrowSeparate); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowSeparateVertical.tsx b/packages/iconoir-react-native/src/ArrowSeparateVertical.tsx index d65cdc44..bef4f9ac 100644 --- a/packages/iconoir-react-native/src/ArrowSeparateVertical.tsx +++ b/packages/iconoir-react-native/src/ArrowSeparateVertical.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowSeparateVertical( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowSeparateVertical = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowSeparateVertical( ); -} -const ForwardRef = React.forwardRef(SvgArrowSeparateVertical); +}; +const ForwardRef = forwardRef(SvgArrowSeparateVertical); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowTl.tsx b/packages/iconoir-react-native/src/ArrowTl.tsx index af326242..9f3678e4 100644 --- a/packages/iconoir-react-native/src/ArrowTl.tsx +++ b/packages/iconoir-react-native/src/ArrowTl.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTl( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowTl = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowTl( ); -} -const ForwardRef = React.forwardRef(SvgArrowTl); +}; +const ForwardRef = forwardRef(SvgArrowTl); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowTlCircle.tsx b/packages/iconoir-react-native/src/ArrowTlCircle.tsx index de313d52..f5e9e419 100644 --- a/packages/iconoir-react-native/src/ArrowTlCircle.tsx +++ b/packages/iconoir-react-native/src/ArrowTlCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTlCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowTlCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowTlCircle( ); -} -const ForwardRef = React.forwardRef(SvgArrowTlCircle); +}; +const ForwardRef = forwardRef(SvgArrowTlCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowTlSquare.tsx b/packages/iconoir-react-native/src/ArrowTlSquare.tsx index 4c666959..dfd2ffd8 100644 --- a/packages/iconoir-react-native/src/ArrowTlSquare.tsx +++ b/packages/iconoir-react-native/src/ArrowTlSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTlSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowTlSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowTlSquare( ); -} -const ForwardRef = React.forwardRef(SvgArrowTlSquare); +}; +const ForwardRef = forwardRef(SvgArrowTlSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowTr.tsx b/packages/iconoir-react-native/src/ArrowTr.tsx index 31d8b802..b6ce947e 100644 --- a/packages/iconoir-react-native/src/ArrowTr.tsx +++ b/packages/iconoir-react-native/src/ArrowTr.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTr( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowTr = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowTr( ); -} -const ForwardRef = React.forwardRef(SvgArrowTr); +}; +const ForwardRef = forwardRef(SvgArrowTr); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowTrCircle.tsx b/packages/iconoir-react-native/src/ArrowTrCircle.tsx index 83c290ef..bed242d5 100644 --- a/packages/iconoir-react-native/src/ArrowTrCircle.tsx +++ b/packages/iconoir-react-native/src/ArrowTrCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTrCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowTrCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowTrCircle( ); -} -const ForwardRef = React.forwardRef(SvgArrowTrCircle); +}; +const ForwardRef = forwardRef(SvgArrowTrCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowTrSquare.tsx b/packages/iconoir-react-native/src/ArrowTrSquare.tsx index 71e98a41..df4d1fd5 100644 --- a/packages/iconoir-react-native/src/ArrowTrSquare.tsx +++ b/packages/iconoir-react-native/src/ArrowTrSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTrSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowTrSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowTrSquare( ); -} -const ForwardRef = React.forwardRef(SvgArrowTrSquare); +}; +const ForwardRef = forwardRef(SvgArrowTrSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowUnion.tsx b/packages/iconoir-react-native/src/ArrowUnion.tsx index 0f2a2671..ac355331 100644 --- a/packages/iconoir-react-native/src/ArrowUnion.tsx +++ b/packages/iconoir-react-native/src/ArrowUnion.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowUnion( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowUnion = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowUnion( ); -} -const ForwardRef = React.forwardRef(SvgArrowUnion); +}; +const ForwardRef = forwardRef(SvgArrowUnion); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowUnionVertical.tsx b/packages/iconoir-react-native/src/ArrowUnionVertical.tsx index b8ee89bb..3cd82c5d 100644 --- a/packages/iconoir-react-native/src/ArrowUnionVertical.tsx +++ b/packages/iconoir-react-native/src/ArrowUnionVertical.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowUnionVertical( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowUnionVertical = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowUnionVertical( ); -} -const ForwardRef = React.forwardRef(SvgArrowUnionVertical); +}; +const ForwardRef = forwardRef(SvgArrowUnionVertical); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowUp.tsx b/packages/iconoir-react-native/src/ArrowUp.tsx index a039b10d..c6e2aab6 100644 --- a/packages/iconoir-react-native/src/ArrowUp.tsx +++ b/packages/iconoir-react-native/src/ArrowUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowUp( ); -} -const ForwardRef = React.forwardRef(SvgArrowUp); +}; +const ForwardRef = forwardRef(SvgArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowUpCircle.tsx b/packages/iconoir-react-native/src/ArrowUpCircle.tsx index 53a12f21..790e2f46 100644 --- a/packages/iconoir-react-native/src/ArrowUpCircle.tsx +++ b/packages/iconoir-react-native/src/ArrowUpCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowUpCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowUpCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowUpCircle( ); -} -const ForwardRef = React.forwardRef(SvgArrowUpCircle); +}; +const ForwardRef = forwardRef(SvgArrowUpCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ArrowsUpFromLine.tsx b/packages/iconoir-react-native/src/ArrowsUpFromLine.tsx index 5b9e9d56..7d433f13 100644 --- a/packages/iconoir-react-native/src/ArrowsUpFromLine.tsx +++ b/packages/iconoir-react-native/src/ArrowsUpFromLine.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowsUpFromLine( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgArrowsUpFromLine = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgArrowsUpFromLine( ); -} -const ForwardRef = React.forwardRef(SvgArrowsUpFromLine); +}; +const ForwardRef = forwardRef(SvgArrowsUpFromLine); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Asana.tsx b/packages/iconoir-react-native/src/Asana.tsx index 90f0ae08..9c3219ea 100644 --- a/packages/iconoir-react-native/src/Asana.tsx +++ b/packages/iconoir-react-native/src/Asana.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAsana( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAsana = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAsana( ); -} -const ForwardRef = React.forwardRef(SvgAsana); +}; +const ForwardRef = forwardRef(SvgAsana); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AtSign.tsx b/packages/iconoir-react-native/src/AtSign.tsx index cf6d6a71..91f8a40b 100644 --- a/packages/iconoir-react-native/src/AtSign.tsx +++ b/packages/iconoir-react-native/src/AtSign.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAtSign( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAtSign = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgAtSign( ); -} -const ForwardRef = React.forwardRef(SvgAtSign); +}; +const ForwardRef = forwardRef(SvgAtSign); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AtSignCircle.tsx b/packages/iconoir-react-native/src/AtSignCircle.tsx index 5bc58507..04b3358c 100644 --- a/packages/iconoir-react-native/src/AtSignCircle.tsx +++ b/packages/iconoir-react-native/src/AtSignCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAtSignCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAtSignCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgAtSignCircle( ); -} -const ForwardRef = React.forwardRef(SvgAtSignCircle); +}; +const ForwardRef = forwardRef(SvgAtSignCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Atom.tsx b/packages/iconoir-react-native/src/Atom.tsx index 7aec4825..4fac98a9 100644 --- a/packages/iconoir-react-native/src/Atom.tsx +++ b/packages/iconoir-react-native/src/Atom.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAtom( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAtom = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,34 +12,34 @@ function SvgAtom( return ( + - ); -} -const ForwardRef = React.forwardRef(SvgAtom); +}; +const ForwardRef = forwardRef(SvgAtom); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Attachment.tsx b/packages/iconoir-react-native/src/Attachment.tsx index 7dff7f78..e9933eb8 100644 --- a/packages/iconoir-react-native/src/Attachment.tsx +++ b/packages/iconoir-react-native/src/Attachment.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAttachment( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAttachment = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAttachment( ); -} -const ForwardRef = React.forwardRef(SvgAttachment); +}; +const ForwardRef = forwardRef(SvgAttachment); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AugmentedReality.tsx b/packages/iconoir-react-native/src/AugmentedReality.tsx index 6770fbf5..5f7afa7e 100644 --- a/packages/iconoir-react-native/src/AugmentedReality.tsx +++ b/packages/iconoir-react-native/src/AugmentedReality.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAugmentedReality( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAugmentedReality = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgAugmentedReality( ); -} -const ForwardRef = React.forwardRef(SvgAugmentedReality); +}; +const ForwardRef = forwardRef(SvgAugmentedReality); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AutoFlash.tsx b/packages/iconoir-react-native/src/AutoFlash.tsx index 534f66c2..0f351a31 100644 --- a/packages/iconoir-react-native/src/AutoFlash.tsx +++ b/packages/iconoir-react-native/src/AutoFlash.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAutoFlash( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAutoFlash = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAutoFlash( ); -} -const ForwardRef = React.forwardRef(SvgAutoFlash); +}; +const ForwardRef = forwardRef(SvgAutoFlash); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/AviFormat.tsx b/packages/iconoir-react-native/src/AviFormat.tsx index e76d753c..406d9678 100644 --- a/packages/iconoir-react-native/src/AviFormat.tsx +++ b/packages/iconoir-react-native/src/AviFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAviFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAviFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgAviFormat( ); -} -const ForwardRef = React.forwardRef(SvgAviFormat); +}; +const ForwardRef = forwardRef(SvgAviFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Axes.tsx b/packages/iconoir-react-native/src/Axes.tsx index 9cf27e18..cb36e6ea 100644 --- a/packages/iconoir-react-native/src/Axes.tsx +++ b/packages/iconoir-react-native/src/Axes.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAxes( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgAxes = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgAxes( ); -} -const ForwardRef = React.forwardRef(SvgAxes); +}; +const ForwardRef = forwardRef(SvgAxes); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Backward15Seconds.tsx b/packages/iconoir-react-native/src/Backward15Seconds.tsx index 33f290e4..ae7e5c1d 100644 --- a/packages/iconoir-react-native/src/Backward15Seconds.tsx +++ b/packages/iconoir-react-native/src/Backward15Seconds.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBackward15Seconds( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBackward15Seconds = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgBackward15Seconds( return ( ); -} -const ForwardRef = React.forwardRef(SvgBackward15Seconds); +}; +const ForwardRef = forwardRef(SvgBackward15Seconds); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bag.tsx b/packages/iconoir-react-native/src/Bag.tsx index 588e2b8e..03711d6a 100644 --- a/packages/iconoir-react-native/src/Bag.tsx +++ b/packages/iconoir-react-native/src/Bag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgBag( - + ); -} -const ForwardRef = React.forwardRef(SvgBag); +}; +const ForwardRef = forwardRef(SvgBag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Balcony.tsx b/packages/iconoir-react-native/src/Balcony.tsx index 4439924a..0370bccd 100644 --- a/packages/iconoir-react-native/src/Balcony.tsx +++ b/packages/iconoir-react-native/src/Balcony.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBalcony( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBalcony = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBalcony( ); -} -const ForwardRef = React.forwardRef(SvgBalcony); +}; +const ForwardRef = forwardRef(SvgBalcony); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bank.tsx b/packages/iconoir-react-native/src/Bank.tsx index 55acf2b0..acde5333 100644 --- a/packages/iconoir-react-native/src/Bank.tsx +++ b/packages/iconoir-react-native/src/Bank.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBank( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBank = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBank( ); -} -const ForwardRef = React.forwardRef(SvgBank); +}; +const ForwardRef = forwardRef(SvgBank); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Barcode.tsx b/packages/iconoir-react-native/src/Barcode.tsx index b36ee36f..fa6a016e 100644 --- a/packages/iconoir-react-native/src/Barcode.tsx +++ b/packages/iconoir-react-native/src/Barcode.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBarcode( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBarcode = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBarcode( ); -} -const ForwardRef = React.forwardRef(SvgBarcode); +}; +const ForwardRef = forwardRef(SvgBarcode); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Basketball.tsx b/packages/iconoir-react-native/src/Basketball.tsx index 295b5432..26fdc6f5 100644 --- a/packages/iconoir-react-native/src/Basketball.tsx +++ b/packages/iconoir-react-native/src/Basketball.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBasketball( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBasketball = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,33 @@ function SvgBasketball( + + ); -} -const ForwardRef = React.forwardRef(SvgBasketball); +}; +const ForwardRef = forwardRef(SvgBasketball); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BasketballAlt.tsx b/packages/iconoir-react-native/src/BasketballAlt.tsx index 5b567e93..0d32fe15 100644 --- a/packages/iconoir-react-native/src/BasketballAlt.tsx +++ b/packages/iconoir-react-native/src/BasketballAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBasketballAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBasketballAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,30 @@ function SvgBasketballAlt( - + + + - + ); -} -const ForwardRef = React.forwardRef(SvgBasketballAlt); +}; +const ForwardRef = forwardRef(SvgBasketballAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BasketballField.tsx b/packages/iconoir-react-native/src/BasketballField.tsx index b2bb9189..33d2ae75 100644 --- a/packages/iconoir-react-native/src/BasketballField.tsx +++ b/packages/iconoir-react-native/src/BasketballField.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBasketballField( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBasketballField = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgBasketballField( ); -} -const ForwardRef = React.forwardRef(SvgBasketballField); +}; +const ForwardRef = forwardRef(SvgBasketballField); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bathroom.tsx b/packages/iconoir-react-native/src/Bathroom.tsx index fa42cb21..e714f843 100644 --- a/packages/iconoir-react-native/src/Bathroom.tsx +++ b/packages/iconoir-react-native/src/Bathroom.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBathroom( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBathroom = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgBathroom( ); -} -const ForwardRef = React.forwardRef(SvgBathroom); +}; +const ForwardRef = forwardRef(SvgBathroom); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Battery25.tsx b/packages/iconoir-react-native/src/Battery25.tsx index f712a9d3..af4782e6 100644 --- a/packages/iconoir-react-native/src/Battery25.tsx +++ b/packages/iconoir-react-native/src/Battery25.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBattery25( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBattery25 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgBattery25( ); -} -const ForwardRef = React.forwardRef(SvgBattery25); +}; +const ForwardRef = forwardRef(SvgBattery25); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Battery50.tsx b/packages/iconoir-react-native/src/Battery50.tsx index 5b230bb9..1867fc6f 100644 --- a/packages/iconoir-react-native/src/Battery50.tsx +++ b/packages/iconoir-react-native/src/Battery50.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBattery50( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBattery50 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgBattery50( ); -} -const ForwardRef = React.forwardRef(SvgBattery50); +}; +const ForwardRef = forwardRef(SvgBattery50); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Battery75.tsx b/packages/iconoir-react-native/src/Battery75.tsx index 236e94af..117ed237 100644 --- a/packages/iconoir-react-native/src/Battery75.tsx +++ b/packages/iconoir-react-native/src/Battery75.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBattery75( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBattery75 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgBattery75( ); -} -const ForwardRef = React.forwardRef(SvgBattery75); +}; +const ForwardRef = forwardRef(SvgBattery75); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BatteryCharging.tsx b/packages/iconoir-react-native/src/BatteryCharging.tsx index 47b7e429..93eda729 100644 --- a/packages/iconoir-react-native/src/BatteryCharging.tsx +++ b/packages/iconoir-react-native/src/BatteryCharging.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBatteryCharging( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBatteryCharging = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgBatteryCharging( + + - - ); -} -const ForwardRef = React.forwardRef(SvgBatteryCharging); +}; +const ForwardRef = forwardRef(SvgBatteryCharging); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BatteryEmpty.tsx b/packages/iconoir-react-native/src/BatteryEmpty.tsx index 5711dd22..7a1098ac 100644 --- a/packages/iconoir-react-native/src/BatteryEmpty.tsx +++ b/packages/iconoir-react-native/src/BatteryEmpty.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBatteryEmpty( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBatteryEmpty = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgBatteryEmpty( ); -} -const ForwardRef = React.forwardRef(SvgBatteryEmpty); +}; +const ForwardRef = forwardRef(SvgBatteryEmpty); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BatteryFull.tsx b/packages/iconoir-react-native/src/BatteryFull.tsx index 444bd9a2..3d6c6c67 100644 --- a/packages/iconoir-react-native/src/BatteryFull.tsx +++ b/packages/iconoir-react-native/src/BatteryFull.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBatteryFull( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBatteryFull = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgBatteryFull( ); -} -const ForwardRef = React.forwardRef(SvgBatteryFull); +}; +const ForwardRef = forwardRef(SvgBatteryFull); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BatteryIndicator.tsx b/packages/iconoir-react-native/src/BatteryIndicator.tsx index 6b93f9e3..382d585a 100644 --- a/packages/iconoir-react-native/src/BatteryIndicator.tsx +++ b/packages/iconoir-react-native/src/BatteryIndicator.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBatteryIndicator( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBatteryIndicator = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBatteryIndicator( ); -} -const ForwardRef = React.forwardRef(SvgBatteryIndicator); +}; +const ForwardRef = forwardRef(SvgBatteryIndicator); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BatteryWarning.tsx b/packages/iconoir-react-native/src/BatteryWarning.tsx index d3f1fe3e..df338aad 100644 --- a/packages/iconoir-react-native/src/BatteryWarning.tsx +++ b/packages/iconoir-react-native/src/BatteryWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBatteryWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBatteryWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgBatteryWarning( + + - - ); -} -const ForwardRef = React.forwardRef(SvgBatteryWarning); +}; +const ForwardRef = forwardRef(SvgBatteryWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bbq.tsx b/packages/iconoir-react-native/src/Bbq.tsx index f58f52e5..6dee7784 100644 --- a/packages/iconoir-react-native/src/Bbq.tsx +++ b/packages/iconoir-react-native/src/Bbq.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBbq( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBbq = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgBbq( - + ); -} -const ForwardRef = React.forwardRef(SvgBbq); +}; +const ForwardRef = forwardRef(SvgBbq); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BeachBag.tsx b/packages/iconoir-react-native/src/BeachBag.tsx index aa93c07d..1052d731 100644 --- a/packages/iconoir-react-native/src/BeachBag.tsx +++ b/packages/iconoir-react-native/src/BeachBag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBeachBag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBeachBag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgBeachBag( - + ); -} -const ForwardRef = React.forwardRef(SvgBeachBag); +}; +const ForwardRef = forwardRef(SvgBeachBag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BeachBagBig.tsx b/packages/iconoir-react-native/src/BeachBagBig.tsx index 4be066aa..63ccc80d 100644 --- a/packages/iconoir-react-native/src/BeachBagBig.tsx +++ b/packages/iconoir-react-native/src/BeachBagBig.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBeachBagBig( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBeachBagBig = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgBeachBagBig( ); -} -const ForwardRef = React.forwardRef(SvgBeachBagBig); +}; +const ForwardRef = forwardRef(SvgBeachBagBig); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bed.tsx b/packages/iconoir-react-native/src/Bed.tsx index c0821ad2..7c83bd22 100644 --- a/packages/iconoir-react-native/src/Bed.tsx +++ b/packages/iconoir-react-native/src/Bed.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBed( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBed = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgBed( ); -} -const ForwardRef = React.forwardRef(SvgBed); +}; +const ForwardRef = forwardRef(SvgBed); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BedReady.tsx b/packages/iconoir-react-native/src/BedReady.tsx index 8614ebb9..2603735a 100644 --- a/packages/iconoir-react-native/src/BedReady.tsx +++ b/packages/iconoir-react-native/src/BedReady.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBedReady( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBedReady = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgBedReady( ); -} -const ForwardRef = React.forwardRef(SvgBedReady); +}; +const ForwardRef = forwardRef(SvgBedReady); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Behance.tsx b/packages/iconoir-react-native/src/Behance.tsx index 721841da..0a950df0 100644 --- a/packages/iconoir-react-native/src/Behance.tsx +++ b/packages/iconoir-react-native/src/Behance.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBehance( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBehance = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBehance( ); -} -const ForwardRef = React.forwardRef(SvgBehance); +}; +const ForwardRef = forwardRef(SvgBehance); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BehanceTag.tsx b/packages/iconoir-react-native/src/BehanceTag.tsx index b1ddf4e7..025b9c36 100644 --- a/packages/iconoir-react-native/src/BehanceTag.tsx +++ b/packages/iconoir-react-native/src/BehanceTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBehanceTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBehanceTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgBehanceTag( ); -} -const ForwardRef = React.forwardRef(SvgBehanceTag); +}; +const ForwardRef = forwardRef(SvgBehanceTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bell.tsx b/packages/iconoir-react-native/src/Bell.tsx index 61194263..23b37fbe 100644 --- a/packages/iconoir-react-native/src/Bell.tsx +++ b/packages/iconoir-react-native/src/Bell.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBell( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBell = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBell( ); -} -const ForwardRef = React.forwardRef(SvgBell); +}; +const ForwardRef = forwardRef(SvgBell); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BellNotification.tsx b/packages/iconoir-react-native/src/BellNotification.tsx index 0cad9b4f..9f996ad1 100644 --- a/packages/iconoir-react-native/src/BellNotification.tsx +++ b/packages/iconoir-react-native/src/BellNotification.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBellNotification( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBellNotification = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBellNotification( ); -} -const ForwardRef = React.forwardRef(SvgBellNotification); +}; +const ForwardRef = forwardRef(SvgBellNotification); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BellOff.tsx b/packages/iconoir-react-native/src/BellOff.tsx index 55c3950e..5d3cd574 100644 --- a/packages/iconoir-react-native/src/BellOff.tsx +++ b/packages/iconoir-react-native/src/BellOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBellOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBellOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBellOff( ); -} -const ForwardRef = React.forwardRef(SvgBellOff); +}; +const ForwardRef = forwardRef(SvgBellOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bicycle.tsx b/packages/iconoir-react-native/src/Bicycle.tsx index 55ad3158..7abf45ef 100644 --- a/packages/iconoir-react-native/src/Bicycle.tsx +++ b/packages/iconoir-react-native/src/Bicycle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBicycle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBicycle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgBicycle( ); -} -const ForwardRef = React.forwardRef(SvgBicycle); +}; +const ForwardRef = forwardRef(SvgBicycle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bin.tsx b/packages/iconoir-react-native/src/Bin.tsx index 3fb469e0..cb9be280 100644 --- a/packages/iconoir-react-native/src/Bin.tsx +++ b/packages/iconoir-react-native/src/Bin.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBin( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBin = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,20 @@ function SvgBin( + ); -} -const ForwardRef = React.forwardRef(SvgBin); +}; +const ForwardRef = forwardRef(SvgBin); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BinAdd.tsx b/packages/iconoir-react-native/src/BinAdd.tsx index aa5b5c87..775322ab 100644 --- a/packages/iconoir-react-native/src/BinAdd.tsx +++ b/packages/iconoir-react-native/src/BinAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBinAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBinAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,26 @@ function SvgBinAdd( + ); -} -const ForwardRef = React.forwardRef(SvgBinAdd); +}; +const ForwardRef = forwardRef(SvgBinAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BinFull.tsx b/packages/iconoir-react-native/src/BinFull.tsx index b0ef221c..84fd6634 100644 --- a/packages/iconoir-react-native/src/BinFull.tsx +++ b/packages/iconoir-react-native/src/BinFull.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBinFull( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBinFull = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,20 @@ function SvgBinFull( + ); -} -const ForwardRef = React.forwardRef(SvgBinFull); +}; +const ForwardRef = forwardRef(SvgBinFull); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BinHalf.tsx b/packages/iconoir-react-native/src/BinHalf.tsx index 3c1602b0..45817f66 100644 --- a/packages/iconoir-react-native/src/BinHalf.tsx +++ b/packages/iconoir-react-native/src/BinHalf.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBinHalf( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBinHalf = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,23 @@ function SvgBinHalf( ); -} -const ForwardRef = React.forwardRef(SvgBinHalf); +}; +const ForwardRef = forwardRef(SvgBinHalf); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BinMinus.tsx b/packages/iconoir-react-native/src/BinMinus.tsx index 0432b4a6..852ce52a 100644 --- a/packages/iconoir-react-native/src/BinMinus.tsx +++ b/packages/iconoir-react-native/src/BinMinus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBinMinus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBinMinus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,26 @@ function SvgBinMinus( + ); -} -const ForwardRef = React.forwardRef(SvgBinMinus); +}; +const ForwardRef = forwardRef(SvgBinMinus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Binocular.tsx b/packages/iconoir-react-native/src/Binocular.tsx index 1210e53a..c3540a77 100644 --- a/packages/iconoir-react-native/src/Binocular.tsx +++ b/packages/iconoir-react-native/src/Binocular.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBinocular( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBinocular = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgBinocular( ); -} -const ForwardRef = React.forwardRef(SvgBinocular); +}; +const ForwardRef = forwardRef(SvgBinocular); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BirthdayCake.tsx b/packages/iconoir-react-native/src/BirthdayCake.tsx index 0ee7a058..3f43f7fa 100644 --- a/packages/iconoir-react-native/src/BirthdayCake.tsx +++ b/packages/iconoir-react-native/src/BirthdayCake.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBirthdayCake( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBirthdayCake = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgBirthdayCake( + ); -} -const ForwardRef = React.forwardRef(SvgBirthdayCake); +}; +const ForwardRef = forwardRef(SvgBirthdayCake); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bishop.tsx b/packages/iconoir-react-native/src/Bishop.tsx index 854d25f8..17edaffc 100644 --- a/packages/iconoir-react-native/src/Bishop.tsx +++ b/packages/iconoir-react-native/src/Bishop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBishop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBishop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgBishop( ); -} -const ForwardRef = React.forwardRef(SvgBishop); +}; +const ForwardRef = forwardRef(SvgBishop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bitbucket.tsx b/packages/iconoir-react-native/src/Bitbucket.tsx index 951ab93c..7552a6d4 100644 --- a/packages/iconoir-react-native/src/Bitbucket.tsx +++ b/packages/iconoir-react-native/src/Bitbucket.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBitbucket( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBitbucket = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgBitbucket( ); -} -const ForwardRef = React.forwardRef(SvgBitbucket); +}; +const ForwardRef = forwardRef(SvgBitbucket); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BitcoinCircle.tsx b/packages/iconoir-react-native/src/BitcoinCircle.tsx index 46afa78f..ec1211b5 100644 --- a/packages/iconoir-react-native/src/BitcoinCircle.tsx +++ b/packages/iconoir-react-native/src/BitcoinCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBitcoinCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBitcoinCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgBitcoinCircle( ); -} -const ForwardRef = React.forwardRef(SvgBitcoinCircle); +}; +const ForwardRef = forwardRef(SvgBitcoinCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BitcoinRotateOut.tsx b/packages/iconoir-react-native/src/BitcoinRotateOut.tsx index 69853a33..779c2a29 100644 --- a/packages/iconoir-react-native/src/BitcoinRotateOut.tsx +++ b/packages/iconoir-react-native/src/BitcoinRotateOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBitcoinRotateOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBitcoinRotateOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,43 +13,43 @@ function SvgBitcoinRotateOut( ); -} -const ForwardRef = React.forwardRef(SvgBitcoinRotateOut); +}; +const ForwardRef = forwardRef(SvgBitcoinRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bluetooth.tsx b/packages/iconoir-react-native/src/Bluetooth.tsx index 5051ac6f..c4b79498 100644 --- a/packages/iconoir-react-native/src/Bluetooth.tsx +++ b/packages/iconoir-react-native/src/Bluetooth.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBluetooth( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBluetooth = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBluetooth( ); -} -const ForwardRef = React.forwardRef(SvgBluetooth); +}; +const ForwardRef = forwardRef(SvgBluetooth); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BluetoothTag.tsx b/packages/iconoir-react-native/src/BluetoothTag.tsx index f0b3305b..568c381c 100644 --- a/packages/iconoir-react-native/src/BluetoothTag.tsx +++ b/packages/iconoir-react-native/src/BluetoothTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBluetoothTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBluetoothTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgBluetoothTag( ); -} -const ForwardRef = React.forwardRef(SvgBluetoothTag); +}; +const ForwardRef = forwardRef(SvgBluetoothTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bold.tsx b/packages/iconoir-react-native/src/Bold.tsx index c9923b31..0ef76788 100644 --- a/packages/iconoir-react-native/src/Bold.tsx +++ b/packages/iconoir-react-native/src/Bold.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBold( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBold = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgBold( ); -} -const ForwardRef = React.forwardRef(SvgBold); +}; +const ForwardRef = forwardRef(SvgBold); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BoldSquare.tsx b/packages/iconoir-react-native/src/BoldSquare.tsx index 406a37bc..f3096f0d 100644 --- a/packages/iconoir-react-native/src/BoldSquare.tsx +++ b/packages/iconoir-react-native/src/BoldSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBoldSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBoldSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,23 @@ function SvgBoldSquare( ); -} -const ForwardRef = React.forwardRef(SvgBoldSquare); +}; +const ForwardRef = forwardRef(SvgBoldSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bonfire.tsx b/packages/iconoir-react-native/src/Bonfire.tsx index e03e4440..7c5c00bb 100644 --- a/packages/iconoir-react-native/src/Bonfire.tsx +++ b/packages/iconoir-react-native/src/Bonfire.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBonfire( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBonfire = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,33 +12,33 @@ function SvgBonfire( return ( ); -} -const ForwardRef = React.forwardRef(SvgBonfire); +}; +const ForwardRef = forwardRef(SvgBonfire); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Book.tsx b/packages/iconoir-react-native/src/Book.tsx index 8285b400..ad87003d 100644 --- a/packages/iconoir-react-native/src/Book.tsx +++ b/packages/iconoir-react-native/src/Book.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBook( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBook = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgBook( return ( - + ); -} -const ForwardRef = React.forwardRef(SvgBook); +}; +const ForwardRef = forwardRef(SvgBook); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BookStack.tsx b/packages/iconoir-react-native/src/BookStack.tsx index 20bbfd80..bdc1afa1 100644 --- a/packages/iconoir-react-native/src/BookStack.tsx +++ b/packages/iconoir-react-native/src/BookStack.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBookStack( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBookStack = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,27 +12,27 @@ function SvgBookStack( return ( ); -} -const ForwardRef = React.forwardRef(SvgBookStack); +}; +const ForwardRef = forwardRef(SvgBookStack); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BookmarkBook.tsx b/packages/iconoir-react-native/src/BookmarkBook.tsx index 2317edce..f17280ac 100644 --- a/packages/iconoir-react-native/src/BookmarkBook.tsx +++ b/packages/iconoir-react-native/src/BookmarkBook.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBookmarkBook( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBookmarkBook = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,34 +12,34 @@ function SvgBookmarkBook( return ( - + ); -} -const ForwardRef = React.forwardRef(SvgBookmarkBook); +}; +const ForwardRef = forwardRef(SvgBookmarkBook); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BookmarkCircle.tsx b/packages/iconoir-react-native/src/BookmarkCircle.tsx index 7bf52414..7cbd690b 100644 --- a/packages/iconoir-react-native/src/BookmarkCircle.tsx +++ b/packages/iconoir-react-native/src/BookmarkCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBookmarkCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBookmarkCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgBookmarkCircle( ); -} -const ForwardRef = React.forwardRef(SvgBookmarkCircle); +}; +const ForwardRef = forwardRef(SvgBookmarkCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BookmarkEmpty.tsx b/packages/iconoir-react-native/src/BookmarkEmpty.tsx index 8a7077cc..7c9bbe30 100644 --- a/packages/iconoir-react-native/src/BookmarkEmpty.tsx +++ b/packages/iconoir-react-native/src/BookmarkEmpty.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBookmarkEmpty( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBookmarkEmpty = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBookmarkEmpty( ); -} -const ForwardRef = React.forwardRef(SvgBookmarkEmpty); +}; +const ForwardRef = forwardRef(SvgBookmarkEmpty); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BorderBl.tsx b/packages/iconoir-react-native/src/BorderBl.tsx index 0b005c8e..949a7a16 100644 --- a/packages/iconoir-react-native/src/BorderBl.tsx +++ b/packages/iconoir-react-native/src/BorderBl.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderBl( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBorderBl = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBorderBl( ); -} -const ForwardRef = React.forwardRef(SvgBorderBl); +}; +const ForwardRef = forwardRef(SvgBorderBl); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BorderBottom.tsx b/packages/iconoir-react-native/src/BorderBottom.tsx index 5b9fc9d4..bba29329 100644 --- a/packages/iconoir-react-native/src/BorderBottom.tsx +++ b/packages/iconoir-react-native/src/BorderBottom.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderBottom( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBorderBottom = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBorderBottom( ); -} -const ForwardRef = React.forwardRef(SvgBorderBottom); +}; +const ForwardRef = forwardRef(SvgBorderBottom); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BorderBr.tsx b/packages/iconoir-react-native/src/BorderBr.tsx index 75c593a6..d603e23b 100644 --- a/packages/iconoir-react-native/src/BorderBr.tsx +++ b/packages/iconoir-react-native/src/BorderBr.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderBr( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBorderBr = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBorderBr( ); -} -const ForwardRef = React.forwardRef(SvgBorderBr); +}; +const ForwardRef = forwardRef(SvgBorderBr); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BorderInner.tsx b/packages/iconoir-react-native/src/BorderInner.tsx index 86b8976c..1c03af7e 100644 --- a/packages/iconoir-react-native/src/BorderInner.tsx +++ b/packages/iconoir-react-native/src/BorderInner.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderInner( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBorderInner = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBorderInner( ); -} -const ForwardRef = React.forwardRef(SvgBorderInner); +}; +const ForwardRef = forwardRef(SvgBorderInner); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BorderLeft.tsx b/packages/iconoir-react-native/src/BorderLeft.tsx index 16e29ad9..07b3a135 100644 --- a/packages/iconoir-react-native/src/BorderLeft.tsx +++ b/packages/iconoir-react-native/src/BorderLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBorderLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBorderLeft( ); -} -const ForwardRef = React.forwardRef(SvgBorderLeft); +}; +const ForwardRef = forwardRef(SvgBorderLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BorderOut.tsx b/packages/iconoir-react-native/src/BorderOut.tsx index 7f63a108..7f5894d0 100644 --- a/packages/iconoir-react-native/src/BorderOut.tsx +++ b/packages/iconoir-react-native/src/BorderOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBorderOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBorderOut( ); -} -const ForwardRef = React.forwardRef(SvgBorderOut); +}; +const ForwardRef = forwardRef(SvgBorderOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BorderRight.tsx b/packages/iconoir-react-native/src/BorderRight.tsx index 43305707..015065c4 100644 --- a/packages/iconoir-react-native/src/BorderRight.tsx +++ b/packages/iconoir-react-native/src/BorderRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBorderRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBorderRight( ); -} -const ForwardRef = React.forwardRef(SvgBorderRight); +}; +const ForwardRef = forwardRef(SvgBorderRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BorderTl.tsx b/packages/iconoir-react-native/src/BorderTl.tsx index 09669399..d4e2f696 100644 --- a/packages/iconoir-react-native/src/BorderTl.tsx +++ b/packages/iconoir-react-native/src/BorderTl.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderTl( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBorderTl = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBorderTl( ); -} -const ForwardRef = React.forwardRef(SvgBorderTl); +}; +const ForwardRef = forwardRef(SvgBorderTl); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BorderTop.tsx b/packages/iconoir-react-native/src/BorderTop.tsx index 2ab42227..2de346af 100644 --- a/packages/iconoir-react-native/src/BorderTop.tsx +++ b/packages/iconoir-react-native/src/BorderTop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderTop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBorderTop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBorderTop( ); -} -const ForwardRef = React.forwardRef(SvgBorderTop); +}; +const ForwardRef = forwardRef(SvgBorderTop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BorderTr.tsx b/packages/iconoir-react-native/src/BorderTr.tsx index cc9f2037..ea85c45e 100644 --- a/packages/iconoir-react-native/src/BorderTr.tsx +++ b/packages/iconoir-react-native/src/BorderTr.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderTr( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBorderTr = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBorderTr( ); -} -const ForwardRef = React.forwardRef(SvgBorderTr); +}; +const ForwardRef = forwardRef(SvgBorderTr); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BounceLeft.tsx b/packages/iconoir-react-native/src/BounceLeft.tsx index d1f6d99c..db1e3ef5 100644 --- a/packages/iconoir-react-native/src/BounceLeft.tsx +++ b/packages/iconoir-react-native/src/BounceLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBounceLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBounceLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBounceLeft( ); -} -const ForwardRef = React.forwardRef(SvgBounceLeft); +}; +const ForwardRef = forwardRef(SvgBounceLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BounceRight.tsx b/packages/iconoir-react-native/src/BounceRight.tsx index f246d91d..b7d9dcce 100644 --- a/packages/iconoir-react-native/src/BounceRight.tsx +++ b/packages/iconoir-react-native/src/BounceRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBounceRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBounceRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBounceRight( ); -} -const ForwardRef = React.forwardRef(SvgBounceRight); +}; +const ForwardRef = forwardRef(SvgBounceRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BowlingBall.tsx b/packages/iconoir-react-native/src/BowlingBall.tsx index 479fe76f..a99df936 100644 --- a/packages/iconoir-react-native/src/BowlingBall.tsx +++ b/packages/iconoir-react-native/src/BowlingBall.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBowlingBall( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBowlingBall = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgBowlingBall( ); -} -const ForwardRef = React.forwardRef(SvgBowlingBall); +}; +const ForwardRef = forwardRef(SvgBowlingBall); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Box.tsx b/packages/iconoir-react-native/src/Box.tsx index a3a0735d..e5f6b9f8 100644 --- a/packages/iconoir-react-native/src/Box.tsx +++ b/packages/iconoir-react-native/src/Box.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBox( ); -} -const ForwardRef = React.forwardRef(SvgBox); +}; +const ForwardRef = forwardRef(SvgBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BoxIso.tsx b/packages/iconoir-react-native/src/BoxIso.tsx index 041fa0ea..64bf81eb 100644 --- a/packages/iconoir-react-native/src/BoxIso.tsx +++ b/packages/iconoir-react-native/src/BoxIso.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBoxIso( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBoxIso = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgBoxIso( ); -} -const ForwardRef = React.forwardRef(SvgBoxIso); +}; +const ForwardRef = forwardRef(SvgBoxIso); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BoxingGlove.tsx b/packages/iconoir-react-native/src/BoxingGlove.tsx index db72060c..2667a264 100644 --- a/packages/iconoir-react-native/src/BoxingGlove.tsx +++ b/packages/iconoir-react-native/src/BoxingGlove.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBoxingGlove( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBoxingGlove = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgBoxingGlove( ); -} -const ForwardRef = React.forwardRef(SvgBoxingGlove); +}; +const ForwardRef = forwardRef(SvgBoxingGlove); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Brain.tsx b/packages/iconoir-react-native/src/Brain.tsx index 199f0308..6ca2b87f 100644 --- a/packages/iconoir-react-native/src/Brain.tsx +++ b/packages/iconoir-react-native/src/Brain.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrain( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBrain = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,33 @@ function SvgBrain( + + ); -} -const ForwardRef = React.forwardRef(SvgBrain); +}; +const ForwardRef = forwardRef(SvgBrain); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BrainElectricity.tsx b/packages/iconoir-react-native/src/BrainElectricity.tsx index 9035e95e..d5aad1f2 100644 --- a/packages/iconoir-react-native/src/BrainElectricity.tsx +++ b/packages/iconoir-react-native/src/BrainElectricity.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrainElectricity( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBrainElectricity = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgBrainElectricity( + ); -} -const ForwardRef = React.forwardRef(SvgBrainElectricity); +}; +const ForwardRef = forwardRef(SvgBrainElectricity); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BrainResearch.tsx b/packages/iconoir-react-native/src/BrainResearch.tsx index 5a482b99..402b52ac 100644 --- a/packages/iconoir-react-native/src/BrainResearch.tsx +++ b/packages/iconoir-react-native/src/BrainResearch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrainResearch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBrainResearch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgBrainResearch( + ); -} -const ForwardRef = React.forwardRef(SvgBrainResearch); +}; +const ForwardRef = forwardRef(SvgBrainResearch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BrainWarning.tsx b/packages/iconoir-react-native/src/BrainWarning.tsx index d6bb7b8a..cbc39ceb 100644 --- a/packages/iconoir-react-native/src/BrainWarning.tsx +++ b/packages/iconoir-react-native/src/BrainWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrainWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBrainWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,33 @@ function SvgBrainWarning( + + ); -} -const ForwardRef = React.forwardRef(SvgBrainWarning); +}; +const ForwardRef = forwardRef(SvgBrainWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BreadSlice.tsx b/packages/iconoir-react-native/src/BreadSlice.tsx index 4fb68f14..c95650a3 100644 --- a/packages/iconoir-react-native/src/BreadSlice.tsx +++ b/packages/iconoir-react-native/src/BreadSlice.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBreadSlice( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBreadSlice = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgBreadSlice( ); -} -const ForwardRef = React.forwardRef(SvgBreadSlice); +}; +const ForwardRef = forwardRef(SvgBreadSlice); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BridgeSurface.tsx b/packages/iconoir-react-native/src/BridgeSurface.tsx index 48bf5707..423d405c 100644 --- a/packages/iconoir-react-native/src/BridgeSurface.tsx +++ b/packages/iconoir-react-native/src/BridgeSurface.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBridgeSurface( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBridgeSurface = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBridgeSurface( ); -} -const ForwardRef = React.forwardRef(SvgBridgeSurface); +}; +const ForwardRef = forwardRef(SvgBridgeSurface); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BrightCrown.tsx b/packages/iconoir-react-native/src/BrightCrown.tsx index b17cf607..6dd4b620 100644 --- a/packages/iconoir-react-native/src/BrightCrown.tsx +++ b/packages/iconoir-react-native/src/BrightCrown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrightCrown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBrightCrown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgBrightCrown( - + - + ); -} -const ForwardRef = React.forwardRef(SvgBrightCrown); +}; +const ForwardRef = forwardRef(SvgBrightCrown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BrightStar.tsx b/packages/iconoir-react-native/src/BrightStar.tsx index 32ed6604..0a7aeefe 100644 --- a/packages/iconoir-react-native/src/BrightStar.tsx +++ b/packages/iconoir-react-native/src/BrightStar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrightStar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBrightStar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgBrightStar( - + - + ); -} -const ForwardRef = React.forwardRef(SvgBrightStar); +}; +const ForwardRef = forwardRef(SvgBrightStar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Brightness.tsx b/packages/iconoir-react-native/src/Brightness.tsx index c795325e..61637817 100644 --- a/packages/iconoir-react-native/src/Brightness.tsx +++ b/packages/iconoir-react-native/src/Brightness.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrightness( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBrightness = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgBrightness( ); -} -const ForwardRef = React.forwardRef(SvgBrightness); +}; +const ForwardRef = forwardRef(SvgBrightness); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BrightnessWindow.tsx b/packages/iconoir-react-native/src/BrightnessWindow.tsx index 4539717d..c6782226 100644 --- a/packages/iconoir-react-native/src/BrightnessWindow.tsx +++ b/packages/iconoir-react-native/src/BrightnessWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrightnessWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBrightnessWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgBrightnessWindow( ); -} -const ForwardRef = React.forwardRef(SvgBrightnessWindow); +}; +const ForwardRef = forwardRef(SvgBrightnessWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BubbleDownload.tsx b/packages/iconoir-react-native/src/BubbleDownload.tsx index 7166d38c..b09aeb1d 100644 --- a/packages/iconoir-react-native/src/BubbleDownload.tsx +++ b/packages/iconoir-react-native/src/BubbleDownload.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleDownload( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBubbleDownload = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBubbleDownload( ); -} -const ForwardRef = React.forwardRef(SvgBubbleDownload); +}; +const ForwardRef = forwardRef(SvgBubbleDownload); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BubbleError.tsx b/packages/iconoir-react-native/src/BubbleError.tsx index 573a8f55..d2e2e480 100644 --- a/packages/iconoir-react-native/src/BubbleError.tsx +++ b/packages/iconoir-react-native/src/BubbleError.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleError( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBubbleError = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBubbleError( ); -} -const ForwardRef = React.forwardRef(SvgBubbleError); +}; +const ForwardRef = forwardRef(SvgBubbleError); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BubbleIncome.tsx b/packages/iconoir-react-native/src/BubbleIncome.tsx index 9c34dc96..8b5dc0c2 100644 --- a/packages/iconoir-react-native/src/BubbleIncome.tsx +++ b/packages/iconoir-react-native/src/BubbleIncome.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleIncome( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBubbleIncome = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBubbleIncome( ); -} -const ForwardRef = React.forwardRef(SvgBubbleIncome); +}; +const ForwardRef = forwardRef(SvgBubbleIncome); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BubbleOutcome.tsx b/packages/iconoir-react-native/src/BubbleOutcome.tsx index 9035e001..87374364 100644 --- a/packages/iconoir-react-native/src/BubbleOutcome.tsx +++ b/packages/iconoir-react-native/src/BubbleOutcome.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleOutcome( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBubbleOutcome = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBubbleOutcome( ); -} -const ForwardRef = React.forwardRef(SvgBubbleOutcome); +}; +const ForwardRef = forwardRef(SvgBubbleOutcome); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BubbleSearch.tsx b/packages/iconoir-react-native/src/BubbleSearch.tsx index d2b75715..1ee47f58 100644 --- a/packages/iconoir-react-native/src/BubbleSearch.tsx +++ b/packages/iconoir-react-native/src/BubbleSearch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleSearch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBubbleSearch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgBubbleSearch( ); -} -const ForwardRef = React.forwardRef(SvgBubbleSearch); +}; +const ForwardRef = forwardRef(SvgBubbleSearch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BubbleStar.tsx b/packages/iconoir-react-native/src/BubbleStar.tsx index f5ae64ff..0964900b 100644 --- a/packages/iconoir-react-native/src/BubbleStar.tsx +++ b/packages/iconoir-react-native/src/BubbleStar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleStar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBubbleStar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgBubbleStar( ); -} -const ForwardRef = React.forwardRef(SvgBubbleStar); +}; +const ForwardRef = forwardRef(SvgBubbleStar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BubbleUpload.tsx b/packages/iconoir-react-native/src/BubbleUpload.tsx index a2dfc8c2..3d43c655 100644 --- a/packages/iconoir-react-native/src/BubbleUpload.tsx +++ b/packages/iconoir-react-native/src/BubbleUpload.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleUpload( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBubbleUpload = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBubbleUpload( ); -} -const ForwardRef = React.forwardRef(SvgBubbleUpload); +}; +const ForwardRef = forwardRef(SvgBubbleUpload); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BubbleWarning.tsx b/packages/iconoir-react-native/src/BubbleWarning.tsx index 9fbb51b0..47c9ab45 100644 --- a/packages/iconoir-react-native/src/BubbleWarning.tsx +++ b/packages/iconoir-react-native/src/BubbleWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBubbleWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBubbleWarning( ); -} -const ForwardRef = React.forwardRef(SvgBubbleWarning); +}; +const ForwardRef = forwardRef(SvgBubbleWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Building.tsx b/packages/iconoir-react-native/src/Building.tsx index 1ff66db1..e1ce747a 100644 --- a/packages/iconoir-react-native/src/Building.tsx +++ b/packages/iconoir-react-native/src/Building.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBuilding( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBuilding = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgBuilding( ); -} -const ForwardRef = React.forwardRef(SvgBuilding); +}; +const ForwardRef = forwardRef(SvgBuilding); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Bus.tsx b/packages/iconoir-react-native/src/Bus.tsx index aa9f84bc..31d58f17 100644 --- a/packages/iconoir-react-native/src/Bus.tsx +++ b/packages/iconoir-react-native/src/Bus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgBus( ); -} -const ForwardRef = React.forwardRef(SvgBus); +}; +const ForwardRef = forwardRef(SvgBus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/BusStop.tsx b/packages/iconoir-react-native/src/BusStop.tsx index 2075fdf6..4e374edd 100644 --- a/packages/iconoir-react-native/src/BusStop.tsx +++ b/packages/iconoir-react-native/src/BusStop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBusStop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgBusStop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgBusStop( ); -} -const ForwardRef = React.forwardRef(SvgBusStop); +}; +const ForwardRef = forwardRef(SvgBusStop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CableTag.tsx b/packages/iconoir-react-native/src/CableTag.tsx index 64240da3..720a6a41 100644 --- a/packages/iconoir-react-native/src/CableTag.tsx +++ b/packages/iconoir-react-native/src/CableTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCableTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCableTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgCableTag( ); -} -const ForwardRef = React.forwardRef(SvgCableTag); +}; +const ForwardRef = forwardRef(SvgCableTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Calculator.tsx b/packages/iconoir-react-native/src/Calculator.tsx index 6b5e3618..c016d07d 100644 --- a/packages/iconoir-react-native/src/Calculator.tsx +++ b/packages/iconoir-react-native/src/Calculator.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCalculator( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCalculator = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgCalculator( ); -} -const ForwardRef = React.forwardRef(SvgCalculator); +}; +const ForwardRef = forwardRef(SvgCalculator); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Calendar.tsx b/packages/iconoir-react-native/src/Calendar.tsx index c3b33848..64859164 100644 --- a/packages/iconoir-react-native/src/Calendar.tsx +++ b/packages/iconoir-react-native/src/Calendar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCalendar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCalendar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCalendar( ); -} -const ForwardRef = React.forwardRef(SvgCalendar); +}; +const ForwardRef = forwardRef(SvgCalendar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CalendarMinus.tsx b/packages/iconoir-react-native/src/CalendarMinus.tsx index b21a9aef..6f9e9dd3 100644 --- a/packages/iconoir-react-native/src/CalendarMinus.tsx +++ b/packages/iconoir-react-native/src/CalendarMinus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCalendarMinus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCalendarMinus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCalendarMinus( ); -} -const ForwardRef = React.forwardRef(SvgCalendarMinus); +}; +const ForwardRef = forwardRef(SvgCalendarMinus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CalendarPlus.tsx b/packages/iconoir-react-native/src/CalendarPlus.tsx index 77324c80..17a1e4c3 100644 --- a/packages/iconoir-react-native/src/CalendarPlus.tsx +++ b/packages/iconoir-react-native/src/CalendarPlus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCalendarPlus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCalendarPlus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCalendarPlus( ); -} -const ForwardRef = React.forwardRef(SvgCalendarPlus); +}; +const ForwardRef = forwardRef(SvgCalendarPlus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Camera.tsx b/packages/iconoir-react-native/src/Camera.tsx index 03f23b6b..c60fb4d7 100644 --- a/packages/iconoir-react-native/src/Camera.tsx +++ b/packages/iconoir-react-native/src/Camera.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCamera( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCamera = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCamera( ); -} -const ForwardRef = React.forwardRef(SvgCamera); +}; +const ForwardRef = forwardRef(SvgCamera); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cancel.tsx b/packages/iconoir-react-native/src/Cancel.tsx index 1e8ca5bc..c533bac8 100644 --- a/packages/iconoir-react-native/src/Cancel.tsx +++ b/packages/iconoir-react-native/src/Cancel.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCancel( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCancel = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCancel( ); -} -const ForwardRef = React.forwardRef(SvgCancel); +}; +const ForwardRef = forwardRef(SvgCancel); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CandlestickChart.tsx b/packages/iconoir-react-native/src/CandlestickChart.tsx index 73eb96f0..e59a426c 100644 --- a/packages/iconoir-react-native/src/CandlestickChart.tsx +++ b/packages/iconoir-react-native/src/CandlestickChart.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCandlestickChart( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCandlestickChart = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCandlestickChart( ); -} -const ForwardRef = React.forwardRef(SvgCandlestickChart); +}; +const ForwardRef = forwardRef(SvgCandlestickChart); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Car.tsx b/packages/iconoir-react-native/src/Car.tsx index ca58b2f5..0fd441d5 100644 --- a/packages/iconoir-react-native/src/Car.tsx +++ b/packages/iconoir-react-native/src/Car.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgCar( ); -} -const ForwardRef = React.forwardRef(SvgCar); +}; +const ForwardRef = forwardRef(SvgCar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Carbon.tsx b/packages/iconoir-react-native/src/Carbon.tsx index a0594b7c..cabae86b 100644 --- a/packages/iconoir-react-native/src/Carbon.tsx +++ b/packages/iconoir-react-native/src/Carbon.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCarbon( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCarbon = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgCarbon( return ( ); -} -const ForwardRef = React.forwardRef(SvgCarbon); +}; +const ForwardRef = forwardRef(SvgCarbon); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CardIssue.tsx b/packages/iconoir-react-native/src/CardIssue.tsx index fbad1a0b..0c3ec6a0 100644 --- a/packages/iconoir-react-native/src/CardIssue.tsx +++ b/packages/iconoir-react-native/src/CardIssue.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCardIssue( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCardIssue = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCardIssue( ); -} -const ForwardRef = React.forwardRef(SvgCardIssue); +}; +const ForwardRef = forwardRef(SvgCardIssue); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CardLocked.tsx b/packages/iconoir-react-native/src/CardLocked.tsx index 0a093ff1..b7774a8c 100644 --- a/packages/iconoir-react-native/src/CardLocked.tsx +++ b/packages/iconoir-react-native/src/CardLocked.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCardLocked( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCardLocked = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCardLocked( ); -} -const ForwardRef = React.forwardRef(SvgCardLocked); +}; +const ForwardRef = forwardRef(SvgCardLocked); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CardReader.tsx b/packages/iconoir-react-native/src/CardReader.tsx index 7c10ef94..6d999dba 100644 --- a/packages/iconoir-react-native/src/CardReader.tsx +++ b/packages/iconoir-react-native/src/CardReader.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCardReader( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCardReader = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgCardReader( ); -} -const ForwardRef = React.forwardRef(SvgCardReader); +}; +const ForwardRef = forwardRef(SvgCardReader); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CardSecurity.tsx b/packages/iconoir-react-native/src/CardSecurity.tsx index 45b328c7..b44ce1d1 100644 --- a/packages/iconoir-react-native/src/CardSecurity.tsx +++ b/packages/iconoir-react-native/src/CardSecurity.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCardSecurity( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCardSecurity = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCardSecurity( ); -} -const ForwardRef = React.forwardRef(SvgCardSecurity); +}; +const ForwardRef = forwardRef(SvgCardSecurity); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CardWallet.tsx b/packages/iconoir-react-native/src/CardWallet.tsx index a109d564..3904772b 100644 --- a/packages/iconoir-react-native/src/CardWallet.tsx +++ b/packages/iconoir-react-native/src/CardWallet.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCardWallet( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCardWallet = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,27 +12,27 @@ function SvgCardWallet( return ( ); -} -const ForwardRef = React.forwardRef(SvgCardWallet); +}; +const ForwardRef = forwardRef(SvgCardWallet); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cart.tsx b/packages/iconoir-react-native/src/Cart.tsx index 8b60e834..5804cff2 100644 --- a/packages/iconoir-react-native/src/Cart.tsx +++ b/packages/iconoir-react-native/src/Cart.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCart( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCart = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgCart( ); -} -const ForwardRef = React.forwardRef(SvgCart); +}; +const ForwardRef = forwardRef(SvgCart); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CartAlt.tsx b/packages/iconoir-react-native/src/CartAlt.tsx index 9c6fc383..d08caae6 100644 --- a/packages/iconoir-react-native/src/CartAlt.tsx +++ b/packages/iconoir-react-native/src/CartAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCartAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCartAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgCartAlt( ); -} -const ForwardRef = React.forwardRef(SvgCartAlt); +}; +const ForwardRef = forwardRef(SvgCartAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cash.tsx b/packages/iconoir-react-native/src/Cash.tsx index 64e72f67..2442600c 100644 --- a/packages/iconoir-react-native/src/Cash.tsx +++ b/packages/iconoir-react-native/src/Cash.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCash( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCash = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCash( ); -} -const ForwardRef = React.forwardRef(SvgCash); +}; +const ForwardRef = forwardRef(SvgCash); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cell2X2.tsx b/packages/iconoir-react-native/src/Cell2X2.tsx index 5b531ba0..dbff6f92 100644 --- a/packages/iconoir-react-native/src/Cell2X2.tsx +++ b/packages/iconoir-react-native/src/Cell2X2.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCell2X2( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCell2X2 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgCell2X2( ); -} -const ForwardRef = React.forwardRef(SvgCell2X2); +}; +const ForwardRef = forwardRef(SvgCell2X2); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cellar.tsx b/packages/iconoir-react-native/src/Cellar.tsx index 1bda47d5..b0ea4225 100644 --- a/packages/iconoir-react-native/src/Cellar.tsx +++ b/packages/iconoir-react-native/src/Cellar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCellar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCellar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCellar( ); -} -const ForwardRef = React.forwardRef(SvgCellar); +}; +const ForwardRef = forwardRef(SvgCellar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CenterAlign.tsx b/packages/iconoir-react-native/src/CenterAlign.tsx index 29dc44fe..2b808dc3 100644 --- a/packages/iconoir-react-native/src/CenterAlign.tsx +++ b/packages/iconoir-react-native/src/CenterAlign.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCenterAlign( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCenterAlign = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCenterAlign( ); -} -const ForwardRef = React.forwardRef(SvgCenterAlign); +}; +const ForwardRef = forwardRef(SvgCenterAlign); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatAdd.tsx b/packages/iconoir-react-native/src/ChatAdd.tsx index 66a912d9..c88f6132 100644 --- a/packages/iconoir-react-native/src/ChatAdd.tsx +++ b/packages/iconoir-react-native/src/ChatAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgChatAdd( ); -} -const ForwardRef = React.forwardRef(SvgChatAdd); +}; +const ForwardRef = forwardRef(SvgChatAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatBubble.tsx b/packages/iconoir-react-native/src/ChatBubble.tsx index 0246d59d..2f824739 100644 --- a/packages/iconoir-react-native/src/ChatBubble.tsx +++ b/packages/iconoir-react-native/src/ChatBubble.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubble( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatBubble = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgChatBubble( ); -} -const ForwardRef = React.forwardRef(SvgChatBubble); +}; +const ForwardRef = forwardRef(SvgChatBubble); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatBubbleCheck.tsx b/packages/iconoir-react-native/src/ChatBubbleCheck.tsx index 1533117a..15acdbcc 100644 --- a/packages/iconoir-react-native/src/ChatBubbleCheck.tsx +++ b/packages/iconoir-react-native/src/ChatBubbleCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatBubbleCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgChatBubbleCheck( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleCheck); +}; +const ForwardRef = forwardRef(SvgChatBubbleCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatBubbleCheck1.tsx b/packages/iconoir-react-native/src/ChatBubbleCheck1.tsx index 03dcf1cb..7888f535 100644 --- a/packages/iconoir-react-native/src/ChatBubbleCheck1.tsx +++ b/packages/iconoir-react-native/src/ChatBubbleCheck1.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleCheck1( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatBubbleCheck1 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgChatBubbleCheck1( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleCheck1); +}; +const ForwardRef = forwardRef(SvgChatBubbleCheck1); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatBubbleEmpty.tsx b/packages/iconoir-react-native/src/ChatBubbleEmpty.tsx index 2981ea03..214507d6 100644 --- a/packages/iconoir-react-native/src/ChatBubbleEmpty.tsx +++ b/packages/iconoir-react-native/src/ChatBubbleEmpty.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleEmpty( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatBubbleEmpty = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgChatBubbleEmpty( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleEmpty); +}; +const ForwardRef = forwardRef(SvgChatBubbleEmpty); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatBubbleError.tsx b/packages/iconoir-react-native/src/ChatBubbleError.tsx index df17e549..26b65e1a 100644 --- a/packages/iconoir-react-native/src/ChatBubbleError.tsx +++ b/packages/iconoir-react-native/src/ChatBubbleError.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleError( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatBubbleError = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgChatBubbleError( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleError); +}; +const ForwardRef = forwardRef(SvgChatBubbleError); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatBubbleQuestion.tsx b/packages/iconoir-react-native/src/ChatBubbleQuestion.tsx index 44eef83e..657ccf4b 100644 --- a/packages/iconoir-react-native/src/ChatBubbleQuestion.tsx +++ b/packages/iconoir-react-native/src/ChatBubbleQuestion.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleQuestion( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatBubbleQuestion = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgChatBubbleQuestion( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleQuestion); +}; +const ForwardRef = forwardRef(SvgChatBubbleQuestion); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatBubbleTranslate.tsx b/packages/iconoir-react-native/src/ChatBubbleTranslate.tsx index 56d47d62..0f054217 100644 --- a/packages/iconoir-react-native/src/ChatBubbleTranslate.tsx +++ b/packages/iconoir-react-native/src/ChatBubbleTranslate.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleTranslate( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatBubbleTranslate = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgChatBubbleTranslate( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleTranslate); +}; +const ForwardRef = forwardRef(SvgChatBubbleTranslate); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatBubbleWarning.tsx b/packages/iconoir-react-native/src/ChatBubbleWarning.tsx index afd6370b..d4ccd62f 100644 --- a/packages/iconoir-react-native/src/ChatBubbleWarning.tsx +++ b/packages/iconoir-react-native/src/ChatBubbleWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatBubbleWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgChatBubbleWarning( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleWarning); +}; +const ForwardRef = forwardRef(SvgChatBubbleWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatLines.tsx b/packages/iconoir-react-native/src/ChatLines.tsx index ee0425c9..9b7c2f6a 100644 --- a/packages/iconoir-react-native/src/ChatLines.tsx +++ b/packages/iconoir-react-native/src/ChatLines.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatLines( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatLines = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgChatLines( ); -} -const ForwardRef = React.forwardRef(SvgChatLines); +}; +const ForwardRef = forwardRef(SvgChatLines); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChatRemove.tsx b/packages/iconoir-react-native/src/ChatRemove.tsx index a1e92055..22ac1e3b 100644 --- a/packages/iconoir-react-native/src/ChatRemove.tsx +++ b/packages/iconoir-react-native/src/ChatRemove.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatRemove( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChatRemove = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgChatRemove( ); -} -const ForwardRef = React.forwardRef(SvgChatRemove); +}; +const ForwardRef = forwardRef(SvgChatRemove); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Check.tsx b/packages/iconoir-react-native/src/Check.tsx index 03591a50..827edbaa 100644 --- a/packages/iconoir-react-native/src/Check.tsx +++ b/packages/iconoir-react-native/src/Check.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCheck( ); -} -const ForwardRef = React.forwardRef(SvgCheck); +}; +const ForwardRef = forwardRef(SvgCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CheckCircle.tsx b/packages/iconoir-react-native/src/CheckCircle.tsx index de5f69de..b54924bc 100644 --- a/packages/iconoir-react-native/src/CheckCircle.tsx +++ b/packages/iconoir-react-native/src/CheckCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCheckCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCheckCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCheckCircle( ); -} -const ForwardRef = React.forwardRef(SvgCheckCircle); +}; +const ForwardRef = forwardRef(SvgCheckCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CheckWindow.tsx b/packages/iconoir-react-native/src/CheckWindow.tsx index 777b10ec..b9e70fa9 100644 --- a/packages/iconoir-react-native/src/CheckWindow.tsx +++ b/packages/iconoir-react-native/src/CheckWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCheckWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCheckWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgCheckWindow( ); -} -const ForwardRef = React.forwardRef(SvgCheckWindow); +}; +const ForwardRef = forwardRef(SvgCheckWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Chocolate.tsx b/packages/iconoir-react-native/src/Chocolate.tsx index 90a03855..d9213a59 100644 --- a/packages/iconoir-react-native/src/Chocolate.tsx +++ b/packages/iconoir-react-native/src/Chocolate.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChocolate( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChocolate = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgChocolate( ); -} -const ForwardRef = React.forwardRef(SvgChocolate); +}; +const ForwardRef = forwardRef(SvgChocolate); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Chromecast.tsx b/packages/iconoir-react-native/src/Chromecast.tsx index 0f4fe31a..82303fda 100644 --- a/packages/iconoir-react-native/src/Chromecast.tsx +++ b/packages/iconoir-react-native/src/Chromecast.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChromecast( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChromecast = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgChromecast( ); -} -const ForwardRef = React.forwardRef(SvgChromecast); +}; +const ForwardRef = forwardRef(SvgChromecast); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChromecastActive.tsx b/packages/iconoir-react-native/src/ChromecastActive.tsx index deeb5527..aa038657 100644 --- a/packages/iconoir-react-native/src/ChromecastActive.tsx +++ b/packages/iconoir-react-native/src/ChromecastActive.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChromecastActive( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChromecastActive = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgChromecastActive( ); -} -const ForwardRef = React.forwardRef(SvgChromecastActive); +}; +const ForwardRef = forwardRef(SvgChromecastActive); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Church.tsx b/packages/iconoir-react-native/src/Church.tsx index 9b5dc8fe..a5c6f449 100644 --- a/packages/iconoir-react-native/src/Church.tsx +++ b/packages/iconoir-react-native/src/Church.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChurch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChurch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgChurch( ); -} -const ForwardRef = React.forwardRef(SvgChurch); +}; +const ForwardRef = forwardRef(SvgChurch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ChurchAlt.tsx b/packages/iconoir-react-native/src/ChurchAlt.tsx index 34ae202b..77f66a7c 100644 --- a/packages/iconoir-react-native/src/ChurchAlt.tsx +++ b/packages/iconoir-react-native/src/ChurchAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChurchAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgChurchAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgChurchAlt( ); -} -const ForwardRef = React.forwardRef(SvgChurchAlt); +}; +const ForwardRef = forwardRef(SvgChurchAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CinemaOld.tsx b/packages/iconoir-react-native/src/CinemaOld.tsx index 826685ed..227686ed 100644 --- a/packages/iconoir-react-native/src/CinemaOld.tsx +++ b/packages/iconoir-react-native/src/CinemaOld.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCinemaOld( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCinemaOld = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCinemaOld( ); -} -const ForwardRef = React.forwardRef(SvgCinemaOld); +}; +const ForwardRef = forwardRef(SvgCinemaOld); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Circle.tsx b/packages/iconoir-react-native/src/Circle.tsx index 678bf2f5..0d0bbd81 100644 --- a/packages/iconoir-react-native/src/Circle.tsx +++ b/packages/iconoir-react-native/src/Circle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCircle( ); -} -const ForwardRef = React.forwardRef(SvgCircle); +}; +const ForwardRef = forwardRef(SvgCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CircleSpark.tsx b/packages/iconoir-react-native/src/CircleSpark.tsx index a4598777..0b276015 100644 --- a/packages/iconoir-react-native/src/CircleSpark.tsx +++ b/packages/iconoir-react-native/src/CircleSpark.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCircleSpark( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCircleSpark = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgCircleSpark( ); -} -const ForwardRef = React.forwardRef(SvgCircleSpark); +}; +const ForwardRef = forwardRef(SvgCircleSpark); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/City.tsx b/packages/iconoir-react-native/src/City.tsx index cc73d1ca..938ed1a0 100644 --- a/packages/iconoir-react-native/src/City.tsx +++ b/packages/iconoir-react-native/src/City.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCity( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCity = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCity( ); -} -const ForwardRef = React.forwardRef(SvgCity); +}; +const ForwardRef = forwardRef(SvgCity); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CleanWater.tsx b/packages/iconoir-react-native/src/CleanWater.tsx index 6ca733ee..d63dbd91 100644 --- a/packages/iconoir-react-native/src/CleanWater.tsx +++ b/packages/iconoir-react-native/src/CleanWater.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCleanWater( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCleanWater = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgCleanWater( - + - + ); -} -const ForwardRef = React.forwardRef(SvgCleanWater); +}; +const ForwardRef = forwardRef(SvgCleanWater); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ClipboardCheck.tsx b/packages/iconoir-react-native/src/ClipboardCheck.tsx index 19534334..4628af64 100644 --- a/packages/iconoir-react-native/src/ClipboardCheck.tsx +++ b/packages/iconoir-react-native/src/ClipboardCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgClipboardCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgClipboardCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgClipboardCheck( ); -} -const ForwardRef = React.forwardRef(SvgClipboardCheck); +}; +const ForwardRef = forwardRef(SvgClipboardCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Clock.tsx b/packages/iconoir-react-native/src/Clock.tsx index 072fee60..8fd5af4a 100644 --- a/packages/iconoir-react-native/src/Clock.tsx +++ b/packages/iconoir-react-native/src/Clock.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgClock( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgClock = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgClock( ); -} -const ForwardRef = React.forwardRef(SvgClock); +}; +const ForwardRef = forwardRef(SvgClock); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ClockRotateRight.tsx b/packages/iconoir-react-native/src/ClockRotateRight.tsx index 8fd63b22..37bdf36d 100644 --- a/packages/iconoir-react-native/src/ClockRotateRight.tsx +++ b/packages/iconoir-react-native/src/ClockRotateRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgClockRotateRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgClockRotateRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgClockRotateRight( + - ); -} -const ForwardRef = React.forwardRef(SvgClockRotateRight); +}; +const ForwardRef = forwardRef(SvgClockRotateRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ClosedCaptions.tsx b/packages/iconoir-react-native/src/ClosedCaptions.tsx index 0b00a130..7ed10ff4 100644 --- a/packages/iconoir-react-native/src/ClosedCaptions.tsx +++ b/packages/iconoir-react-native/src/ClosedCaptions.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgClosedCaptions( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgClosedCaptions = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,24 +13,24 @@ function SvgClosedCaptions( ); -} -const ForwardRef = React.forwardRef(SvgClosedCaptions); +}; +const ForwardRef = forwardRef(SvgClosedCaptions); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Closet.tsx b/packages/iconoir-react-native/src/Closet.tsx index 43e67d17..64571f74 100644 --- a/packages/iconoir-react-native/src/Closet.tsx +++ b/packages/iconoir-react-native/src/Closet.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloset( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCloset = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgCloset( ); -} -const ForwardRef = React.forwardRef(SvgCloset); +}; +const ForwardRef = forwardRef(SvgCloset); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cloud.tsx b/packages/iconoir-react-native/src/Cloud.tsx index f8a197db..aacb7941 100644 --- a/packages/iconoir-react-native/src/Cloud.tsx +++ b/packages/iconoir-react-native/src/Cloud.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloud( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCloud = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgCloud( ); -} -const ForwardRef = React.forwardRef(SvgCloud); +}; +const ForwardRef = forwardRef(SvgCloud); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CloudBookAlt.tsx b/packages/iconoir-react-native/src/CloudBookAlt.tsx index 3daa2278..11607854 100644 --- a/packages/iconoir-react-native/src/CloudBookAlt.tsx +++ b/packages/iconoir-react-native/src/CloudBookAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudBookAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCloudBookAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCloudBookAlt( ); -} -const ForwardRef = React.forwardRef(SvgCloudBookAlt); +}; +const ForwardRef = forwardRef(SvgCloudBookAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CloudCheck.tsx b/packages/iconoir-react-native/src/CloudCheck.tsx index ff8779dd..ce823ba2 100644 --- a/packages/iconoir-react-native/src/CloudCheck.tsx +++ b/packages/iconoir-react-native/src/CloudCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCloudCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCloudCheck( ); -} -const ForwardRef = React.forwardRef(SvgCloudCheck); +}; +const ForwardRef = forwardRef(SvgCloudCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CloudDesync.tsx b/packages/iconoir-react-native/src/CloudDesync.tsx index 0d9ce0fa..90516356 100644 --- a/packages/iconoir-react-native/src/CloudDesync.tsx +++ b/packages/iconoir-react-native/src/CloudDesync.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudDesync( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCloudDesync = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgCloudDesync( ); -} -const ForwardRef = React.forwardRef(SvgCloudDesync); +}; +const ForwardRef = forwardRef(SvgCloudDesync); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CloudDownload.tsx b/packages/iconoir-react-native/src/CloudDownload.tsx index 78ca9a09..66a63473 100644 --- a/packages/iconoir-react-native/src/CloudDownload.tsx +++ b/packages/iconoir-react-native/src/CloudDownload.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudDownload( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCloudDownload = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCloudDownload( ); -} -const ForwardRef = React.forwardRef(SvgCloudDownload); +}; +const ForwardRef = forwardRef(SvgCloudDownload); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CloudError.tsx b/packages/iconoir-react-native/src/CloudError.tsx index 23ce1332..b5ee8c0f 100644 --- a/packages/iconoir-react-native/src/CloudError.tsx +++ b/packages/iconoir-react-native/src/CloudError.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudError( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCloudError = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCloudError( ); -} -const ForwardRef = React.forwardRef(SvgCloudError); +}; +const ForwardRef = forwardRef(SvgCloudError); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CloudSunny.tsx b/packages/iconoir-react-native/src/CloudSunny.tsx index 536aa4fb..7e6a274f 100644 --- a/packages/iconoir-react-native/src/CloudSunny.tsx +++ b/packages/iconoir-react-native/src/CloudSunny.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudSunny( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCloudSunny = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCloudSunny( ); -} -const ForwardRef = React.forwardRef(SvgCloudSunny); +}; +const ForwardRef = forwardRef(SvgCloudSunny); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CloudSync.tsx b/packages/iconoir-react-native/src/CloudSync.tsx index 7a0a0c74..6bcd6ae3 100644 --- a/packages/iconoir-react-native/src/CloudSync.tsx +++ b/packages/iconoir-react-native/src/CloudSync.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudSync( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCloudSync = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgCloudSync( ); -} -const ForwardRef = React.forwardRef(SvgCloudSync); +}; +const ForwardRef = forwardRef(SvgCloudSync); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CloudUpload.tsx b/packages/iconoir-react-native/src/CloudUpload.tsx index 9b8cdfba..b06c55e6 100644 --- a/packages/iconoir-react-native/src/CloudUpload.tsx +++ b/packages/iconoir-react-native/src/CloudUpload.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudUpload( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCloudUpload = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCloudUpload( ); -} -const ForwardRef = React.forwardRef(SvgCloudUpload); +}; +const ForwardRef = forwardRef(SvgCloudUpload); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Clutery.tsx b/packages/iconoir-react-native/src/Clutery.tsx index 969e672f..65d68f51 100644 --- a/packages/iconoir-react-native/src/Clutery.tsx +++ b/packages/iconoir-react-native/src/Clutery.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgClutery( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgClutery = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgClutery( ); -} -const ForwardRef = React.forwardRef(SvgClutery); +}; +const ForwardRef = forwardRef(SvgClutery); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Code.tsx b/packages/iconoir-react-native/src/Code.tsx index f97fc081..274a2bf6 100644 --- a/packages/iconoir-react-native/src/Code.tsx +++ b/packages/iconoir-react-native/src/Code.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCode( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCode = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCode( ); -} -const ForwardRef = React.forwardRef(SvgCode); +}; +const ForwardRef = forwardRef(SvgCode); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CodeBrackets.tsx b/packages/iconoir-react-native/src/CodeBrackets.tsx index 83956ff0..1eb2b42b 100644 --- a/packages/iconoir-react-native/src/CodeBrackets.tsx +++ b/packages/iconoir-react-native/src/CodeBrackets.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCodeBrackets( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCodeBrackets = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,22 +12,22 @@ function SvgCodeBrackets( return ( ); -} -const ForwardRef = React.forwardRef(SvgCodeBrackets); +}; +const ForwardRef = forwardRef(SvgCodeBrackets); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CodeBracketsSquare.tsx b/packages/iconoir-react-native/src/CodeBracketsSquare.tsx index be95c32a..76c89d9f 100644 --- a/packages/iconoir-react-native/src/CodeBracketsSquare.tsx +++ b/packages/iconoir-react-native/src/CodeBracketsSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCodeBracketsSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCodeBracketsSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgCodeBracketsSquare( return ( ); -} -const ForwardRef = React.forwardRef(SvgCodeBracketsSquare); +}; +const ForwardRef = forwardRef(SvgCodeBracketsSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Codepen.tsx b/packages/iconoir-react-native/src/Codepen.tsx index 790a8cf7..66cd44a1 100644 --- a/packages/iconoir-react-native/src/Codepen.tsx +++ b/packages/iconoir-react-native/src/Codepen.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCodepen( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCodepen = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCodepen( ); -} -const ForwardRef = React.forwardRef(SvgCodepen); +}; +const ForwardRef = forwardRef(SvgCodepen); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CoffeeCup.tsx b/packages/iconoir-react-native/src/CoffeeCup.tsx index 8cd44b9a..7b2e5110 100644 --- a/packages/iconoir-react-native/src/CoffeeCup.tsx +++ b/packages/iconoir-react-native/src/CoffeeCup.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCoffeeCup( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCoffeeCup = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCoffeeCup( ); -} -const ForwardRef = React.forwardRef(SvgCoffeeCup); +}; +const ForwardRef = forwardRef(SvgCoffeeCup); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Coin.tsx b/packages/iconoir-react-native/src/Coin.tsx index 6687cfa9..8f2a0fc1 100644 --- a/packages/iconoir-react-native/src/Coin.tsx +++ b/packages/iconoir-react-native/src/Coin.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCoin( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCoin = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCoin( ); -} -const ForwardRef = React.forwardRef(SvgCoin); +}; +const ForwardRef = forwardRef(SvgCoin); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Coins.tsx b/packages/iconoir-react-native/src/Coins.tsx index fcba62c0..9db685de 100644 --- a/packages/iconoir-react-native/src/Coins.tsx +++ b/packages/iconoir-react-native/src/Coins.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCoins( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCoins = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgCoins( ); -} -const ForwardRef = React.forwardRef(SvgCoins); +}; +const ForwardRef = forwardRef(SvgCoins); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CoinsSwap.tsx b/packages/iconoir-react-native/src/CoinsSwap.tsx index 0d5fff26..7cd360ea 100644 --- a/packages/iconoir-react-native/src/CoinsSwap.tsx +++ b/packages/iconoir-react-native/src/CoinsSwap.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCoinsSwap( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCoinsSwap = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgCoinsSwap( + ); -} -const ForwardRef = React.forwardRef(SvgCoinsSwap); +}; +const ForwardRef = forwardRef(SvgCoinsSwap); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CollageFrame.tsx b/packages/iconoir-react-native/src/CollageFrame.tsx index 78919167..b5967530 100644 --- a/packages/iconoir-react-native/src/CollageFrame.tsx +++ b/packages/iconoir-react-native/src/CollageFrame.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCollageFrame( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCollageFrame = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgCollageFrame( ); -} -const ForwardRef = React.forwardRef(SvgCollageFrame); +}; +const ForwardRef = forwardRef(SvgCollageFrame); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Collapse.tsx b/packages/iconoir-react-native/src/Collapse.tsx index b9748adb..3a16b4ad 100644 --- a/packages/iconoir-react-native/src/Collapse.tsx +++ b/packages/iconoir-react-native/src/Collapse.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCollapse( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCollapse = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCollapse( ); -} -const ForwardRef = React.forwardRef(SvgCollapse); +}; +const ForwardRef = forwardRef(SvgCollapse); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ColorFilter.tsx b/packages/iconoir-react-native/src/ColorFilter.tsx index a25c47c0..4858523f 100644 --- a/packages/iconoir-react-native/src/ColorFilter.tsx +++ b/packages/iconoir-react-native/src/ColorFilter.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgColorFilter( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgColorFilter = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgColorFilter( ); -} -const ForwardRef = React.forwardRef(SvgColorFilter); +}; +const ForwardRef = forwardRef(SvgColorFilter); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ColorPicker.tsx b/packages/iconoir-react-native/src/ColorPicker.tsx index 054dbbad..45dc095b 100644 --- a/packages/iconoir-react-native/src/ColorPicker.tsx +++ b/packages/iconoir-react-native/src/ColorPicker.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgColorPicker( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgColorPicker = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgColorPicker( ); -} -const ForwardRef = React.forwardRef(SvgColorPicker); +}; +const ForwardRef = forwardRef(SvgColorPicker); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ColorPickerEmpty.tsx b/packages/iconoir-react-native/src/ColorPickerEmpty.tsx index 7a6548aa..8cce101f 100644 --- a/packages/iconoir-react-native/src/ColorPickerEmpty.tsx +++ b/packages/iconoir-react-native/src/ColorPickerEmpty.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgColorPickerEmpty( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgColorPickerEmpty = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgColorPickerEmpty( ); -} -const ForwardRef = React.forwardRef(SvgColorPickerEmpty); +}; +const ForwardRef = forwardRef(SvgColorPickerEmpty); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ColorWheel.tsx b/packages/iconoir-react-native/src/ColorWheel.tsx index 375c9412..2fb5e0d6 100644 --- a/packages/iconoir-react-native/src/ColorWheel.tsx +++ b/packages/iconoir-react-native/src/ColorWheel.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgColorWheel( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgColorWheel = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgColorWheel( ); -} -const ForwardRef = React.forwardRef(SvgColorWheel); +}; +const ForwardRef = forwardRef(SvgColorWheel); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Combine.tsx b/packages/iconoir-react-native/src/Combine.tsx index a89cf512..a2239e6e 100644 --- a/packages/iconoir-react-native/src/Combine.tsx +++ b/packages/iconoir-react-native/src/Combine.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCombine( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCombine = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCombine( ); -} -const ForwardRef = React.forwardRef(SvgCombine); +}; +const ForwardRef = forwardRef(SvgCombine); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Commodity.tsx b/packages/iconoir-react-native/src/Commodity.tsx index f2e603e2..c340854a 100644 --- a/packages/iconoir-react-native/src/Commodity.tsx +++ b/packages/iconoir-react-native/src/Commodity.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCommodity( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCommodity = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,30 +13,30 @@ function SvgCommodity( ); -} -const ForwardRef = React.forwardRef(SvgCommodity); +}; +const ForwardRef = forwardRef(SvgCommodity); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Community.tsx b/packages/iconoir-react-native/src/Community.tsx index d5ecd189..a42b40a9 100644 --- a/packages/iconoir-react-native/src/Community.tsx +++ b/packages/iconoir-react-native/src/Community.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCommunity( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCommunity = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCommunity( ); -} -const ForwardRef = React.forwardRef(SvgCommunity); +}; +const ForwardRef = forwardRef(SvgCommunity); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CompAlignBottom.tsx b/packages/iconoir-react-native/src/CompAlignBottom.tsx index b3718103..62d582be 100644 --- a/packages/iconoir-react-native/src/CompAlignBottom.tsx +++ b/packages/iconoir-react-native/src/CompAlignBottom.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompAlignBottom( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCompAlignBottom = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgCompAlignBottom( ); -} -const ForwardRef = React.forwardRef(SvgCompAlignBottom); +}; +const ForwardRef = forwardRef(SvgCompAlignBottom); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CompAlignLeft.tsx b/packages/iconoir-react-native/src/CompAlignLeft.tsx index 306f0a07..85c3cd2d 100644 --- a/packages/iconoir-react-native/src/CompAlignLeft.tsx +++ b/packages/iconoir-react-native/src/CompAlignLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompAlignLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCompAlignLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgCompAlignLeft( ); -} -const ForwardRef = React.forwardRef(SvgCompAlignLeft); +}; +const ForwardRef = forwardRef(SvgCompAlignLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CompAlignRight.tsx b/packages/iconoir-react-native/src/CompAlignRight.tsx index 3083e15a..fd5a47e3 100644 --- a/packages/iconoir-react-native/src/CompAlignRight.tsx +++ b/packages/iconoir-react-native/src/CompAlignRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompAlignRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCompAlignRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgCompAlignRight( ); -} -const ForwardRef = React.forwardRef(SvgCompAlignRight); +}; +const ForwardRef = forwardRef(SvgCompAlignRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CompAlignTop.tsx b/packages/iconoir-react-native/src/CompAlignTop.tsx index 48ee83bc..4db3e50a 100644 --- a/packages/iconoir-react-native/src/CompAlignTop.tsx +++ b/packages/iconoir-react-native/src/CompAlignTop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompAlignTop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCompAlignTop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgCompAlignTop( ); -} -const ForwardRef = React.forwardRef(SvgCompAlignTop); +}; +const ForwardRef = forwardRef(SvgCompAlignTop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CompactDisc.tsx b/packages/iconoir-react-native/src/CompactDisc.tsx index 7a5ac421..d3af4823 100644 --- a/packages/iconoir-react-native/src/CompactDisc.tsx +++ b/packages/iconoir-react-native/src/CompactDisc.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompactDisc( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCompactDisc = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCompactDisc( ); -} -const ForwardRef = React.forwardRef(SvgCompactDisc); +}; +const ForwardRef = forwardRef(SvgCompactDisc); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Compass.tsx b/packages/iconoir-react-native/src/Compass.tsx index c676e91b..fccd10fa 100644 --- a/packages/iconoir-react-native/src/Compass.tsx +++ b/packages/iconoir-react-native/src/Compass.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompass( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCompass = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCompass( ); -} -const ForwardRef = React.forwardRef(SvgCompass); +}; +const ForwardRef = forwardRef(SvgCompass); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Component.tsx b/packages/iconoir-react-native/src/Component.tsx index 484f99bc..1f84dd11 100644 --- a/packages/iconoir-react-native/src/Component.tsx +++ b/packages/iconoir-react-native/src/Component.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgComponent( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgComponent = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgComponent( ); -} -const ForwardRef = React.forwardRef(SvgComponent); +}; +const ForwardRef = forwardRef(SvgComponent); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Compress.tsx b/packages/iconoir-react-native/src/Compress.tsx index 2b1a2440..63ac9b82 100644 --- a/packages/iconoir-react-native/src/Compress.tsx +++ b/packages/iconoir-react-native/src/Compress.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompress( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCompress = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCompress( ); -} -const ForwardRef = React.forwardRef(SvgCompress); +}; +const ForwardRef = forwardRef(SvgCompress); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CompressLines.tsx b/packages/iconoir-react-native/src/CompressLines.tsx index 127d16c6..d3fb757d 100644 --- a/packages/iconoir-react-native/src/CompressLines.tsx +++ b/packages/iconoir-react-native/src/CompressLines.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompressLines( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCompressLines = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCompressLines( ); -} -const ForwardRef = React.forwardRef(SvgCompressLines); +}; +const ForwardRef = forwardRef(SvgCompressLines); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Computer.tsx b/packages/iconoir-react-native/src/Computer.tsx index 2b7fb6bd..96702148 100644 --- a/packages/iconoir-react-native/src/Computer.tsx +++ b/packages/iconoir-react-native/src/Computer.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgComputer( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgComputer = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgComputer( ); -} -const ForwardRef = React.forwardRef(SvgComputer); +}; +const ForwardRef = forwardRef(SvgComputer); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ConstrainedSurface.tsx b/packages/iconoir-react-native/src/ConstrainedSurface.tsx index a46caec7..0eff5ef6 100644 --- a/packages/iconoir-react-native/src/ConstrainedSurface.tsx +++ b/packages/iconoir-react-native/src/ConstrainedSurface.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgConstrainedSurface( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgConstrainedSurface = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgConstrainedSurface( - - + + - + ); -} -const ForwardRef = React.forwardRef(SvgConstrainedSurface); +}; +const ForwardRef = forwardRef(SvgConstrainedSurface); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Consumable.tsx b/packages/iconoir-react-native/src/Consumable.tsx index 9814e3b3..892aeb5e 100644 --- a/packages/iconoir-react-native/src/Consumable.tsx +++ b/packages/iconoir-react-native/src/Consumable.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgConsumable( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgConsumable = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgConsumable( ); -} -const ForwardRef = React.forwardRef(SvgConsumable); +}; +const ForwardRef = forwardRef(SvgConsumable); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Contactless.tsx b/packages/iconoir-react-native/src/Contactless.tsx index d04dc600..702cd767 100644 --- a/packages/iconoir-react-native/src/Contactless.tsx +++ b/packages/iconoir-react-native/src/Contactless.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgContactless( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgContactless = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgContactless( ); -} -const ForwardRef = React.forwardRef(SvgContactless); +}; +const ForwardRef = forwardRef(SvgContactless); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ControlSlider.tsx b/packages/iconoir-react-native/src/ControlSlider.tsx index e8ca9a5c..5103efe2 100644 --- a/packages/iconoir-react-native/src/ControlSlider.tsx +++ b/packages/iconoir-react-native/src/ControlSlider.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgControlSlider( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgControlSlider = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgControlSlider( ); -} -const ForwardRef = React.forwardRef(SvgControlSlider); +}; +const ForwardRef = forwardRef(SvgControlSlider); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cookie.tsx b/packages/iconoir-react-native/src/Cookie.tsx index c605b44c..cd3c5537 100644 --- a/packages/iconoir-react-native/src/Cookie.tsx +++ b/packages/iconoir-react-native/src/Cookie.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCookie( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCookie = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCookie( ); -} -const ForwardRef = React.forwardRef(SvgCookie); +}; +const ForwardRef = forwardRef(SvgCookie); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cooling.tsx b/packages/iconoir-react-native/src/Cooling.tsx index d1083564..1fa164e4 100644 --- a/packages/iconoir-react-native/src/Cooling.tsx +++ b/packages/iconoir-react-native/src/Cooling.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCooling( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCooling = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCooling( ); -} -const ForwardRef = React.forwardRef(SvgCooling); +}; +const ForwardRef = forwardRef(SvgCooling); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Copy.tsx b/packages/iconoir-react-native/src/Copy.tsx index 5deffb27..dabe27dc 100644 --- a/packages/iconoir-react-native/src/Copy.tsx +++ b/packages/iconoir-react-native/src/Copy.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCopy( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCopy = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCopy( ); -} -const ForwardRef = React.forwardRef(SvgCopy); +}; +const ForwardRef = forwardRef(SvgCopy); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Copyright.tsx b/packages/iconoir-react-native/src/Copyright.tsx index 7ce54f9a..7c509313 100644 --- a/packages/iconoir-react-native/src/Copyright.tsx +++ b/packages/iconoir-react-native/src/Copyright.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCopyright( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCopyright = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgCopyright( + ); -} -const ForwardRef = React.forwardRef(SvgCopyright); +}; +const ForwardRef = forwardRef(SvgCopyright); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CornerBottomLeft.tsx b/packages/iconoir-react-native/src/CornerBottomLeft.tsx index 52d2501b..f970a586 100644 --- a/packages/iconoir-react-native/src/CornerBottomLeft.tsx +++ b/packages/iconoir-react-native/src/CornerBottomLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCornerBottomLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCornerBottomLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCornerBottomLeft( ); -} -const ForwardRef = React.forwardRef(SvgCornerBottomLeft); +}; +const ForwardRef = forwardRef(SvgCornerBottomLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CornerBottomRight.tsx b/packages/iconoir-react-native/src/CornerBottomRight.tsx index 2bfa06ec..f0505d78 100644 --- a/packages/iconoir-react-native/src/CornerBottomRight.tsx +++ b/packages/iconoir-react-native/src/CornerBottomRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCornerBottomRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCornerBottomRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCornerBottomRight( ); -} -const ForwardRef = React.forwardRef(SvgCornerBottomRight); +}; +const ForwardRef = forwardRef(SvgCornerBottomRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CornerTopLeft.tsx b/packages/iconoir-react-native/src/CornerTopLeft.tsx index 14008e61..6406b5d8 100644 --- a/packages/iconoir-react-native/src/CornerTopLeft.tsx +++ b/packages/iconoir-react-native/src/CornerTopLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCornerTopLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCornerTopLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCornerTopLeft( ); -} -const ForwardRef = React.forwardRef(SvgCornerTopLeft); +}; +const ForwardRef = forwardRef(SvgCornerTopLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CornerTopRight.tsx b/packages/iconoir-react-native/src/CornerTopRight.tsx index 7a1b5067..bc0c5427 100644 --- a/packages/iconoir-react-native/src/CornerTopRight.tsx +++ b/packages/iconoir-react-native/src/CornerTopRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCornerTopRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCornerTopRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCornerTopRight( ); -} -const ForwardRef = React.forwardRef(SvgCornerTopRight); +}; +const ForwardRef = forwardRef(SvgCornerTopRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cpu.tsx b/packages/iconoir-react-native/src/Cpu.tsx index 9c184073..6583077b 100644 --- a/packages/iconoir-react-native/src/Cpu.tsx +++ b/packages/iconoir-react-native/src/Cpu.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCpu( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCpu = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCpu( ); -} -const ForwardRef = React.forwardRef(SvgCpu); +}; +const ForwardRef = forwardRef(SvgCpu); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CpuWarning.tsx b/packages/iconoir-react-native/src/CpuWarning.tsx index 755c6e00..e82977ac 100644 --- a/packages/iconoir-react-native/src/CpuWarning.tsx +++ b/packages/iconoir-react-native/src/CpuWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCpuWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCpuWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCpuWarning( ); -} -const ForwardRef = React.forwardRef(SvgCpuWarning); +}; +const ForwardRef = forwardRef(SvgCpuWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CrackedEgg.tsx b/packages/iconoir-react-native/src/CrackedEgg.tsx index f12c47db..8f5558dd 100644 --- a/packages/iconoir-react-native/src/CrackedEgg.tsx +++ b/packages/iconoir-react-native/src/CrackedEgg.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCrackedEgg( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCrackedEgg = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCrackedEgg( ); -} -const ForwardRef = React.forwardRef(SvgCrackedEgg); +}; +const ForwardRef = forwardRef(SvgCrackedEgg); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CreativeCommons.tsx b/packages/iconoir-react-native/src/CreativeCommons.tsx index 090e5233..fee8a9ba 100644 --- a/packages/iconoir-react-native/src/CreativeCommons.tsx +++ b/packages/iconoir-react-native/src/CreativeCommons.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCreativeCommons( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCreativeCommons = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgCreativeCommons( + ); -} -const ForwardRef = React.forwardRef(SvgCreativeCommons); +}; +const ForwardRef = forwardRef(SvgCreativeCommons); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CreditCard.tsx b/packages/iconoir-react-native/src/CreditCard.tsx index 93abcba9..a1f3c024 100644 --- a/packages/iconoir-react-native/src/CreditCard.tsx +++ b/packages/iconoir-react-native/src/CreditCard.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCreditCard( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCreditCard = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCreditCard( ); -} -const ForwardRef = React.forwardRef(SvgCreditCard); +}; +const ForwardRef = forwardRef(SvgCreditCard); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CreditCards.tsx b/packages/iconoir-react-native/src/CreditCards.tsx index 20b335ff..bf3ec282 100644 --- a/packages/iconoir-react-native/src/CreditCards.tsx +++ b/packages/iconoir-react-native/src/CreditCards.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCreditCards( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCreditCards = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCreditCards( ); -} -const ForwardRef = React.forwardRef(SvgCreditCards); +}; +const ForwardRef = forwardRef(SvgCreditCards); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Crib.tsx b/packages/iconoir-react-native/src/Crib.tsx index 9fbb9880..07685f85 100644 --- a/packages/iconoir-react-native/src/Crib.tsx +++ b/packages/iconoir-react-native/src/Crib.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCrib( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCrib = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgCrib( ); -} -const ForwardRef = React.forwardRef(SvgCrib); +}; +const ForwardRef = forwardRef(SvgCrib); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Crop.tsx b/packages/iconoir-react-native/src/Crop.tsx index bac154b6..f8d7df5d 100644 --- a/packages/iconoir-react-native/src/Crop.tsx +++ b/packages/iconoir-react-native/src/Crop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCrop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCrop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCrop( ); -} -const ForwardRef = React.forwardRef(SvgCrop); +}; +const ForwardRef = forwardRef(SvgCrop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CropRotateBl.tsx b/packages/iconoir-react-native/src/CropRotateBl.tsx index cf79424c..15d4c644 100644 --- a/packages/iconoir-react-native/src/CropRotateBl.tsx +++ b/packages/iconoir-react-native/src/CropRotateBl.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCropRotateBl( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCropRotateBl = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCropRotateBl( ); -} -const ForwardRef = React.forwardRef(SvgCropRotateBl); +}; +const ForwardRef = forwardRef(SvgCropRotateBl); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CropRotateBr.tsx b/packages/iconoir-react-native/src/CropRotateBr.tsx index e6401fff..5c3ef954 100644 --- a/packages/iconoir-react-native/src/CropRotateBr.tsx +++ b/packages/iconoir-react-native/src/CropRotateBr.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCropRotateBr( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCropRotateBr = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCropRotateBr( ); -} -const ForwardRef = React.forwardRef(SvgCropRotateBr); +}; +const ForwardRef = forwardRef(SvgCropRotateBr); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CropRotateTl.tsx b/packages/iconoir-react-native/src/CropRotateTl.tsx index b9fbe51f..35462776 100644 --- a/packages/iconoir-react-native/src/CropRotateTl.tsx +++ b/packages/iconoir-react-native/src/CropRotateTl.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCropRotateTl( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCropRotateTl = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCropRotateTl( ); -} -const ForwardRef = React.forwardRef(SvgCropRotateTl); +}; +const ForwardRef = forwardRef(SvgCropRotateTl); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CropRotateTr.tsx b/packages/iconoir-react-native/src/CropRotateTr.tsx index 13482769..8e770e23 100644 --- a/packages/iconoir-react-native/src/CropRotateTr.tsx +++ b/packages/iconoir-react-native/src/CropRotateTr.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCropRotateTr( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCropRotateTr = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCropRotateTr( ); -} -const ForwardRef = React.forwardRef(SvgCropRotateTr); +}; +const ForwardRef = forwardRef(SvgCropRotateTr); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Crown.tsx b/packages/iconoir-react-native/src/Crown.tsx index b9b7f559..df9f2ed1 100644 --- a/packages/iconoir-react-native/src/Crown.tsx +++ b/packages/iconoir-react-native/src/Crown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCrown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCrown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCrown( ); -} -const ForwardRef = React.forwardRef(SvgCrown); +}; +const ForwardRef = forwardRef(SvgCrown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CrownCircle.tsx b/packages/iconoir-react-native/src/CrownCircle.tsx index 368959b9..55355ea0 100644 --- a/packages/iconoir-react-native/src/CrownCircle.tsx +++ b/packages/iconoir-react-native/src/CrownCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCrownCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCrownCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCrownCircle( ); -} -const ForwardRef = React.forwardRef(SvgCrownCircle); +}; +const ForwardRef = forwardRef(SvgCrownCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Css3.tsx b/packages/iconoir-react-native/src/Css3.tsx index 2f009ac2..ebad238a 100644 --- a/packages/iconoir-react-native/src/Css3.tsx +++ b/packages/iconoir-react-native/src/Css3.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCss3( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCss3 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCss3( ); -} -const ForwardRef = React.forwardRef(SvgCss3); +}; +const ForwardRef = forwardRef(SvgCss3); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CubeReplaceFace.tsx b/packages/iconoir-react-native/src/CubeReplaceFace.tsx index 556bcc8f..82178a48 100644 --- a/packages/iconoir-react-native/src/CubeReplaceFace.tsx +++ b/packages/iconoir-react-native/src/CubeReplaceFace.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCubeReplaceFace( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCubeReplaceFace = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,29 @@ function SvgCubeReplaceFace( - + + - + ); -} -const ForwardRef = React.forwardRef(SvgCubeReplaceFace); +}; +const ForwardRef = forwardRef(SvgCubeReplaceFace); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CursorPointer.tsx b/packages/iconoir-react-native/src/CursorPointer.tsx index dbbab976..39b5be48 100644 --- a/packages/iconoir-react-native/src/CursorPointer.tsx +++ b/packages/iconoir-react-native/src/CursorPointer.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCursorPointer( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCursorPointer = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgCursorPointer( ); -} -const ForwardRef = React.forwardRef(SvgCursorPointer); +}; +const ForwardRef = forwardRef(SvgCursorPointer); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CurveArray.tsx b/packages/iconoir-react-native/src/CurveArray.tsx index 58f10404..430ec9d9 100644 --- a/packages/iconoir-react-native/src/CurveArray.tsx +++ b/packages/iconoir-react-native/src/CurveArray.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCurveArray( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCurveArray = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCurveArray( ); -} -const ForwardRef = React.forwardRef(SvgCurveArray); +}; +const ForwardRef = forwardRef(SvgCurveArray); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cut.tsx b/packages/iconoir-react-native/src/Cut.tsx index ab1f2401..a2ea3f5e 100644 --- a/packages/iconoir-react-native/src/Cut.tsx +++ b/packages/iconoir-react-native/src/Cut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCut( ); -} -const ForwardRef = React.forwardRef(SvgCut); +}; +const ForwardRef = forwardRef(SvgCut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CutAlt.tsx b/packages/iconoir-react-native/src/CutAlt.tsx index 4c50c311..176095e1 100644 --- a/packages/iconoir-react-native/src/CutAlt.tsx +++ b/packages/iconoir-react-native/src/CutAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCutAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCutAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCutAlt( ); -} -const ForwardRef = React.forwardRef(SvgCutAlt); +}; +const ForwardRef = forwardRef(SvgCutAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/CutSolidWithCurve.tsx b/packages/iconoir-react-native/src/CutSolidWithCurve.tsx index f4b20364..af607dd7 100644 --- a/packages/iconoir-react-native/src/CutSolidWithCurve.tsx +++ b/packages/iconoir-react-native/src/CutSolidWithCurve.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCutSolidWithCurve( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCutSolidWithCurve = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgCutSolidWithCurve( ); -} -const ForwardRef = React.forwardRef(SvgCutSolidWithCurve); +}; +const ForwardRef = forwardRef(SvgCutSolidWithCurve); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cycling.tsx b/packages/iconoir-react-native/src/Cycling.tsx index be8cdc34..8a7b16c7 100644 --- a/packages/iconoir-react-native/src/Cycling.tsx +++ b/packages/iconoir-react-native/src/Cycling.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCycling( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCycling = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgCycling( ); -} -const ForwardRef = React.forwardRef(SvgCycling); +}; +const ForwardRef = forwardRef(SvgCycling); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Cylinder.tsx b/packages/iconoir-react-native/src/Cylinder.tsx index 5804579d..d1c99a45 100644 --- a/packages/iconoir-react-native/src/Cylinder.tsx +++ b/packages/iconoir-react-native/src/Cylinder.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCylinder( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgCylinder = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgCylinder( ); -} -const ForwardRef = React.forwardRef(SvgCylinder); +}; +const ForwardRef = forwardRef(SvgCylinder); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DashFlag.tsx b/packages/iconoir-react-native/src/DashFlag.tsx index 7b588f4c..613500f3 100644 --- a/packages/iconoir-react-native/src/DashFlag.tsx +++ b/packages/iconoir-react-native/src/DashFlag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDashFlag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDashFlag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDashFlag( ); -} -const ForwardRef = React.forwardRef(SvgDashFlag); +}; +const ForwardRef = forwardRef(SvgDashFlag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Dashboard.tsx b/packages/iconoir-react-native/src/Dashboard.tsx index a244b127..7a899c23 100644 --- a/packages/iconoir-react-native/src/Dashboard.tsx +++ b/packages/iconoir-react-native/src/Dashboard.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDashboard( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDashboard = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgDashboard( ); -} -const ForwardRef = React.forwardRef(SvgDashboard); +}; +const ForwardRef = forwardRef(SvgDashboard); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DashboardDots.tsx b/packages/iconoir-react-native/src/DashboardDots.tsx index 4021c377..84bc4c61 100644 --- a/packages/iconoir-react-native/src/DashboardDots.tsx +++ b/packages/iconoir-react-native/src/DashboardDots.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDashboardDots( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDashboardDots = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDashboardDots( ); -} -const ForwardRef = React.forwardRef(SvgDashboardDots); +}; +const ForwardRef = forwardRef(SvgDashboardDots); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DashboardSpeed.tsx b/packages/iconoir-react-native/src/DashboardSpeed.tsx index 9fb25160..bd5e8899 100644 --- a/packages/iconoir-react-native/src/DashboardSpeed.tsx +++ b/packages/iconoir-react-native/src/DashboardSpeed.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDashboardSpeed( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDashboardSpeed = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDashboardSpeed( ); -} -const ForwardRef = React.forwardRef(SvgDashboardSpeed); +}; +const ForwardRef = forwardRef(SvgDashboardSpeed); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DataTransferBoth.tsx b/packages/iconoir-react-native/src/DataTransferBoth.tsx index b1687e44..a225c27b 100644 --- a/packages/iconoir-react-native/src/DataTransferBoth.tsx +++ b/packages/iconoir-react-native/src/DataTransferBoth.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDataTransferBoth( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDataTransferBoth = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDataTransferBoth( ); -} -const ForwardRef = React.forwardRef(SvgDataTransferBoth); +}; +const ForwardRef = forwardRef(SvgDataTransferBoth); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DataTransferCheck.tsx b/packages/iconoir-react-native/src/DataTransferCheck.tsx index a91c0310..b0aa67ff 100644 --- a/packages/iconoir-react-native/src/DataTransferCheck.tsx +++ b/packages/iconoir-react-native/src/DataTransferCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDataTransferCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDataTransferCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDataTransferCheck( ); -} -const ForwardRef = React.forwardRef(SvgDataTransferCheck); +}; +const ForwardRef = forwardRef(SvgDataTransferCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DataTransferDown.tsx b/packages/iconoir-react-native/src/DataTransferDown.tsx index 8634c61a..91252766 100644 --- a/packages/iconoir-react-native/src/DataTransferDown.tsx +++ b/packages/iconoir-react-native/src/DataTransferDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDataTransferDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDataTransferDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDataTransferDown( ); -} -const ForwardRef = React.forwardRef(SvgDataTransferDown); +}; +const ForwardRef = forwardRef(SvgDataTransferDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DataTransferUp.tsx b/packages/iconoir-react-native/src/DataTransferUp.tsx index f82a2827..40ec4c1f 100644 --- a/packages/iconoir-react-native/src/DataTransferUp.tsx +++ b/packages/iconoir-react-native/src/DataTransferUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDataTransferUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDataTransferUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDataTransferUp( ); -} -const ForwardRef = React.forwardRef(SvgDataTransferUp); +}; +const ForwardRef = forwardRef(SvgDataTransferUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DataTransferWarning.tsx b/packages/iconoir-react-native/src/DataTransferWarning.tsx index 80bb1b60..486e8eac 100644 --- a/packages/iconoir-react-native/src/DataTransferWarning.tsx +++ b/packages/iconoir-react-native/src/DataTransferWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDataTransferWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDataTransferWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDataTransferWarning( ); -} -const ForwardRef = React.forwardRef(SvgDataTransferWarning); +}; +const ForwardRef = forwardRef(SvgDataTransferWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DatabaseBackup.tsx b/packages/iconoir-react-native/src/DatabaseBackup.tsx index 6d615042..1df70e4a 100644 --- a/packages/iconoir-react-native/src/DatabaseBackup.tsx +++ b/packages/iconoir-react-native/src/DatabaseBackup.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseBackup( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDatabaseBackup = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,39 +13,39 @@ function SvgDatabaseBackup( + - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseBackup); +}; +const ForwardRef = forwardRef(SvgDatabaseBackup); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DatabaseExport.tsx b/packages/iconoir-react-native/src/DatabaseExport.tsx index 2f6f5de5..54cf59ff 100644 --- a/packages/iconoir-react-native/src/DatabaseExport.tsx +++ b/packages/iconoir-react-native/src/DatabaseExport.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseExport( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDatabaseExport = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDatabaseExport( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseExport); +}; +const ForwardRef = forwardRef(SvgDatabaseExport); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DatabaseMonitor.tsx b/packages/iconoir-react-native/src/DatabaseMonitor.tsx index 64dec5c3..d074bc6c 100644 --- a/packages/iconoir-react-native/src/DatabaseMonitor.tsx +++ b/packages/iconoir-react-native/src/DatabaseMonitor.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseMonitor( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDatabaseMonitor = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDatabaseMonitor( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseMonitor); +}; +const ForwardRef = forwardRef(SvgDatabaseMonitor); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DatabaseRestore.tsx b/packages/iconoir-react-native/src/DatabaseRestore.tsx index 8ee44c10..464a2570 100644 --- a/packages/iconoir-react-native/src/DatabaseRestore.tsx +++ b/packages/iconoir-react-native/src/DatabaseRestore.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseRestore( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDatabaseRestore = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDatabaseRestore( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseRestore); +}; +const ForwardRef = forwardRef(SvgDatabaseRestore); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DatabaseScript.tsx b/packages/iconoir-react-native/src/DatabaseScript.tsx index ef6a5933..d50587ec 100644 --- a/packages/iconoir-react-native/src/DatabaseScript.tsx +++ b/packages/iconoir-react-native/src/DatabaseScript.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseScript( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDatabaseScript = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDatabaseScript( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseScript); +}; +const ForwardRef = forwardRef(SvgDatabaseScript); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DatabaseSettings.tsx b/packages/iconoir-react-native/src/DatabaseSettings.tsx index 5201e43d..07432eba 100644 --- a/packages/iconoir-react-native/src/DatabaseSettings.tsx +++ b/packages/iconoir-react-native/src/DatabaseSettings.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseSettings( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDatabaseSettings = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgDatabaseSettings( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseSettings); +}; +const ForwardRef = forwardRef(SvgDatabaseSettings); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DatabaseStar.tsx b/packages/iconoir-react-native/src/DatabaseStar.tsx index 10d42247..712ec221 100644 --- a/packages/iconoir-react-native/src/DatabaseStar.tsx +++ b/packages/iconoir-react-native/src/DatabaseStar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseStar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDatabaseStar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDatabaseStar( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseStar); +}; +const ForwardRef = forwardRef(SvgDatabaseStar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DatabaseStats.tsx b/packages/iconoir-react-native/src/DatabaseStats.tsx index b2fcc3a8..a7758f18 100644 --- a/packages/iconoir-react-native/src/DatabaseStats.tsx +++ b/packages/iconoir-react-native/src/DatabaseStats.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseStats( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDatabaseStats = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgDatabaseStats( + - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseStats); +}; +const ForwardRef = forwardRef(SvgDatabaseStats); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DatabaseTag.tsx b/packages/iconoir-react-native/src/DatabaseTag.tsx index 0d93f766..bbcdff48 100644 --- a/packages/iconoir-react-native/src/DatabaseTag.tsx +++ b/packages/iconoir-react-native/src/DatabaseTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDatabaseTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgDatabaseTag( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseTag); +}; +const ForwardRef = forwardRef(SvgDatabaseTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Db.tsx b/packages/iconoir-react-native/src/Db.tsx index 0be318e1..812f2423 100644 --- a/packages/iconoir-react-native/src/Db.tsx +++ b/packages/iconoir-react-native/src/Db.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDb( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDb = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDb( - - + + ); -} -const ForwardRef = React.forwardRef(SvgDb); +}; +const ForwardRef = forwardRef(SvgDb); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DbCheck.tsx b/packages/iconoir-react-native/src/DbCheck.tsx index d9a7ef4d..3eba7aea 100644 --- a/packages/iconoir-react-native/src/DbCheck.tsx +++ b/packages/iconoir-react-native/src/DbCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDbCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDbCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDbCheck( ); -} -const ForwardRef = React.forwardRef(SvgDbCheck); +}; +const ForwardRef = forwardRef(SvgDbCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DbError.tsx b/packages/iconoir-react-native/src/DbError.tsx index 08f2236d..6504d8da 100644 --- a/packages/iconoir-react-native/src/DbError.tsx +++ b/packages/iconoir-react-native/src/DbError.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDbError( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDbError = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDbError( ); -} -const ForwardRef = React.forwardRef(SvgDbError); +}; +const ForwardRef = forwardRef(SvgDbError); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DbSearch.tsx b/packages/iconoir-react-native/src/DbSearch.tsx index fd2fbd10..c20de39f 100644 --- a/packages/iconoir-react-native/src/DbSearch.tsx +++ b/packages/iconoir-react-native/src/DbSearch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDbSearch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDbSearch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDbSearch( ); -} -const ForwardRef = React.forwardRef(SvgDbSearch); +}; +const ForwardRef = forwardRef(SvgDbSearch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DbStar.tsx b/packages/iconoir-react-native/src/DbStar.tsx index 24a4e8c8..3e39d89c 100644 --- a/packages/iconoir-react-native/src/DbStar.tsx +++ b/packages/iconoir-react-native/src/DbStar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDbStar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDbStar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDbStar( ); -} -const ForwardRef = React.forwardRef(SvgDbStar); +}; +const ForwardRef = forwardRef(SvgDbStar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DbWarning.tsx b/packages/iconoir-react-native/src/DbWarning.tsx index b06bb837..a6f8758b 100644 --- a/packages/iconoir-react-native/src/DbWarning.tsx +++ b/packages/iconoir-react-native/src/DbWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDbWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDbWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDbWarning( ); -} -const ForwardRef = React.forwardRef(SvgDbWarning); +}; +const ForwardRef = forwardRef(SvgDbWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DeCompress.tsx b/packages/iconoir-react-native/src/DeCompress.tsx index f1c6166a..f1beda72 100644 --- a/packages/iconoir-react-native/src/DeCompress.tsx +++ b/packages/iconoir-react-native/src/DeCompress.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDeCompress( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDeCompress = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDeCompress( ); -} -const ForwardRef = React.forwardRef(SvgDeCompress); +}; +const ForwardRef = forwardRef(SvgDeCompress); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DeleteCircle.tsx b/packages/iconoir-react-native/src/DeleteCircle.tsx index 11348d84..c7891765 100644 --- a/packages/iconoir-react-native/src/DeleteCircle.tsx +++ b/packages/iconoir-react-native/src/DeleteCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDeleteCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDeleteCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDeleteCircle( ); -} -const ForwardRef = React.forwardRef(SvgDeleteCircle); +}; +const ForwardRef = forwardRef(SvgDeleteCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Delivery.tsx b/packages/iconoir-react-native/src/Delivery.tsx index c601464c..81aa8b9e 100644 --- a/packages/iconoir-react-native/src/Delivery.tsx +++ b/packages/iconoir-react-native/src/Delivery.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDelivery( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDelivery = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDelivery( ); -} -const ForwardRef = React.forwardRef(SvgDelivery); +}; +const ForwardRef = forwardRef(SvgDelivery); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DeliveryTruck.tsx b/packages/iconoir-react-native/src/DeliveryTruck.tsx index 81404767..8d3fcc30 100644 --- a/packages/iconoir-react-native/src/DeliveryTruck.tsx +++ b/packages/iconoir-react-native/src/DeliveryTruck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDeliveryTruck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDeliveryTruck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,38 +13,38 @@ function SvgDeliveryTruck( ); -} -const ForwardRef = React.forwardRef(SvgDeliveryTruck); +}; +const ForwardRef = forwardRef(SvgDeliveryTruck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Depth.tsx b/packages/iconoir-react-native/src/Depth.tsx index e93e99ae..b9d2f6b3 100644 --- a/packages/iconoir-react-native/src/Depth.tsx +++ b/packages/iconoir-react-native/src/Depth.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDepth( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDepth = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDepth( ); -} -const ForwardRef = React.forwardRef(SvgDepth); +}; +const ForwardRef = forwardRef(SvgDepth); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DesignNib.tsx b/packages/iconoir-react-native/src/DesignNib.tsx index 3b396086..077f152b 100644 --- a/packages/iconoir-react-native/src/DesignNib.tsx +++ b/packages/iconoir-react-native/src/DesignNib.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDesignNib( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDesignNib = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgDesignNib( - - + + - + ); -} -const ForwardRef = React.forwardRef(SvgDesignNib); +}; +const ForwardRef = forwardRef(SvgDesignNib); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DesignPencil.tsx b/packages/iconoir-react-native/src/DesignPencil.tsx index b3837dd7..6fb95a7d 100644 --- a/packages/iconoir-react-native/src/DesignPencil.tsx +++ b/packages/iconoir-react-native/src/DesignPencil.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDesignPencil( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDesignPencil = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgDesignPencil( ); -} -const ForwardRef = React.forwardRef(SvgDesignPencil); +}; +const ForwardRef = forwardRef(SvgDesignPencil); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Desk.tsx b/packages/iconoir-react-native/src/Desk.tsx index 1ed71122..579c6d5a 100644 --- a/packages/iconoir-react-native/src/Desk.tsx +++ b/packages/iconoir-react-native/src/Desk.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDesk( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDesk = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDesk( ); -} -const ForwardRef = React.forwardRef(SvgDesk); +}; +const ForwardRef = forwardRef(SvgDesk); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DevModeLaptop.tsx b/packages/iconoir-react-native/src/DevModeLaptop.tsx index 31aa90d1..ad7d4c7e 100644 --- a/packages/iconoir-react-native/src/DevModeLaptop.tsx +++ b/packages/iconoir-react-native/src/DevModeLaptop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDevModeLaptop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDevModeLaptop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgDevModeLaptop( ); -} -const ForwardRef = React.forwardRef(SvgDevModeLaptop); +}; +const ForwardRef = forwardRef(SvgDevModeLaptop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DevModePhone.tsx b/packages/iconoir-react-native/src/DevModePhone.tsx index 4e41f87f..bc1049cc 100644 --- a/packages/iconoir-react-native/src/DevModePhone.tsx +++ b/packages/iconoir-react-native/src/DevModePhone.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDevModePhone( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDevModePhone = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgDevModePhone( ); -} -const ForwardRef = React.forwardRef(SvgDevModePhone); +}; +const ForwardRef = forwardRef(SvgDevModePhone); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Developer.tsx b/packages/iconoir-react-native/src/Developer.tsx index 815be8bd..a80ba1f6 100644 --- a/packages/iconoir-react-native/src/Developer.tsx +++ b/packages/iconoir-react-native/src/Developer.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDeveloper( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDeveloper = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDeveloper( ); -} -const ForwardRef = React.forwardRef(SvgDeveloper); +}; +const ForwardRef = forwardRef(SvgDeveloper); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DewPoint.tsx b/packages/iconoir-react-native/src/DewPoint.tsx index 14af1935..9efb3a55 100644 --- a/packages/iconoir-react-native/src/DewPoint.tsx +++ b/packages/iconoir-react-native/src/DewPoint.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDewPoint( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDewPoint = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,35 +13,35 @@ function SvgDewPoint( ); -} -const ForwardRef = React.forwardRef(SvgDewPoint); +}; +const ForwardRef = forwardRef(SvgDewPoint); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Dialpad.tsx b/packages/iconoir-react-native/src/Dialpad.tsx index ba7748da..dcc03b16 100644 --- a/packages/iconoir-react-native/src/Dialpad.tsx +++ b/packages/iconoir-react-native/src/Dialpad.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDialpad( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDialpad = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgDialpad( ); -} -const ForwardRef = React.forwardRef(SvgDialpad); +}; +const ForwardRef = forwardRef(SvgDialpad); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Diameter.tsx b/packages/iconoir-react-native/src/Diameter.tsx index 816db3d1..139dc2e0 100644 --- a/packages/iconoir-react-native/src/Diameter.tsx +++ b/packages/iconoir-react-native/src/Diameter.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiameter( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDiameter = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDiameter( ); -} -const ForwardRef = React.forwardRef(SvgDiameter); +}; +const ForwardRef = forwardRef(SvgDiameter); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DiceFive.tsx b/packages/iconoir-react-native/src/DiceFive.tsx index faece807..7e424ac2 100644 --- a/packages/iconoir-react-native/src/DiceFive.tsx +++ b/packages/iconoir-react-native/src/DiceFive.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceFive( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDiceFive = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgDiceFive( ); -} -const ForwardRef = React.forwardRef(SvgDiceFive); +}; +const ForwardRef = forwardRef(SvgDiceFive); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DiceFour.tsx b/packages/iconoir-react-native/src/DiceFour.tsx index 5e227b98..c905a014 100644 --- a/packages/iconoir-react-native/src/DiceFour.tsx +++ b/packages/iconoir-react-native/src/DiceFour.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceFour( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDiceFour = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgDiceFour( ); -} -const ForwardRef = React.forwardRef(SvgDiceFour); +}; +const ForwardRef = forwardRef(SvgDiceFour); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DiceOne.tsx b/packages/iconoir-react-native/src/DiceOne.tsx index 67abb551..d9b3142b 100644 --- a/packages/iconoir-react-native/src/DiceOne.tsx +++ b/packages/iconoir-react-native/src/DiceOne.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceOne( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDiceOne = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgDiceOne( ); -} -const ForwardRef = React.forwardRef(SvgDiceOne); +}; +const ForwardRef = forwardRef(SvgDiceOne); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DiceSix.tsx b/packages/iconoir-react-native/src/DiceSix.tsx index 228a6eac..d08fa16f 100644 --- a/packages/iconoir-react-native/src/DiceSix.tsx +++ b/packages/iconoir-react-native/src/DiceSix.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceSix( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDiceSix = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgDiceSix( ); -} -const ForwardRef = React.forwardRef(SvgDiceSix); +}; +const ForwardRef = forwardRef(SvgDiceSix); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DiceThree.tsx b/packages/iconoir-react-native/src/DiceThree.tsx index 2560b6a9..4e0cceee 100644 --- a/packages/iconoir-react-native/src/DiceThree.tsx +++ b/packages/iconoir-react-native/src/DiceThree.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceThree( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDiceThree = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgDiceThree( ); -} -const ForwardRef = React.forwardRef(SvgDiceThree); +}; +const ForwardRef = forwardRef(SvgDiceThree); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DiceTwo.tsx b/packages/iconoir-react-native/src/DiceTwo.tsx index e4284e9e..9f141bfb 100644 --- a/packages/iconoir-react-native/src/DiceTwo.tsx +++ b/packages/iconoir-react-native/src/DiceTwo.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceTwo( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDiceTwo = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgDiceTwo( ); -} -const ForwardRef = React.forwardRef(SvgDiceTwo); +}; +const ForwardRef = forwardRef(SvgDiceTwo); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DimmerSwitch.tsx b/packages/iconoir-react-native/src/DimmerSwitch.tsx index f2f05b8c..16c40828 100644 --- a/packages/iconoir-react-native/src/DimmerSwitch.tsx +++ b/packages/iconoir-react-native/src/DimmerSwitch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDimmerSwitch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDimmerSwitch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDimmerSwitch( ); -} -const ForwardRef = React.forwardRef(SvgDimmerSwitch); +}; +const ForwardRef = forwardRef(SvgDimmerSwitch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DirectorChair.tsx b/packages/iconoir-react-native/src/DirectorChair.tsx index 90d370e5..6c501222 100644 --- a/packages/iconoir-react-native/src/DirectorChair.tsx +++ b/packages/iconoir-react-native/src/DirectorChair.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDirectorChair( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDirectorChair = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgDirectorChair( - + ); -} -const ForwardRef = React.forwardRef(SvgDirectorChair); +}; +const ForwardRef = forwardRef(SvgDirectorChair); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Discord.tsx b/packages/iconoir-react-native/src/Discord.tsx index 2206775e..3f63903a 100644 --- a/packages/iconoir-react-native/src/Discord.tsx +++ b/packages/iconoir-react-native/src/Discord.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiscord( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDiscord = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,39 @@ function SvgDiscord( + ); -} -const ForwardRef = React.forwardRef(SvgDiscord); +}; +const ForwardRef = forwardRef(SvgDiscord); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Dishwasher.tsx b/packages/iconoir-react-native/src/Dishwasher.tsx index 87d527b3..39503c9f 100644 --- a/packages/iconoir-react-native/src/Dishwasher.tsx +++ b/packages/iconoir-react-native/src/Dishwasher.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDishwasher( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDishwasher = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDishwasher( ); -} -const ForwardRef = React.forwardRef(SvgDishwasher); +}; +const ForwardRef = forwardRef(SvgDishwasher); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Display4K.tsx b/packages/iconoir-react-native/src/Display4K.tsx index e9ed3b68..578e8114 100644 --- a/packages/iconoir-react-native/src/Display4K.tsx +++ b/packages/iconoir-react-native/src/Display4K.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDisplay4K( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDisplay4K = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgDisplay4K( ); -} -const ForwardRef = React.forwardRef(SvgDisplay4K); +}; +const ForwardRef = forwardRef(SvgDisplay4K); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Divide.tsx b/packages/iconoir-react-native/src/Divide.tsx index aca7a929..698d77db 100644 --- a/packages/iconoir-react-native/src/Divide.tsx +++ b/packages/iconoir-react-native/src/Divide.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDivide( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDivide = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDivide( ); -} -const ForwardRef = React.forwardRef(SvgDivide); +}; +const ForwardRef = forwardRef(SvgDivide); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DivideSelection1.tsx b/packages/iconoir-react-native/src/DivideSelection1.tsx index 0177477c..6d27d816 100644 --- a/packages/iconoir-react-native/src/DivideSelection1.tsx +++ b/packages/iconoir-react-native/src/DivideSelection1.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDivideSelection1( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDivideSelection1 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDivideSelection1( ); -} -const ForwardRef = React.forwardRef(SvgDivideSelection1); +}; +const ForwardRef = forwardRef(SvgDivideSelection1); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DivideSelection2.tsx b/packages/iconoir-react-native/src/DivideSelection2.tsx index e26e8610..3a6819b6 100644 --- a/packages/iconoir-react-native/src/DivideSelection2.tsx +++ b/packages/iconoir-react-native/src/DivideSelection2.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDivideSelection2( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDivideSelection2 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDivideSelection2( ); -} -const ForwardRef = React.forwardRef(SvgDivideSelection2); +}; +const ForwardRef = forwardRef(SvgDivideSelection2); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DivideThree.tsx b/packages/iconoir-react-native/src/DivideThree.tsx index 9068bbf0..030d4b29 100644 --- a/packages/iconoir-react-native/src/DivideThree.tsx +++ b/packages/iconoir-react-native/src/DivideThree.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDivideThree( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDivideThree = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDivideThree( ); -} -const ForwardRef = React.forwardRef(SvgDivideThree); +}; +const ForwardRef = forwardRef(SvgDivideThree); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Dna.tsx b/packages/iconoir-react-native/src/Dna.tsx index cbd1dc98..9cc32f43 100644 --- a/packages/iconoir-react-native/src/Dna.tsx +++ b/packages/iconoir-react-native/src/Dna.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDna( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDna = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDna( ); -} -const ForwardRef = React.forwardRef(SvgDna); +}; +const ForwardRef = forwardRef(SvgDna); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DocSearch.tsx b/packages/iconoir-react-native/src/DocSearch.tsx index 52a82d4a..8aa00c8b 100644 --- a/packages/iconoir-react-native/src/DocSearch.tsx +++ b/packages/iconoir-react-native/src/DocSearch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDocSearch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDocSearch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgDocSearch( ); -} -const ForwardRef = React.forwardRef(SvgDocSearch); +}; +const ForwardRef = forwardRef(SvgDocSearch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DocSearchAlt.tsx b/packages/iconoir-react-native/src/DocSearchAlt.tsx index 30931fb1..86d4a2e8 100644 --- a/packages/iconoir-react-native/src/DocSearchAlt.tsx +++ b/packages/iconoir-react-native/src/DocSearchAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDocSearchAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDocSearchAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgDocSearchAlt( ); -} -const ForwardRef = React.forwardRef(SvgDocSearchAlt); +}; +const ForwardRef = forwardRef(SvgDocSearchAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DocStar.tsx b/packages/iconoir-react-native/src/DocStar.tsx index 412f2968..166c4aac 100644 --- a/packages/iconoir-react-native/src/DocStar.tsx +++ b/packages/iconoir-react-native/src/DocStar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDocStar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDocStar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgDocStar( ); -} -const ForwardRef = React.forwardRef(SvgDocStar); +}; +const ForwardRef = forwardRef(SvgDocStar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DocStarAlt.tsx b/packages/iconoir-react-native/src/DocStarAlt.tsx index ff93ce2f..05a4a14a 100644 --- a/packages/iconoir-react-native/src/DocStarAlt.tsx +++ b/packages/iconoir-react-native/src/DocStarAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDocStarAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDocStarAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDocStarAlt( ); -} -const ForwardRef = React.forwardRef(SvgDocStarAlt); +}; +const ForwardRef = forwardRef(SvgDocStarAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DogecoinCircle.tsx b/packages/iconoir-react-native/src/DogecoinCircle.tsx index b2e4573f..0a7e7aae 100644 --- a/packages/iconoir-react-native/src/DogecoinCircle.tsx +++ b/packages/iconoir-react-native/src/DogecoinCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDogecoinCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDogecoinCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgDogecoinCircle( ); -} -const ForwardRef = React.forwardRef(SvgDogecoinCircle); +}; +const ForwardRef = forwardRef(SvgDogecoinCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DogecoinRotateOut.tsx b/packages/iconoir-react-native/src/DogecoinRotateOut.tsx index a416d362..0d5a300a 100644 --- a/packages/iconoir-react-native/src/DogecoinRotateOut.tsx +++ b/packages/iconoir-react-native/src/DogecoinRotateOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDogecoinRotateOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDogecoinRotateOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,43 +13,43 @@ function SvgDogecoinRotateOut( ); -} -const ForwardRef = React.forwardRef(SvgDogecoinRotateOut); +}; +const ForwardRef = forwardRef(SvgDogecoinRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Dollar.tsx b/packages/iconoir-react-native/src/Dollar.tsx index 0af610ce..b11174b6 100644 --- a/packages/iconoir-react-native/src/Dollar.tsx +++ b/packages/iconoir-react-native/src/Dollar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDollar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDollar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDollar( ); -} -const ForwardRef = React.forwardRef(SvgDollar); +}; +const ForwardRef = forwardRef(SvgDollar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DomoticIssue.tsx b/packages/iconoir-react-native/src/DomoticIssue.tsx index e7f2f8e6..1dc610ad 100644 --- a/packages/iconoir-react-native/src/DomoticIssue.tsx +++ b/packages/iconoir-react-native/src/DomoticIssue.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDomoticIssue( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDomoticIssue = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDomoticIssue( ); -} -const ForwardRef = React.forwardRef(SvgDomoticIssue); +}; +const ForwardRef = forwardRef(SvgDomoticIssue); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Donate.tsx b/packages/iconoir-react-native/src/Donate.tsx index 82f19a25..8a08f6c3 100644 --- a/packages/iconoir-react-native/src/Donate.tsx +++ b/packages/iconoir-react-native/src/Donate.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDonate( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDonate = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,38 +13,38 @@ function SvgDonate( ); -} -const ForwardRef = React.forwardRef(SvgDonate); +}; +const ForwardRef = forwardRef(SvgDonate); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DoubleCheck.tsx b/packages/iconoir-react-native/src/DoubleCheck.tsx index 6654dd59..4b2913c4 100644 --- a/packages/iconoir-react-native/src/DoubleCheck.tsx +++ b/packages/iconoir-react-native/src/DoubleCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDoubleCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDoubleCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgDoubleCheck( ); -} -const ForwardRef = React.forwardRef(SvgDoubleCheck); +}; +const ForwardRef = forwardRef(SvgDoubleCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DownRoundArrow.tsx b/packages/iconoir-react-native/src/DownRoundArrow.tsx index b07a3f0d..169adba3 100644 --- a/packages/iconoir-react-native/src/DownRoundArrow.tsx +++ b/packages/iconoir-react-native/src/DownRoundArrow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDownRoundArrow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDownRoundArrow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgDownRoundArrow( ); -} -const ForwardRef = React.forwardRef(SvgDownRoundArrow); +}; +const ForwardRef = forwardRef(SvgDownRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Download.tsx b/packages/iconoir-react-native/src/Download.tsx index 5faa0f1e..18721472 100644 --- a/packages/iconoir-react-native/src/Download.tsx +++ b/packages/iconoir-react-native/src/Download.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDownload( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDownload = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDownload( ); -} -const ForwardRef = React.forwardRef(SvgDownload); +}; +const ForwardRef = forwardRef(SvgDownload); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DownloadCircle.tsx b/packages/iconoir-react-native/src/DownloadCircle.tsx index 8fcc4723..9f8e6a72 100644 --- a/packages/iconoir-react-native/src/DownloadCircle.tsx +++ b/packages/iconoir-react-native/src/DownloadCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDownloadCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDownloadCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDownloadCircle( ); -} -const ForwardRef = React.forwardRef(SvgDownloadCircle); +}; +const ForwardRef = forwardRef(SvgDownloadCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DownloadDataWindow.tsx b/packages/iconoir-react-native/src/DownloadDataWindow.tsx index 4372d171..883b838b 100644 --- a/packages/iconoir-react-native/src/DownloadDataWindow.tsx +++ b/packages/iconoir-react-native/src/DownloadDataWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDownloadDataWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDownloadDataWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgDownloadDataWindow( ); -} -const ForwardRef = React.forwardRef(SvgDownloadDataWindow); +}; +const ForwardRef = forwardRef(SvgDownloadDataWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DownloadSquare.tsx b/packages/iconoir-react-native/src/DownloadSquare.tsx index a497e373..9213fe10 100644 --- a/packages/iconoir-react-native/src/DownloadSquare.tsx +++ b/packages/iconoir-react-native/src/DownloadSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDownloadSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDownloadSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgDownloadSquare( ); -} -const ForwardRef = React.forwardRef(SvgDownloadSquare); +}; +const ForwardRef = forwardRef(SvgDownloadSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Drag.tsx b/packages/iconoir-react-native/src/Drag.tsx index f99a7d61..5c94c3d9 100644 --- a/packages/iconoir-react-native/src/Drag.tsx +++ b/packages/iconoir-react-native/src/Drag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDrag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDrag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDrag( ); -} -const ForwardRef = React.forwardRef(SvgDrag); +}; +const ForwardRef = forwardRef(SvgDrag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DragHandGesture.tsx b/packages/iconoir-react-native/src/DragHandGesture.tsx index 5b198b04..1c4f24db 100644 --- a/packages/iconoir-react-native/src/DragHandGesture.tsx +++ b/packages/iconoir-react-native/src/DragHandGesture.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDragHandGesture( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDragHandGesture = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgDragHandGesture( ); -} -const ForwardRef = React.forwardRef(SvgDragHandGesture); +}; +const ForwardRef = forwardRef(SvgDragHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Drawer.tsx b/packages/iconoir-react-native/src/Drawer.tsx index c5ac0b90..8832b37b 100644 --- a/packages/iconoir-react-native/src/Drawer.tsx +++ b/packages/iconoir-react-native/src/Drawer.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDrawer( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDrawer = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgDrawer( ); -} -const ForwardRef = React.forwardRef(SvgDrawer); +}; +const ForwardRef = forwardRef(SvgDrawer); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Dribbble.tsx b/packages/iconoir-react-native/src/Dribbble.tsx index 626db0fc..cee96b3d 100644 --- a/packages/iconoir-react-native/src/Dribbble.tsx +++ b/packages/iconoir-react-native/src/Dribbble.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDribbble( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDribbble = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,33 @@ function SvgDribbble( + + ); -} -const ForwardRef = React.forwardRef(SvgDribbble); +}; +const ForwardRef = forwardRef(SvgDribbble); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Drone.tsx b/packages/iconoir-react-native/src/Drone.tsx index 57e55752..a66ef5ab 100644 --- a/packages/iconoir-react-native/src/Drone.tsx +++ b/packages/iconoir-react-native/src/Drone.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDrone( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDrone = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,40 +13,40 @@ function SvgDrone( ); -} -const ForwardRef = React.forwardRef(SvgDrone); +}; +const ForwardRef = forwardRef(SvgDrone); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DroneChargeFull.tsx b/packages/iconoir-react-native/src/DroneChargeFull.tsx index cd07f38f..39105c86 100644 --- a/packages/iconoir-react-native/src/DroneChargeFull.tsx +++ b/packages/iconoir-react-native/src/DroneChargeFull.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneChargeFull( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDroneChargeFull = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,50 +13,50 @@ function SvgDroneChargeFull( ); -} -const ForwardRef = React.forwardRef(SvgDroneChargeFull); +}; +const ForwardRef = forwardRef(SvgDroneChargeFull); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DroneChargeHalf.tsx b/packages/iconoir-react-native/src/DroneChargeHalf.tsx index 1fe4b1f9..d116aaaf 100644 --- a/packages/iconoir-react-native/src/DroneChargeHalf.tsx +++ b/packages/iconoir-react-native/src/DroneChargeHalf.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneChargeHalf( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDroneChargeHalf = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,50 +13,50 @@ function SvgDroneChargeHalf( ); -} -const ForwardRef = React.forwardRef(SvgDroneChargeHalf); +}; +const ForwardRef = forwardRef(SvgDroneChargeHalf); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DroneChargeLow.tsx b/packages/iconoir-react-native/src/DroneChargeLow.tsx index b171e4d0..1204b64a 100644 --- a/packages/iconoir-react-native/src/DroneChargeLow.tsx +++ b/packages/iconoir-react-native/src/DroneChargeLow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneChargeLow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDroneChargeLow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,50 +13,50 @@ function SvgDroneChargeLow( ); -} -const ForwardRef = React.forwardRef(SvgDroneChargeLow); +}; +const ForwardRef = forwardRef(SvgDroneChargeLow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DroneCheck.tsx b/packages/iconoir-react-native/src/DroneCheck.tsx index 8d6ac1ce..2265813a 100644 --- a/packages/iconoir-react-native/src/DroneCheck.tsx +++ b/packages/iconoir-react-native/src/DroneCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDroneCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,46 +13,46 @@ function SvgDroneCheck( ); -} -const ForwardRef = React.forwardRef(SvgDroneCheck); +}; +const ForwardRef = forwardRef(SvgDroneCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DroneError.tsx b/packages/iconoir-react-native/src/DroneError.tsx index 8f351d6d..fad19c7e 100644 --- a/packages/iconoir-react-native/src/DroneError.tsx +++ b/packages/iconoir-react-native/src/DroneError.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneError( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDroneError = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,46 +13,46 @@ function SvgDroneError( ); -} -const ForwardRef = React.forwardRef(SvgDroneError); +}; +const ForwardRef = forwardRef(SvgDroneError); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DroneLanding.tsx b/packages/iconoir-react-native/src/DroneLanding.tsx index 3bf65381..57c26c54 100644 --- a/packages/iconoir-react-native/src/DroneLanding.tsx +++ b/packages/iconoir-react-native/src/DroneLanding.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneLanding( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDroneLanding = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,46 +13,46 @@ function SvgDroneLanding( ); -} -const ForwardRef = React.forwardRef(SvgDroneLanding); +}; +const ForwardRef = forwardRef(SvgDroneLanding); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DroneRefresh.tsx b/packages/iconoir-react-native/src/DroneRefresh.tsx index ab5d7ff3..57138ff6 100644 --- a/packages/iconoir-react-native/src/DroneRefresh.tsx +++ b/packages/iconoir-react-native/src/DroneRefresh.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneRefresh( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDroneRefresh = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,58 +13,58 @@ function SvgDroneRefresh( ); -} -const ForwardRef = React.forwardRef(SvgDroneRefresh); +}; +const ForwardRef = forwardRef(SvgDroneRefresh); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DroneTakeOff.tsx b/packages/iconoir-react-native/src/DroneTakeOff.tsx index afee7931..d107809f 100644 --- a/packages/iconoir-react-native/src/DroneTakeOff.tsx +++ b/packages/iconoir-react-native/src/DroneTakeOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneTakeOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDroneTakeOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,46 +13,46 @@ function SvgDroneTakeOff( ); -} -const ForwardRef = React.forwardRef(SvgDroneTakeOff); +}; +const ForwardRef = forwardRef(SvgDroneTakeOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Droplet.tsx b/packages/iconoir-react-native/src/Droplet.tsx index 01aa074f..29031d60 100644 --- a/packages/iconoir-react-native/src/Droplet.tsx +++ b/packages/iconoir-react-native/src/Droplet.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroplet( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDroplet = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgDroplet( ); -} -const ForwardRef = React.forwardRef(SvgDroplet); +}; +const ForwardRef = forwardRef(SvgDroplet); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/DropletHalf.tsx b/packages/iconoir-react-native/src/DropletHalf.tsx index 8a6d2077..0e76a126 100644 --- a/packages/iconoir-react-native/src/DropletHalf.tsx +++ b/packages/iconoir-react-native/src/DropletHalf.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDropletHalf( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgDropletHalf = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgDropletHalf( ); -} -const ForwardRef = React.forwardRef(SvgDropletHalf); +}; +const ForwardRef = forwardRef(SvgDropletHalf); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EaseCurveControlPoints.tsx b/packages/iconoir-react-native/src/EaseCurveControlPoints.tsx index d53dbf75..708df535 100644 --- a/packages/iconoir-react-native/src/EaseCurveControlPoints.tsx +++ b/packages/iconoir-react-native/src/EaseCurveControlPoints.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseCurveControlPoints( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEaseCurveControlPoints = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEaseCurveControlPoints( ); -} -const ForwardRef = React.forwardRef(SvgEaseCurveControlPoints); +}; +const ForwardRef = forwardRef(SvgEaseCurveControlPoints); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EaseIn.tsx b/packages/iconoir-react-native/src/EaseIn.tsx index 20594743..00d53a7f 100644 --- a/packages/iconoir-react-native/src/EaseIn.tsx +++ b/packages/iconoir-react-native/src/EaseIn.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseIn( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEaseIn = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEaseIn( ); -} -const ForwardRef = React.forwardRef(SvgEaseIn); +}; +const ForwardRef = forwardRef(SvgEaseIn); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EaseInControlPoint.tsx b/packages/iconoir-react-native/src/EaseInControlPoint.tsx index 338e57d3..8e0bc470 100644 --- a/packages/iconoir-react-native/src/EaseInControlPoint.tsx +++ b/packages/iconoir-react-native/src/EaseInControlPoint.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseInControlPoint( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEaseInControlPoint = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEaseInControlPoint( ); -} -const ForwardRef = React.forwardRef(SvgEaseInControlPoint); +}; +const ForwardRef = forwardRef(SvgEaseInControlPoint); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EaseInOut.tsx b/packages/iconoir-react-native/src/EaseInOut.tsx index 1d3a78ba..02520e29 100644 --- a/packages/iconoir-react-native/src/EaseInOut.tsx +++ b/packages/iconoir-react-native/src/EaseInOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseInOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEaseInOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEaseInOut( ); -} -const ForwardRef = React.forwardRef(SvgEaseInOut); +}; +const ForwardRef = forwardRef(SvgEaseInOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EaseOut.tsx b/packages/iconoir-react-native/src/EaseOut.tsx index 37fb31a9..4f3cf6e4 100644 --- a/packages/iconoir-react-native/src/EaseOut.tsx +++ b/packages/iconoir-react-native/src/EaseOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEaseOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEaseOut( ); -} -const ForwardRef = React.forwardRef(SvgEaseOut); +}; +const ForwardRef = forwardRef(SvgEaseOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EaseOutControlPoint.tsx b/packages/iconoir-react-native/src/EaseOutControlPoint.tsx index 60e24ab7..93fd511f 100644 --- a/packages/iconoir-react-native/src/EaseOutControlPoint.tsx +++ b/packages/iconoir-react-native/src/EaseOutControlPoint.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseOutControlPoint( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEaseOutControlPoint = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEaseOutControlPoint( ); -} -const ForwardRef = React.forwardRef(SvgEaseOutControlPoint); +}; +const ForwardRef = forwardRef(SvgEaseOutControlPoint); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EcologyBook.tsx b/packages/iconoir-react-native/src/EcologyBook.tsx index f862c773..6b47b58d 100644 --- a/packages/iconoir-react-native/src/EcologyBook.tsx +++ b/packages/iconoir-react-native/src/EcologyBook.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEcologyBook( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEcologyBook = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,39 @@ function SvgEcologyBook( - + + ); -} -const ForwardRef = React.forwardRef(SvgEcologyBook); +}; +const ForwardRef = forwardRef(SvgEcologyBook); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Edit.tsx b/packages/iconoir-react-native/src/Edit.tsx index d2242acd..4ea002a7 100644 --- a/packages/iconoir-react-native/src/Edit.tsx +++ b/packages/iconoir-react-native/src/Edit.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEdit( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEdit = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEdit( ); -} -const ForwardRef = React.forwardRef(SvgEdit); +}; +const ForwardRef = forwardRef(SvgEdit); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EditPencil.tsx b/packages/iconoir-react-native/src/EditPencil.tsx index 152e479c..465bdd0a 100644 --- a/packages/iconoir-react-native/src/EditPencil.tsx +++ b/packages/iconoir-react-native/src/EditPencil.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEditPencil( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEditPencil = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEditPencil( ); -} -const ForwardRef = React.forwardRef(SvgEditPencil); +}; +const ForwardRef = forwardRef(SvgEditPencil); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Egg.tsx b/packages/iconoir-react-native/src/Egg.tsx index c318d2d8..5b378cab 100644 --- a/packages/iconoir-react-native/src/Egg.tsx +++ b/packages/iconoir-react-native/src/Egg.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEgg( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEgg = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEgg( ); -} -const ForwardRef = React.forwardRef(SvgEgg); +}; +const ForwardRef = forwardRef(SvgEgg); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Eject.tsx b/packages/iconoir-react-native/src/Eject.tsx index 5d8b22f9..8b065718 100644 --- a/packages/iconoir-react-native/src/Eject.tsx +++ b/packages/iconoir-react-native/src/Eject.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEject( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEject = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgEject( ); -} -const ForwardRef = React.forwardRef(SvgEject); +}; +const ForwardRef = forwardRef(SvgEject); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ElectronicsChip.tsx b/packages/iconoir-react-native/src/ElectronicsChip.tsx index c3f7805c..cfba02bc 100644 --- a/packages/iconoir-react-native/src/ElectronicsChip.tsx +++ b/packages/iconoir-react-native/src/ElectronicsChip.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgElectronicsChip( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgElectronicsChip = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgElectronicsChip( ); -} -const ForwardRef = React.forwardRef(SvgElectronicsChip); +}; +const ForwardRef = forwardRef(SvgElectronicsChip); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ElectronicsTransistor.tsx b/packages/iconoir-react-native/src/ElectronicsTransistor.tsx index f7f3ac1f..b2a5f7f5 100644 --- a/packages/iconoir-react-native/src/ElectronicsTransistor.tsx +++ b/packages/iconoir-react-native/src/ElectronicsTransistor.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgElectronicsTransistor( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgElectronicsTransistor = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgElectronicsTransistor( ); -} -const ForwardRef = React.forwardRef(SvgElectronicsTransistor); +}; +const ForwardRef = forwardRef(SvgElectronicsTransistor); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Elevator.tsx b/packages/iconoir-react-native/src/Elevator.tsx index ab3026a8..38772daa 100644 --- a/packages/iconoir-react-native/src/Elevator.tsx +++ b/packages/iconoir-react-native/src/Elevator.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgElevator( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgElevator = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgElevator( ); -} -const ForwardRef = React.forwardRef(SvgElevator); +}; +const ForwardRef = forwardRef(SvgElevator); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Emoji.tsx b/packages/iconoir-react-native/src/Emoji.tsx index 04a30332..33d211ca 100644 --- a/packages/iconoir-react-native/src/Emoji.tsx +++ b/packages/iconoir-react-native/src/Emoji.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmoji( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmoji = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgEmoji( ); -} -const ForwardRef = React.forwardRef(SvgEmoji); +}; +const ForwardRef = forwardRef(SvgEmoji); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiBall.tsx b/packages/iconoir-react-native/src/EmojiBall.tsx index f497d357..653c3a3b 100644 --- a/packages/iconoir-react-native/src/EmojiBall.tsx +++ b/packages/iconoir-react-native/src/EmojiBall.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiBall( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiBall = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEmojiBall( ); -} -const ForwardRef = React.forwardRef(SvgEmojiBall); +}; +const ForwardRef = forwardRef(SvgEmojiBall); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiBlinkLeft.tsx b/packages/iconoir-react-native/src/EmojiBlinkLeft.tsx index ab447073..2e5ba642 100644 --- a/packages/iconoir-react-native/src/EmojiBlinkLeft.tsx +++ b/packages/iconoir-react-native/src/EmojiBlinkLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiBlinkLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiBlinkLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgEmojiBlinkLeft( ); -} -const ForwardRef = React.forwardRef(SvgEmojiBlinkLeft); +}; +const ForwardRef = forwardRef(SvgEmojiBlinkLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiBlinkRight.tsx b/packages/iconoir-react-native/src/EmojiBlinkRight.tsx index 275d26d4..e3e70075 100644 --- a/packages/iconoir-react-native/src/EmojiBlinkRight.tsx +++ b/packages/iconoir-react-native/src/EmojiBlinkRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiBlinkRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiBlinkRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgEmojiBlinkRight( ); -} -const ForwardRef = React.forwardRef(SvgEmojiBlinkRight); +}; +const ForwardRef = forwardRef(SvgEmojiBlinkRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiLookDown.tsx b/packages/iconoir-react-native/src/EmojiLookDown.tsx index b5895bef..cf438d8c 100644 --- a/packages/iconoir-react-native/src/EmojiLookDown.tsx +++ b/packages/iconoir-react-native/src/EmojiLookDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiLookDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiLookDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgEmojiLookDown( ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookDown); +}; +const ForwardRef = forwardRef(SvgEmojiLookDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiLookLeft.tsx b/packages/iconoir-react-native/src/EmojiLookLeft.tsx index 277f126a..837f0cc9 100644 --- a/packages/iconoir-react-native/src/EmojiLookLeft.tsx +++ b/packages/iconoir-react-native/src/EmojiLookLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiLookLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiLookLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgEmojiLookLeft( ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookLeft); +}; +const ForwardRef = forwardRef(SvgEmojiLookLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiLookRight.tsx b/packages/iconoir-react-native/src/EmojiLookRight.tsx index 751e3ea7..99045d9b 100644 --- a/packages/iconoir-react-native/src/EmojiLookRight.tsx +++ b/packages/iconoir-react-native/src/EmojiLookRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiLookRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiLookRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgEmojiLookRight( ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookRight); +}; +const ForwardRef = forwardRef(SvgEmojiLookRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiLookUp.tsx b/packages/iconoir-react-native/src/EmojiLookUp.tsx index 21ef1ef0..4aa3f053 100644 --- a/packages/iconoir-react-native/src/EmojiLookUp.tsx +++ b/packages/iconoir-react-native/src/EmojiLookUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiLookUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiLookUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgEmojiLookUp( ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookUp); +}; +const ForwardRef = forwardRef(SvgEmojiLookUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiPuzzled.tsx b/packages/iconoir-react-native/src/EmojiPuzzled.tsx index ac05b133..8ff8add5 100644 --- a/packages/iconoir-react-native/src/EmojiPuzzled.tsx +++ b/packages/iconoir-react-native/src/EmojiPuzzled.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiPuzzled( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiPuzzled = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgEmojiPuzzled( + - ); -} -const ForwardRef = React.forwardRef(SvgEmojiPuzzled); +}; +const ForwardRef = forwardRef(SvgEmojiPuzzled); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiQuite.tsx b/packages/iconoir-react-native/src/EmojiQuite.tsx index 00ce85a7..77b14123 100644 --- a/packages/iconoir-react-native/src/EmojiQuite.tsx +++ b/packages/iconoir-react-native/src/EmojiQuite.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiQuite( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiQuite = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgEmojiQuite( ); -} -const ForwardRef = React.forwardRef(SvgEmojiQuite); +}; +const ForwardRef = forwardRef(SvgEmojiQuite); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiReally.tsx b/packages/iconoir-react-native/src/EmojiReally.tsx index b3c13c06..1a208584 100644 --- a/packages/iconoir-react-native/src/EmojiReally.tsx +++ b/packages/iconoir-react-native/src/EmojiReally.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiReally( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiReally = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEmojiReally( ); -} -const ForwardRef = React.forwardRef(SvgEmojiReally); +}; +const ForwardRef = forwardRef(SvgEmojiReally); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiSad.tsx b/packages/iconoir-react-native/src/EmojiSad.tsx index 1be8fb3e..27763867 100644 --- a/packages/iconoir-react-native/src/EmojiSad.tsx +++ b/packages/iconoir-react-native/src/EmojiSad.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSad( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiSad = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgEmojiSad( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSad); +}; +const ForwardRef = forwardRef(SvgEmojiSad); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiSatisfied.tsx b/packages/iconoir-react-native/src/EmojiSatisfied.tsx index 4e2c5594..9ab8cd56 100644 --- a/packages/iconoir-react-native/src/EmojiSatisfied.tsx +++ b/packages/iconoir-react-native/src/EmojiSatisfied.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSatisfied( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiSatisfied = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgEmojiSatisfied( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSatisfied); +}; +const ForwardRef = forwardRef(SvgEmojiSatisfied); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiSingLeft.tsx b/packages/iconoir-react-native/src/EmojiSingLeft.tsx index 65e4d0ac..8015321f 100644 --- a/packages/iconoir-react-native/src/EmojiSingLeft.tsx +++ b/packages/iconoir-react-native/src/EmojiSingLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSingLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiSingLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgEmojiSingLeft( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingLeft); +}; +const ForwardRef = forwardRef(SvgEmojiSingLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiSingLeftNote.tsx b/packages/iconoir-react-native/src/EmojiSingLeftNote.tsx index 048a7733..ae85635e 100644 --- a/packages/iconoir-react-native/src/EmojiSingLeftNote.tsx +++ b/packages/iconoir-react-native/src/EmojiSingLeftNote.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSingLeftNote( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiSingLeftNote = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,40 +13,43 @@ function SvgEmojiSingLeftNote( - + ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingLeftNote); +}; +const ForwardRef = forwardRef(SvgEmojiSingLeftNote); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiSingRight.tsx b/packages/iconoir-react-native/src/EmojiSingRight.tsx index bcc16560..c83775d5 100644 --- a/packages/iconoir-react-native/src/EmojiSingRight.tsx +++ b/packages/iconoir-react-native/src/EmojiSingRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSingRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiSingRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,41 +13,41 @@ function SvgEmojiSingRight( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingRight); +}; +const ForwardRef = forwardRef(SvgEmojiSingRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiSingRightNote.tsx b/packages/iconoir-react-native/src/EmojiSingRightNote.tsx index 116ea72b..37884fcb 100644 --- a/packages/iconoir-react-native/src/EmojiSingRightNote.tsx +++ b/packages/iconoir-react-native/src/EmojiSingRightNote.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSingRightNote( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiSingRightNote = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,40 +13,43 @@ function SvgEmojiSingRightNote( - + ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingRightNote); +}; +const ForwardRef = forwardRef(SvgEmojiSingRightNote); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiSurprise.tsx b/packages/iconoir-react-native/src/EmojiSurprise.tsx index 691facca..0686d682 100644 --- a/packages/iconoir-react-native/src/EmojiSurprise.tsx +++ b/packages/iconoir-react-native/src/EmojiSurprise.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSurprise( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiSurprise = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgEmojiSurprise( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSurprise); +}; +const ForwardRef = forwardRef(SvgEmojiSurprise); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiSurpriseAlt.tsx b/packages/iconoir-react-native/src/EmojiSurpriseAlt.tsx index 9076f7f9..de6f70c3 100644 --- a/packages/iconoir-react-native/src/EmojiSurpriseAlt.tsx +++ b/packages/iconoir-react-native/src/EmojiSurpriseAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSurpriseAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiSurpriseAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgEmojiSurpriseAlt( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSurpriseAlt); +}; +const ForwardRef = forwardRef(SvgEmojiSurpriseAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiTalkingAngry.tsx b/packages/iconoir-react-native/src/EmojiTalkingAngry.tsx index c47179c1..ea4725d5 100644 --- a/packages/iconoir-react-native/src/EmojiTalkingAngry.tsx +++ b/packages/iconoir-react-native/src/EmojiTalkingAngry.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiTalkingAngry( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiTalkingAngry = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEmojiTalkingAngry( ); -} -const ForwardRef = React.forwardRef(SvgEmojiTalkingAngry); +}; +const ForwardRef = forwardRef(SvgEmojiTalkingAngry); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiTalkingHappy.tsx b/packages/iconoir-react-native/src/EmojiTalkingHappy.tsx index e8010a27..c308e8aa 100644 --- a/packages/iconoir-react-native/src/EmojiTalkingHappy.tsx +++ b/packages/iconoir-react-native/src/EmojiTalkingHappy.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiTalkingHappy( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiTalkingHappy = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEmojiTalkingHappy( ); -} -const ForwardRef = React.forwardRef(SvgEmojiTalkingHappy); +}; +const ForwardRef = forwardRef(SvgEmojiTalkingHappy); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiThinkLeft.tsx b/packages/iconoir-react-native/src/EmojiThinkLeft.tsx index 8dd281f6..41d8bc20 100644 --- a/packages/iconoir-react-native/src/EmojiThinkLeft.tsx +++ b/packages/iconoir-react-native/src/EmojiThinkLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiThinkLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiThinkLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgEmojiThinkLeft( ); -} -const ForwardRef = React.forwardRef(SvgEmojiThinkLeft); +}; +const ForwardRef = forwardRef(SvgEmojiThinkLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmojiThinkRight.tsx b/packages/iconoir-react-native/src/EmojiThinkRight.tsx index 0a0669d6..ca7a1dba 100644 --- a/packages/iconoir-react-native/src/EmojiThinkRight.tsx +++ b/packages/iconoir-react-native/src/EmojiThinkRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiThinkRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmojiThinkRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgEmojiThinkRight( ); -} -const ForwardRef = React.forwardRef(SvgEmojiThinkRight); +}; +const ForwardRef = forwardRef(SvgEmojiThinkRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EmptyPage.tsx b/packages/iconoir-react-native/src/EmptyPage.tsx index 3867e4f5..60d9fbb4 100644 --- a/packages/iconoir-react-native/src/EmptyPage.tsx +++ b/packages/iconoir-react-native/src/EmptyPage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmptyPage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEmptyPage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgEmptyPage( ); -} -const ForwardRef = React.forwardRef(SvgEmptyPage); +}; +const ForwardRef = forwardRef(SvgEmptyPage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EnergyUsageWindow.tsx b/packages/iconoir-react-native/src/EnergyUsageWindow.tsx index b3a96914..12d53b86 100644 --- a/packages/iconoir-react-native/src/EnergyUsageWindow.tsx +++ b/packages/iconoir-react-native/src/EnergyUsageWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEnergyUsageWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEnergyUsageWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgEnergyUsageWindow( ); -} -const ForwardRef = React.forwardRef(SvgEnergyUsageWindow); +}; +const ForwardRef = forwardRef(SvgEnergyUsageWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Enlarge.tsx b/packages/iconoir-react-native/src/Enlarge.tsx index d4c91007..bf0d7f2f 100644 --- a/packages/iconoir-react-native/src/Enlarge.tsx +++ b/packages/iconoir-react-native/src/Enlarge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEnlarge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEnlarge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEnlarge( ); -} -const ForwardRef = React.forwardRef(SvgEnlarge); +}; +const ForwardRef = forwardRef(SvgEnlarge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EnlargeRoundArrow.tsx b/packages/iconoir-react-native/src/EnlargeRoundArrow.tsx index e53bd3d2..e648a332 100644 --- a/packages/iconoir-react-native/src/EnlargeRoundArrow.tsx +++ b/packages/iconoir-react-native/src/EnlargeRoundArrow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEnlargeRoundArrow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEnlargeRoundArrow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgEnlargeRoundArrow( ); -} -const ForwardRef = React.forwardRef(SvgEnlargeRoundArrow); +}; +const ForwardRef = forwardRef(SvgEnlargeRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Erase.tsx b/packages/iconoir-react-native/src/Erase.tsx index dff11906..c2608bb2 100644 --- a/packages/iconoir-react-native/src/Erase.tsx +++ b/packages/iconoir-react-native/src/Erase.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgErase( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgErase = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgErase( ); -} -const ForwardRef = React.forwardRef(SvgErase); +}; +const ForwardRef = forwardRef(SvgErase); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ErrorWindow.tsx b/packages/iconoir-react-native/src/ErrorWindow.tsx index 5745bb31..951f8698 100644 --- a/packages/iconoir-react-native/src/ErrorWindow.tsx +++ b/packages/iconoir-react-native/src/ErrorWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgErrorWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgErrorWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgErrorWindow( ); -} -const ForwardRef = React.forwardRef(SvgErrorWindow); +}; +const ForwardRef = forwardRef(SvgErrorWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EthereumCircle.tsx b/packages/iconoir-react-native/src/EthereumCircle.tsx index 0b9e26c7..c561c8e5 100644 --- a/packages/iconoir-react-native/src/EthereumCircle.tsx +++ b/packages/iconoir-react-native/src/EthereumCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEthereumCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEthereumCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgEthereumCircle( ); -} -const ForwardRef = React.forwardRef(SvgEthereumCircle); +}; +const ForwardRef = forwardRef(SvgEthereumCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EthereumRotateOut.tsx b/packages/iconoir-react-native/src/EthereumRotateOut.tsx index ef116483..9a7fd30d 100644 --- a/packages/iconoir-react-native/src/EthereumRotateOut.tsx +++ b/packages/iconoir-react-native/src/EthereumRotateOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEthereumRotateOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEthereumRotateOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgEthereumRotateOut( ); -} -const ForwardRef = React.forwardRef(SvgEthereumRotateOut); +}; +const ForwardRef = forwardRef(SvgEthereumRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Euro.tsx b/packages/iconoir-react-native/src/Euro.tsx index 85f058f0..fde8a5d1 100644 --- a/packages/iconoir-react-native/src/Euro.tsx +++ b/packages/iconoir-react-native/src/Euro.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEuro( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEuro = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEuro( ); -} -const ForwardRef = React.forwardRef(SvgEuro); +}; +const ForwardRef = forwardRef(SvgEuro); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EuroSquare.tsx b/packages/iconoir-react-native/src/EuroSquare.tsx index 2428b3e0..173532ee 100644 --- a/packages/iconoir-react-native/src/EuroSquare.tsx +++ b/packages/iconoir-react-native/src/EuroSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEuroSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEuroSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgEuroSquare( ); -} -const ForwardRef = React.forwardRef(SvgEuroSquare); +}; +const ForwardRef = forwardRef(SvgEuroSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EvCharge.tsx b/packages/iconoir-react-native/src/EvCharge.tsx index db4d9474..ae49594c 100644 --- a/packages/iconoir-react-native/src/EvCharge.tsx +++ b/packages/iconoir-react-native/src/EvCharge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvCharge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEvCharge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgEvCharge( ); -} -const ForwardRef = React.forwardRef(SvgEvCharge); +}; +const ForwardRef = forwardRef(SvgEvCharge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EvChargeAlt.tsx b/packages/iconoir-react-native/src/EvChargeAlt.tsx index 4fa07e79..80e8e16e 100644 --- a/packages/iconoir-react-native/src/EvChargeAlt.tsx +++ b/packages/iconoir-react-native/src/EvChargeAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvChargeAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEvChargeAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgEvChargeAlt( ); -} -const ForwardRef = React.forwardRef(SvgEvChargeAlt); +}; +const ForwardRef = forwardRef(SvgEvChargeAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EvPlug.tsx b/packages/iconoir-react-native/src/EvPlug.tsx index 4f2ce90d..677f5aab 100644 --- a/packages/iconoir-react-native/src/EvPlug.tsx +++ b/packages/iconoir-react-native/src/EvPlug.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvPlug( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEvPlug = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgEvPlug( ); -} -const ForwardRef = React.forwardRef(SvgEvPlug); +}; +const ForwardRef = forwardRef(SvgEvPlug); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EvPlugCharging.tsx b/packages/iconoir-react-native/src/EvPlugCharging.tsx index 36639098..64c78f64 100644 --- a/packages/iconoir-react-native/src/EvPlugCharging.tsx +++ b/packages/iconoir-react-native/src/EvPlugCharging.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvPlugCharging( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEvPlugCharging = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgEvPlugCharging( ); -} -const ForwardRef = React.forwardRef(SvgEvPlugCharging); +}; +const ForwardRef = forwardRef(SvgEvPlugCharging); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EvPlugError.tsx b/packages/iconoir-react-native/src/EvPlugError.tsx index 13ed07c8..427c6359 100644 --- a/packages/iconoir-react-native/src/EvPlugError.tsx +++ b/packages/iconoir-react-native/src/EvPlugError.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvPlugError( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEvPlugError = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgEvPlugError( ); -} -const ForwardRef = React.forwardRef(SvgEvPlugError); +}; +const ForwardRef = forwardRef(SvgEvPlugError); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EvStation.tsx b/packages/iconoir-react-native/src/EvStation.tsx index bbdb2a69..097e7791 100644 --- a/packages/iconoir-react-native/src/EvStation.tsx +++ b/packages/iconoir-react-native/src/EvStation.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvStation( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEvStation = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgEvStation( + + + - - - ); -} -const ForwardRef = React.forwardRef(SvgEvStation); +}; +const ForwardRef = forwardRef(SvgEvStation); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EvTag.tsx b/packages/iconoir-react-native/src/EvTag.tsx index ac1f7f07..30ec3459 100644 --- a/packages/iconoir-react-native/src/EvTag.tsx +++ b/packages/iconoir-react-native/src/EvTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEvTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgEvTag( ); -} -const ForwardRef = React.forwardRef(SvgEvTag); +}; +const ForwardRef = forwardRef(SvgEvTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Exclude.tsx b/packages/iconoir-react-native/src/Exclude.tsx index fd4a8f7a..87e376bb 100644 --- a/packages/iconoir-react-native/src/Exclude.tsx +++ b/packages/iconoir-react-native/src/Exclude.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgExclude( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgExclude = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgExclude( ); -} -const ForwardRef = React.forwardRef(SvgExclude); +}; +const ForwardRef = forwardRef(SvgExclude); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Expand.tsx b/packages/iconoir-react-native/src/Expand.tsx index dc41797d..55b6470e 100644 --- a/packages/iconoir-react-native/src/Expand.tsx +++ b/packages/iconoir-react-native/src/Expand.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgExpand( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgExpand = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgExpand( ); -} -const ForwardRef = React.forwardRef(SvgExpand); +}; +const ForwardRef = forwardRef(SvgExpand); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ExpandLines.tsx b/packages/iconoir-react-native/src/ExpandLines.tsx index 07d15213..15362866 100644 --- a/packages/iconoir-react-native/src/ExpandLines.tsx +++ b/packages/iconoir-react-native/src/ExpandLines.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgExpandLines( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgExpandLines = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgExpandLines( ); -} -const ForwardRef = React.forwardRef(SvgExpandLines); +}; +const ForwardRef = forwardRef(SvgExpandLines); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Extrude.tsx b/packages/iconoir-react-native/src/Extrude.tsx index 925d23ef..7b705f9c 100644 --- a/packages/iconoir-react-native/src/Extrude.tsx +++ b/packages/iconoir-react-native/src/Extrude.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgExtrude( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgExtrude = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgExtrude( ); -} -const ForwardRef = React.forwardRef(SvgExtrude); +}; +const ForwardRef = forwardRef(SvgExtrude); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EyeAlt.tsx b/packages/iconoir-react-native/src/EyeAlt.tsx index b595c19e..3d528d9e 100644 --- a/packages/iconoir-react-native/src/EyeAlt.tsx +++ b/packages/iconoir-react-native/src/EyeAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEyeAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEyeAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgEyeAlt( + ); -} -const ForwardRef = React.forwardRef(SvgEyeAlt); +}; +const ForwardRef = forwardRef(SvgEyeAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EyeClose.tsx b/packages/iconoir-react-native/src/EyeClose.tsx index 004fe67c..e930b2a2 100644 --- a/packages/iconoir-react-native/src/EyeClose.tsx +++ b/packages/iconoir-react-native/src/EyeClose.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEyeClose( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEyeClose = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgEyeClose( ); -} -const ForwardRef = React.forwardRef(SvgEyeClose); +}; +const ForwardRef = forwardRef(SvgEyeClose); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EyeEmpty.tsx b/packages/iconoir-react-native/src/EyeEmpty.tsx index cf60a8db..6ae57514 100644 --- a/packages/iconoir-react-native/src/EyeEmpty.tsx +++ b/packages/iconoir-react-native/src/EyeEmpty.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEyeEmpty( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEyeEmpty = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgEyeEmpty( ); -} -const ForwardRef = React.forwardRef(SvgEyeEmpty); +}; +const ForwardRef = forwardRef(SvgEyeEmpty); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/EyeOff.tsx b/packages/iconoir-react-native/src/EyeOff.tsx index 0e535968..992e35c0 100644 --- a/packages/iconoir-react-native/src/EyeOff.tsx +++ b/packages/iconoir-react-native/src/EyeOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEyeOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgEyeOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgEyeOff( ); -} -const ForwardRef = React.forwardRef(SvgEyeOff); +}; +const ForwardRef = forwardRef(SvgEyeOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FaceId.tsx b/packages/iconoir-react-native/src/FaceId.tsx index 9178f0d3..fc3f0011 100644 --- a/packages/iconoir-react-native/src/FaceId.tsx +++ b/packages/iconoir-react-native/src/FaceId.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFaceId( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFaceId = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFaceId( ); -} -const ForwardRef = React.forwardRef(SvgFaceId); +}; +const ForwardRef = forwardRef(SvgFaceId); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Facebook.tsx b/packages/iconoir-react-native/src/Facebook.tsx index 7eef4e5a..41f0dc6c 100644 --- a/packages/iconoir-react-native/src/Facebook.tsx +++ b/packages/iconoir-react-native/src/Facebook.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFacebook( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFacebook = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFacebook( ); -} -const ForwardRef = React.forwardRef(SvgFacebook); +}; +const ForwardRef = forwardRef(SvgFacebook); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FacebookTag.tsx b/packages/iconoir-react-native/src/FacebookTag.tsx index 6f21d222..0f0de3ae 100644 --- a/packages/iconoir-react-native/src/FacebookTag.tsx +++ b/packages/iconoir-react-native/src/FacebookTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFacebookTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFacebookTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFacebookTag( ); -} -const ForwardRef = React.forwardRef(SvgFacebookTag); +}; +const ForwardRef = forwardRef(SvgFacebookTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Facetime.tsx b/packages/iconoir-react-native/src/Facetime.tsx index b0b7cf95..d86c8c03 100644 --- a/packages/iconoir-react-native/src/Facetime.tsx +++ b/packages/iconoir-react-native/src/Facetime.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFacetime( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFacetime = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgFacetime( ); -} -const ForwardRef = React.forwardRef(SvgFacetime); +}; +const ForwardRef = forwardRef(SvgFacetime); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Farm.tsx b/packages/iconoir-react-native/src/Farm.tsx index 771001ce..b25aaa86 100644 --- a/packages/iconoir-react-native/src/Farm.tsx +++ b/packages/iconoir-react-native/src/Farm.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFarm( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFarm = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFarm( ); -} -const ForwardRef = React.forwardRef(SvgFarm); +}; +const ForwardRef = forwardRef(SvgFarm); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastArrowDown.tsx b/packages/iconoir-react-native/src/FastArrowDown.tsx index 4db1b50d..1d790059 100644 --- a/packages/iconoir-react-native/src/FastArrowDown.tsx +++ b/packages/iconoir-react-native/src/FastArrowDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastArrowDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFastArrowDown( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowDown); +}; +const ForwardRef = forwardRef(SvgFastArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastArrowDownBox.tsx b/packages/iconoir-react-native/src/FastArrowDownBox.tsx index 5208f9e9..ca9f8c26 100644 --- a/packages/iconoir-react-native/src/FastArrowDownBox.tsx +++ b/packages/iconoir-react-native/src/FastArrowDownBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowDownBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastArrowDownBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgFastArrowDownBox( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowDownBox); +}; +const ForwardRef = forwardRef(SvgFastArrowDownBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastArrowLeft.tsx b/packages/iconoir-react-native/src/FastArrowLeft.tsx index ea9e1130..1fedafce 100644 --- a/packages/iconoir-react-native/src/FastArrowLeft.tsx +++ b/packages/iconoir-react-native/src/FastArrowLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastArrowLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFastArrowLeft( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowLeft); +}; +const ForwardRef = forwardRef(SvgFastArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastArrowLeftBox.tsx b/packages/iconoir-react-native/src/FastArrowLeftBox.tsx index 5de0dab7..08ae3a15 100644 --- a/packages/iconoir-react-native/src/FastArrowLeftBox.tsx +++ b/packages/iconoir-react-native/src/FastArrowLeftBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowLeftBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastArrowLeftBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgFastArrowLeftBox( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowLeftBox); +}; +const ForwardRef = forwardRef(SvgFastArrowLeftBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastArrowRight.tsx b/packages/iconoir-react-native/src/FastArrowRight.tsx index 87655433..97cfb27c 100644 --- a/packages/iconoir-react-native/src/FastArrowRight.tsx +++ b/packages/iconoir-react-native/src/FastArrowRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastArrowRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFastArrowRight( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowRight); +}; +const ForwardRef = forwardRef(SvgFastArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastArrowRightBox.tsx b/packages/iconoir-react-native/src/FastArrowRightBox.tsx index b8bed291..e01e2943 100644 --- a/packages/iconoir-react-native/src/FastArrowRightBox.tsx +++ b/packages/iconoir-react-native/src/FastArrowRightBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowRightBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastArrowRightBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgFastArrowRightBox( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowRightBox); +}; +const ForwardRef = forwardRef(SvgFastArrowRightBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastArrowUp.tsx b/packages/iconoir-react-native/src/FastArrowUp.tsx index 8e5b9a45..f8327546 100644 --- a/packages/iconoir-react-native/src/FastArrowUp.tsx +++ b/packages/iconoir-react-native/src/FastArrowUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastArrowUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFastArrowUp( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowUp); +}; +const ForwardRef = forwardRef(SvgFastArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastArrowUpBox.tsx b/packages/iconoir-react-native/src/FastArrowUpBox.tsx index bd185a82..82721aa6 100644 --- a/packages/iconoir-react-native/src/FastArrowUpBox.tsx +++ b/packages/iconoir-react-native/src/FastArrowUpBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowUpBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastArrowUpBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgFastArrowUpBox( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowUpBox); +}; +const ForwardRef = forwardRef(SvgFastArrowUpBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastDownCircle.tsx b/packages/iconoir-react-native/src/FastDownCircle.tsx index b4fc83bf..847607b3 100644 --- a/packages/iconoir-react-native/src/FastDownCircle.tsx +++ b/packages/iconoir-react-native/src/FastDownCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastDownCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastDownCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFastDownCircle( ); -} -const ForwardRef = React.forwardRef(SvgFastDownCircle); +}; +const ForwardRef = forwardRef(SvgFastDownCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastLeftCircle.tsx b/packages/iconoir-react-native/src/FastLeftCircle.tsx index 49a1eac8..48c900ee 100644 --- a/packages/iconoir-react-native/src/FastLeftCircle.tsx +++ b/packages/iconoir-react-native/src/FastLeftCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastLeftCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastLeftCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFastLeftCircle( ); -} -const ForwardRef = React.forwardRef(SvgFastLeftCircle); +}; +const ForwardRef = forwardRef(SvgFastLeftCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastRightCircle.tsx b/packages/iconoir-react-native/src/FastRightCircle.tsx index 37cf6db8..b4bb6700 100644 --- a/packages/iconoir-react-native/src/FastRightCircle.tsx +++ b/packages/iconoir-react-native/src/FastRightCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastRightCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastRightCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFastRightCircle( ); -} -const ForwardRef = React.forwardRef(SvgFastRightCircle); +}; +const ForwardRef = forwardRef(SvgFastRightCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FastUpCircle.tsx b/packages/iconoir-react-native/src/FastUpCircle.tsx index e77954a9..7f5a5fc5 100644 --- a/packages/iconoir-react-native/src/FastUpCircle.tsx +++ b/packages/iconoir-react-native/src/FastUpCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastUpCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFastUpCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFastUpCircle( ); -} -const ForwardRef = React.forwardRef(SvgFastUpCircle); +}; +const ForwardRef = forwardRef(SvgFastUpCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FavouriteBook.tsx b/packages/iconoir-react-native/src/FavouriteBook.tsx index dafde87d..bf161e60 100644 --- a/packages/iconoir-react-native/src/FavouriteBook.tsx +++ b/packages/iconoir-react-native/src/FavouriteBook.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFavouriteBook( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFavouriteBook = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,33 +12,33 @@ function SvgFavouriteBook( return ( - + ); -} -const ForwardRef = React.forwardRef(SvgFavouriteBook); +}; +const ForwardRef = forwardRef(SvgFavouriteBook); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FavouriteWindow.tsx b/packages/iconoir-react-native/src/FavouriteWindow.tsx index 50e1cb08..5d313d7d 100644 --- a/packages/iconoir-react-native/src/FavouriteWindow.tsx +++ b/packages/iconoir-react-native/src/FavouriteWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFavouriteWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFavouriteWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgFavouriteWindow( ); -} -const ForwardRef = React.forwardRef(SvgFavouriteWindow); +}; +const ForwardRef = forwardRef(SvgFavouriteWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Female.tsx b/packages/iconoir-react-native/src/Female.tsx index 06cea4b8..607494e1 100644 --- a/packages/iconoir-react-native/src/Female.tsx +++ b/packages/iconoir-react-native/src/Female.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFemale( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFemale = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFemale( ); -} -const ForwardRef = React.forwardRef(SvgFemale); +}; +const ForwardRef = forwardRef(SvgFemale); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Figma.tsx b/packages/iconoir-react-native/src/Figma.tsx index d1094937..46ed7bae 100644 --- a/packages/iconoir-react-native/src/Figma.tsx +++ b/packages/iconoir-react-native/src/Figma.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFigma( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFigma = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFigma( ); -} -const ForwardRef = React.forwardRef(SvgFigma); +}; +const ForwardRef = forwardRef(SvgFigma); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FileNotFound.tsx b/packages/iconoir-react-native/src/FileNotFound.tsx index b4dc731e..487626ad 100644 --- a/packages/iconoir-react-native/src/FileNotFound.tsx +++ b/packages/iconoir-react-native/src/FileNotFound.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFileNotFound( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFileNotFound = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFileNotFound( ); -} -const ForwardRef = React.forwardRef(SvgFileNotFound); +}; +const ForwardRef = forwardRef(SvgFileNotFound); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FillColor.tsx b/packages/iconoir-react-native/src/FillColor.tsx index 7bd8a071..a4b11c29 100644 --- a/packages/iconoir-react-native/src/FillColor.tsx +++ b/packages/iconoir-react-native/src/FillColor.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFillColor( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFillColor = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgFillColor( ); -} -const ForwardRef = React.forwardRef(SvgFillColor); +}; +const ForwardRef = forwardRef(SvgFillColor); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Fillet3D.tsx b/packages/iconoir-react-native/src/Fillet3D.tsx index bb7665af..7aa678e5 100644 --- a/packages/iconoir-react-native/src/Fillet3D.tsx +++ b/packages/iconoir-react-native/src/Fillet3D.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFillet3D( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFillet3D = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgFillet3D( ); -} -const ForwardRef = React.forwardRef(SvgFillet3D); +}; +const ForwardRef = forwardRef(SvgFillet3D); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Filter.tsx b/packages/iconoir-react-native/src/Filter.tsx index 08a8dd4e..97a55a8c 100644 --- a/packages/iconoir-react-native/src/Filter.tsx +++ b/packages/iconoir-react-native/src/Filter.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFilter( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFilter = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFilter( ); -} -const ForwardRef = React.forwardRef(SvgFilter); +}; +const ForwardRef = forwardRef(SvgFilter); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FilterAlt.tsx b/packages/iconoir-react-native/src/FilterAlt.tsx index 0c468905..3d3496c4 100644 --- a/packages/iconoir-react-native/src/FilterAlt.tsx +++ b/packages/iconoir-react-native/src/FilterAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFilterAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFilterAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFilterAlt( ); -} -const ForwardRef = React.forwardRef(SvgFilterAlt); +}; +const ForwardRef = forwardRef(SvgFilterAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FilterList.tsx b/packages/iconoir-react-native/src/FilterList.tsx index 43d52c50..9ea3e192 100644 --- a/packages/iconoir-react-native/src/FilterList.tsx +++ b/packages/iconoir-react-native/src/FilterList.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFilterList( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFilterList = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFilterList( ); -} -const ForwardRef = React.forwardRef(SvgFilterList); +}; +const ForwardRef = forwardRef(SvgFilterList); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FilterListCircle.tsx b/packages/iconoir-react-native/src/FilterListCircle.tsx index 7c3eb6bd..23756eff 100644 --- a/packages/iconoir-react-native/src/FilterListCircle.tsx +++ b/packages/iconoir-react-native/src/FilterListCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFilterListCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFilterListCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFilterListCircle( ); -} -const ForwardRef = React.forwardRef(SvgFilterListCircle); +}; +const ForwardRef = forwardRef(SvgFilterListCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Finder.tsx b/packages/iconoir-react-native/src/Finder.tsx index c4ac5b5a..860336ea 100644 --- a/packages/iconoir-react-native/src/Finder.tsx +++ b/packages/iconoir-react-native/src/Finder.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFinder( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFinder = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgFinder( ); -} -const ForwardRef = React.forwardRef(SvgFinder); +}; +const ForwardRef = forwardRef(SvgFinder); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Fingerprint.tsx b/packages/iconoir-react-native/src/Fingerprint.tsx index d4454a48..3b862f61 100644 --- a/packages/iconoir-react-native/src/Fingerprint.tsx +++ b/packages/iconoir-react-native/src/Fingerprint.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprint( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFingerprint = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgFingerprint( ); -} -const ForwardRef = React.forwardRef(SvgFingerprint); +}; +const ForwardRef = forwardRef(SvgFingerprint); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FingerprintCheckCircle.tsx b/packages/iconoir-react-native/src/FingerprintCheckCircle.tsx index 35520d85..1729b241 100644 --- a/packages/iconoir-react-native/src/FingerprintCheckCircle.tsx +++ b/packages/iconoir-react-native/src/FingerprintCheckCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintCheckCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFingerprintCheckCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFingerprintCheckCircle( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintCheckCircle); +}; +const ForwardRef = forwardRef(SvgFingerprintCheckCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FingerprintCircle.tsx b/packages/iconoir-react-native/src/FingerprintCircle.tsx index 78da6b87..c0384a15 100644 --- a/packages/iconoir-react-native/src/FingerprintCircle.tsx +++ b/packages/iconoir-react-native/src/FingerprintCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFingerprintCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFingerprintCircle( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintCircle); +}; +const ForwardRef = forwardRef(SvgFingerprintCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FingerprintErrorCircle.tsx b/packages/iconoir-react-native/src/FingerprintErrorCircle.tsx index e0d42b39..47728504 100644 --- a/packages/iconoir-react-native/src/FingerprintErrorCircle.tsx +++ b/packages/iconoir-react-native/src/FingerprintErrorCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintErrorCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFingerprintErrorCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFingerprintErrorCircle( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintErrorCircle); +}; +const ForwardRef = forwardRef(SvgFingerprintErrorCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FingerprintLockCircle.tsx b/packages/iconoir-react-native/src/FingerprintLockCircle.tsx index 37473033..a194fee5 100644 --- a/packages/iconoir-react-native/src/FingerprintLockCircle.tsx +++ b/packages/iconoir-react-native/src/FingerprintLockCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintLockCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFingerprintLockCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgFingerprintLockCircle( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintLockCircle); +}; +const ForwardRef = forwardRef(SvgFingerprintLockCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FingerprintPhone.tsx b/packages/iconoir-react-native/src/FingerprintPhone.tsx index c0f250c8..7e77c115 100644 --- a/packages/iconoir-react-native/src/FingerprintPhone.tsx +++ b/packages/iconoir-react-native/src/FingerprintPhone.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintPhone( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFingerprintPhone = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFingerprintPhone( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintPhone); +}; +const ForwardRef = forwardRef(SvgFingerprintPhone); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FingerprintScan.tsx b/packages/iconoir-react-native/src/FingerprintScan.tsx index e4a55c7c..5b65dcc9 100644 --- a/packages/iconoir-react-native/src/FingerprintScan.tsx +++ b/packages/iconoir-react-native/src/FingerprintScan.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintScan( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFingerprintScan = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFingerprintScan( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintScan); +}; +const ForwardRef = forwardRef(SvgFingerprintScan); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FingerprintSquare.tsx b/packages/iconoir-react-native/src/FingerprintSquare.tsx index 10836b8a..f6704132 100644 --- a/packages/iconoir-react-native/src/FingerprintSquare.tsx +++ b/packages/iconoir-react-native/src/FingerprintSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFingerprintSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFingerprintSquare( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintSquare); +}; +const ForwardRef = forwardRef(SvgFingerprintSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FingerprintWindow.tsx b/packages/iconoir-react-native/src/FingerprintWindow.tsx index c9a0b8aa..3c72cddb 100644 --- a/packages/iconoir-react-native/src/FingerprintWindow.tsx +++ b/packages/iconoir-react-native/src/FingerprintWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFingerprintWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgFingerprintWindow( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintWindow); +}; +const ForwardRef = forwardRef(SvgFingerprintWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FireFlame.tsx b/packages/iconoir-react-native/src/FireFlame.tsx index 03c2b20f..a2e998ff 100644 --- a/packages/iconoir-react-native/src/FireFlame.tsx +++ b/packages/iconoir-react-native/src/FireFlame.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFireFlame( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFireFlame = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgFireFlame( return ( ); -} -const ForwardRef = React.forwardRef(SvgFireFlame); +}; +const ForwardRef = forwardRef(SvgFireFlame); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Fish.tsx b/packages/iconoir-react-native/src/Fish.tsx index bd038aa1..0986dc66 100644 --- a/packages/iconoir-react-native/src/Fish.tsx +++ b/packages/iconoir-react-native/src/Fish.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFish( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFish = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFish( ); -} -const ForwardRef = React.forwardRef(SvgFish); +}; +const ForwardRef = forwardRef(SvgFish); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Fishing.tsx b/packages/iconoir-react-native/src/Fishing.tsx index 7c830fe5..3a869d4d 100644 --- a/packages/iconoir-react-native/src/Fishing.tsx +++ b/packages/iconoir-react-native/src/Fishing.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFishing( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFishing = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFishing( ); -} -const ForwardRef = React.forwardRef(SvgFishing); +}; +const ForwardRef = forwardRef(SvgFishing); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Flare.tsx b/packages/iconoir-react-native/src/Flare.tsx index eebcd9fd..33c85e43 100644 --- a/packages/iconoir-react-native/src/Flare.tsx +++ b/packages/iconoir-react-native/src/Flare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFlare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFlare( ); -} -const ForwardRef = React.forwardRef(SvgFlare); +}; +const ForwardRef = forwardRef(SvgFlare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Flash.tsx b/packages/iconoir-react-native/src/Flash.tsx index cc37692e..c435a997 100644 --- a/packages/iconoir-react-native/src/Flash.tsx +++ b/packages/iconoir-react-native/src/Flash.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlash( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFlash = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFlash( ); -} -const ForwardRef = React.forwardRef(SvgFlash); +}; +const ForwardRef = forwardRef(SvgFlash); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FlashOff.tsx b/packages/iconoir-react-native/src/FlashOff.tsx index 2817f83b..596d88ba 100644 --- a/packages/iconoir-react-native/src/FlashOff.tsx +++ b/packages/iconoir-react-native/src/FlashOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlashOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFlashOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFlashOff( ); -} -const ForwardRef = React.forwardRef(SvgFlashOff); +}; +const ForwardRef = forwardRef(SvgFlashOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Flask.tsx b/packages/iconoir-react-native/src/Flask.tsx index 5c94ef4b..ccb3031a 100644 --- a/packages/iconoir-react-native/src/Flask.tsx +++ b/packages/iconoir-react-native/src/Flask.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlask( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFlask = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,23 +12,23 @@ function SvgFlask( return ( - + ); -} -const ForwardRef = React.forwardRef(SvgFlask); +}; +const ForwardRef = forwardRef(SvgFlask); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Flip.tsx b/packages/iconoir-react-native/src/Flip.tsx index c0152a81..0bbce0d3 100644 --- a/packages/iconoir-react-native/src/Flip.tsx +++ b/packages/iconoir-react-native/src/Flip.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlip( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFlip = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFlip( ); -} -const ForwardRef = React.forwardRef(SvgFlip); +}; +const ForwardRef = forwardRef(SvgFlip); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FlipReverse.tsx b/packages/iconoir-react-native/src/FlipReverse.tsx index c379f35c..0da863df 100644 --- a/packages/iconoir-react-native/src/FlipReverse.tsx +++ b/packages/iconoir-react-native/src/FlipReverse.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlipReverse( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFlipReverse = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFlipReverse( ); -} -const ForwardRef = React.forwardRef(SvgFlipReverse); +}; +const ForwardRef = forwardRef(SvgFlipReverse); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Flower.tsx b/packages/iconoir-react-native/src/Flower.tsx index c961224d..a16ddc06 100644 --- a/packages/iconoir-react-native/src/Flower.tsx +++ b/packages/iconoir-react-native/src/Flower.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlower( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFlower = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgFlower( ); -} -const ForwardRef = React.forwardRef(SvgFlower); +}; +const ForwardRef = forwardRef(SvgFlower); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Fluorine.tsx b/packages/iconoir-react-native/src/Fluorine.tsx index 25c4e7e7..24b7cf67 100644 --- a/packages/iconoir-react-native/src/Fluorine.tsx +++ b/packages/iconoir-react-native/src/Fluorine.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFluorine( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFluorine = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgFluorine( return ( ); -} -const ForwardRef = React.forwardRef(SvgFluorine); +}; +const ForwardRef = forwardRef(SvgFluorine); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Fog.tsx b/packages/iconoir-react-native/src/Fog.tsx index c919c218..8ba5c3be 100644 --- a/packages/iconoir-react-native/src/Fog.tsx +++ b/packages/iconoir-react-native/src/Fog.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFog( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFog = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFog( ); -} -const ForwardRef = React.forwardRef(SvgFog); +}; +const ForwardRef = forwardRef(SvgFog); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Folder.tsx b/packages/iconoir-react-native/src/Folder.tsx index 050fcfe0..7746b238 100644 --- a/packages/iconoir-react-native/src/Folder.tsx +++ b/packages/iconoir-react-native/src/Folder.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFolder( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFolder = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFolder( ); -} -const ForwardRef = React.forwardRef(SvgFolder); +}; +const ForwardRef = forwardRef(SvgFolder); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FolderAlert.tsx b/packages/iconoir-react-native/src/FolderAlert.tsx index 2c267579..8e787c59 100644 --- a/packages/iconoir-react-native/src/FolderAlert.tsx +++ b/packages/iconoir-react-native/src/FolderAlert.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFolderAlert( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFolderAlert = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFolderAlert( ); -} -const ForwardRef = React.forwardRef(SvgFolderAlert); +}; +const ForwardRef = forwardRef(SvgFolderAlert); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FolderSettings.tsx b/packages/iconoir-react-native/src/FolderSettings.tsx index b80066d8..3dc245b9 100644 --- a/packages/iconoir-react-native/src/FolderSettings.tsx +++ b/packages/iconoir-react-native/src/FolderSettings.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFolderSettings( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFolderSettings = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgFolderSettings( ); -} -const ForwardRef = React.forwardRef(SvgFolderSettings); +}; +const ForwardRef = forwardRef(SvgFolderSettings); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FontSize.tsx b/packages/iconoir-react-native/src/FontSize.tsx index 42ae8e95..a2701add 100644 --- a/packages/iconoir-react-native/src/FontSize.tsx +++ b/packages/iconoir-react-native/src/FontSize.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFontSize( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFontSize = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFontSize( ); -} -const ForwardRef = React.forwardRef(SvgFontSize); +}; +const ForwardRef = forwardRef(SvgFontSize); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Football.tsx b/packages/iconoir-react-native/src/Football.tsx index b2e345dd..2ea932b5 100644 --- a/packages/iconoir-react-native/src/Football.tsx +++ b/packages/iconoir-react-native/src/Football.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFootball( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFootball = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgFootball( ); -} -const ForwardRef = React.forwardRef(SvgFootball); +}; +const ForwardRef = forwardRef(SvgFootball); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FootballBall.tsx b/packages/iconoir-react-native/src/FootballBall.tsx index 7945dbc3..39d0b3ac 100644 --- a/packages/iconoir-react-native/src/FootballBall.tsx +++ b/packages/iconoir-react-native/src/FootballBall.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFootballBall( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFootballBall = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFootballBall( ); -} -const ForwardRef = React.forwardRef(SvgFootballBall); +}; +const ForwardRef = forwardRef(SvgFootballBall); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Forward.tsx b/packages/iconoir-react-native/src/Forward.tsx index 95c5b906..64e71568 100644 --- a/packages/iconoir-react-native/src/Forward.tsx +++ b/packages/iconoir-react-native/src/Forward.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgForward( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgForward = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgForward( ); -} -const ForwardRef = React.forwardRef(SvgForward); +}; +const ForwardRef = forwardRef(SvgForward); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Forward15Seconds.tsx b/packages/iconoir-react-native/src/Forward15Seconds.tsx index 350924bb..4ec2a5c0 100644 --- a/packages/iconoir-react-native/src/Forward15Seconds.tsx +++ b/packages/iconoir-react-native/src/Forward15Seconds.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgForward15Seconds( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgForward15Seconds = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgForward15Seconds( return ( ); -} -const ForwardRef = React.forwardRef(SvgForward15Seconds); +}; +const ForwardRef = forwardRef(SvgForward15Seconds); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ForwardMessage.tsx b/packages/iconoir-react-native/src/ForwardMessage.tsx index 9f27e707..bd85be19 100644 --- a/packages/iconoir-react-native/src/ForwardMessage.tsx +++ b/packages/iconoir-react-native/src/ForwardMessage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgForwardMessage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgForwardMessage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgForwardMessage( ); -} -const ForwardRef = React.forwardRef(SvgForwardMessage); +}; +const ForwardRef = forwardRef(SvgForwardMessage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Frame.tsx b/packages/iconoir-react-native/src/Frame.tsx index 16c5e9be..6df6383d 100644 --- a/packages/iconoir-react-native/src/Frame.tsx +++ b/packages/iconoir-react-native/src/Frame.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrame( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFrame = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,50 +13,50 @@ function SvgFrame( ); -} -const ForwardRef = React.forwardRef(SvgFrame); +}; +const ForwardRef = forwardRef(SvgFrame); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FrameAlt.tsx b/packages/iconoir-react-native/src/FrameAlt.tsx index 333ecd0f..77ebb30e 100644 --- a/packages/iconoir-react-native/src/FrameAlt.tsx +++ b/packages/iconoir-react-native/src/FrameAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrameAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFrameAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgFrameAlt( ); -} -const ForwardRef = React.forwardRef(SvgFrameAlt); +}; +const ForwardRef = forwardRef(SvgFrameAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FrameAltEmpty.tsx b/packages/iconoir-react-native/src/FrameAltEmpty.tsx index d3e264ca..9ca114c0 100644 --- a/packages/iconoir-react-native/src/FrameAltEmpty.tsx +++ b/packages/iconoir-react-native/src/FrameAltEmpty.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrameAltEmpty( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFrameAltEmpty = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFrameAltEmpty( ); -} -const ForwardRef = React.forwardRef(SvgFrameAltEmpty); +}; +const ForwardRef = forwardRef(SvgFrameAltEmpty); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FrameSelect.tsx b/packages/iconoir-react-native/src/FrameSelect.tsx index 3e1c9a47..f169bc2e 100644 --- a/packages/iconoir-react-native/src/FrameSelect.tsx +++ b/packages/iconoir-react-native/src/FrameSelect.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrameSelect( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFrameSelect = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,38 +13,38 @@ function SvgFrameSelect( ); -} -const ForwardRef = React.forwardRef(SvgFrameSelect); +}; +const ForwardRef = forwardRef(SvgFrameSelect); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FrameSimple.tsx b/packages/iconoir-react-native/src/FrameSimple.tsx index 05a4a215..ff6f197b 100644 --- a/packages/iconoir-react-native/src/FrameSimple.tsx +++ b/packages/iconoir-react-native/src/FrameSimple.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrameSimple( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFrameSimple = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgFrameSimple( ); -} -const ForwardRef = React.forwardRef(SvgFrameSimple); +}; +const ForwardRef = forwardRef(SvgFrameSimple); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FrameTool.tsx b/packages/iconoir-react-native/src/FrameTool.tsx index 8a304e70..bf941caf 100644 --- a/packages/iconoir-react-native/src/FrameTool.tsx +++ b/packages/iconoir-react-native/src/FrameTool.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrameTool( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFrameTool = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFrameTool( ); -} -const ForwardRef = React.forwardRef(SvgFrameTool); +}; +const ForwardRef = forwardRef(SvgFrameTool); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Fridge.tsx b/packages/iconoir-react-native/src/Fridge.tsx index f1377143..04e9d84b 100644 --- a/packages/iconoir-react-native/src/Fridge.tsx +++ b/packages/iconoir-react-native/src/Fridge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFridge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFridge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgFridge( ); -} -const ForwardRef = React.forwardRef(SvgFridge); +}; +const ForwardRef = forwardRef(SvgFridge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Fx.tsx b/packages/iconoir-react-native/src/Fx.tsx index 6f77f01d..6cdc6ba7 100644 --- a/packages/iconoir-react-native/src/Fx.tsx +++ b/packages/iconoir-react-native/src/Fx.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFx( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFx = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgFx( ); -} -const ForwardRef = React.forwardRef(SvgFx); +}; +const ForwardRef = forwardRef(SvgFx); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/FxTag.tsx b/packages/iconoir-react-native/src/FxTag.tsx index e80f5591..68fcbb5d 100644 --- a/packages/iconoir-react-native/src/FxTag.tsx +++ b/packages/iconoir-react-native/src/FxTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFxTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgFxTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgFxTag( ); -} -const ForwardRef = React.forwardRef(SvgFxTag); +}; +const ForwardRef = forwardRef(SvgFxTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Gamepad.tsx b/packages/iconoir-react-native/src/Gamepad.tsx index 6053b9c2..cd77db6e 100644 --- a/packages/iconoir-react-native/src/Gamepad.tsx +++ b/packages/iconoir-react-native/src/Gamepad.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGamepad( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGamepad = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGamepad( ); -} -const ForwardRef = React.forwardRef(SvgGamepad); +}; +const ForwardRef = forwardRef(SvgGamepad); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Garage.tsx b/packages/iconoir-react-native/src/Garage.tsx index d951a4ce..51e614eb 100644 --- a/packages/iconoir-react-native/src/Garage.tsx +++ b/packages/iconoir-react-native/src/Garage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGarage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGarage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGarage( ); -} -const ForwardRef = React.forwardRef(SvgGarage); +}; +const ForwardRef = forwardRef(SvgGarage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Gas.tsx b/packages/iconoir-react-native/src/Gas.tsx index 735fe85d..aba6fe03 100644 --- a/packages/iconoir-react-native/src/Gas.tsx +++ b/packages/iconoir-react-native/src/Gas.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGas( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGas = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgGas( ); -} -const ForwardRef = React.forwardRef(SvgGas); +}; +const ForwardRef = forwardRef(SvgGas); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GasTank.tsx b/packages/iconoir-react-native/src/GasTank.tsx index 01aede85..814e5145 100644 --- a/packages/iconoir-react-native/src/GasTank.tsx +++ b/packages/iconoir-react-native/src/GasTank.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGasTank( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGasTank = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,30 +13,30 @@ function SvgGasTank( ); -} -const ForwardRef = React.forwardRef(SvgGasTank); +}; +const ForwardRef = forwardRef(SvgGasTank); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GasTankDrop.tsx b/packages/iconoir-react-native/src/GasTankDrop.tsx index c45c5dc6..5ece0fdb 100644 --- a/packages/iconoir-react-native/src/GasTankDrop.tsx +++ b/packages/iconoir-react-native/src/GasTankDrop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGasTankDrop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGasTankDrop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgGasTankDrop( ); -} -const ForwardRef = React.forwardRef(SvgGasTankDrop); +}; +const ForwardRef = forwardRef(SvgGasTankDrop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GifFormat.tsx b/packages/iconoir-react-native/src/GifFormat.tsx index 0d4dfd66..538ca359 100644 --- a/packages/iconoir-react-native/src/GifFormat.tsx +++ b/packages/iconoir-react-native/src/GifFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGifFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGifFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgGifFormat( ); -} -const ForwardRef = React.forwardRef(SvgGifFormat); +}; +const ForwardRef = forwardRef(SvgGifFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Gift.tsx b/packages/iconoir-react-native/src/Gift.tsx index be3ee23d..bf054571 100644 --- a/packages/iconoir-react-native/src/Gift.tsx +++ b/packages/iconoir-react-native/src/Gift.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGift( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGift = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGift( ); -} -const ForwardRef = React.forwardRef(SvgGift); +}; +const ForwardRef = forwardRef(SvgGift); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitBranch.tsx b/packages/iconoir-react-native/src/GitBranch.tsx index 2ef73de3..645334fd 100644 --- a/packages/iconoir-react-native/src/GitBranch.tsx +++ b/packages/iconoir-react-native/src/GitBranch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitBranch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitBranch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGitBranch( ); -} -const ForwardRef = React.forwardRef(SvgGitBranch); +}; +const ForwardRef = forwardRef(SvgGitBranch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitCherryPickCommit.tsx b/packages/iconoir-react-native/src/GitCherryPickCommit.tsx index 7ecbd930..152e2fbd 100644 --- a/packages/iconoir-react-native/src/GitCherryPickCommit.tsx +++ b/packages/iconoir-react-native/src/GitCherryPickCommit.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitCherryPickCommit( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitCherryPickCommit = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGitCherryPickCommit( ); -} -const ForwardRef = React.forwardRef(SvgGitCherryPickCommit); +}; +const ForwardRef = forwardRef(SvgGitCherryPickCommit); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitCommand.tsx b/packages/iconoir-react-native/src/GitCommand.tsx index eb445f3f..e18fd9ff 100644 --- a/packages/iconoir-react-native/src/GitCommand.tsx +++ b/packages/iconoir-react-native/src/GitCommand.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitCommand( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitCommand = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGitCommand( ); -} -const ForwardRef = React.forwardRef(SvgGitCommand); +}; +const ForwardRef = forwardRef(SvgGitCommand); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitCommit.tsx b/packages/iconoir-react-native/src/GitCommit.tsx index 16f75a77..6624bc4c 100644 --- a/packages/iconoir-react-native/src/GitCommit.tsx +++ b/packages/iconoir-react-native/src/GitCommit.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitCommit( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitCommit = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGitCommit( ); -} -const ForwardRef = React.forwardRef(SvgGitCommit); +}; +const ForwardRef = forwardRef(SvgGitCommit); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitCompare.tsx b/packages/iconoir-react-native/src/GitCompare.tsx index 7d4975dc..3c393a9b 100644 --- a/packages/iconoir-react-native/src/GitCompare.tsx +++ b/packages/iconoir-react-native/src/GitCompare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitCompare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitCompare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGitCompare( ); -} -const ForwardRef = React.forwardRef(SvgGitCompare); +}; +const ForwardRef = forwardRef(SvgGitCompare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitFork.tsx b/packages/iconoir-react-native/src/GitFork.tsx index b8fd79f3..1389e054 100644 --- a/packages/iconoir-react-native/src/GitFork.tsx +++ b/packages/iconoir-react-native/src/GitFork.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitFork( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitFork = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGitFork( ); -} -const ForwardRef = React.forwardRef(SvgGitFork); +}; +const ForwardRef = forwardRef(SvgGitFork); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitHub.tsx b/packages/iconoir-react-native/src/GitHub.tsx index 72f70511..9c80e1fd 100644 --- a/packages/iconoir-react-native/src/GitHub.tsx +++ b/packages/iconoir-react-native/src/GitHub.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitHub( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitHub = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgGitHub( + ); -} -const ForwardRef = React.forwardRef(SvgGitHub); +}; +const ForwardRef = forwardRef(SvgGitHub); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitLabFull.tsx b/packages/iconoir-react-native/src/GitLabFull.tsx index 19eea288..6c82adce 100644 --- a/packages/iconoir-react-native/src/GitLabFull.tsx +++ b/packages/iconoir-react-native/src/GitLabFull.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitLabFull( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitLabFull = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgGitLabFull( ); -} -const ForwardRef = React.forwardRef(SvgGitLabFull); +}; +const ForwardRef = forwardRef(SvgGitLabFull); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitMerge.tsx b/packages/iconoir-react-native/src/GitMerge.tsx index 16b6a77d..d9c2680a 100644 --- a/packages/iconoir-react-native/src/GitMerge.tsx +++ b/packages/iconoir-react-native/src/GitMerge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitMerge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitMerge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGitMerge( ); -} -const ForwardRef = React.forwardRef(SvgGitMerge); +}; +const ForwardRef = forwardRef(SvgGitMerge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitPullRequest.tsx b/packages/iconoir-react-native/src/GitPullRequest.tsx index 23b2bf73..c788ef5a 100644 --- a/packages/iconoir-react-native/src/GitPullRequest.tsx +++ b/packages/iconoir-react-native/src/GitPullRequest.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitPullRequest( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitPullRequest = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGitPullRequest( ); -} -const ForwardRef = React.forwardRef(SvgGitPullRequest); +}; +const ForwardRef = forwardRef(SvgGitPullRequest); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GitPullRequestClosed.tsx b/packages/iconoir-react-native/src/GitPullRequestClosed.tsx index fdffdde2..c855d2c6 100644 --- a/packages/iconoir-react-native/src/GitPullRequestClosed.tsx +++ b/packages/iconoir-react-native/src/GitPullRequestClosed.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitPullRequestClosed( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGitPullRequestClosed = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGitPullRequestClosed( ); -} -const ForwardRef = React.forwardRef(SvgGitPullRequestClosed); +}; +const ForwardRef = forwardRef(SvgGitPullRequestClosed); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GithubCircle.tsx b/packages/iconoir-react-native/src/GithubCircle.tsx index 4003750c..f594ebf5 100644 --- a/packages/iconoir-react-native/src/GithubCircle.tsx +++ b/packages/iconoir-react-native/src/GithubCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGithubCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGithubCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,33 @@ function SvgGithubCircle( + ); -} -const ForwardRef = React.forwardRef(SvgGithubCircle); +}; +const ForwardRef = forwardRef(SvgGithubCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GlassEmpty.tsx b/packages/iconoir-react-native/src/GlassEmpty.tsx index 29f39a73..cbb74880 100644 --- a/packages/iconoir-react-native/src/GlassEmpty.tsx +++ b/packages/iconoir-react-native/src/GlassEmpty.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlassEmpty( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGlassEmpty = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,26 @@ function SvgGlassEmpty( + ); -} -const ForwardRef = React.forwardRef(SvgGlassEmpty); +}; +const ForwardRef = forwardRef(SvgGlassEmpty); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GlassFragile.tsx b/packages/iconoir-react-native/src/GlassFragile.tsx index d84f2959..86ec73f3 100644 --- a/packages/iconoir-react-native/src/GlassFragile.tsx +++ b/packages/iconoir-react-native/src/GlassFragile.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlassFragile( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGlassFragile = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGlassFragile( ); -} -const ForwardRef = React.forwardRef(SvgGlassFragile); +}; +const ForwardRef = forwardRef(SvgGlassFragile); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GlassHalf.tsx b/packages/iconoir-react-native/src/GlassHalf.tsx index dfe5ad2d..44303fd3 100644 --- a/packages/iconoir-react-native/src/GlassHalf.tsx +++ b/packages/iconoir-react-native/src/GlassHalf.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlassHalf( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGlassHalf = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,23 @@ function SvgGlassHalf( ); -} -const ForwardRef = React.forwardRef(SvgGlassHalf); +}; +const ForwardRef = forwardRef(SvgGlassHalf); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GlassHalfAlt.tsx b/packages/iconoir-react-native/src/GlassHalfAlt.tsx index 2ef8b185..f978df2b 100644 --- a/packages/iconoir-react-native/src/GlassHalfAlt.tsx +++ b/packages/iconoir-react-native/src/GlassHalfAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlassHalfAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGlassHalfAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,23 @@ function SvgGlassHalfAlt( ); -} -const ForwardRef = React.forwardRef(SvgGlassHalfAlt); +}; +const ForwardRef = forwardRef(SvgGlassHalfAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Glasses.tsx b/packages/iconoir-react-native/src/Glasses.tsx index 720af928..2cceaf3f 100644 --- a/packages/iconoir-react-native/src/Glasses.tsx +++ b/packages/iconoir-react-native/src/Glasses.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlasses( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGlasses = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGlasses( ); -} -const ForwardRef = React.forwardRef(SvgGlasses); +}; +const ForwardRef = forwardRef(SvgGlasses); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Globe.tsx b/packages/iconoir-react-native/src/Globe.tsx index bea4e0f6..173f1db6 100644 --- a/packages/iconoir-react-native/src/Globe.tsx +++ b/packages/iconoir-react-native/src/Globe.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlobe( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGlobe = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGlobe( ); -} -const ForwardRef = React.forwardRef(SvgGlobe); +}; +const ForwardRef = forwardRef(SvgGlobe); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Golf.tsx b/packages/iconoir-react-native/src/Golf.tsx index 1ffa3bd7..1a3e18cf 100644 --- a/packages/iconoir-react-native/src/Golf.tsx +++ b/packages/iconoir-react-native/src/Golf.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGolf( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGolf = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGolf( ); -} -const ForwardRef = React.forwardRef(SvgGolf); +}; +const ForwardRef = forwardRef(SvgGolf); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Google.tsx b/packages/iconoir-react-native/src/Google.tsx index 37c05487..b6de4395 100644 --- a/packages/iconoir-react-native/src/Google.tsx +++ b/packages/iconoir-react-native/src/Google.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGoogle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgGoogle( ); -} -const ForwardRef = React.forwardRef(SvgGoogle); +}; +const ForwardRef = forwardRef(SvgGoogle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GoogleCircle.tsx b/packages/iconoir-react-native/src/GoogleCircle.tsx index c4dc4dd2..cc259275 100644 --- a/packages/iconoir-react-native/src/GoogleCircle.tsx +++ b/packages/iconoir-react-native/src/GoogleCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGoogleCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgGoogleCircle( ); -} -const ForwardRef = React.forwardRef(SvgGoogleCircle); +}; +const ForwardRef = forwardRef(SvgGoogleCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GoogleDocs.tsx b/packages/iconoir-react-native/src/GoogleDocs.tsx index de91eefe..e01a1db6 100644 --- a/packages/iconoir-react-native/src/GoogleDocs.tsx +++ b/packages/iconoir-react-native/src/GoogleDocs.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleDocs( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGoogleDocs = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGoogleDocs( ); -} -const ForwardRef = React.forwardRef(SvgGoogleDocs); +}; +const ForwardRef = forwardRef(SvgGoogleDocs); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GoogleDrive.tsx b/packages/iconoir-react-native/src/GoogleDrive.tsx index a9c4e89a..fe372514 100644 --- a/packages/iconoir-react-native/src/GoogleDrive.tsx +++ b/packages/iconoir-react-native/src/GoogleDrive.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleDrive( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGoogleDrive = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGoogleDrive( ); -} -const ForwardRef = React.forwardRef(SvgGoogleDrive); +}; +const ForwardRef = forwardRef(SvgGoogleDrive); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GoogleDriveCheck.tsx b/packages/iconoir-react-native/src/GoogleDriveCheck.tsx index 2ffbee75..a1a534d8 100644 --- a/packages/iconoir-react-native/src/GoogleDriveCheck.tsx +++ b/packages/iconoir-react-native/src/GoogleDriveCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleDriveCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGoogleDriveCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgGoogleDriveCheck( - + - + ); -} -const ForwardRef = React.forwardRef(SvgGoogleDriveCheck); +}; +const ForwardRef = forwardRef(SvgGoogleDriveCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GoogleDriveSync.tsx b/packages/iconoir-react-native/src/GoogleDriveSync.tsx index cecbc03c..2fd16ae7 100644 --- a/packages/iconoir-react-native/src/GoogleDriveSync.tsx +++ b/packages/iconoir-react-native/src/GoogleDriveSync.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleDriveSync( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGoogleDriveSync = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgGoogleDriveSync( ); -} -const ForwardRef = React.forwardRef(SvgGoogleDriveSync); +}; +const ForwardRef = forwardRef(SvgGoogleDriveSync); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GoogleDriveWarning.tsx b/packages/iconoir-react-native/src/GoogleDriveWarning.tsx index 2a6c2994..e73288c8 100644 --- a/packages/iconoir-react-native/src/GoogleDriveWarning.tsx +++ b/packages/iconoir-react-native/src/GoogleDriveWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleDriveWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGoogleDriveWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGoogleDriveWarning( ); -} -const ForwardRef = React.forwardRef(SvgGoogleDriveWarning); +}; +const ForwardRef = forwardRef(SvgGoogleDriveWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GoogleHome.tsx b/packages/iconoir-react-native/src/GoogleHome.tsx index 853b868f..f9895b55 100644 --- a/packages/iconoir-react-native/src/GoogleHome.tsx +++ b/packages/iconoir-react-native/src/GoogleHome.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleHome( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGoogleHome = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgGoogleHome( ); -} -const ForwardRef = React.forwardRef(SvgGoogleHome); +}; +const ForwardRef = forwardRef(SvgGoogleHome); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GoogleOne.tsx b/packages/iconoir-react-native/src/GoogleOne.tsx index df24df93..26e8ab27 100644 --- a/packages/iconoir-react-native/src/GoogleOne.tsx +++ b/packages/iconoir-react-native/src/GoogleOne.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleOne( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGoogleOne = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGoogleOne( ); -} -const ForwardRef = React.forwardRef(SvgGoogleOne); +}; +const ForwardRef = forwardRef(SvgGoogleOne); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Gps.tsx b/packages/iconoir-react-native/src/Gps.tsx index edbefcc1..ee644931 100644 --- a/packages/iconoir-react-native/src/Gps.tsx +++ b/packages/iconoir-react-native/src/Gps.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGps( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGps = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgGps( ); -} -const ForwardRef = React.forwardRef(SvgGps); +}; +const ForwardRef = forwardRef(SvgGps); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GraduationCap.tsx b/packages/iconoir-react-native/src/GraduationCap.tsx index 7b716f5b..31fe83fa 100644 --- a/packages/iconoir-react-native/src/GraduationCap.tsx +++ b/packages/iconoir-react-native/src/GraduationCap.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGraduationCap( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGraduationCap = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGraduationCap( ); -} -const ForwardRef = React.forwardRef(SvgGraduationCap); +}; +const ForwardRef = forwardRef(SvgGraduationCap); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GraphDown.tsx b/packages/iconoir-react-native/src/GraphDown.tsx index 3eee3dce..4f14eadd 100644 --- a/packages/iconoir-react-native/src/GraphDown.tsx +++ b/packages/iconoir-react-native/src/GraphDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGraphDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGraphDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGraphDown( ); -} -const ForwardRef = React.forwardRef(SvgGraphDown); +}; +const ForwardRef = forwardRef(SvgGraphDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GraphUp.tsx b/packages/iconoir-react-native/src/GraphUp.tsx index 36f02093..dcad9987 100644 --- a/packages/iconoir-react-native/src/GraphUp.tsx +++ b/packages/iconoir-react-native/src/GraphUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGraphUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGraphUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGraphUp( ); -} -const ForwardRef = React.forwardRef(SvgGraphUp); +}; +const ForwardRef = forwardRef(SvgGraphUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GreenBus.tsx b/packages/iconoir-react-native/src/GreenBus.tsx index f7ddb78d..0dc31249 100644 --- a/packages/iconoir-react-native/src/GreenBus.tsx +++ b/packages/iconoir-react-native/src/GreenBus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGreenBus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGreenBus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgGreenBus( ); -} -const ForwardRef = React.forwardRef(SvgGreenBus); +}; +const ForwardRef = forwardRef(SvgGreenBus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GreenTruck.tsx b/packages/iconoir-react-native/src/GreenTruck.tsx index b8f091da..9343de9a 100644 --- a/packages/iconoir-react-native/src/GreenTruck.tsx +++ b/packages/iconoir-react-native/src/GreenTruck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGreenTruck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGreenTruck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,39 @@ function SvgGreenTruck( + ); -} -const ForwardRef = React.forwardRef(SvgGreenTruck); +}; +const ForwardRef = forwardRef(SvgGreenTruck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GreenVehicle.tsx b/packages/iconoir-react-native/src/GreenVehicle.tsx index e76fe636..6f939566 100644 --- a/packages/iconoir-react-native/src/GreenVehicle.tsx +++ b/packages/iconoir-react-native/src/GreenVehicle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGreenVehicle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGreenVehicle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,38 @@ function SvgGreenVehicle( + + - ); -} -const ForwardRef = React.forwardRef(SvgGreenVehicle); +}; +const ForwardRef = forwardRef(SvgGreenVehicle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GridAdd.tsx b/packages/iconoir-react-native/src/GridAdd.tsx index 7bbce151..24fcf8c4 100644 --- a/packages/iconoir-react-native/src/GridAdd.tsx +++ b/packages/iconoir-react-native/src/GridAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGridAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGridAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgGridAdd( ); -} -const ForwardRef = React.forwardRef(SvgGridAdd); +}; +const ForwardRef = forwardRef(SvgGridAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GridMinus.tsx b/packages/iconoir-react-native/src/GridMinus.tsx index 4ea4d8d3..fec1a833 100644 --- a/packages/iconoir-react-native/src/GridMinus.tsx +++ b/packages/iconoir-react-native/src/GridMinus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGridMinus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGridMinus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgGridMinus( ); -} -const ForwardRef = React.forwardRef(SvgGridMinus); +}; +const ForwardRef = forwardRef(SvgGridMinus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/GridRemove.tsx b/packages/iconoir-react-native/src/GridRemove.tsx index 89767769..a25e391b 100644 --- a/packages/iconoir-react-native/src/GridRemove.tsx +++ b/packages/iconoir-react-native/src/GridRemove.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGridRemove( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGridRemove = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgGridRemove( ); -} -const ForwardRef = React.forwardRef(SvgGridRemove); +}; +const ForwardRef = forwardRef(SvgGridRemove); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Group.tsx b/packages/iconoir-react-native/src/Group.tsx index cb7da611..5f545e6c 100644 --- a/packages/iconoir-react-native/src/Group.tsx +++ b/packages/iconoir-react-native/src/Group.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGroup( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGroup = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgGroup( ); -} -const ForwardRef = React.forwardRef(SvgGroup); +}; +const ForwardRef = forwardRef(SvgGroup); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Gym.tsx b/packages/iconoir-react-native/src/Gym.tsx index 4f2bdc5e..cec55ad5 100644 --- a/packages/iconoir-react-native/src/Gym.tsx +++ b/packages/iconoir-react-native/src/Gym.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGym( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgGym = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgGym( ); -} -const ForwardRef = React.forwardRef(SvgGym); +}; +const ForwardRef = forwardRef(SvgGym); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HalfCookie.tsx b/packages/iconoir-react-native/src/HalfCookie.tsx index b027d3b5..aa7283f6 100644 --- a/packages/iconoir-react-native/src/HalfCookie.tsx +++ b/packages/iconoir-react-native/src/HalfCookie.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHalfCookie( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHalfCookie = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHalfCookie( ); -} -const ForwardRef = React.forwardRef(SvgHalfCookie); +}; +const ForwardRef = forwardRef(SvgHalfCookie); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HalfMoon.tsx b/packages/iconoir-react-native/src/HalfMoon.tsx index 94b1cc52..68434f60 100644 --- a/packages/iconoir-react-native/src/HalfMoon.tsx +++ b/packages/iconoir-react-native/src/HalfMoon.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHalfMoon( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHalfMoon = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHalfMoon( ); -} -const ForwardRef = React.forwardRef(SvgHalfMoon); +}; +const ForwardRef = forwardRef(SvgHalfMoon); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Hammer.tsx b/packages/iconoir-react-native/src/Hammer.tsx index 1545b456..4a850285 100644 --- a/packages/iconoir-react-native/src/Hammer.tsx +++ b/packages/iconoir-react-native/src/Hammer.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHammer( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHammer = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHammer( ); -} -const ForwardRef = React.forwardRef(SvgHammer); +}; +const ForwardRef = forwardRef(SvgHammer); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HandBrake.tsx b/packages/iconoir-react-native/src/HandBrake.tsx index a7c7597d..56584bb6 100644 --- a/packages/iconoir-react-native/src/HandBrake.tsx +++ b/packages/iconoir-react-native/src/HandBrake.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path, Circle } from "react-native-svg"; +import Svg, { Path, Circle } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHandBrake( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHandBrake = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgHandBrake( ); -} -const ForwardRef = React.forwardRef(SvgHandBrake); +}; +const ForwardRef = forwardRef(SvgHandBrake); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HandCard.tsx b/packages/iconoir-react-native/src/HandCard.tsx index f78a8b5e..b161d675 100644 --- a/packages/iconoir-react-native/src/HandCard.tsx +++ b/packages/iconoir-react-native/src/HandCard.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHandCard( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHandCard = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgHandCard( ); -} -const ForwardRef = React.forwardRef(SvgHandCard); +}; +const ForwardRef = forwardRef(SvgHandCard); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HandCash.tsx b/packages/iconoir-react-native/src/HandCash.tsx index 227e639f..afd6bb3d 100644 --- a/packages/iconoir-react-native/src/HandCash.tsx +++ b/packages/iconoir-react-native/src/HandCash.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHandCash( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHandCash = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgHandCash( ); -} -const ForwardRef = React.forwardRef(SvgHandCash); +}; +const ForwardRef = forwardRef(SvgHandCash); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HandContactless.tsx b/packages/iconoir-react-native/src/HandContactless.tsx index 234c4769..400a552d 100644 --- a/packages/iconoir-react-native/src/HandContactless.tsx +++ b/packages/iconoir-react-native/src/HandContactless.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHandContactless( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHandContactless = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgHandContactless( ); -} -const ForwardRef = React.forwardRef(SvgHandContactless); +}; +const ForwardRef = forwardRef(SvgHandContactless); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Handbag.tsx b/packages/iconoir-react-native/src/Handbag.tsx index a3063572..047e7fd7 100644 --- a/packages/iconoir-react-native/src/Handbag.tsx +++ b/packages/iconoir-react-native/src/Handbag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHandbag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHandbag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHandbag( ); -} -const ForwardRef = React.forwardRef(SvgHandbag); +}; +const ForwardRef = forwardRef(SvgHandbag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HardDrive.tsx b/packages/iconoir-react-native/src/HardDrive.tsx index d4b24e47..cfd245dd 100644 --- a/packages/iconoir-react-native/src/HardDrive.tsx +++ b/packages/iconoir-react-native/src/HardDrive.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHardDrive( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHardDrive = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgHardDrive( ); -} -const ForwardRef = React.forwardRef(SvgHardDrive); +}; +const ForwardRef = forwardRef(SvgHardDrive); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Hat.tsx b/packages/iconoir-react-native/src/Hat.tsx index 5f9e7263..325ad134 100644 --- a/packages/iconoir-react-native/src/Hat.tsx +++ b/packages/iconoir-react-native/src/Hat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHat( ); -} -const ForwardRef = React.forwardRef(SvgHat); +}; +const ForwardRef = forwardRef(SvgHat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Hd.tsx b/packages/iconoir-react-native/src/Hd.tsx index a2497f37..01db8ebe 100644 --- a/packages/iconoir-react-native/src/Hd.tsx +++ b/packages/iconoir-react-native/src/Hd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHd( ); -} -const ForwardRef = React.forwardRef(SvgHd); +}; +const ForwardRef = forwardRef(SvgHd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HdDisplay.tsx b/packages/iconoir-react-native/src/HdDisplay.tsx index cfde4fee..9518a600 100644 --- a/packages/iconoir-react-native/src/HdDisplay.tsx +++ b/packages/iconoir-react-native/src/HdDisplay.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHdDisplay( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHdDisplay = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgHdDisplay( ); -} -const ForwardRef = React.forwardRef(SvgHdDisplay); +}; +const ForwardRef = forwardRef(SvgHdDisplay); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Hdr.tsx b/packages/iconoir-react-native/src/Hdr.tsx index b6d1028f..e3fb6c70 100644 --- a/packages/iconoir-react-native/src/Hdr.tsx +++ b/packages/iconoir-react-native/src/Hdr.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHdr( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHdr = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHdr( ); -} -const ForwardRef = React.forwardRef(SvgHdr); +}; +const ForwardRef = forwardRef(SvgHdr); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Headset.tsx b/packages/iconoir-react-native/src/Headset.tsx index 4a7d80cc..f59c57b9 100644 --- a/packages/iconoir-react-native/src/Headset.tsx +++ b/packages/iconoir-react-native/src/Headset.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeadset( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHeadset = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHeadset( ); -} -const ForwardRef = React.forwardRef(SvgHeadset); +}; +const ForwardRef = forwardRef(SvgHeadset); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HeadsetCharge.tsx b/packages/iconoir-react-native/src/HeadsetCharge.tsx index 4b641604..22f5a572 100644 --- a/packages/iconoir-react-native/src/HeadsetCharge.tsx +++ b/packages/iconoir-react-native/src/HeadsetCharge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeadsetCharge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHeadsetCharge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgHeadsetCharge( ); -} -const ForwardRef = React.forwardRef(SvgHeadsetCharge); +}; +const ForwardRef = forwardRef(SvgHeadsetCharge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HeadsetHelp.tsx b/packages/iconoir-react-native/src/HeadsetHelp.tsx index d3f1692c..7afe3ae0 100644 --- a/packages/iconoir-react-native/src/HeadsetHelp.tsx +++ b/packages/iconoir-react-native/src/HeadsetHelp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeadsetHelp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHeadsetHelp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgHeadsetHelp( ); -} -const ForwardRef = React.forwardRef(SvgHeadsetHelp); +}; +const ForwardRef = forwardRef(SvgHeadsetHelp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HeadsetIssue.tsx b/packages/iconoir-react-native/src/HeadsetIssue.tsx index 87f9d117..2c0e1e05 100644 --- a/packages/iconoir-react-native/src/HeadsetIssue.tsx +++ b/packages/iconoir-react-native/src/HeadsetIssue.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeadsetIssue( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHeadsetIssue = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHeadsetIssue( ); -} -const ForwardRef = React.forwardRef(SvgHeadsetIssue); +}; +const ForwardRef = forwardRef(SvgHeadsetIssue); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HealthShield.tsx b/packages/iconoir-react-native/src/HealthShield.tsx index 482df05c..b5035989 100644 --- a/packages/iconoir-react-native/src/HealthShield.tsx +++ b/packages/iconoir-react-native/src/HealthShield.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHealthShield( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHealthShield = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHealthShield( ); -} -const ForwardRef = React.forwardRef(SvgHealthShield); +}; +const ForwardRef = forwardRef(SvgHealthShield); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Healthcare.tsx b/packages/iconoir-react-native/src/Healthcare.tsx index 6b242658..e74e7b1e 100644 --- a/packages/iconoir-react-native/src/Healthcare.tsx +++ b/packages/iconoir-react-native/src/Healthcare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHealthcare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHealthcare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgHealthcare( ); -} -const ForwardRef = React.forwardRef(SvgHealthcare); +}; +const ForwardRef = forwardRef(SvgHealthcare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Heart.tsx b/packages/iconoir-react-native/src/Heart.tsx index ba635a56..ccb83c23 100644 --- a/packages/iconoir-react-native/src/Heart.tsx +++ b/packages/iconoir-react-native/src/Heart.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeart( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHeart = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgHeart( ); -} -const ForwardRef = React.forwardRef(SvgHeart); +}; +const ForwardRef = forwardRef(SvgHeart); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HeartArrowDown.tsx b/packages/iconoir-react-native/src/HeartArrowDown.tsx index 478f7cc8..122f5016 100644 --- a/packages/iconoir-react-native/src/HeartArrowDown.tsx +++ b/packages/iconoir-react-native/src/HeartArrowDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeartArrowDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHeartArrowDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHeartArrowDown( ); -} -const ForwardRef = React.forwardRef(SvgHeartArrowDown); +}; +const ForwardRef = forwardRef(SvgHeartArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Heating.tsx b/packages/iconoir-react-native/src/Heating.tsx index 033b5dd2..395368c2 100644 --- a/packages/iconoir-react-native/src/Heating.tsx +++ b/packages/iconoir-react-native/src/Heating.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeating( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHeating = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHeating( ); -} -const ForwardRef = React.forwardRef(SvgHeating); +}; +const ForwardRef = forwardRef(SvgHeating); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HeavyRain.tsx b/packages/iconoir-react-native/src/HeavyRain.tsx index 313b59fc..3514e769 100644 --- a/packages/iconoir-react-native/src/HeavyRain.tsx +++ b/packages/iconoir-react-native/src/HeavyRain.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeavyRain( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHeavyRain = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHeavyRain( ); -} -const ForwardRef = React.forwardRef(SvgHeavyRain); +}; +const ForwardRef = forwardRef(SvgHeavyRain); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HelpCircle.tsx b/packages/iconoir-react-native/src/HelpCircle.tsx index 79959ce0..1569f139 100644 --- a/packages/iconoir-react-native/src/HelpCircle.tsx +++ b/packages/iconoir-react-native/src/HelpCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHelpCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHelpCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHelpCircle( ); -} -const ForwardRef = React.forwardRef(SvgHelpCircle); +}; +const ForwardRef = forwardRef(SvgHelpCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HelpSquare.tsx b/packages/iconoir-react-native/src/HelpSquare.tsx index 2b760c7f..b45bc6c1 100644 --- a/packages/iconoir-react-native/src/HelpSquare.tsx +++ b/packages/iconoir-react-native/src/HelpSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHelpSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHelpSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgHelpSquare( ); -} -const ForwardRef = React.forwardRef(SvgHelpSquare); +}; +const ForwardRef = forwardRef(SvgHelpSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Heptagon.tsx b/packages/iconoir-react-native/src/Heptagon.tsx index d18be6fb..7239eeb8 100644 --- a/packages/iconoir-react-native/src/Heptagon.tsx +++ b/packages/iconoir-react-native/src/Heptagon.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeptagon( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHeptagon = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHeptagon( ); -} -const ForwardRef = React.forwardRef(SvgHeptagon); +}; +const ForwardRef = forwardRef(SvgHeptagon); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HerSlips.tsx b/packages/iconoir-react-native/src/HerSlips.tsx index dc4a83b4..a8da67ed 100644 --- a/packages/iconoir-react-native/src/HerSlips.tsx +++ b/packages/iconoir-react-native/src/HerSlips.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHerSlips( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHerSlips = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgHerSlips( ); -} -const ForwardRef = React.forwardRef(SvgHerSlips); +}; +const ForwardRef = forwardRef(SvgHerSlips); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Hexagon.tsx b/packages/iconoir-react-native/src/Hexagon.tsx index 97e048b1..68d95bbe 100644 --- a/packages/iconoir-react-native/src/Hexagon.tsx +++ b/packages/iconoir-react-native/src/Hexagon.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHexagon( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHexagon = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHexagon( ); -} -const ForwardRef = React.forwardRef(SvgHexagon); +}; +const ForwardRef = forwardRef(SvgHexagon); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HexagonAlt.tsx b/packages/iconoir-react-native/src/HexagonAlt.tsx index 0871bf72..6c0ec9fc 100644 --- a/packages/iconoir-react-native/src/HexagonAlt.tsx +++ b/packages/iconoir-react-native/src/HexagonAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHexagonAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHexagonAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgHexagonAlt( - + - + ); -} -const ForwardRef = React.forwardRef(SvgHexagonAlt); +}; +const ForwardRef = forwardRef(SvgHexagonAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HexagonDice.tsx b/packages/iconoir-react-native/src/HexagonDice.tsx index da7508a0..fdd8eb7a 100644 --- a/packages/iconoir-react-native/src/HexagonDice.tsx +++ b/packages/iconoir-react-native/src/HexagonDice.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHexagonDice( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHexagonDice = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgHexagonDice( ); -} -const ForwardRef = React.forwardRef(SvgHexagonDice); +}; +const ForwardRef = forwardRef(SvgHexagonDice); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HighPriority.tsx b/packages/iconoir-react-native/src/HighPriority.tsx index 14285c62..9d553894 100644 --- a/packages/iconoir-react-native/src/HighPriority.tsx +++ b/packages/iconoir-react-native/src/HighPriority.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHighPriority( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHighPriority = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHighPriority( ); -} -const ForwardRef = React.forwardRef(SvgHighPriority); +}; +const ForwardRef = forwardRef(SvgHighPriority); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HistoricShield.tsx b/packages/iconoir-react-native/src/HistoricShield.tsx index 8b60ad6f..72911d5f 100644 --- a/packages/iconoir-react-native/src/HistoricShield.tsx +++ b/packages/iconoir-react-native/src/HistoricShield.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHistoricShield( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHistoricShield = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHistoricShield( ); -} -const ForwardRef = React.forwardRef(SvgHistoricShield); +}; +const ForwardRef = forwardRef(SvgHistoricShield); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HistoricShieldAlt.tsx b/packages/iconoir-react-native/src/HistoricShieldAlt.tsx index a49826c6..fef7809e 100644 --- a/packages/iconoir-react-native/src/HistoricShieldAlt.tsx +++ b/packages/iconoir-react-native/src/HistoricShieldAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHistoricShieldAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHistoricShieldAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHistoricShieldAlt( ); -} -const ForwardRef = React.forwardRef(SvgHistoricShieldAlt); +}; +const ForwardRef = forwardRef(SvgHistoricShieldAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Home.tsx b/packages/iconoir-react-native/src/Home.tsx index 63c5f2ab..d8345a5c 100644 --- a/packages/iconoir-react-native/src/Home.tsx +++ b/packages/iconoir-react-native/src/Home.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHome( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHome = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHome( ); -} -const ForwardRef = React.forwardRef(SvgHome); +}; +const ForwardRef = forwardRef(SvgHome); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeAlt.tsx b/packages/iconoir-react-native/src/HomeAlt.tsx index 49862d4e..51e34e60 100644 --- a/packages/iconoir-react-native/src/HomeAlt.tsx +++ b/packages/iconoir-react-native/src/HomeAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHomeAlt( ); -} -const ForwardRef = React.forwardRef(SvgHomeAlt); +}; +const ForwardRef = forwardRef(SvgHomeAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeAltSlim.tsx b/packages/iconoir-react-native/src/HomeAltSlim.tsx index dc42d6b7..00eda1d6 100644 --- a/packages/iconoir-react-native/src/HomeAltSlim.tsx +++ b/packages/iconoir-react-native/src/HomeAltSlim.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeAltSlim( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeAltSlim = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHomeAltSlim( ); -} -const ForwardRef = React.forwardRef(SvgHomeAltSlim); +}; +const ForwardRef = forwardRef(SvgHomeAltSlim); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeAltSlimHoriz.tsx b/packages/iconoir-react-native/src/HomeAltSlimHoriz.tsx index 0464136e..b0187506 100644 --- a/packages/iconoir-react-native/src/HomeAltSlimHoriz.tsx +++ b/packages/iconoir-react-native/src/HomeAltSlimHoriz.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeAltSlimHoriz( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeAltSlimHoriz = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHomeAltSlimHoriz( ); -} -const ForwardRef = React.forwardRef(SvgHomeAltSlimHoriz); +}; +const ForwardRef = forwardRef(SvgHomeAltSlimHoriz); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeHospital.tsx b/packages/iconoir-react-native/src/HomeHospital.tsx index 09301373..d171114d 100644 --- a/packages/iconoir-react-native/src/HomeHospital.tsx +++ b/packages/iconoir-react-native/src/HomeHospital.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeHospital( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeHospital = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHomeHospital( ); -} -const ForwardRef = React.forwardRef(SvgHomeHospital); +}; +const ForwardRef = forwardRef(SvgHomeHospital); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeSale.tsx b/packages/iconoir-react-native/src/HomeSale.tsx index 00855d47..f76f17dc 100644 --- a/packages/iconoir-react-native/src/HomeSale.tsx +++ b/packages/iconoir-react-native/src/HomeSale.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeSale( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeSale = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHomeSale( ); -} -const ForwardRef = React.forwardRef(SvgHomeSale); +}; +const ForwardRef = forwardRef(SvgHomeSale); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeSecure.tsx b/packages/iconoir-react-native/src/HomeSecure.tsx index 13d36b65..e9a8ab99 100644 --- a/packages/iconoir-react-native/src/HomeSecure.tsx +++ b/packages/iconoir-react-native/src/HomeSecure.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeSecure( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeSecure = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHomeSecure( ); -} -const ForwardRef = React.forwardRef(SvgHomeSecure); +}; +const ForwardRef = forwardRef(SvgHomeSecure); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeShield.tsx b/packages/iconoir-react-native/src/HomeShield.tsx index 993d1299..e9d3e20e 100644 --- a/packages/iconoir-react-native/src/HomeShield.tsx +++ b/packages/iconoir-react-native/src/HomeShield.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeShield( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeShield = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHomeShield( ); -} -const ForwardRef = React.forwardRef(SvgHomeShield); +}; +const ForwardRef = forwardRef(SvgHomeShield); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeSimple.tsx b/packages/iconoir-react-native/src/HomeSimple.tsx index 2fdf280b..3dc0aec6 100644 --- a/packages/iconoir-react-native/src/HomeSimple.tsx +++ b/packages/iconoir-react-native/src/HomeSimple.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeSimple( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeSimple = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHomeSimple( ); -} -const ForwardRef = React.forwardRef(SvgHomeSimple); +}; +const ForwardRef = forwardRef(SvgHomeSimple); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeSimpleDoor.tsx b/packages/iconoir-react-native/src/HomeSimpleDoor.tsx index 7ae3f124..cc41c212 100644 --- a/packages/iconoir-react-native/src/HomeSimpleDoor.tsx +++ b/packages/iconoir-react-native/src/HomeSimpleDoor.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeSimpleDoor( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeSimpleDoor = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHomeSimpleDoor( ); -} -const ForwardRef = React.forwardRef(SvgHomeSimpleDoor); +}; +const ForwardRef = forwardRef(SvgHomeSimpleDoor); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeTable.tsx b/packages/iconoir-react-native/src/HomeTable.tsx index c9061f27..216ab15b 100644 --- a/packages/iconoir-react-native/src/HomeTable.tsx +++ b/packages/iconoir-react-native/src/HomeTable.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeTable( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeTable = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHomeTable( ); -} -const ForwardRef = React.forwardRef(SvgHomeTable); +}; +const ForwardRef = forwardRef(SvgHomeTable); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeTemperatureIn.tsx b/packages/iconoir-react-native/src/HomeTemperatureIn.tsx index c354dae9..60ee3184 100644 --- a/packages/iconoir-react-native/src/HomeTemperatureIn.tsx +++ b/packages/iconoir-react-native/src/HomeTemperatureIn.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeTemperatureIn( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeTemperatureIn = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHomeTemperatureIn( ); -} -const ForwardRef = React.forwardRef(SvgHomeTemperatureIn); +}; +const ForwardRef = forwardRef(SvgHomeTemperatureIn); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeTemperatureOut.tsx b/packages/iconoir-react-native/src/HomeTemperatureOut.tsx index 8d6c968d..b1b652dd 100644 --- a/packages/iconoir-react-native/src/HomeTemperatureOut.tsx +++ b/packages/iconoir-react-native/src/HomeTemperatureOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeTemperatureOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeTemperatureOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHomeTemperatureOut( ); -} -const ForwardRef = React.forwardRef(SvgHomeTemperatureOut); +}; +const ForwardRef = forwardRef(SvgHomeTemperatureOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HomeUser.tsx b/packages/iconoir-react-native/src/HomeUser.tsx index 73768442..a29bfb6e 100644 --- a/packages/iconoir-react-native/src/HomeUser.tsx +++ b/packages/iconoir-react-native/src/HomeUser.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeUser( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHomeUser = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgHomeUser( - + ); -} -const ForwardRef = React.forwardRef(SvgHomeUser); +}; +const ForwardRef = forwardRef(SvgHomeUser); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HorizDistributionLeft.tsx b/packages/iconoir-react-native/src/HorizDistributionLeft.tsx index 4b66b05c..6fe0856e 100644 --- a/packages/iconoir-react-native/src/HorizDistributionLeft.tsx +++ b/packages/iconoir-react-native/src/HorizDistributionLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHorizDistributionLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHorizDistributionLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHorizDistributionLeft( ); -} -const ForwardRef = React.forwardRef(SvgHorizDistributionLeft); +}; +const ForwardRef = forwardRef(SvgHorizDistributionLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HorizDistributionRight.tsx b/packages/iconoir-react-native/src/HorizDistributionRight.tsx index 4c1b4d27..6fbf7e9a 100644 --- a/packages/iconoir-react-native/src/HorizDistributionRight.tsx +++ b/packages/iconoir-react-native/src/HorizDistributionRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHorizDistributionRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHorizDistributionRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHorizDistributionRight( ); -} -const ForwardRef = React.forwardRef(SvgHorizDistributionRight); +}; +const ForwardRef = forwardRef(SvgHorizDistributionRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HorizontalMerge.tsx b/packages/iconoir-react-native/src/HorizontalMerge.tsx index cd6bb570..5ba72395 100644 --- a/packages/iconoir-react-native/src/HorizontalMerge.tsx +++ b/packages/iconoir-react-native/src/HorizontalMerge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHorizontalMerge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHorizontalMerge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHorizontalMerge( ); -} -const ForwardRef = React.forwardRef(SvgHorizontalMerge); +}; +const ForwardRef = forwardRef(SvgHorizontalMerge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HorizontalSplit.tsx b/packages/iconoir-react-native/src/HorizontalSplit.tsx index 605c5ec3..e21af492 100644 --- a/packages/iconoir-react-native/src/HorizontalSplit.tsx +++ b/packages/iconoir-react-native/src/HorizontalSplit.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHorizontalSplit( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHorizontalSplit = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHorizontalSplit( ); -} -const ForwardRef = React.forwardRef(SvgHorizontalSplit); +}; +const ForwardRef = forwardRef(SvgHorizontalSplit); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Hospital.tsx b/packages/iconoir-react-native/src/Hospital.tsx index c0b2f857..d2c874cf 100644 --- a/packages/iconoir-react-native/src/Hospital.tsx +++ b/packages/iconoir-react-native/src/Hospital.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHospital( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHospital = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgHospital( ); -} -const ForwardRef = React.forwardRef(SvgHospital); +}; +const ForwardRef = forwardRef(SvgHospital); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HospitalSign.tsx b/packages/iconoir-react-native/src/HospitalSign.tsx index 3c37333a..2c605350 100644 --- a/packages/iconoir-react-native/src/HospitalSign.tsx +++ b/packages/iconoir-react-native/src/HospitalSign.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHospitalSign( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHospitalSign = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHospitalSign( ); -} -const ForwardRef = React.forwardRef(SvgHospitalSign); +}; +const ForwardRef = forwardRef(SvgHospitalSign); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HotAirBalloon.tsx b/packages/iconoir-react-native/src/HotAirBalloon.tsx index d3974b73..8002047b 100644 --- a/packages/iconoir-react-native/src/HotAirBalloon.tsx +++ b/packages/iconoir-react-native/src/HotAirBalloon.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHotAirBalloon( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHotAirBalloon = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgHotAirBalloon( ); -} -const ForwardRef = React.forwardRef(SvgHotAirBalloon); +}; +const ForwardRef = forwardRef(SvgHotAirBalloon); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Hourglass.tsx b/packages/iconoir-react-native/src/Hourglass.tsx index ab3fa854..b5e0cbf4 100644 --- a/packages/iconoir-react-native/src/Hourglass.tsx +++ b/packages/iconoir-react-native/src/Hourglass.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHourglass( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHourglass = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgHourglass( ); -} -const ForwardRef = React.forwardRef(SvgHourglass); +}; +const ForwardRef = forwardRef(SvgHourglass); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/HouseRooms.tsx b/packages/iconoir-react-native/src/HouseRooms.tsx index ab57833d..7c02aa58 100644 --- a/packages/iconoir-react-native/src/HouseRooms.tsx +++ b/packages/iconoir-react-native/src/HouseRooms.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHouseRooms( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHouseRooms = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHouseRooms( ); -} -const ForwardRef = React.forwardRef(SvgHouseRooms); +}; +const ForwardRef = forwardRef(SvgHouseRooms); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Html5.tsx b/packages/iconoir-react-native/src/Html5.tsx index 1a081450..482785dd 100644 --- a/packages/iconoir-react-native/src/Html5.tsx +++ b/packages/iconoir-react-native/src/Html5.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHtml5( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHtml5 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgHtml5( ); -} -const ForwardRef = React.forwardRef(SvgHtml5); +}; +const ForwardRef = forwardRef(SvgHtml5); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Hydrogen.tsx b/packages/iconoir-react-native/src/Hydrogen.tsx index fa76f2e7..39c84973 100644 --- a/packages/iconoir-react-native/src/Hydrogen.tsx +++ b/packages/iconoir-react-native/src/Hydrogen.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHydrogen( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgHydrogen = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,22 +12,22 @@ function SvgHydrogen( return ( ); -} -const ForwardRef = React.forwardRef(SvgHydrogen); +}; +const ForwardRef = forwardRef(SvgHydrogen); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Iconoir.tsx b/packages/iconoir-react-native/src/Iconoir.tsx index 510271ed..a1ee2e5b 100644 --- a/packages/iconoir-react-native/src/Iconoir.tsx +++ b/packages/iconoir-react-native/src/Iconoir.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIconoir( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgIconoir = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgIconoir( ); -} -const ForwardRef = React.forwardRef(SvgIconoir); +}; +const ForwardRef = forwardRef(SvgIconoir); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Import.tsx b/packages/iconoir-react-native/src/Import.tsx index d560e48c..4f2a7748 100644 --- a/packages/iconoir-react-native/src/Import.tsx +++ b/packages/iconoir-react-native/src/Import.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgImport( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgImport = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgImport( ); -} -const ForwardRef = React.forwardRef(SvgImport); +}; +const ForwardRef = forwardRef(SvgImport); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Inclination.tsx b/packages/iconoir-react-native/src/Inclination.tsx index ee945d82..6da3bccd 100644 --- a/packages/iconoir-react-native/src/Inclination.tsx +++ b/packages/iconoir-react-native/src/Inclination.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInclination( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgInclination = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgInclination( + ); -} -const ForwardRef = React.forwardRef(SvgInclination); +}; +const ForwardRef = forwardRef(SvgInclination); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Industry.tsx b/packages/iconoir-react-native/src/Industry.tsx index b5e64ad1..86b37d08 100644 --- a/packages/iconoir-react-native/src/Industry.tsx +++ b/packages/iconoir-react-native/src/Industry.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIndustry( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgIndustry = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgIndustry( ); -} -const ForwardRef = React.forwardRef(SvgIndustry); +}; +const ForwardRef = forwardRef(SvgIndustry); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Infinite.tsx b/packages/iconoir-react-native/src/Infinite.tsx index 7c64cb20..21defb8d 100644 --- a/packages/iconoir-react-native/src/Infinite.tsx +++ b/packages/iconoir-react-native/src/Infinite.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInfinite( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgInfinite = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgInfinite( ); -} -const ForwardRef = React.forwardRef(SvgInfinite); +}; +const ForwardRef = forwardRef(SvgInfinite); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/InfoEmpty.tsx b/packages/iconoir-react-native/src/InfoEmpty.tsx index 3d75f340..3d00aa4f 100644 --- a/packages/iconoir-react-native/src/InfoEmpty.tsx +++ b/packages/iconoir-react-native/src/InfoEmpty.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInfoEmpty( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgInfoEmpty = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgInfoEmpty( ); -} -const ForwardRef = React.forwardRef(SvgInfoEmpty); +}; +const ForwardRef = forwardRef(SvgInfoEmpty); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/InputField.tsx b/packages/iconoir-react-native/src/InputField.tsx index 5ff9e8d9..f4965245 100644 --- a/packages/iconoir-react-native/src/InputField.tsx +++ b/packages/iconoir-react-native/src/InputField.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInputField( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgInputField = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgInputField( ); -} -const ForwardRef = React.forwardRef(SvgInputField); +}; +const ForwardRef = forwardRef(SvgInputField); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/InputOutput.tsx b/packages/iconoir-react-native/src/InputOutput.tsx index 5e780b4d..5d560b2e 100644 --- a/packages/iconoir-react-native/src/InputOutput.tsx +++ b/packages/iconoir-react-native/src/InputOutput.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInputOutput( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgInputOutput = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgInputOutput( ); -} -const ForwardRef = React.forwardRef(SvgInputOutput); +}; +const ForwardRef = forwardRef(SvgInputOutput); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/InputSearch.tsx b/packages/iconoir-react-native/src/InputSearch.tsx index 173a639e..abd5815b 100644 --- a/packages/iconoir-react-native/src/InputSearch.tsx +++ b/packages/iconoir-react-native/src/InputSearch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInputSearch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgInputSearch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgInputSearch( ); -} -const ForwardRef = React.forwardRef(SvgInputSearch); +}; +const ForwardRef = forwardRef(SvgInputSearch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Instagram.tsx b/packages/iconoir-react-native/src/Instagram.tsx index 7fe74c72..c288288e 100644 --- a/packages/iconoir-react-native/src/Instagram.tsx +++ b/packages/iconoir-react-native/src/Instagram.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInstagram( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgInstagram = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgInstagram( ); -} -const ForwardRef = React.forwardRef(SvgInstagram); +}; +const ForwardRef = forwardRef(SvgInstagram); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Internet.tsx b/packages/iconoir-react-native/src/Internet.tsx index 9e846ec6..e62a2eb4 100644 --- a/packages/iconoir-react-native/src/Internet.tsx +++ b/packages/iconoir-react-native/src/Internet.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInternet( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgInternet = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgInternet( ); -} -const ForwardRef = React.forwardRef(SvgInternet); +}; +const ForwardRef = forwardRef(SvgInternet); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Intersect.tsx b/packages/iconoir-react-native/src/Intersect.tsx index 5db54b5e..735958da 100644 --- a/packages/iconoir-react-native/src/Intersect.tsx +++ b/packages/iconoir-react-native/src/Intersect.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIntersect( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgIntersect = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgIntersect( ); -} -const ForwardRef = React.forwardRef(SvgIntersect); +}; +const ForwardRef = forwardRef(SvgIntersect); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/IntersectAlt.tsx b/packages/iconoir-react-native/src/IntersectAlt.tsx index 33709b1b..b74af7bc 100644 --- a/packages/iconoir-react-native/src/IntersectAlt.tsx +++ b/packages/iconoir-react-native/src/IntersectAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIntersectAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgIntersectAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgIntersectAlt( ); -} -const ForwardRef = React.forwardRef(SvgIntersectAlt); +}; +const ForwardRef = forwardRef(SvgIntersectAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/IosSettings.tsx b/packages/iconoir-react-native/src/IosSettings.tsx index ab2627fe..82757ba8 100644 --- a/packages/iconoir-react-native/src/IosSettings.tsx +++ b/packages/iconoir-react-native/src/IosSettings.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIosSettings( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgIosSettings = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,40 +13,40 @@ function SvgIosSettings( ); -} -const ForwardRef = React.forwardRef(SvgIosSettings); +}; +const ForwardRef = forwardRef(SvgIosSettings); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/IpAddress.tsx b/packages/iconoir-react-native/src/IpAddress.tsx index 1405e139..3ca1d1ef 100644 --- a/packages/iconoir-react-native/src/IpAddress.tsx +++ b/packages/iconoir-react-native/src/IpAddress.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIpAddress( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgIpAddress = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgIpAddress( ); -} -const ForwardRef = React.forwardRef(SvgIpAddress); +}; +const ForwardRef = forwardRef(SvgIpAddress); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/IrisScan.tsx b/packages/iconoir-react-native/src/IrisScan.tsx index 43d62f7b..2ce936bc 100644 --- a/packages/iconoir-react-native/src/IrisScan.tsx +++ b/packages/iconoir-react-native/src/IrisScan.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIrisScan( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgIrisScan = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgIrisScan( ); -} -const ForwardRef = React.forwardRef(SvgIrisScan); +}; +const ForwardRef = forwardRef(SvgIrisScan); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Italic.tsx b/packages/iconoir-react-native/src/Italic.tsx index e73a74b2..06ef2774 100644 --- a/packages/iconoir-react-native/src/Italic.tsx +++ b/packages/iconoir-react-native/src/Italic.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgItalic( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgItalic = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgItalic( ); -} -const ForwardRef = React.forwardRef(SvgItalic); +}; +const ForwardRef = forwardRef(SvgItalic); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ItalicSquare.tsx b/packages/iconoir-react-native/src/ItalicSquare.tsx index 246d3dec..41381f86 100644 --- a/packages/iconoir-react-native/src/ItalicSquare.tsx +++ b/packages/iconoir-react-native/src/ItalicSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgItalicSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgItalicSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgItalicSquare( ); -} -const ForwardRef = React.forwardRef(SvgItalicSquare); +}; +const ForwardRef = forwardRef(SvgItalicSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Jellyfish.tsx b/packages/iconoir-react-native/src/Jellyfish.tsx index 1819b58f..77f79303 100644 --- a/packages/iconoir-react-native/src/Jellyfish.tsx +++ b/packages/iconoir-react-native/src/Jellyfish.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgJellyfish( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgJellyfish = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgJellyfish( ); -} -const ForwardRef = React.forwardRef(SvgJellyfish); +}; +const ForwardRef = forwardRef(SvgJellyfish); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Journal.tsx b/packages/iconoir-react-native/src/Journal.tsx index c8401add..65d44202 100644 --- a/packages/iconoir-react-native/src/Journal.tsx +++ b/packages/iconoir-react-native/src/Journal.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgJournal( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgJournal = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgJournal( ); -} -const ForwardRef = React.forwardRef(SvgJournal); +}; +const ForwardRef = forwardRef(SvgJournal); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/JournalPage.tsx b/packages/iconoir-react-native/src/JournalPage.tsx index 6749637e..17306fa3 100644 --- a/packages/iconoir-react-native/src/JournalPage.tsx +++ b/packages/iconoir-react-native/src/JournalPage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgJournalPage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgJournalPage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgJournalPage( ); -} -const ForwardRef = React.forwardRef(SvgJournalPage); +}; +const ForwardRef = forwardRef(SvgJournalPage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/JpegFormat.tsx b/packages/iconoir-react-native/src/JpegFormat.tsx index ec7cb2ec..fa94168d 100644 --- a/packages/iconoir-react-native/src/JpegFormat.tsx +++ b/packages/iconoir-react-native/src/JpegFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgJpegFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgJpegFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgJpegFormat( ); -} -const ForwardRef = React.forwardRef(SvgJpegFormat); +}; +const ForwardRef = forwardRef(SvgJpegFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/JpgFormat.tsx b/packages/iconoir-react-native/src/JpgFormat.tsx index edaa0cc6..669e5a57 100644 --- a/packages/iconoir-react-native/src/JpgFormat.tsx +++ b/packages/iconoir-react-native/src/JpgFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgJpgFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgJpgFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgJpgFormat( ); -} -const ForwardRef = React.forwardRef(SvgJpgFormat); +}; +const ForwardRef = forwardRef(SvgJpgFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KanbanBoard.tsx b/packages/iconoir-react-native/src/KanbanBoard.tsx index df5e4175..8c4d0efe 100644 --- a/packages/iconoir-react-native/src/KanbanBoard.tsx +++ b/packages/iconoir-react-native/src/KanbanBoard.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKanbanBoard( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKanbanBoard = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKanbanBoard( ); -} -const ForwardRef = React.forwardRef(SvgKanbanBoard); +}; +const ForwardRef = forwardRef(SvgKanbanBoard); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyAlt.tsx b/packages/iconoir-react-native/src/KeyAlt.tsx index 9db18522..ede2b40f 100644 --- a/packages/iconoir-react-native/src/KeyAlt.tsx +++ b/packages/iconoir-react-native/src/KeyAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyAlt( ); -} -const ForwardRef = React.forwardRef(SvgKeyAlt); +}; +const ForwardRef = forwardRef(SvgKeyAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyAltBack.tsx b/packages/iconoir-react-native/src/KeyAltBack.tsx index 086da598..83b92290 100644 --- a/packages/iconoir-react-native/src/KeyAltBack.tsx +++ b/packages/iconoir-react-native/src/KeyAltBack.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyAltBack( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyAltBack = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyAltBack( ); -} -const ForwardRef = React.forwardRef(SvgKeyAltBack); +}; +const ForwardRef = forwardRef(SvgKeyAltBack); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyAltMinus.tsx b/packages/iconoir-react-native/src/KeyAltMinus.tsx index f9557999..6fb164e2 100644 --- a/packages/iconoir-react-native/src/KeyAltMinus.tsx +++ b/packages/iconoir-react-native/src/KeyAltMinus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyAltMinus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyAltMinus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyAltMinus( ); -} -const ForwardRef = React.forwardRef(SvgKeyAltMinus); +}; +const ForwardRef = forwardRef(SvgKeyAltMinus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyAltPlus.tsx b/packages/iconoir-react-native/src/KeyAltPlus.tsx index 30ffd34d..68049df0 100644 --- a/packages/iconoir-react-native/src/KeyAltPlus.tsx +++ b/packages/iconoir-react-native/src/KeyAltPlus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyAltPlus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyAltPlus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyAltPlus( ); -} -const ForwardRef = React.forwardRef(SvgKeyAltPlus); +}; +const ForwardRef = forwardRef(SvgKeyAltPlus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyAltRemove.tsx b/packages/iconoir-react-native/src/KeyAltRemove.tsx index f33e23a9..80639256 100644 --- a/packages/iconoir-react-native/src/KeyAltRemove.tsx +++ b/packages/iconoir-react-native/src/KeyAltRemove.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyAltRemove( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyAltRemove = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyAltRemove( ); -} -const ForwardRef = React.forwardRef(SvgKeyAltRemove); +}; +const ForwardRef = forwardRef(SvgKeyAltRemove); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyCommand.tsx b/packages/iconoir-react-native/src/KeyCommand.tsx index 17044146..76598a14 100644 --- a/packages/iconoir-react-native/src/KeyCommand.tsx +++ b/packages/iconoir-react-native/src/KeyCommand.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyCommand( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyCommand = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyCommand( ); -} -const ForwardRef = React.forwardRef(SvgKeyCommand); +}; +const ForwardRef = forwardRef(SvgKeyCommand); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Keyframe.tsx b/packages/iconoir-react-native/src/Keyframe.tsx index 17335ee2..aa4a2982 100644 --- a/packages/iconoir-react-native/src/Keyframe.tsx +++ b/packages/iconoir-react-native/src/Keyframe.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframe( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyframe = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyframe( ); -} -const ForwardRef = React.forwardRef(SvgKeyframe); +}; +const ForwardRef = forwardRef(SvgKeyframe); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyframeAlignCenter.tsx b/packages/iconoir-react-native/src/KeyframeAlignCenter.tsx index a1b8e3b1..bfca443e 100644 --- a/packages/iconoir-react-native/src/KeyframeAlignCenter.tsx +++ b/packages/iconoir-react-native/src/KeyframeAlignCenter.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframeAlignCenter( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyframeAlignCenter = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyframeAlignCenter( ); -} -const ForwardRef = React.forwardRef(SvgKeyframeAlignCenter); +}; +const ForwardRef = forwardRef(SvgKeyframeAlignCenter); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyframeAlignHorizontal.tsx b/packages/iconoir-react-native/src/KeyframeAlignHorizontal.tsx index 484e7435..c207047c 100644 --- a/packages/iconoir-react-native/src/KeyframeAlignHorizontal.tsx +++ b/packages/iconoir-react-native/src/KeyframeAlignHorizontal.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframeAlignHorizontal( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyframeAlignHorizontal = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyframeAlignHorizontal( ); -} -const ForwardRef = React.forwardRef(SvgKeyframeAlignHorizontal); +}; +const ForwardRef = forwardRef(SvgKeyframeAlignHorizontal); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyframeAlignVertical.tsx b/packages/iconoir-react-native/src/KeyframeAlignVertical.tsx index 864b1508..e4505746 100644 --- a/packages/iconoir-react-native/src/KeyframeAlignVertical.tsx +++ b/packages/iconoir-react-native/src/KeyframeAlignVertical.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframeAlignVertical( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyframeAlignVertical = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyframeAlignVertical( ); -} -const ForwardRef = React.forwardRef(SvgKeyframeAlignVertical); +}; +const ForwardRef = forwardRef(SvgKeyframeAlignVertical); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyframePosition.tsx b/packages/iconoir-react-native/src/KeyframePosition.tsx index 0c6a394e..6fa9a01e 100644 --- a/packages/iconoir-react-native/src/KeyframePosition.tsx +++ b/packages/iconoir-react-native/src/KeyframePosition.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframePosition( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyframePosition = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgKeyframePosition( ); -} -const ForwardRef = React.forwardRef(SvgKeyframePosition); +}; +const ForwardRef = forwardRef(SvgKeyframePosition); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Keyframes.tsx b/packages/iconoir-react-native/src/Keyframes.tsx index 244e1a31..44902333 100644 --- a/packages/iconoir-react-native/src/Keyframes.tsx +++ b/packages/iconoir-react-native/src/Keyframes.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframes( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyframes = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgKeyframes( ); -} -const ForwardRef = React.forwardRef(SvgKeyframes); +}; +const ForwardRef = forwardRef(SvgKeyframes); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/KeyframesCouple.tsx b/packages/iconoir-react-native/src/KeyframesCouple.tsx index e876b24f..dbe63db1 100644 --- a/packages/iconoir-react-native/src/KeyframesCouple.tsx +++ b/packages/iconoir-react-native/src/KeyframesCouple.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframesCouple( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgKeyframesCouple = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgKeyframesCouple( ); -} -const ForwardRef = React.forwardRef(SvgKeyframesCouple); +}; +const ForwardRef = forwardRef(SvgKeyframesCouple); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Label.tsx b/packages/iconoir-react-native/src/Label.tsx index 83c3d440..380fb900 100644 --- a/packages/iconoir-react-native/src/Label.tsx +++ b/packages/iconoir-react-native/src/Label.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLabel( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLabel = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgLabel( ); -} -const ForwardRef = React.forwardRef(SvgLabel); +}; +const ForwardRef = forwardRef(SvgLabel); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Lamp.tsx b/packages/iconoir-react-native/src/Lamp.tsx index d980f261..f5b8ba75 100644 --- a/packages/iconoir-react-native/src/Lamp.tsx +++ b/packages/iconoir-react-native/src/Lamp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLamp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLamp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLamp( ); -} -const ForwardRef = React.forwardRef(SvgLamp); +}; +const ForwardRef = forwardRef(SvgLamp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Language.tsx b/packages/iconoir-react-native/src/Language.tsx index 0a2144c5..79e3d92b 100644 --- a/packages/iconoir-react-native/src/Language.tsx +++ b/packages/iconoir-react-native/src/Language.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLanguage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLanguage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLanguage( ); -} -const ForwardRef = React.forwardRef(SvgLanguage); +}; +const ForwardRef = forwardRef(SvgLanguage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Laptop.tsx b/packages/iconoir-react-native/src/Laptop.tsx index e13434e4..553bbbcd 100644 --- a/packages/iconoir-react-native/src/Laptop.tsx +++ b/packages/iconoir-react-native/src/Laptop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLaptop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLaptop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgLaptop( ); -} -const ForwardRef = React.forwardRef(SvgLaptop); +}; +const ForwardRef = forwardRef(SvgLaptop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LaptopCharging.tsx b/packages/iconoir-react-native/src/LaptopCharging.tsx index 534d2a5f..2948b242 100644 --- a/packages/iconoir-react-native/src/LaptopCharging.tsx +++ b/packages/iconoir-react-native/src/LaptopCharging.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLaptopCharging( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLaptopCharging = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgLaptopCharging( ); -} -const ForwardRef = React.forwardRef(SvgLaptopCharging); +}; +const ForwardRef = forwardRef(SvgLaptopCharging); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LaptopFix.tsx b/packages/iconoir-react-native/src/LaptopFix.tsx index 807dbc6a..937b950f 100644 --- a/packages/iconoir-react-native/src/LaptopFix.tsx +++ b/packages/iconoir-react-native/src/LaptopFix.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLaptopFix( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLaptopFix = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLaptopFix( ); -} -const ForwardRef = React.forwardRef(SvgLaptopFix); +}; +const ForwardRef = forwardRef(SvgLaptopFix); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LaptopIssue.tsx b/packages/iconoir-react-native/src/LaptopIssue.tsx index ccf67fd9..399a2f64 100644 --- a/packages/iconoir-react-native/src/LaptopIssue.tsx +++ b/packages/iconoir-react-native/src/LaptopIssue.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLaptopIssue( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLaptopIssue = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgLaptopIssue( ); -} -const ForwardRef = React.forwardRef(SvgLaptopIssue); +}; +const ForwardRef = forwardRef(SvgLaptopIssue); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LargeSuitcase.tsx b/packages/iconoir-react-native/src/LargeSuitcase.tsx index 78605547..7931ec79 100644 --- a/packages/iconoir-react-native/src/LargeSuitcase.tsx +++ b/packages/iconoir-react-native/src/LargeSuitcase.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLargeSuitcase( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLargeSuitcase = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgLargeSuitcase( ); -} -const ForwardRef = React.forwardRef(SvgLargeSuitcase); +}; +const ForwardRef = forwardRef(SvgLargeSuitcase); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LayoutLeft.tsx b/packages/iconoir-react-native/src/LayoutLeft.tsx index 13de0662..d9c2bd17 100644 --- a/packages/iconoir-react-native/src/LayoutLeft.tsx +++ b/packages/iconoir-react-native/src/LayoutLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLayoutLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLayoutLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgLayoutLeft( ); -} -const ForwardRef = React.forwardRef(SvgLayoutLeft); +}; +const ForwardRef = forwardRef(SvgLayoutLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LayoutRight.tsx b/packages/iconoir-react-native/src/LayoutRight.tsx index cd49f5de..f6694e7f 100644 --- a/packages/iconoir-react-native/src/LayoutRight.tsx +++ b/packages/iconoir-react-native/src/LayoutRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLayoutRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLayoutRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgLayoutRight( ); -} -const ForwardRef = React.forwardRef(SvgLayoutRight); +}; +const ForwardRef = forwardRef(SvgLayoutRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Leaderboard.tsx b/packages/iconoir-react-native/src/Leaderboard.tsx index 0ef1216d..331314e9 100644 --- a/packages/iconoir-react-native/src/Leaderboard.tsx +++ b/packages/iconoir-react-native/src/Leaderboard.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLeaderboard( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLeaderboard = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLeaderboard( ); -} -const ForwardRef = React.forwardRef(SvgLeaderboard); +}; +const ForwardRef = forwardRef(SvgLeaderboard); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LeaderboardStar.tsx b/packages/iconoir-react-native/src/LeaderboardStar.tsx index c9c6a16e..d7562ebf 100644 --- a/packages/iconoir-react-native/src/LeaderboardStar.tsx +++ b/packages/iconoir-react-native/src/LeaderboardStar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLeaderboardStar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLeaderboardStar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLeaderboardStar( ); -} -const ForwardRef = React.forwardRef(SvgLeaderboardStar); +}; +const ForwardRef = forwardRef(SvgLeaderboardStar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Leaf.tsx b/packages/iconoir-react-native/src/Leaf.tsx index b9afb76f..83930930 100644 --- a/packages/iconoir-react-native/src/Leaf.tsx +++ b/packages/iconoir-react-native/src/Leaf.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLeaf( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLeaf = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgLeaf( + ); -} -const ForwardRef = React.forwardRef(SvgLeaf); +}; +const ForwardRef = forwardRef(SvgLeaf); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Learning.tsx b/packages/iconoir-react-native/src/Learning.tsx index b9de3b85..fb22f34b 100644 --- a/packages/iconoir-react-native/src/Learning.tsx +++ b/packages/iconoir-react-native/src/Learning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLearning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLearning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgLearning( ); -} -const ForwardRef = React.forwardRef(SvgLearning); +}; +const ForwardRef = forwardRef(SvgLearning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LeftRoundArrow.tsx b/packages/iconoir-react-native/src/LeftRoundArrow.tsx index bc6e4d5f..9728ed03 100644 --- a/packages/iconoir-react-native/src/LeftRoundArrow.tsx +++ b/packages/iconoir-react-native/src/LeftRoundArrow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLeftRoundArrow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLeftRoundArrow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgLeftRoundArrow( ); -} -const ForwardRef = React.forwardRef(SvgLeftRoundArrow); +}; +const ForwardRef = forwardRef(SvgLeftRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Lens.tsx b/packages/iconoir-react-native/src/Lens.tsx index 85dc65f5..5f43c99f 100644 --- a/packages/iconoir-react-native/src/Lens.tsx +++ b/packages/iconoir-react-native/src/Lens.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLens( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLens = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgLens( + ); -} -const ForwardRef = React.forwardRef(SvgLens); +}; +const ForwardRef = forwardRef(SvgLens); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Lifebelt.tsx b/packages/iconoir-react-native/src/Lifebelt.tsx index 88d74e79..bb3d6de0 100644 --- a/packages/iconoir-react-native/src/Lifebelt.tsx +++ b/packages/iconoir-react-native/src/Lifebelt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLifebelt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLifebelt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLifebelt( ); -} -const ForwardRef = React.forwardRef(SvgLifebelt); +}; +const ForwardRef = forwardRef(SvgLifebelt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LightBulb.tsx b/packages/iconoir-react-native/src/LightBulb.tsx index 47ca6fe0..eb8a9c75 100644 --- a/packages/iconoir-react-native/src/LightBulb.tsx +++ b/packages/iconoir-react-native/src/LightBulb.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLightBulb( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLightBulb = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLightBulb( ); -} -const ForwardRef = React.forwardRef(SvgLightBulb); +}; +const ForwardRef = forwardRef(SvgLightBulb); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LightBulbOff.tsx b/packages/iconoir-react-native/src/LightBulbOff.tsx index 66578130..0009720e 100644 --- a/packages/iconoir-react-native/src/LightBulbOff.tsx +++ b/packages/iconoir-react-native/src/LightBulbOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLightBulbOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLightBulbOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLightBulbOff( ); -} -const ForwardRef = React.forwardRef(SvgLightBulbOff); +}; +const ForwardRef = forwardRef(SvgLightBulbOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LightBulbOn.tsx b/packages/iconoir-react-native/src/LightBulbOn.tsx index bca0977e..ae6d7fa2 100644 --- a/packages/iconoir-react-native/src/LightBulbOn.tsx +++ b/packages/iconoir-react-native/src/LightBulbOn.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLightBulbOn( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLightBulbOn = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLightBulbOn( ); -} -const ForwardRef = React.forwardRef(SvgLightBulbOn); +}; +const ForwardRef = forwardRef(SvgLightBulbOn); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LineSpace.tsx b/packages/iconoir-react-native/src/LineSpace.tsx index 8e4db14b..9ee0d6e3 100644 --- a/packages/iconoir-react-native/src/LineSpace.tsx +++ b/packages/iconoir-react-native/src/LineSpace.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLineSpace( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLineSpace = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLineSpace( ); -} -const ForwardRef = React.forwardRef(SvgLineSpace); +}; +const ForwardRef = forwardRef(SvgLineSpace); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Linear.tsx b/packages/iconoir-react-native/src/Linear.tsx index c47923d1..0cfb42b2 100644 --- a/packages/iconoir-react-native/src/Linear.tsx +++ b/packages/iconoir-react-native/src/Linear.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLinear( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLinear = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLinear( ); -} -const ForwardRef = React.forwardRef(SvgLinear); +}; +const ForwardRef = forwardRef(SvgLinear); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Link.tsx b/packages/iconoir-react-native/src/Link.tsx index 591deb70..7d2ed274 100644 --- a/packages/iconoir-react-native/src/Link.tsx +++ b/packages/iconoir-react-native/src/Link.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLink( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLink = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLink( ); -} -const ForwardRef = React.forwardRef(SvgLink); +}; +const ForwardRef = forwardRef(SvgLink); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LinkedIn.tsx b/packages/iconoir-react-native/src/LinkedIn.tsx index 9e9e54fd..9209fe03 100644 --- a/packages/iconoir-react-native/src/LinkedIn.tsx +++ b/packages/iconoir-react-native/src/LinkedIn.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLinkedIn( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLinkedIn = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLinkedIn( ); -} -const ForwardRef = React.forwardRef(SvgLinkedIn); +}; +const ForwardRef = forwardRef(SvgLinkedIn); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Linux.tsx b/packages/iconoir-react-native/src/Linux.tsx index 6dd6eb7a..c54640ca 100644 --- a/packages/iconoir-react-native/src/Linux.tsx +++ b/packages/iconoir-react-native/src/Linux.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLinux( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLinux = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgLinux( ); -} -const ForwardRef = React.forwardRef(SvgLinux); +}; +const ForwardRef = forwardRef(SvgLinux); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/List.tsx b/packages/iconoir-react-native/src/List.tsx index 92257c25..ef560f05 100644 --- a/packages/iconoir-react-native/src/List.tsx +++ b/packages/iconoir-react-native/src/List.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgList( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgList = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgList( ); -} -const ForwardRef = React.forwardRef(SvgList); +}; +const ForwardRef = forwardRef(SvgList); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ListSelect.tsx b/packages/iconoir-react-native/src/ListSelect.tsx index 61f82b48..7099841e 100644 --- a/packages/iconoir-react-native/src/ListSelect.tsx +++ b/packages/iconoir-react-native/src/ListSelect.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgListSelect( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgListSelect = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgListSelect( ); -} -const ForwardRef = React.forwardRef(SvgListSelect); +}; +const ForwardRef = forwardRef(SvgListSelect); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LitecoinCircle.tsx b/packages/iconoir-react-native/src/LitecoinCircle.tsx index de0de53e..d392da39 100644 --- a/packages/iconoir-react-native/src/LitecoinCircle.tsx +++ b/packages/iconoir-react-native/src/LitecoinCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLitecoinCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLitecoinCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgLitecoinCircle( ); -} -const ForwardRef = React.forwardRef(SvgLitecoinCircle); +}; +const ForwardRef = forwardRef(SvgLitecoinCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LitecoinRotateOut.tsx b/packages/iconoir-react-native/src/LitecoinRotateOut.tsx index e65908e2..5dba72d3 100644 --- a/packages/iconoir-react-native/src/LitecoinRotateOut.tsx +++ b/packages/iconoir-react-native/src/LitecoinRotateOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLitecoinRotateOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLitecoinRotateOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,44 +13,44 @@ function SvgLitecoinRotateOut( ); -} -const ForwardRef = React.forwardRef(SvgLitecoinRotateOut); +}; +const ForwardRef = forwardRef(SvgLitecoinRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LoadActionFloppy.tsx b/packages/iconoir-react-native/src/LoadActionFloppy.tsx index 73cb9947..2fd989c3 100644 --- a/packages/iconoir-react-native/src/LoadActionFloppy.tsx +++ b/packages/iconoir-react-native/src/LoadActionFloppy.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLoadActionFloppy( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLoadActionFloppy = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLoadActionFloppy( ); -} -const ForwardRef = React.forwardRef(SvgLoadActionFloppy); +}; +const ForwardRef = forwardRef(SvgLoadActionFloppy); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Lock.tsx b/packages/iconoir-react-native/src/Lock.tsx index f19136c9..403bebbb 100644 --- a/packages/iconoir-react-native/src/Lock.tsx +++ b/packages/iconoir-react-native/src/Lock.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLock( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLock = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLock( ); -} -const ForwardRef = React.forwardRef(SvgLock); +}; +const ForwardRef = forwardRef(SvgLock); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LockKey.tsx b/packages/iconoir-react-native/src/LockKey.tsx index 56226601..3d504b4c 100644 --- a/packages/iconoir-react-native/src/LockKey.tsx +++ b/packages/iconoir-react-native/src/LockKey.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLockKey( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLockKey = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgLockKey( ); -} -const ForwardRef = React.forwardRef(SvgLockKey); +}; +const ForwardRef = forwardRef(SvgLockKey); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LockedBook.tsx b/packages/iconoir-react-native/src/LockedBook.tsx index 1bf18eef..6e80a5ad 100644 --- a/packages/iconoir-react-native/src/LockedBook.tsx +++ b/packages/iconoir-react-native/src/LockedBook.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLockedBook( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLockedBook = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,34 +12,34 @@ function SvgLockedBook( return ( - + ); -} -const ForwardRef = React.forwardRef(SvgLockedBook); +}; +const ForwardRef = forwardRef(SvgLockedBook); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LockedWindow.tsx b/packages/iconoir-react-native/src/LockedWindow.tsx index ec6d09d0..189d763a 100644 --- a/packages/iconoir-react-native/src/LockedWindow.tsx +++ b/packages/iconoir-react-native/src/LockedWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLockedWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLockedWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgLockedWindow( ); -} -const ForwardRef = React.forwardRef(SvgLockedWindow); +}; +const ForwardRef = forwardRef(SvgLockedWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Loft3D.tsx b/packages/iconoir-react-native/src/Loft3D.tsx index 160e60e9..b42b26a1 100644 --- a/packages/iconoir-react-native/src/Loft3D.tsx +++ b/packages/iconoir-react-native/src/Loft3D.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLoft3D( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLoft3D = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLoft3D( ); -} -const ForwardRef = React.forwardRef(SvgLoft3D); +}; +const ForwardRef = forwardRef(SvgLoft3D); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LogDenied.tsx b/packages/iconoir-react-native/src/LogDenied.tsx index f7558e42..1d0bc2c3 100644 --- a/packages/iconoir-react-native/src/LogDenied.tsx +++ b/packages/iconoir-react-native/src/LogDenied.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLogDenied( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLogDenied = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLogDenied( ); -} -const ForwardRef = React.forwardRef(SvgLogDenied); +}; +const ForwardRef = forwardRef(SvgLogDenied); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LogIn.tsx b/packages/iconoir-react-native/src/LogIn.tsx index 7ffa2b42..28f9570f 100644 --- a/packages/iconoir-react-native/src/LogIn.tsx +++ b/packages/iconoir-react-native/src/LogIn.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLogIn( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLogIn = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLogIn( ); -} -const ForwardRef = React.forwardRef(SvgLogIn); +}; +const ForwardRef = forwardRef(SvgLogIn); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LogOut.tsx b/packages/iconoir-react-native/src/LogOut.tsx index dafbba31..6c75830c 100644 --- a/packages/iconoir-react-native/src/LogOut.tsx +++ b/packages/iconoir-react-native/src/LogOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLogOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLogOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLogOut( ); -} -const ForwardRef = React.forwardRef(SvgLogOut); +}; +const ForwardRef = forwardRef(SvgLogOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LongArrowDownLeft.tsx b/packages/iconoir-react-native/src/LongArrowDownLeft.tsx index fce2c9df..ba1aeb83 100644 --- a/packages/iconoir-react-native/src/LongArrowDownLeft.tsx +++ b/packages/iconoir-react-native/src/LongArrowDownLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowDownLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLongArrowDownLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLongArrowDownLeft( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowDownLeft); +}; +const ForwardRef = forwardRef(SvgLongArrowDownLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LongArrowDownRight.tsx b/packages/iconoir-react-native/src/LongArrowDownRight.tsx index 05621fa6..b0e6102d 100644 --- a/packages/iconoir-react-native/src/LongArrowDownRight.tsx +++ b/packages/iconoir-react-native/src/LongArrowDownRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowDownRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLongArrowDownRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLongArrowDownRight( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowDownRight); +}; +const ForwardRef = forwardRef(SvgLongArrowDownRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LongArrowLeftDown.tsx b/packages/iconoir-react-native/src/LongArrowLeftDown.tsx index 9e308340..f78cee41 100644 --- a/packages/iconoir-react-native/src/LongArrowLeftDown.tsx +++ b/packages/iconoir-react-native/src/LongArrowLeftDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowLeftDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLongArrowLeftDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLongArrowLeftDown( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowLeftDown); +}; +const ForwardRef = forwardRef(SvgLongArrowLeftDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LongArrowLeftUp.tsx b/packages/iconoir-react-native/src/LongArrowLeftUp.tsx index bfbed413..12cc035d 100644 --- a/packages/iconoir-react-native/src/LongArrowLeftUp.tsx +++ b/packages/iconoir-react-native/src/LongArrowLeftUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowLeftUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLongArrowLeftUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLongArrowLeftUp( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowLeftUp); +}; +const ForwardRef = forwardRef(SvgLongArrowLeftUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LongArrowRightDown.tsx b/packages/iconoir-react-native/src/LongArrowRightDown.tsx index f5a58373..ba461346 100644 --- a/packages/iconoir-react-native/src/LongArrowRightDown.tsx +++ b/packages/iconoir-react-native/src/LongArrowRightDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowRightDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLongArrowRightDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLongArrowRightDown( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowRightDown); +}; +const ForwardRef = forwardRef(SvgLongArrowRightDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LongArrowRightUp.tsx b/packages/iconoir-react-native/src/LongArrowRightUp.tsx index 74a044f4..ed24d939 100644 --- a/packages/iconoir-react-native/src/LongArrowRightUp.tsx +++ b/packages/iconoir-react-native/src/LongArrowRightUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowRightUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLongArrowRightUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLongArrowRightUp( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowRightUp); +}; +const ForwardRef = forwardRef(SvgLongArrowRightUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LongArrowRightUp1.tsx b/packages/iconoir-react-native/src/LongArrowRightUp1.tsx index 0d2952f7..75079967 100644 --- a/packages/iconoir-react-native/src/LongArrowRightUp1.tsx +++ b/packages/iconoir-react-native/src/LongArrowRightUp1.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowRightUp1( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLongArrowRightUp1 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgLongArrowRightUp1( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowRightUp1); +}; +const ForwardRef = forwardRef(SvgLongArrowRightUp1); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LongArrowUpLeft.tsx b/packages/iconoir-react-native/src/LongArrowUpLeft.tsx index a4b43365..f87aeaa5 100644 --- a/packages/iconoir-react-native/src/LongArrowUpLeft.tsx +++ b/packages/iconoir-react-native/src/LongArrowUpLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowUpLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLongArrowUpLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLongArrowUpLeft( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowUpLeft); +}; +const ForwardRef = forwardRef(SvgLongArrowUpLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LongArrowUpRight.tsx b/packages/iconoir-react-native/src/LongArrowUpRight.tsx index d610f858..d024d699 100644 --- a/packages/iconoir-react-native/src/LongArrowUpRight.tsx +++ b/packages/iconoir-react-native/src/LongArrowUpRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowUpRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLongArrowUpRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLongArrowUpRight( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowUpRight); +}; +const ForwardRef = forwardRef(SvgLongArrowUpRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/LotOfCash.tsx b/packages/iconoir-react-native/src/LotOfCash.tsx index 4a9e664e..81cf5d65 100644 --- a/packages/iconoir-react-native/src/LotOfCash.tsx +++ b/packages/iconoir-react-native/src/LotOfCash.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLotOfCash( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLotOfCash = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgLotOfCash( ); -} -const ForwardRef = React.forwardRef(SvgLotOfCash); +}; +const ForwardRef = forwardRef(SvgLotOfCash); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Lullaby.tsx b/packages/iconoir-react-native/src/Lullaby.tsx index accb1baa..3d0acf58 100644 --- a/packages/iconoir-react-native/src/Lullaby.tsx +++ b/packages/iconoir-react-native/src/Lullaby.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLullaby( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgLullaby = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgLullaby( ); -} -const ForwardRef = React.forwardRef(SvgLullaby); +}; +const ForwardRef = forwardRef(SvgLullaby); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MacControlKey.tsx b/packages/iconoir-react-native/src/MacControlKey.tsx index 8e79be3c..2fd9fb22 100644 --- a/packages/iconoir-react-native/src/MacControlKey.tsx +++ b/packages/iconoir-react-native/src/MacControlKey.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMacControlKey( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMacControlKey = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgMacControlKey( ); -} -const ForwardRef = React.forwardRef(SvgMacControlKey); +}; +const ForwardRef = forwardRef(SvgMacControlKey); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MacDock.tsx b/packages/iconoir-react-native/src/MacDock.tsx index 5ee0ff77..c9cd0f83 100644 --- a/packages/iconoir-react-native/src/MacDock.tsx +++ b/packages/iconoir-react-native/src/MacDock.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMacDock( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMacDock = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgMacDock( ); -} -const ForwardRef = React.forwardRef(SvgMacDock); +}; +const ForwardRef = forwardRef(SvgMacDock); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MacOptionKey.tsx b/packages/iconoir-react-native/src/MacOptionKey.tsx index a62c8160..40857555 100644 --- a/packages/iconoir-react-native/src/MacOptionKey.tsx +++ b/packages/iconoir-react-native/src/MacOptionKey.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMacOptionKey( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMacOptionKey = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgMacOptionKey( ); -} -const ForwardRef = React.forwardRef(SvgMacOptionKey); +}; +const ForwardRef = forwardRef(SvgMacOptionKey); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MacOsWindow.tsx b/packages/iconoir-react-native/src/MacOsWindow.tsx index 3e67badd..ae8dd3d6 100644 --- a/packages/iconoir-react-native/src/MacOsWindow.tsx +++ b/packages/iconoir-react-native/src/MacOsWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMacOsWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMacOsWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgMacOsWindow( ); -} -const ForwardRef = React.forwardRef(SvgMacOsWindow); +}; +const ForwardRef = forwardRef(SvgMacOsWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MagicWand.tsx b/packages/iconoir-react-native/src/MagicWand.tsx index c1a8a461..689095e9 100644 --- a/packages/iconoir-react-native/src/MagicWand.tsx +++ b/packages/iconoir-react-native/src/MagicWand.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMagicWand( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMagicWand = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgMagicWand( ); -} -const ForwardRef = React.forwardRef(SvgMagicWand); +}; +const ForwardRef = forwardRef(SvgMagicWand); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Magnet.tsx b/packages/iconoir-react-native/src/Magnet.tsx index b1474fae..050b5850 100644 --- a/packages/iconoir-react-native/src/Magnet.tsx +++ b/packages/iconoir-react-native/src/Magnet.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMagnet( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMagnet = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgMagnet( return ( ); -} -const ForwardRef = React.forwardRef(SvgMagnet); +}; +const ForwardRef = forwardRef(SvgMagnet); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MagnetEnergy.tsx b/packages/iconoir-react-native/src/MagnetEnergy.tsx index ae182736..7eb72898 100644 --- a/packages/iconoir-react-native/src/MagnetEnergy.tsx +++ b/packages/iconoir-react-native/src/MagnetEnergy.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMagnetEnergy( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMagnetEnergy = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,39 +12,39 @@ function SvgMagnetEnergy( return ( + - ); -} -const ForwardRef = React.forwardRef(SvgMagnetEnergy); +}; +const ForwardRef = forwardRef(SvgMagnetEnergy); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Mail.tsx b/packages/iconoir-react-native/src/Mail.tsx index ba61244e..366590cd 100644 --- a/packages/iconoir-react-native/src/Mail.tsx +++ b/packages/iconoir-react-native/src/Mail.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMail( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMail = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgMail( ); -} -const ForwardRef = React.forwardRef(SvgMail); +}; +const ForwardRef = forwardRef(SvgMail); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MailIn.tsx b/packages/iconoir-react-native/src/MailIn.tsx index 0ddbddb9..81d6119c 100644 --- a/packages/iconoir-react-native/src/MailIn.tsx +++ b/packages/iconoir-react-native/src/MailIn.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMailIn( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMailIn = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgMailIn( ); -} -const ForwardRef = React.forwardRef(SvgMailIn); +}; +const ForwardRef = forwardRef(SvgMailIn); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MailOpened.tsx b/packages/iconoir-react-native/src/MailOpened.tsx index d73d2338..1c665afd 100644 --- a/packages/iconoir-react-native/src/MailOpened.tsx +++ b/packages/iconoir-react-native/src/MailOpened.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMailOpened( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMailOpened = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgMailOpened( ); -} -const ForwardRef = React.forwardRef(SvgMailOpened); +}; +const ForwardRef = forwardRef(SvgMailOpened); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MailOut.tsx b/packages/iconoir-react-native/src/MailOut.tsx index 4c1ada89..a9afea9a 100644 --- a/packages/iconoir-react-native/src/MailOut.tsx +++ b/packages/iconoir-react-native/src/MailOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMailOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMailOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgMailOut( ); -} -const ForwardRef = React.forwardRef(SvgMailOut); +}; +const ForwardRef = forwardRef(SvgMailOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Male.tsx b/packages/iconoir-react-native/src/Male.tsx index c9f81af3..ee01e0cc 100644 --- a/packages/iconoir-react-native/src/Male.tsx +++ b/packages/iconoir-react-native/src/Male.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMale( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMale = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMale( ); -} -const ForwardRef = React.forwardRef(SvgMale); +}; +const ForwardRef = forwardRef(SvgMale); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Map.tsx b/packages/iconoir-react-native/src/Map.tsx index 8c68e7d6..22b249b2 100644 --- a/packages/iconoir-react-native/src/Map.tsx +++ b/packages/iconoir-react-native/src/Map.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMap( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMap = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMap( ); -} -const ForwardRef = React.forwardRef(SvgMap); +}; +const ForwardRef = forwardRef(SvgMap); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MapIssue.tsx b/packages/iconoir-react-native/src/MapIssue.tsx index 419f8a8e..ec91d155 100644 --- a/packages/iconoir-react-native/src/MapIssue.tsx +++ b/packages/iconoir-react-native/src/MapIssue.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapIssue( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMapIssue = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMapIssue( ); -} -const ForwardRef = React.forwardRef(SvgMapIssue); +}; +const ForwardRef = forwardRef(SvgMapIssue); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MapsArrow.tsx b/packages/iconoir-react-native/src/MapsArrow.tsx index 5728db33..25efc94e 100644 --- a/packages/iconoir-react-native/src/MapsArrow.tsx +++ b/packages/iconoir-react-native/src/MapsArrow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsArrow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMapsArrow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMapsArrow( ); -} -const ForwardRef = React.forwardRef(SvgMapsArrow); +}; +const ForwardRef = forwardRef(SvgMapsArrow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MapsArrowDiagonal.tsx b/packages/iconoir-react-native/src/MapsArrowDiagonal.tsx index 1b74fb31..ada3db7b 100644 --- a/packages/iconoir-react-native/src/MapsArrowDiagonal.tsx +++ b/packages/iconoir-react-native/src/MapsArrowDiagonal.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsArrowDiagonal( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMapsArrowDiagonal = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMapsArrowDiagonal( ); -} -const ForwardRef = React.forwardRef(SvgMapsArrowDiagonal); +}; +const ForwardRef = forwardRef(SvgMapsArrowDiagonal); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MapsArrowIssue.tsx b/packages/iconoir-react-native/src/MapsArrowIssue.tsx index d5393a7f..b22f1c47 100644 --- a/packages/iconoir-react-native/src/MapsArrowIssue.tsx +++ b/packages/iconoir-react-native/src/MapsArrowIssue.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsArrowIssue( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMapsArrowIssue = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMapsArrowIssue( ); -} -const ForwardRef = React.forwardRef(SvgMapsArrowIssue); +}; +const ForwardRef = forwardRef(SvgMapsArrowIssue); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MapsGoStraight.tsx b/packages/iconoir-react-native/src/MapsGoStraight.tsx index c3763ffc..8cf813b3 100644 --- a/packages/iconoir-react-native/src/MapsGoStraight.tsx +++ b/packages/iconoir-react-native/src/MapsGoStraight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsGoStraight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMapsGoStraight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMapsGoStraight( ); -} -const ForwardRef = React.forwardRef(SvgMapsGoStraight); +}; +const ForwardRef = forwardRef(SvgMapsGoStraight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MapsTurnBack.tsx b/packages/iconoir-react-native/src/MapsTurnBack.tsx index c5626e5c..a6382bfa 100644 --- a/packages/iconoir-react-native/src/MapsTurnBack.tsx +++ b/packages/iconoir-react-native/src/MapsTurnBack.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsTurnBack( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMapsTurnBack = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMapsTurnBack( ); -} -const ForwardRef = React.forwardRef(SvgMapsTurnBack); +}; +const ForwardRef = forwardRef(SvgMapsTurnBack); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MapsTurnLeft.tsx b/packages/iconoir-react-native/src/MapsTurnLeft.tsx index 35d99fb3..30a094cc 100644 --- a/packages/iconoir-react-native/src/MapsTurnLeft.tsx +++ b/packages/iconoir-react-native/src/MapsTurnLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsTurnLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMapsTurnLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMapsTurnLeft( ); -} -const ForwardRef = React.forwardRef(SvgMapsTurnLeft); +}; +const ForwardRef = forwardRef(SvgMapsTurnLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MapsTurnRight.tsx b/packages/iconoir-react-native/src/MapsTurnRight.tsx index b151335e..106182e9 100644 --- a/packages/iconoir-react-native/src/MapsTurnRight.tsx +++ b/packages/iconoir-react-native/src/MapsTurnRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsTurnRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMapsTurnRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMapsTurnRight( ); -} -const ForwardRef = React.forwardRef(SvgMapsTurnRight); +}; +const ForwardRef = forwardRef(SvgMapsTurnRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MaskSquare.tsx b/packages/iconoir-react-native/src/MaskSquare.tsx index b919b2e2..8cc19f25 100644 --- a/packages/iconoir-react-native/src/MaskSquare.tsx +++ b/packages/iconoir-react-native/src/MaskSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMaskSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMaskSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMaskSquare( ); -} -const ForwardRef = React.forwardRef(SvgMaskSquare); +}; +const ForwardRef = forwardRef(SvgMaskSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MastercardCard.tsx b/packages/iconoir-react-native/src/MastercardCard.tsx index 885cb560..2145269e 100644 --- a/packages/iconoir-react-native/src/MastercardCard.tsx +++ b/packages/iconoir-react-native/src/MastercardCard.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMastercardCard( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMastercardCard = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgMastercardCard( + ); -} -const ForwardRef = React.forwardRef(SvgMastercardCard); +}; +const ForwardRef = forwardRef(SvgMastercardCard); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MathBook.tsx b/packages/iconoir-react-native/src/MathBook.tsx index df9a0dec..93be126a 100644 --- a/packages/iconoir-react-native/src/MathBook.tsx +++ b/packages/iconoir-react-native/src/MathBook.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMathBook( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMathBook = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,34 +12,34 @@ function SvgMathBook( return ( - + ); -} -const ForwardRef = React.forwardRef(SvgMathBook); +}; +const ForwardRef = forwardRef(SvgMathBook); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Maximize.tsx b/packages/iconoir-react-native/src/Maximize.tsx index 3946f7de..db6b12fe 100644 --- a/packages/iconoir-react-native/src/Maximize.tsx +++ b/packages/iconoir-react-native/src/Maximize.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMaximize( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMaximize = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMaximize( ); -} -const ForwardRef = React.forwardRef(SvgMaximize); +}; +const ForwardRef = forwardRef(SvgMaximize); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Medal.tsx b/packages/iconoir-react-native/src/Medal.tsx index d7961287..df01afce 100644 --- a/packages/iconoir-react-native/src/Medal.tsx +++ b/packages/iconoir-react-native/src/Medal.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMedal( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMedal = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMedal( ); -} -const ForwardRef = React.forwardRef(SvgMedal); +}; +const ForwardRef = forwardRef(SvgMedal); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Medal1St.tsx b/packages/iconoir-react-native/src/Medal1St.tsx index fe91245d..b1b7836c 100644 --- a/packages/iconoir-react-native/src/Medal1St.tsx +++ b/packages/iconoir-react-native/src/Medal1St.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMedal1St( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMedal1St = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMedal1St( ); -} -const ForwardRef = React.forwardRef(SvgMedal1St); +}; +const ForwardRef = forwardRef(SvgMedal1St); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MediaImage.tsx b/packages/iconoir-react-native/src/MediaImage.tsx index c68e85f5..d295542d 100644 --- a/packages/iconoir-react-native/src/MediaImage.tsx +++ b/packages/iconoir-react-native/src/MediaImage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaImage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMediaImage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMediaImage( ); -} -const ForwardRef = React.forwardRef(SvgMediaImage); +}; +const ForwardRef = forwardRef(SvgMediaImage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MediaImageFolder.tsx b/packages/iconoir-react-native/src/MediaImageFolder.tsx index a49e9c7a..7a8463a0 100644 --- a/packages/iconoir-react-native/src/MediaImageFolder.tsx +++ b/packages/iconoir-react-native/src/MediaImageFolder.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaImageFolder( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMediaImageFolder = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMediaImageFolder( ); -} -const ForwardRef = React.forwardRef(SvgMediaImageFolder); +}; +const ForwardRef = forwardRef(SvgMediaImageFolder); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MediaImageList.tsx b/packages/iconoir-react-native/src/MediaImageList.tsx index 3aa0afb9..19d26486 100644 --- a/packages/iconoir-react-native/src/MediaImageList.tsx +++ b/packages/iconoir-react-native/src/MediaImageList.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaImageList( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMediaImageList = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMediaImageList( ); -} -const ForwardRef = React.forwardRef(SvgMediaImageList); +}; +const ForwardRef = forwardRef(SvgMediaImageList); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MediaVideo.tsx b/packages/iconoir-react-native/src/MediaVideo.tsx index 2bc47b64..35624272 100644 --- a/packages/iconoir-react-native/src/MediaVideo.tsx +++ b/packages/iconoir-react-native/src/MediaVideo.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaVideo( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMediaVideo = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMediaVideo( ); -} -const ForwardRef = React.forwardRef(SvgMediaVideo); +}; +const ForwardRef = forwardRef(SvgMediaVideo); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MediaVideoFolder.tsx b/packages/iconoir-react-native/src/MediaVideoFolder.tsx index 47b506bb..8e93612a 100644 --- a/packages/iconoir-react-native/src/MediaVideoFolder.tsx +++ b/packages/iconoir-react-native/src/MediaVideoFolder.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaVideoFolder( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMediaVideoFolder = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMediaVideoFolder( ); -} -const ForwardRef = React.forwardRef(SvgMediaVideoFolder); +}; +const ForwardRef = forwardRef(SvgMediaVideoFolder); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MediaVideoList.tsx b/packages/iconoir-react-native/src/MediaVideoList.tsx index 27d96f07..17b94e9a 100644 --- a/packages/iconoir-react-native/src/MediaVideoList.tsx +++ b/packages/iconoir-react-native/src/MediaVideoList.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaVideoList( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMediaVideoList = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMediaVideoList( ); -} -const ForwardRef = React.forwardRef(SvgMediaVideoList); +}; +const ForwardRef = forwardRef(SvgMediaVideoList); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Medium.tsx b/packages/iconoir-react-native/src/Medium.tsx index 69d76ad1..5c37cfdb 100644 --- a/packages/iconoir-react-native/src/Medium.tsx +++ b/packages/iconoir-react-native/src/Medium.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMedium( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMedium = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMedium( ); -} -const ForwardRef = React.forwardRef(SvgMedium); +}; +const ForwardRef = forwardRef(SvgMedium); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MediumPriority.tsx b/packages/iconoir-react-native/src/MediumPriority.tsx index f2627ef7..7186ec19 100644 --- a/packages/iconoir-react-native/src/MediumPriority.tsx +++ b/packages/iconoir-react-native/src/MediumPriority.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediumPriority( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMediumPriority = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgMediumPriority( - + - + ); -} -const ForwardRef = React.forwardRef(SvgMediumPriority); +}; +const ForwardRef = forwardRef(SvgMediumPriority); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Megaphone.tsx b/packages/iconoir-react-native/src/Megaphone.tsx index e0f36ce6..98644ea2 100644 --- a/packages/iconoir-react-native/src/Megaphone.tsx +++ b/packages/iconoir-react-native/src/Megaphone.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMegaphone( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMegaphone = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgMegaphone( ); -} -const ForwardRef = React.forwardRef(SvgMegaphone); +}; +const ForwardRef = forwardRef(SvgMegaphone); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Menu.tsx b/packages/iconoir-react-native/src/Menu.tsx index 1235fcfa..b5128d08 100644 --- a/packages/iconoir-react-native/src/Menu.tsx +++ b/packages/iconoir-react-native/src/Menu.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMenu( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMenu = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMenu( ); -} -const ForwardRef = React.forwardRef(SvgMenu); +}; +const ForwardRef = forwardRef(SvgMenu); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MenuScale.tsx b/packages/iconoir-react-native/src/MenuScale.tsx index 8d3260e1..75d03342 100644 --- a/packages/iconoir-react-native/src/MenuScale.tsx +++ b/packages/iconoir-react-native/src/MenuScale.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMenuScale( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMenuScale = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMenuScale( ); -} -const ForwardRef = React.forwardRef(SvgMenuScale); +}; +const ForwardRef = forwardRef(SvgMenuScale); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Message.tsx b/packages/iconoir-react-native/src/Message.tsx index b71422ba..540eb416 100644 --- a/packages/iconoir-react-native/src/Message.tsx +++ b/packages/iconoir-react-native/src/Message.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMessage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMessage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgMessage( ); -} -const ForwardRef = React.forwardRef(SvgMessage); +}; +const ForwardRef = forwardRef(SvgMessage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MessageAlert.tsx b/packages/iconoir-react-native/src/MessageAlert.tsx index e613a14a..55b0e238 100644 --- a/packages/iconoir-react-native/src/MessageAlert.tsx +++ b/packages/iconoir-react-native/src/MessageAlert.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMessageAlert( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMessageAlert = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgMessageAlert( ); -} -const ForwardRef = React.forwardRef(SvgMessageAlert); +}; +const ForwardRef = forwardRef(SvgMessageAlert); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MessageText.tsx b/packages/iconoir-react-native/src/MessageText.tsx index 141bacc8..b82f5007 100644 --- a/packages/iconoir-react-native/src/MessageText.tsx +++ b/packages/iconoir-react-native/src/MessageText.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMessageText( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMessageText = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgMessageText( ); -} -const ForwardRef = React.forwardRef(SvgMessageText); +}; +const ForwardRef = forwardRef(SvgMessageText); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Metro.tsx b/packages/iconoir-react-native/src/Metro.tsx index 9f1e89fd..35707c46 100644 --- a/packages/iconoir-react-native/src/Metro.tsx +++ b/packages/iconoir-react-native/src/Metro.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMetro( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMetro = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,38 +13,38 @@ function SvgMetro( ); -} -const ForwardRef = React.forwardRef(SvgMetro); +}; +const ForwardRef = forwardRef(SvgMetro); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Mic.tsx b/packages/iconoir-react-native/src/Mic.tsx index 448b6efb..f2cc3a32 100644 --- a/packages/iconoir-react-native/src/Mic.tsx +++ b/packages/iconoir-react-native/src/Mic.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Rect, Path } from "react-native-svg"; +import Svg, { Rect, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMic( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMic = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgMic( - + ); -} -const ForwardRef = React.forwardRef(SvgMic); +}; +const ForwardRef = forwardRef(SvgMic); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MicAdd.tsx b/packages/iconoir-react-native/src/MicAdd.tsx index 79fc36ed..2a105691 100644 --- a/packages/iconoir-react-native/src/MicAdd.tsx +++ b/packages/iconoir-react-native/src/MicAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path, Rect } from "react-native-svg"; +import Svg, { Path, Rect } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMicAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgMicAdd( - + ); -} -const ForwardRef = React.forwardRef(SvgMicAdd); +}; +const ForwardRef = forwardRef(SvgMicAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MicCheck.tsx b/packages/iconoir-react-native/src/MicCheck.tsx index c67b75fa..6d2002cd 100644 --- a/packages/iconoir-react-native/src/MicCheck.tsx +++ b/packages/iconoir-react-native/src/MicCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path, Rect } from "react-native-svg"; +import Svg, { Path, Rect } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMicCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgMicCheck( - + ); -} -const ForwardRef = React.forwardRef(SvgMicCheck); +}; +const ForwardRef = forwardRef(SvgMicCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MicMute.tsx b/packages/iconoir-react-native/src/MicMute.tsx index 020a0c8b..35dd7aa9 100644 --- a/packages/iconoir-react-native/src/MicMute.tsx +++ b/packages/iconoir-react-native/src/MicMute.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicMute( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMicMute = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMicMute( ); -} -const ForwardRef = React.forwardRef(SvgMicMute); +}; +const ForwardRef = forwardRef(SvgMicMute); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MicRemove.tsx b/packages/iconoir-react-native/src/MicRemove.tsx index e345b401..1fbdff4e 100644 --- a/packages/iconoir-react-native/src/MicRemove.tsx +++ b/packages/iconoir-react-native/src/MicRemove.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path, Rect } from "react-native-svg"; +import Svg, { Path, Rect } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicRemove( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMicRemove = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgMicRemove( - + ); -} -const ForwardRef = React.forwardRef(SvgMicRemove); +}; +const ForwardRef = forwardRef(SvgMicRemove); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MicSpeaking.tsx b/packages/iconoir-react-native/src/MicSpeaking.tsx index ef033391..32c67599 100644 --- a/packages/iconoir-react-native/src/MicSpeaking.tsx +++ b/packages/iconoir-react-native/src/MicSpeaking.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Rect, Path } from "react-native-svg"; +import Svg, { Rect, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicSpeaking( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMicSpeaking = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgMicSpeaking( - + ); -} -const ForwardRef = React.forwardRef(SvgMicSpeaking); +}; +const ForwardRef = forwardRef(SvgMicSpeaking); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MicWarning.tsx b/packages/iconoir-react-native/src/MicWarning.tsx index 8c6a17b3..3482293c 100644 --- a/packages/iconoir-react-native/src/MicWarning.tsx +++ b/packages/iconoir-react-native/src/MicWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path, Rect } from "react-native-svg"; +import Svg, { Path, Rect } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMicWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgMicWarning( - + ); -} -const ForwardRef = React.forwardRef(SvgMicWarning); +}; +const ForwardRef = forwardRef(SvgMicWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Microscope.tsx b/packages/iconoir-react-native/src/Microscope.tsx index 541b79aa..766c536b 100644 --- a/packages/iconoir-react-native/src/Microscope.tsx +++ b/packages/iconoir-react-native/src/Microscope.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicroscope( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMicroscope = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMicroscope( ); -} -const ForwardRef = React.forwardRef(SvgMicroscope); +}; +const ForwardRef = forwardRef(SvgMicroscope); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Minus.tsx b/packages/iconoir-react-native/src/Minus.tsx index cdcc75c6..3f0fb66a 100644 --- a/packages/iconoir-react-native/src/Minus.tsx +++ b/packages/iconoir-react-native/src/Minus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMinus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMinus( ); -} -const ForwardRef = React.forwardRef(SvgMinus); +}; +const ForwardRef = forwardRef(SvgMinus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Minus1.tsx b/packages/iconoir-react-native/src/Minus1.tsx index 33b088d6..5056f938 100644 --- a/packages/iconoir-react-native/src/Minus1.tsx +++ b/packages/iconoir-react-native/src/Minus1.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinus1( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMinus1 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMinus1( ); -} -const ForwardRef = React.forwardRef(SvgMinus1); +}; +const ForwardRef = forwardRef(SvgMinus1); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MinusCircle.tsx b/packages/iconoir-react-native/src/MinusCircle.tsx index e03c415d..541a2ab7 100644 --- a/packages/iconoir-react-native/src/MinusCircle.tsx +++ b/packages/iconoir-react-native/src/MinusCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinusCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMinusCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMinusCircle( ); -} -const ForwardRef = React.forwardRef(SvgMinusCircle); +}; +const ForwardRef = forwardRef(SvgMinusCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MinusHexagon.tsx b/packages/iconoir-react-native/src/MinusHexagon.tsx index e5faba3a..84990707 100644 --- a/packages/iconoir-react-native/src/MinusHexagon.tsx +++ b/packages/iconoir-react-native/src/MinusHexagon.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinusHexagon( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMinusHexagon = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMinusHexagon( ); -} -const ForwardRef = React.forwardRef(SvgMinusHexagon); +}; +const ForwardRef = forwardRef(SvgMinusHexagon); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MinusPinAlt.tsx b/packages/iconoir-react-native/src/MinusPinAlt.tsx index 71db6b03..99c9e622 100644 --- a/packages/iconoir-react-native/src/MinusPinAlt.tsx +++ b/packages/iconoir-react-native/src/MinusPinAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinusPinAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMinusPinAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgMinusPinAlt( ); -} -const ForwardRef = React.forwardRef(SvgMinusPinAlt); +}; +const ForwardRef = forwardRef(SvgMinusPinAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MinusSquare.tsx b/packages/iconoir-react-native/src/MinusSquare.tsx index 2fa7e2b6..01e27115 100644 --- a/packages/iconoir-react-native/src/MinusSquare.tsx +++ b/packages/iconoir-react-native/src/MinusSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinusSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMinusSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMinusSquare( ); -} -const ForwardRef = React.forwardRef(SvgMinusSquare); +}; +const ForwardRef = forwardRef(SvgMinusSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Mirror.tsx b/packages/iconoir-react-native/src/Mirror.tsx index db60d971..87232285 100644 --- a/packages/iconoir-react-native/src/Mirror.tsx +++ b/packages/iconoir-react-native/src/Mirror.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMirror( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMirror = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMirror( ); -} -const ForwardRef = React.forwardRef(SvgMirror); +}; +const ForwardRef = forwardRef(SvgMirror); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MissingFont.tsx b/packages/iconoir-react-native/src/MissingFont.tsx index 6e9e002a..49be8420 100644 --- a/packages/iconoir-react-native/src/MissingFont.tsx +++ b/packages/iconoir-react-native/src/MissingFont.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMissingFont( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMissingFont = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMissingFont( ); -} -const ForwardRef = React.forwardRef(SvgMissingFont); +}; +const ForwardRef = forwardRef(SvgMissingFont); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ModernTv.tsx b/packages/iconoir-react-native/src/ModernTv.tsx index 1bf252a6..32ca8582 100644 --- a/packages/iconoir-react-native/src/ModernTv.tsx +++ b/packages/iconoir-react-native/src/ModernTv.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgModernTv( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgModernTv = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgModernTv( ); -} -const ForwardRef = React.forwardRef(SvgModernTv); +}; +const ForwardRef = forwardRef(SvgModernTv); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ModernTv4K.tsx b/packages/iconoir-react-native/src/ModernTv4K.tsx index 083a2d9f..168c5c96 100644 --- a/packages/iconoir-react-native/src/ModernTv4K.tsx +++ b/packages/iconoir-react-native/src/ModernTv4K.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgModernTv4K( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgModernTv4K = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgModernTv4K( ); -} -const ForwardRef = React.forwardRef(SvgModernTv4K); +}; +const ForwardRef = forwardRef(SvgModernTv4K); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoneySquare.tsx b/packages/iconoir-react-native/src/MoneySquare.tsx index d046c8c5..7cecaa85 100644 --- a/packages/iconoir-react-native/src/MoneySquare.tsx +++ b/packages/iconoir-react-native/src/MoneySquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoneySquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoneySquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgMoneySquare( ); -} -const ForwardRef = React.forwardRef(SvgMoneySquare); +}; +const ForwardRef = forwardRef(SvgMoneySquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoonSat.tsx b/packages/iconoir-react-native/src/MoonSat.tsx index 6ac8914f..1140e0de 100644 --- a/packages/iconoir-react-native/src/MoonSat.tsx +++ b/packages/iconoir-react-native/src/MoonSat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Circle, Path } from "react-native-svg"; +import Svg, { Circle, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoonSat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoonSat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgMoonSat( ); -} -const ForwardRef = React.forwardRef(SvgMoonSat); +}; +const ForwardRef = forwardRef(SvgMoonSat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoreHoriz.tsx b/packages/iconoir-react-native/src/MoreHoriz.tsx index 50898bcb..b354d247 100644 --- a/packages/iconoir-react-native/src/MoreHoriz.tsx +++ b/packages/iconoir-react-native/src/MoreHoriz.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoreHoriz( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoreHoriz = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgMoreHoriz( ); -} -const ForwardRef = React.forwardRef(SvgMoreHoriz); +}; +const ForwardRef = forwardRef(SvgMoreHoriz); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoreHorizCircle.tsx b/packages/iconoir-react-native/src/MoreHorizCircle.tsx index ad5c25a2..39ff252b 100644 --- a/packages/iconoir-react-native/src/MoreHorizCircle.tsx +++ b/packages/iconoir-react-native/src/MoreHorizCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoreHorizCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoreHorizCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgMoreHorizCircle( ); -} -const ForwardRef = React.forwardRef(SvgMoreHorizCircle); +}; +const ForwardRef = forwardRef(SvgMoreHorizCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoreVert.tsx b/packages/iconoir-react-native/src/MoreVert.tsx index 6bd4185f..a52cb1bd 100644 --- a/packages/iconoir-react-native/src/MoreVert.tsx +++ b/packages/iconoir-react-native/src/MoreVert.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoreVert( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoreVert = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgMoreVert( ); -} -const ForwardRef = React.forwardRef(SvgMoreVert); +}; +const ForwardRef = forwardRef(SvgMoreVert); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoreVertCircle.tsx b/packages/iconoir-react-native/src/MoreVertCircle.tsx index 174039e0..a76c291f 100644 --- a/packages/iconoir-react-native/src/MoreVertCircle.tsx +++ b/packages/iconoir-react-native/src/MoreVertCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoreVertCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoreVertCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgMoreVertCircle( ); -} -const ForwardRef = React.forwardRef(SvgMoreVertCircle); +}; +const ForwardRef = forwardRef(SvgMoreVertCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Motorcycle.tsx b/packages/iconoir-react-native/src/Motorcycle.tsx index 493ca2f0..d6c2d503 100644 --- a/packages/iconoir-react-native/src/Motorcycle.tsx +++ b/packages/iconoir-react-native/src/Motorcycle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMotorcycle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMotorcycle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMotorcycle( ); -} -const ForwardRef = React.forwardRef(SvgMotorcycle); +}; +const ForwardRef = forwardRef(SvgMotorcycle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MouseButtonLeft.tsx b/packages/iconoir-react-native/src/MouseButtonLeft.tsx index d9155ea8..176ad5cf 100644 --- a/packages/iconoir-react-native/src/MouseButtonLeft.tsx +++ b/packages/iconoir-react-native/src/MouseButtonLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMouseButtonLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMouseButtonLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgMouseButtonLeft( ); -} -const ForwardRef = React.forwardRef(SvgMouseButtonLeft); +}; +const ForwardRef = forwardRef(SvgMouseButtonLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MouseButtonRight.tsx b/packages/iconoir-react-native/src/MouseButtonRight.tsx index 5db0fe72..28be5e6a 100644 --- a/packages/iconoir-react-native/src/MouseButtonRight.tsx +++ b/packages/iconoir-react-native/src/MouseButtonRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMouseButtonRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMouseButtonRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgMouseButtonRight( ); -} -const ForwardRef = React.forwardRef(SvgMouseButtonRight); +}; +const ForwardRef = forwardRef(SvgMouseButtonRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MouseScrollWheel.tsx b/packages/iconoir-react-native/src/MouseScrollWheel.tsx index dd6de6a8..db305787 100644 --- a/packages/iconoir-react-native/src/MouseScrollWheel.tsx +++ b/packages/iconoir-react-native/src/MouseScrollWheel.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMouseScrollWheel( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMouseScrollWheel = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgMouseScrollWheel( ); -} -const ForwardRef = React.forwardRef(SvgMouseScrollWheel); +}; +const ForwardRef = forwardRef(SvgMouseScrollWheel); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoveDown.tsx b/packages/iconoir-react-native/src/MoveDown.tsx index 3585305e..5b0eac6a 100644 --- a/packages/iconoir-react-native/src/MoveDown.tsx +++ b/packages/iconoir-react-native/src/MoveDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoveDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoveDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMoveDown( ); -} -const ForwardRef = React.forwardRef(SvgMoveDown); +}; +const ForwardRef = forwardRef(SvgMoveDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoveLeft.tsx b/packages/iconoir-react-native/src/MoveLeft.tsx index d2af0676..0e6037b4 100644 --- a/packages/iconoir-react-native/src/MoveLeft.tsx +++ b/packages/iconoir-react-native/src/MoveLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoveLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoveLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMoveLeft( ); -} -const ForwardRef = React.forwardRef(SvgMoveLeft); +}; +const ForwardRef = forwardRef(SvgMoveLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoveRight.tsx b/packages/iconoir-react-native/src/MoveRight.tsx index ae6a9ce5..94080fe4 100644 --- a/packages/iconoir-react-native/src/MoveRight.tsx +++ b/packages/iconoir-react-native/src/MoveRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoveRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoveRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMoveRight( ); -} -const ForwardRef = React.forwardRef(SvgMoveRight); +}; +const ForwardRef = forwardRef(SvgMoveRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoveRuler.tsx b/packages/iconoir-react-native/src/MoveRuler.tsx index f0f76553..872f37b8 100644 --- a/packages/iconoir-react-native/src/MoveRuler.tsx +++ b/packages/iconoir-react-native/src/MoveRuler.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoveRuler( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoveRuler = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMoveRuler( ); -} -const ForwardRef = React.forwardRef(SvgMoveRuler); +}; +const ForwardRef = forwardRef(SvgMoveRuler); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MoveUp.tsx b/packages/iconoir-react-native/src/MoveUp.tsx index 77192948..03f7d138 100644 --- a/packages/iconoir-react-native/src/MoveUp.tsx +++ b/packages/iconoir-react-native/src/MoveUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoveUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMoveUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMoveUp( ); -} -const ForwardRef = React.forwardRef(SvgMoveUp); +}; +const ForwardRef = forwardRef(SvgMoveUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Movie.tsx b/packages/iconoir-react-native/src/Movie.tsx index 61994d97..f2c7d0c7 100644 --- a/packages/iconoir-react-native/src/Movie.tsx +++ b/packages/iconoir-react-native/src/Movie.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMovie( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMovie = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMovie( ); -} -const ForwardRef = React.forwardRef(SvgMovie); +}; +const ForwardRef = forwardRef(SvgMovie); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MpegFormat.tsx b/packages/iconoir-react-native/src/MpegFormat.tsx index c806fdd8..d3333d09 100644 --- a/packages/iconoir-react-native/src/MpegFormat.tsx +++ b/packages/iconoir-react-native/src/MpegFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMpegFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMpegFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgMpegFormat( ); -} -const ForwardRef = React.forwardRef(SvgMpegFormat); +}; +const ForwardRef = forwardRef(SvgMpegFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MultiBubble.tsx b/packages/iconoir-react-native/src/MultiBubble.tsx index 6a219bdd..cdf958f7 100644 --- a/packages/iconoir-react-native/src/MultiBubble.tsx +++ b/packages/iconoir-react-native/src/MultiBubble.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiBubble( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMultiBubble = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMultiBubble( ); -} -const ForwardRef = React.forwardRef(SvgMultiBubble); +}; +const ForwardRef = forwardRef(SvgMultiBubble); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MultiMacOsWindow.tsx b/packages/iconoir-react-native/src/MultiMacOsWindow.tsx index 99afd2d1..5cb34829 100644 --- a/packages/iconoir-react-native/src/MultiMacOsWindow.tsx +++ b/packages/iconoir-react-native/src/MultiMacOsWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiMacOsWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMultiMacOsWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,35 +13,35 @@ function SvgMultiMacOsWindow( ); -} -const ForwardRef = React.forwardRef(SvgMultiMacOsWindow); +}; +const ForwardRef = forwardRef(SvgMultiMacOsWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MultiWindow.tsx b/packages/iconoir-react-native/src/MultiWindow.tsx index f38c838d..ecc323cb 100644 --- a/packages/iconoir-react-native/src/MultiWindow.tsx +++ b/packages/iconoir-react-native/src/MultiWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMultiWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgMultiWindow( ); -} -const ForwardRef = React.forwardRef(SvgMultiWindow); +}; +const ForwardRef = forwardRef(SvgMultiWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MultiplePages.tsx b/packages/iconoir-react-native/src/MultiplePages.tsx index 0208eadc..a8ba041f 100644 --- a/packages/iconoir-react-native/src/MultiplePages.tsx +++ b/packages/iconoir-react-native/src/MultiplePages.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiplePages( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMultiplePages = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgMultiplePages( ); -} -const ForwardRef = React.forwardRef(SvgMultiplePages); +}; +const ForwardRef = forwardRef(SvgMultiplePages); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MultiplePagesAdd.tsx b/packages/iconoir-react-native/src/MultiplePagesAdd.tsx index f7330c10..9156ac5e 100644 --- a/packages/iconoir-react-native/src/MultiplePagesAdd.tsx +++ b/packages/iconoir-react-native/src/MultiplePagesAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiplePagesAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMultiplePagesAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgMultiplePagesAdd( ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesAdd); +}; +const ForwardRef = forwardRef(SvgMultiplePagesAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MultiplePagesDelete.tsx b/packages/iconoir-react-native/src/MultiplePagesDelete.tsx index 2ce26434..a28c637c 100644 --- a/packages/iconoir-react-native/src/MultiplePagesDelete.tsx +++ b/packages/iconoir-react-native/src/MultiplePagesDelete.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiplePagesDelete( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMultiplePagesDelete = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgMultiplePagesDelete( ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesDelete); +}; +const ForwardRef = forwardRef(SvgMultiplePagesDelete); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MultiplePagesEmpty.tsx b/packages/iconoir-react-native/src/MultiplePagesEmpty.tsx index dd68a7a2..f793609e 100644 --- a/packages/iconoir-react-native/src/MultiplePagesEmpty.tsx +++ b/packages/iconoir-react-native/src/MultiplePagesEmpty.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiplePagesEmpty( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMultiplePagesEmpty = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgMultiplePagesEmpty( ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesEmpty); +}; +const ForwardRef = forwardRef(SvgMultiplePagesEmpty); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MultiplePagesRemove.tsx b/packages/iconoir-react-native/src/MultiplePagesRemove.tsx index 79a814b0..dcf9b19f 100644 --- a/packages/iconoir-react-native/src/MultiplePagesRemove.tsx +++ b/packages/iconoir-react-native/src/MultiplePagesRemove.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiplePagesRemove( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMultiplePagesRemove = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgMultiplePagesRemove( ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesRemove); +}; +const ForwardRef = forwardRef(SvgMultiplePagesRemove); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MusicDoubleNote.tsx b/packages/iconoir-react-native/src/MusicDoubleNote.tsx index 46412620..80e9ae4a 100644 --- a/packages/iconoir-react-native/src/MusicDoubleNote.tsx +++ b/packages/iconoir-react-native/src/MusicDoubleNote.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMusicDoubleNote( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMusicDoubleNote = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgMusicDoubleNote( ); -} -const ForwardRef = React.forwardRef(SvgMusicDoubleNote); +}; +const ForwardRef = forwardRef(SvgMusicDoubleNote); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MusicDoubleNoteAdd.tsx b/packages/iconoir-react-native/src/MusicDoubleNoteAdd.tsx index 6a8748d8..eab9d2f2 100644 --- a/packages/iconoir-react-native/src/MusicDoubleNoteAdd.tsx +++ b/packages/iconoir-react-native/src/MusicDoubleNoteAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMusicDoubleNoteAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMusicDoubleNoteAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMusicDoubleNoteAdd( ); -} -const ForwardRef = React.forwardRef(SvgMusicDoubleNoteAdd); +}; +const ForwardRef = forwardRef(SvgMusicDoubleNoteAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MusicNote.tsx b/packages/iconoir-react-native/src/MusicNote.tsx index 37c03cf8..eed932be 100644 --- a/packages/iconoir-react-native/src/MusicNote.tsx +++ b/packages/iconoir-react-native/src/MusicNote.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMusicNote( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMusicNote = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMusicNote( ); -} -const ForwardRef = React.forwardRef(SvgMusicNote); +}; +const ForwardRef = forwardRef(SvgMusicNote); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/MusicNoteAdd.tsx b/packages/iconoir-react-native/src/MusicNoteAdd.tsx index f4d97c61..115076e9 100644 --- a/packages/iconoir-react-native/src/MusicNoteAdd.tsx +++ b/packages/iconoir-react-native/src/MusicNoteAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMusicNoteAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgMusicNoteAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgMusicNoteAdd( ); -} -const ForwardRef = React.forwardRef(SvgMusicNoteAdd); +}; +const ForwardRef = forwardRef(SvgMusicNoteAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NavArrowDown.tsx b/packages/iconoir-react-native/src/NavArrowDown.tsx index ee737447..30453eaa 100644 --- a/packages/iconoir-react-native/src/NavArrowDown.tsx +++ b/packages/iconoir-react-native/src/NavArrowDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavArrowDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNavArrowDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNavArrowDown( ); -} -const ForwardRef = React.forwardRef(SvgNavArrowDown); +}; +const ForwardRef = forwardRef(SvgNavArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NavArrowLeft.tsx b/packages/iconoir-react-native/src/NavArrowLeft.tsx index 102bfa74..1985323c 100644 --- a/packages/iconoir-react-native/src/NavArrowLeft.tsx +++ b/packages/iconoir-react-native/src/NavArrowLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavArrowLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNavArrowLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNavArrowLeft( ); -} -const ForwardRef = React.forwardRef(SvgNavArrowLeft); +}; +const ForwardRef = forwardRef(SvgNavArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NavArrowRight.tsx b/packages/iconoir-react-native/src/NavArrowRight.tsx index 5f971744..a72b2280 100644 --- a/packages/iconoir-react-native/src/NavArrowRight.tsx +++ b/packages/iconoir-react-native/src/NavArrowRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavArrowRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNavArrowRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNavArrowRight( ); -} -const ForwardRef = React.forwardRef(SvgNavArrowRight); +}; +const ForwardRef = forwardRef(SvgNavArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NavArrowUp.tsx b/packages/iconoir-react-native/src/NavArrowUp.tsx index c42d4726..7d0279fc 100644 --- a/packages/iconoir-react-native/src/NavArrowUp.tsx +++ b/packages/iconoir-react-native/src/NavArrowUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavArrowUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNavArrowUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNavArrowUp( ); -} -const ForwardRef = React.forwardRef(SvgNavArrowUp); +}; +const ForwardRef = forwardRef(SvgNavArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Navigator.tsx b/packages/iconoir-react-native/src/Navigator.tsx index 14d2e021..f106fa96 100644 --- a/packages/iconoir-react-native/src/Navigator.tsx +++ b/packages/iconoir-react-native/src/Navigator.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Circle, Path } from "react-native-svg"; +import Svg, { Circle, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavigator( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNavigator = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNavigator( ); -} -const ForwardRef = React.forwardRef(SvgNavigator); +}; +const ForwardRef = forwardRef(SvgNavigator); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NavigatorAlt.tsx b/packages/iconoir-react-native/src/NavigatorAlt.tsx index 97341917..14a49a5f 100644 --- a/packages/iconoir-react-native/src/NavigatorAlt.tsx +++ b/packages/iconoir-react-native/src/NavigatorAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Circle, Path } from "react-native-svg"; +import Svg, { Circle, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavigatorAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNavigatorAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNavigatorAlt( ); -} -const ForwardRef = React.forwardRef(SvgNavigatorAlt); +}; +const ForwardRef = forwardRef(SvgNavigatorAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Neighbourhood.tsx b/packages/iconoir-react-native/src/Neighbourhood.tsx index 82b1aae9..b0b4a4f8 100644 --- a/packages/iconoir-react-native/src/Neighbourhood.tsx +++ b/packages/iconoir-react-native/src/Neighbourhood.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNeighbourhood( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNeighbourhood = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgNeighbourhood( ); -} -const ForwardRef = React.forwardRef(SvgNeighbourhood); +}; +const ForwardRef = forwardRef(SvgNeighbourhood); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Network.tsx b/packages/iconoir-react-native/src/Network.tsx index 3fb6783b..9157bbd5 100644 --- a/packages/iconoir-react-native/src/Network.tsx +++ b/packages/iconoir-react-native/src/Network.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Rect, Path } from "react-native-svg"; +import Svg, { Rect, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNetwork( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNetwork = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgNetwork( - + - + ); -} -const ForwardRef = React.forwardRef(SvgNetwork); +}; +const ForwardRef = forwardRef(SvgNetwork); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NetworkAlt.tsx b/packages/iconoir-react-native/src/NetworkAlt.tsx index 1594978e..4b959e8d 100644 --- a/packages/iconoir-react-native/src/NetworkAlt.tsx +++ b/packages/iconoir-react-native/src/NetworkAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Rect, Path } from "react-native-svg"; +import Svg, { Rect, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNetworkAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNetworkAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,40 +13,40 @@ function SvgNetworkAlt( ); -} -const ForwardRef = React.forwardRef(SvgNetworkAlt); +}; +const ForwardRef = forwardRef(SvgNetworkAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NetworkLeft.tsx b/packages/iconoir-react-native/src/NetworkLeft.tsx index 98345a26..ed254edc 100644 --- a/packages/iconoir-react-native/src/NetworkLeft.tsx +++ b/packages/iconoir-react-native/src/NetworkLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Rect, Path } from "react-native-svg"; +import Svg, { Rect, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNetworkLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNetworkLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,46 +13,46 @@ function SvgNetworkLeft( ); -} -const ForwardRef = React.forwardRef(SvgNetworkLeft); +}; +const ForwardRef = forwardRef(SvgNetworkLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NetworkRight.tsx b/packages/iconoir-react-native/src/NetworkRight.tsx index 2e98cee4..a8821dc4 100644 --- a/packages/iconoir-react-native/src/NetworkRight.tsx +++ b/packages/iconoir-react-native/src/NetworkRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Rect, Path } from "react-native-svg"; +import Svg, { Rect, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNetworkRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNetworkRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,40 +13,40 @@ function SvgNetworkRight( ); -} -const ForwardRef = React.forwardRef(SvgNetworkRight); +}; +const ForwardRef = forwardRef(SvgNetworkRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NewTab.tsx b/packages/iconoir-react-native/src/NewTab.tsx index ed62b513..d339af82 100644 --- a/packages/iconoir-react-native/src/NewTab.tsx +++ b/packages/iconoir-react-native/src/NewTab.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNewTab( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNewTab = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgNewTab( ); -} -const ForwardRef = React.forwardRef(SvgNewTab); +}; +const ForwardRef = forwardRef(SvgNewTab); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NintendoSwitch.tsx b/packages/iconoir-react-native/src/NintendoSwitch.tsx index c9adb89b..396b858d 100644 --- a/packages/iconoir-react-native/src/NintendoSwitch.tsx +++ b/packages/iconoir-react-native/src/NintendoSwitch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNintendoSwitch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNintendoSwitch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,30 +13,30 @@ function SvgNintendoSwitch( ); -} -const ForwardRef = React.forwardRef(SvgNintendoSwitch); +}; +const ForwardRef = forwardRef(SvgNintendoSwitch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Nitrogen.tsx b/packages/iconoir-react-native/src/Nitrogen.tsx index 5368f803..21ac7266 100644 --- a/packages/iconoir-react-native/src/Nitrogen.tsx +++ b/packages/iconoir-react-native/src/Nitrogen.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNitrogen( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNitrogen = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgNitrogen( return ( ); -} -const ForwardRef = React.forwardRef(SvgNitrogen); +}; +const ForwardRef = forwardRef(SvgNitrogen); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NoAccessWindow.tsx b/packages/iconoir-react-native/src/NoAccessWindow.tsx index 64cb9309..7a49061b 100644 --- a/packages/iconoir-react-native/src/NoAccessWindow.tsx +++ b/packages/iconoir-react-native/src/NoAccessWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoAccessWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNoAccessWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgNoAccessWindow( ); -} -const ForwardRef = React.forwardRef(SvgNoAccessWindow); +}; +const ForwardRef = forwardRef(SvgNoAccessWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NoBattery.tsx b/packages/iconoir-react-native/src/NoBattery.tsx index 3e698db8..04a145b4 100644 --- a/packages/iconoir-react-native/src/NoBattery.tsx +++ b/packages/iconoir-react-native/src/NoBattery.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoBattery( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNoBattery = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNoBattery( ); -} -const ForwardRef = React.forwardRef(SvgNoBattery); +}; +const ForwardRef = forwardRef(SvgNoBattery); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NoCoin.tsx b/packages/iconoir-react-native/src/NoCoin.tsx index 8cbd8f33..45ae432e 100644 --- a/packages/iconoir-react-native/src/NoCoin.tsx +++ b/packages/iconoir-react-native/src/NoCoin.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoCoin( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNoCoin = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgNoCoin( ); -} -const ForwardRef = React.forwardRef(SvgNoCoin); +}; +const ForwardRef = forwardRef(SvgNoCoin); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NoCreditCard.tsx b/packages/iconoir-react-native/src/NoCreditCard.tsx index a9e69927..dfd7e5b7 100644 --- a/packages/iconoir-react-native/src/NoCreditCard.tsx +++ b/packages/iconoir-react-native/src/NoCreditCard.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoCreditCard( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNoCreditCard = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNoCreditCard( ); -} -const ForwardRef = React.forwardRef(SvgNoCreditCard); +}; +const ForwardRef = forwardRef(SvgNoCreditCard); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NoLink.tsx b/packages/iconoir-react-native/src/NoLink.tsx index 7fcda90e..814fd457 100644 --- a/packages/iconoir-react-native/src/NoLink.tsx +++ b/packages/iconoir-react-native/src/NoLink.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoLink( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNoLink = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgNoLink( + ); -} -const ForwardRef = React.forwardRef(SvgNoLink); +}; +const ForwardRef = forwardRef(SvgNoLink); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NoLock.tsx b/packages/iconoir-react-native/src/NoLock.tsx index 239e9725..5c34cc56 100644 --- a/packages/iconoir-react-native/src/NoLock.tsx +++ b/packages/iconoir-react-native/src/NoLock.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoLock( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNoLock = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNoLock( ); -} -const ForwardRef = React.forwardRef(SvgNoLock); +}; +const ForwardRef = forwardRef(SvgNoLock); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NoSmoking.tsx b/packages/iconoir-react-native/src/NoSmoking.tsx index b000e327..c58cecdc 100644 --- a/packages/iconoir-react-native/src/NoSmoking.tsx +++ b/packages/iconoir-react-native/src/NoSmoking.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoSmoking( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNoSmoking = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgNoSmoking( ); -} -const ForwardRef = React.forwardRef(SvgNoSmoking); +}; +const ForwardRef = forwardRef(SvgNoSmoking); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NoSmokingCircle.tsx b/packages/iconoir-react-native/src/NoSmokingCircle.tsx index 689e22ca..e69abbd4 100644 --- a/packages/iconoir-react-native/src/NoSmokingCircle.tsx +++ b/packages/iconoir-react-native/src/NoSmokingCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoSmokingCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNoSmokingCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,37 +13,37 @@ function SvgNoSmokingCircle( ); -} -const ForwardRef = React.forwardRef(SvgNoSmokingCircle); +}; +const ForwardRef = forwardRef(SvgNoSmokingCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NonBinary.tsx b/packages/iconoir-react-native/src/NonBinary.tsx index e574e81c..cfbf724b 100644 --- a/packages/iconoir-react-native/src/NonBinary.tsx +++ b/packages/iconoir-react-native/src/NonBinary.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNonBinary( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNonBinary = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNonBinary( ); -} -const ForwardRef = React.forwardRef(SvgNonBinary); +}; +const ForwardRef = forwardRef(SvgNonBinary); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Notes.tsx b/packages/iconoir-react-native/src/Notes.tsx index 25ffde70..8b3113bc 100644 --- a/packages/iconoir-react-native/src/Notes.tsx +++ b/packages/iconoir-react-native/src/Notes.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNotes( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNotes = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNotes( ); -} -const ForwardRef = React.forwardRef(SvgNotes); +}; +const ForwardRef = forwardRef(SvgNotes); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Npm.tsx b/packages/iconoir-react-native/src/Npm.tsx index 64ca9f31..3206e328 100644 --- a/packages/iconoir-react-native/src/Npm.tsx +++ b/packages/iconoir-react-native/src/Npm.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNpm( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNpm = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgNpm( ); -} -const ForwardRef = React.forwardRef(SvgNpm); +}; +const ForwardRef = forwardRef(SvgNpm); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NpmSquare.tsx b/packages/iconoir-react-native/src/NpmSquare.tsx index b62c824b..a8339a16 100644 --- a/packages/iconoir-react-native/src/NpmSquare.tsx +++ b/packages/iconoir-react-native/src/NpmSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNpmSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNpmSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgNpmSquare( - + ); -} -const ForwardRef = React.forwardRef(SvgNpmSquare); +}; +const ForwardRef = forwardRef(SvgNpmSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Number0Square.tsx b/packages/iconoir-react-native/src/Number0Square.tsx index 8436768f..e7ddd6b3 100644 --- a/packages/iconoir-react-native/src/Number0Square.tsx +++ b/packages/iconoir-react-native/src/Number0Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber0Square( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumber0Square = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,23 @@ function SvgNumber0Square( ); -} -const ForwardRef = React.forwardRef(SvgNumber0Square); +}; +const ForwardRef = forwardRef(SvgNumber0Square); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Number1Square.tsx b/packages/iconoir-react-native/src/Number1Square.tsx index b1e32202..ba4c06d7 100644 --- a/packages/iconoir-react-native/src/Number1Square.tsx +++ b/packages/iconoir-react-native/src/Number1Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber1Square( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumber1Square = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgNumber1Square( ); -} -const ForwardRef = React.forwardRef(SvgNumber1Square); +}; +const ForwardRef = forwardRef(SvgNumber1Square); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Number2Square.tsx b/packages/iconoir-react-native/src/Number2Square.tsx index d5424590..74f5e2b4 100644 --- a/packages/iconoir-react-native/src/Number2Square.tsx +++ b/packages/iconoir-react-native/src/Number2Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber2Square( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumber2Square = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgNumber2Square( ); -} -const ForwardRef = React.forwardRef(SvgNumber2Square); +}; +const ForwardRef = forwardRef(SvgNumber2Square); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Number3Square.tsx b/packages/iconoir-react-native/src/Number3Square.tsx index 153f694c..06c8395c 100644 --- a/packages/iconoir-react-native/src/Number3Square.tsx +++ b/packages/iconoir-react-native/src/Number3Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber3Square( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumber3Square = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgNumber3Square( ); -} -const ForwardRef = React.forwardRef(SvgNumber3Square); +}; +const ForwardRef = forwardRef(SvgNumber3Square); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Number4Square.tsx b/packages/iconoir-react-native/src/Number4Square.tsx index b221e3f6..93043075 100644 --- a/packages/iconoir-react-native/src/Number4Square.tsx +++ b/packages/iconoir-react-native/src/Number4Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber4Square( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumber4Square = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgNumber4Square( ); -} -const ForwardRef = React.forwardRef(SvgNumber4Square); +}; +const ForwardRef = forwardRef(SvgNumber4Square); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Number5Square.tsx b/packages/iconoir-react-native/src/Number5Square.tsx index c38ab1c4..14e598e4 100644 --- a/packages/iconoir-react-native/src/Number5Square.tsx +++ b/packages/iconoir-react-native/src/Number5Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber5Square( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumber5Square = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgNumber5Square( ); -} -const ForwardRef = React.forwardRef(SvgNumber5Square); +}; +const ForwardRef = forwardRef(SvgNumber5Square); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Number6Square.tsx b/packages/iconoir-react-native/src/Number6Square.tsx index d5e54600..200092b0 100644 --- a/packages/iconoir-react-native/src/Number6Square.tsx +++ b/packages/iconoir-react-native/src/Number6Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber6Square( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumber6Square = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,31 @@ function SvgNumber6Square( + ); -} -const ForwardRef = React.forwardRef(SvgNumber6Square); +}; +const ForwardRef = forwardRef(SvgNumber6Square); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Number7Square.tsx b/packages/iconoir-react-native/src/Number7Square.tsx index 642caab5..3848d728 100644 --- a/packages/iconoir-react-native/src/Number7Square.tsx +++ b/packages/iconoir-react-native/src/Number7Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber7Square( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumber7Square = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgNumber7Square( ); -} -const ForwardRef = React.forwardRef(SvgNumber7Square); +}; +const ForwardRef = forwardRef(SvgNumber7Square); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Number8Square.tsx b/packages/iconoir-react-native/src/Number8Square.tsx index 27895729..f516c92d 100644 --- a/packages/iconoir-react-native/src/Number8Square.tsx +++ b/packages/iconoir-react-native/src/Number8Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber8Square( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumber8Square = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgNumber8Square( ); -} -const ForwardRef = React.forwardRef(SvgNumber8Square); +}; +const ForwardRef = forwardRef(SvgNumber8Square); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Number9Square.tsx b/packages/iconoir-react-native/src/Number9Square.tsx index c3af8038..6927bcbc 100644 --- a/packages/iconoir-react-native/src/Number9Square.tsx +++ b/packages/iconoir-react-native/src/Number9Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber9Square( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumber9Square = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,31 @@ function SvgNumber9Square( + ); -} -const ForwardRef = React.forwardRef(SvgNumber9Square); +}; +const ForwardRef = forwardRef(SvgNumber9Square); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NumberedListLeft.tsx b/packages/iconoir-react-native/src/NumberedListLeft.tsx index 575e240d..9fee98df 100644 --- a/packages/iconoir-react-native/src/NumberedListLeft.tsx +++ b/packages/iconoir-react-native/src/NumberedListLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumberedListLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumberedListLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNumberedListLeft( ); -} -const ForwardRef = React.forwardRef(SvgNumberedListLeft); +}; +const ForwardRef = forwardRef(SvgNumberedListLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/NumberedListRight.tsx b/packages/iconoir-react-native/src/NumberedListRight.tsx index e56d5cfa..e3e18654 100644 --- a/packages/iconoir-react-native/src/NumberedListRight.tsx +++ b/packages/iconoir-react-native/src/NumberedListRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumberedListRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgNumberedListRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgNumberedListRight( ); -} -const ForwardRef = React.forwardRef(SvgNumberedListRight); +}; +const ForwardRef = forwardRef(SvgNumberedListRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Octagon.tsx b/packages/iconoir-react-native/src/Octagon.tsx index a00187af..015ebbb3 100644 --- a/packages/iconoir-react-native/src/Octagon.tsx +++ b/packages/iconoir-react-native/src/Octagon.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOctagon( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOctagon = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgOctagon( ); -} -const ForwardRef = React.forwardRef(SvgOctagon); +}; +const ForwardRef = forwardRef(SvgOctagon); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OffTag.tsx b/packages/iconoir-react-native/src/OffTag.tsx index 533c1525..872e8fce 100644 --- a/packages/iconoir-react-native/src/OffTag.tsx +++ b/packages/iconoir-react-native/src/OffTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOffTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOffTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgOffTag( - + ); -} -const ForwardRef = React.forwardRef(SvgOffTag); +}; +const ForwardRef = forwardRef(SvgOffTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OilIndustry.tsx b/packages/iconoir-react-native/src/OilIndustry.tsx index d7ee70ea..4f6092db 100644 --- a/packages/iconoir-react-native/src/OilIndustry.tsx +++ b/packages/iconoir-react-native/src/OilIndustry.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOilIndustry( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOilIndustry = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgOilIndustry( ); -} -const ForwardRef = React.forwardRef(SvgOilIndustry); +}; +const ForwardRef = forwardRef(SvgOilIndustry); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Okrs.tsx b/packages/iconoir-react-native/src/Okrs.tsx index 8fa16c92..efd9ac92 100644 --- a/packages/iconoir-react-native/src/Okrs.tsx +++ b/packages/iconoir-react-native/src/Okrs.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOkrs( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOkrs = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgOkrs( ); -} -const ForwardRef = React.forwardRef(SvgOkrs); +}; +const ForwardRef = forwardRef(SvgOkrs); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OnTag.tsx b/packages/iconoir-react-native/src/OnTag.tsx index 51338fc7..9da208fc 100644 --- a/packages/iconoir-react-native/src/OnTag.tsx +++ b/packages/iconoir-react-native/src/OnTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOnTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOnTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgOnTag( - + ); -} -const ForwardRef = React.forwardRef(SvgOnTag); +}; +const ForwardRef = forwardRef(SvgOnTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OneFingerSelectHandGesture.tsx b/packages/iconoir-react-native/src/OneFingerSelectHandGesture.tsx index ac8c9390..7bae5c9d 100644 --- a/packages/iconoir-react-native/src/OneFingerSelectHandGesture.tsx +++ b/packages/iconoir-react-native/src/OneFingerSelectHandGesture.tsx @@ -1,10 +1,12 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOneFingerSelectHandGesture( +const SvgOneFingerSelectHandGesture = ( passedProps: SvgProps, - svgRef?: React.Ref> -) { + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +16,27 @@ function SvgOneFingerSelectHandGesture( ); -} -const ForwardRef = React.forwardRef(SvgOneFingerSelectHandGesture); +}; +const ForwardRef = forwardRef(SvgOneFingerSelectHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OnePointCircle.tsx b/packages/iconoir-react-native/src/OnePointCircle.tsx index 8d40eaee..0f073383 100644 --- a/packages/iconoir-react-native/src/OnePointCircle.tsx +++ b/packages/iconoir-react-native/src/OnePointCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOnePointCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOnePointCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgOnePointCircle( ); -} -const ForwardRef = React.forwardRef(SvgOnePointCircle); +}; +const ForwardRef = forwardRef(SvgOnePointCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OpenBook.tsx b/packages/iconoir-react-native/src/OpenBook.tsx index aafc78fd..ccbbbadf 100644 --- a/packages/iconoir-react-native/src/OpenBook.tsx +++ b/packages/iconoir-react-native/src/OpenBook.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenBook( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOpenBook = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgOpenBook( ); -} -const ForwardRef = React.forwardRef(SvgOpenBook); +}; +const ForwardRef = forwardRef(SvgOpenBook); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OpenInBrowser.tsx b/packages/iconoir-react-native/src/OpenInBrowser.tsx index 0e41a988..d1a9c47d 100644 --- a/packages/iconoir-react-native/src/OpenInBrowser.tsx +++ b/packages/iconoir-react-native/src/OpenInBrowser.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenInBrowser( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOpenInBrowser = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgOpenInBrowser( ); -} -const ForwardRef = React.forwardRef(SvgOpenInBrowser); +}; +const ForwardRef = forwardRef(SvgOpenInBrowser); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OpenInWindow.tsx b/packages/iconoir-react-native/src/OpenInWindow.tsx index e9782eec..41b0bd13 100644 --- a/packages/iconoir-react-native/src/OpenInWindow.tsx +++ b/packages/iconoir-react-native/src/OpenInWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenInWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOpenInWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgOpenInWindow( ); -} -const ForwardRef = React.forwardRef(SvgOpenInWindow); +}; +const ForwardRef = forwardRef(SvgOpenInWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OpenNewWindow.tsx b/packages/iconoir-react-native/src/OpenNewWindow.tsx index aab18993..17013041 100644 --- a/packages/iconoir-react-native/src/OpenNewWindow.tsx +++ b/packages/iconoir-react-native/src/OpenNewWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenNewWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOpenNewWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgOpenNewWindow( ); -} -const ForwardRef = React.forwardRef(SvgOpenNewWindow); +}; +const ForwardRef = forwardRef(SvgOpenNewWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OpenSelectHandGesture.tsx b/packages/iconoir-react-native/src/OpenSelectHandGesture.tsx index 869dd008..a393b4ba 100644 --- a/packages/iconoir-react-native/src/OpenSelectHandGesture.tsx +++ b/packages/iconoir-react-native/src/OpenSelectHandGesture.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenSelectHandGesture( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOpenSelectHandGesture = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgOpenSelectHandGesture( ); -} -const ForwardRef = React.forwardRef(SvgOpenSelectHandGesture); +}; +const ForwardRef = forwardRef(SvgOpenSelectHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OpenVpn.tsx b/packages/iconoir-react-native/src/OpenVpn.tsx index 99d609b7..29f8542b 100644 --- a/packages/iconoir-react-native/src/OpenVpn.tsx +++ b/packages/iconoir-react-native/src/OpenVpn.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenVpn( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOpenVpn = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgOpenVpn( ); -} -const ForwardRef = React.forwardRef(SvgOpenVpn); +}; +const ForwardRef = forwardRef(SvgOpenVpn); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OrangeHalf.tsx b/packages/iconoir-react-native/src/OrangeHalf.tsx index 6ef0fbaf..1e489ed1 100644 --- a/packages/iconoir-react-native/src/OrangeHalf.tsx +++ b/packages/iconoir-react-native/src/OrangeHalf.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrangeHalf( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOrangeHalf = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgOrangeHalf( ); -} -const ForwardRef = React.forwardRef(SvgOrangeHalf); +}; +const ForwardRef = forwardRef(SvgOrangeHalf); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OrangeSlice.tsx b/packages/iconoir-react-native/src/OrangeSlice.tsx index be5cce22..a58a8106 100644 --- a/packages/iconoir-react-native/src/OrangeSlice.tsx +++ b/packages/iconoir-react-native/src/OrangeSlice.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrangeSlice( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOrangeSlice = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgOrangeSlice( ); -} -const ForwardRef = React.forwardRef(SvgOrangeSlice); +}; +const ForwardRef = forwardRef(SvgOrangeSlice); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OrangeSliceAlt.tsx b/packages/iconoir-react-native/src/OrangeSliceAlt.tsx index 318d55e4..3e7d0063 100644 --- a/packages/iconoir-react-native/src/OrangeSliceAlt.tsx +++ b/packages/iconoir-react-native/src/OrangeSliceAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrangeSliceAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOrangeSliceAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgOrangeSliceAlt( ); -} -const ForwardRef = React.forwardRef(SvgOrangeSliceAlt); +}; +const ForwardRef = forwardRef(SvgOrangeSliceAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OrganicFood.tsx b/packages/iconoir-react-native/src/OrganicFood.tsx index 1bbaa271..9b624fa9 100644 --- a/packages/iconoir-react-native/src/OrganicFood.tsx +++ b/packages/iconoir-react-native/src/OrganicFood.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrganicFood( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOrganicFood = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,33 @@ function SvgOrganicFood( + ); -} -const ForwardRef = React.forwardRef(SvgOrganicFood); +}; +const ForwardRef = forwardRef(SvgOrganicFood); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OrganicFoodSquare.tsx b/packages/iconoir-react-native/src/OrganicFoodSquare.tsx index 014033f7..fd606ec9 100644 --- a/packages/iconoir-react-native/src/OrganicFoodSquare.tsx +++ b/packages/iconoir-react-native/src/OrganicFoodSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrganicFoodSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOrganicFoodSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,33 @@ function SvgOrganicFoodSquare( + ); -} -const ForwardRef = React.forwardRef(SvgOrganicFoodSquare); +}; +const ForwardRef = forwardRef(SvgOrganicFoodSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/OrthogonalView.tsx b/packages/iconoir-react-native/src/OrthogonalView.tsx index 07dd5690..f31b91d6 100644 --- a/packages/iconoir-react-native/src/OrthogonalView.tsx +++ b/packages/iconoir-react-native/src/OrthogonalView.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrthogonalView( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOrthogonalView = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgOrthogonalView( ); -} -const ForwardRef = React.forwardRef(SvgOrthogonalView); +}; +const ForwardRef = forwardRef(SvgOrthogonalView); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Oxygen.tsx b/packages/iconoir-react-native/src/Oxygen.tsx index 632c8b31..3804a417 100644 --- a/packages/iconoir-react-native/src/Oxygen.tsx +++ b/packages/iconoir-react-native/src/Oxygen.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOxygen( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgOxygen = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgOxygen( return ( ); -} -const ForwardRef = React.forwardRef(SvgOxygen); +}; +const ForwardRef = forwardRef(SvgOxygen); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Package.tsx b/packages/iconoir-react-native/src/Package.tsx index 2dae805d..12ba6a15 100644 --- a/packages/iconoir-react-native/src/Package.tsx +++ b/packages/iconoir-react-native/src/Package.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPackage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPackage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPackage( ); -} -const ForwardRef = React.forwardRef(SvgPackage); +}; +const ForwardRef = forwardRef(SvgPackage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PackageLock.tsx b/packages/iconoir-react-native/src/PackageLock.tsx index 9c4d0789..7f524395 100644 --- a/packages/iconoir-react-native/src/PackageLock.tsx +++ b/packages/iconoir-react-native/src/PackageLock.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPackageLock( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPackageLock = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPackageLock( ); -} -const ForwardRef = React.forwardRef(SvgPackageLock); +}; +const ForwardRef = forwardRef(SvgPackageLock); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Packages.tsx b/packages/iconoir-react-native/src/Packages.tsx index 6caec89c..eba9975c 100644 --- a/packages/iconoir-react-native/src/Packages.tsx +++ b/packages/iconoir-react-native/src/Packages.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPackages( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPackages = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPackages( ); -} -const ForwardRef = React.forwardRef(SvgPackages); +}; +const ForwardRef = forwardRef(SvgPackages); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pacman.tsx b/packages/iconoir-react-native/src/Pacman.tsx index 39785e0b..3557cf33 100644 --- a/packages/iconoir-react-native/src/Pacman.tsx +++ b/packages/iconoir-react-native/src/Pacman.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPacman( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPacman = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPacman( ); -} -const ForwardRef = React.forwardRef(SvgPacman); +}; +const ForwardRef = forwardRef(SvgPacman); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Page.tsx b/packages/iconoir-react-native/src/Page.tsx index 0271f249..91c37342 100644 --- a/packages/iconoir-react-native/src/Page.tsx +++ b/packages/iconoir-react-native/src/Page.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPage( ); -} -const ForwardRef = React.forwardRef(SvgPage); +}; +const ForwardRef = forwardRef(SvgPage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PageDown.tsx b/packages/iconoir-react-native/src/PageDown.tsx index 6f91aa5f..94396acd 100644 --- a/packages/iconoir-react-native/src/PageDown.tsx +++ b/packages/iconoir-react-native/src/PageDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPageDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPageDown( ); -} -const ForwardRef = React.forwardRef(SvgPageDown); +}; +const ForwardRef = forwardRef(SvgPageDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PageEdit.tsx b/packages/iconoir-react-native/src/PageEdit.tsx index f904a1d2..ec1daad2 100644 --- a/packages/iconoir-react-native/src/PageEdit.tsx +++ b/packages/iconoir-react-native/src/PageEdit.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageEdit( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPageEdit = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPageEdit( ); -} -const ForwardRef = React.forwardRef(SvgPageEdit); +}; +const ForwardRef = forwardRef(SvgPageEdit); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PageFlip.tsx b/packages/iconoir-react-native/src/PageFlip.tsx index 74d3ef9c..f687567d 100644 --- a/packages/iconoir-react-native/src/PageFlip.tsx +++ b/packages/iconoir-react-native/src/PageFlip.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageFlip( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPageFlip = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPageFlip( ); -} -const ForwardRef = React.forwardRef(SvgPageFlip); +}; +const ForwardRef = forwardRef(SvgPageFlip); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PageLeft.tsx b/packages/iconoir-react-native/src/PageLeft.tsx index 0e45c442..cb4af791 100644 --- a/packages/iconoir-react-native/src/PageLeft.tsx +++ b/packages/iconoir-react-native/src/PageLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPageLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPageLeft( ); -} -const ForwardRef = React.forwardRef(SvgPageLeft); +}; +const ForwardRef = forwardRef(SvgPageLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PageRight.tsx b/packages/iconoir-react-native/src/PageRight.tsx index 40842df8..7bb9ff26 100644 --- a/packages/iconoir-react-native/src/PageRight.tsx +++ b/packages/iconoir-react-native/src/PageRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPageRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPageRight( ); -} -const ForwardRef = React.forwardRef(SvgPageRight); +}; +const ForwardRef = forwardRef(SvgPageRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PageSearch.tsx b/packages/iconoir-react-native/src/PageSearch.tsx index 2c5fb645..3d9e1039 100644 --- a/packages/iconoir-react-native/src/PageSearch.tsx +++ b/packages/iconoir-react-native/src/PageSearch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageSearch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPageSearch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPageSearch( ); -} -const ForwardRef = React.forwardRef(SvgPageSearch); +}; +const ForwardRef = forwardRef(SvgPageSearch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PageStar.tsx b/packages/iconoir-react-native/src/PageStar.tsx index 8bb8024e..aea03f71 100644 --- a/packages/iconoir-react-native/src/PageStar.tsx +++ b/packages/iconoir-react-native/src/PageStar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageStar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPageStar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPageStar( ); -} -const ForwardRef = React.forwardRef(SvgPageStar); +}; +const ForwardRef = forwardRef(SvgPageStar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PageUp.tsx b/packages/iconoir-react-native/src/PageUp.tsx index 7fe2fdcc..ad29905e 100644 --- a/packages/iconoir-react-native/src/PageUp.tsx +++ b/packages/iconoir-react-native/src/PageUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPageUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPageUp( ); -} -const ForwardRef = React.forwardRef(SvgPageUp); +}; +const ForwardRef = forwardRef(SvgPageUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Palette.tsx b/packages/iconoir-react-native/src/Palette.tsx index fd05287c..c36ed62c 100644 --- a/packages/iconoir-react-native/src/Palette.tsx +++ b/packages/iconoir-react-native/src/Palette.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPalette( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPalette = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgPalette( ); -} -const ForwardRef = React.forwardRef(SvgPalette); +}; +const ForwardRef = forwardRef(SvgPalette); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PanoramaEnlarge.tsx b/packages/iconoir-react-native/src/PanoramaEnlarge.tsx index 74106c7f..e7249edb 100644 --- a/packages/iconoir-react-native/src/PanoramaEnlarge.tsx +++ b/packages/iconoir-react-native/src/PanoramaEnlarge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPanoramaEnlarge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPanoramaEnlarge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPanoramaEnlarge( ); -} -const ForwardRef = React.forwardRef(SvgPanoramaEnlarge); +}; +const ForwardRef = forwardRef(SvgPanoramaEnlarge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PanoramaReduce.tsx b/packages/iconoir-react-native/src/PanoramaReduce.tsx index e1b37f46..ffd7813a 100644 --- a/packages/iconoir-react-native/src/PanoramaReduce.tsx +++ b/packages/iconoir-react-native/src/PanoramaReduce.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPanoramaReduce( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPanoramaReduce = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPanoramaReduce( ); -} -const ForwardRef = React.forwardRef(SvgPanoramaReduce); +}; +const ForwardRef = forwardRef(SvgPanoramaReduce); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pants.tsx b/packages/iconoir-react-native/src/Pants.tsx index 854ce975..65743dbe 100644 --- a/packages/iconoir-react-native/src/Pants.tsx +++ b/packages/iconoir-react-native/src/Pants.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPants( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPants = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,23 @@ function SvgPants( ); -} -const ForwardRef = React.forwardRef(SvgPants); +}; +const ForwardRef = forwardRef(SvgPants); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PantsAlt.tsx b/packages/iconoir-react-native/src/PantsAlt.tsx index d456239a..7e2a24b5 100644 --- a/packages/iconoir-react-native/src/PantsAlt.tsx +++ b/packages/iconoir-react-native/src/PantsAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPantsAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPantsAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPantsAlt( ); -} -const ForwardRef = React.forwardRef(SvgPantsAlt); +}; +const ForwardRef = forwardRef(SvgPantsAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Parking.tsx b/packages/iconoir-react-native/src/Parking.tsx index 3fa6e74b..bbabb664 100644 --- a/packages/iconoir-react-native/src/Parking.tsx +++ b/packages/iconoir-react-native/src/Parking.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path, Circle } from "react-native-svg"; +import Svg, { Path, Circle } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgParking( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgParking = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgParking( ); -} -const ForwardRef = React.forwardRef(SvgParking); +}; +const ForwardRef = forwardRef(SvgParking); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PasswordCursor.tsx b/packages/iconoir-react-native/src/PasswordCursor.tsx index 09070bb5..cf7838d2 100644 --- a/packages/iconoir-react-native/src/PasswordCursor.tsx +++ b/packages/iconoir-react-native/src/PasswordCursor.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPasswordCursor( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPasswordCursor = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgPasswordCursor( ); -} -const ForwardRef = React.forwardRef(SvgPasswordCursor); +}; +const ForwardRef = forwardRef(SvgPasswordCursor); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PasswordError.tsx b/packages/iconoir-react-native/src/PasswordError.tsx index 57efd9de..e70e95cd 100644 --- a/packages/iconoir-react-native/src/PasswordError.tsx +++ b/packages/iconoir-react-native/src/PasswordError.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPasswordError( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPasswordError = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPasswordError( ); -} -const ForwardRef = React.forwardRef(SvgPasswordError); +}; +const ForwardRef = forwardRef(SvgPasswordError); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PasswordPass.tsx b/packages/iconoir-react-native/src/PasswordPass.tsx index b0f65caa..d22f1025 100644 --- a/packages/iconoir-react-native/src/PasswordPass.tsx +++ b/packages/iconoir-react-native/src/PasswordPass.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPasswordPass( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPasswordPass = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPasswordPass( ); -} -const ForwardRef = React.forwardRef(SvgPasswordPass); +}; +const ForwardRef = forwardRef(SvgPasswordPass); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PasteClipboard.tsx b/packages/iconoir-react-native/src/PasteClipboard.tsx index 6933a062..83455f9b 100644 --- a/packages/iconoir-react-native/src/PasteClipboard.tsx +++ b/packages/iconoir-react-native/src/PasteClipboard.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPasteClipboard( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPasteClipboard = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgPasteClipboard( ); -} -const ForwardRef = React.forwardRef(SvgPasteClipboard); +}; +const ForwardRef = forwardRef(SvgPasteClipboard); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PatchHoles3D.tsx b/packages/iconoir-react-native/src/PatchHoles3D.tsx index 7447ad23..cc7913c8 100644 --- a/packages/iconoir-react-native/src/PatchHoles3D.tsx +++ b/packages/iconoir-react-native/src/PatchHoles3D.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPatchHoles3D( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPatchHoles3D = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPatchHoles3D( ); -} -const ForwardRef = React.forwardRef(SvgPatchHoles3D); +}; +const ForwardRef = forwardRef(SvgPatchHoles3D); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PathArrow.tsx b/packages/iconoir-react-native/src/PathArrow.tsx index 7a19443b..64bd03db 100644 --- a/packages/iconoir-react-native/src/PathArrow.tsx +++ b/packages/iconoir-react-native/src/PathArrow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPathArrow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPathArrow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPathArrow( ); -} -const ForwardRef = React.forwardRef(SvgPathArrow); +}; +const ForwardRef = forwardRef(SvgPathArrow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pause.tsx b/packages/iconoir-react-native/src/Pause.tsx index 0b70e90a..0561ea49 100644 --- a/packages/iconoir-react-native/src/Pause.tsx +++ b/packages/iconoir-react-native/src/Pause.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPause( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPause = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgPause( ); -} -const ForwardRef = React.forwardRef(SvgPause); +}; +const ForwardRef = forwardRef(SvgPause); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PauseWindow.tsx b/packages/iconoir-react-native/src/PauseWindow.tsx index 30bd4eab..9d010dcc 100644 --- a/packages/iconoir-react-native/src/PauseWindow.tsx +++ b/packages/iconoir-react-native/src/PauseWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPauseWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPauseWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgPauseWindow( ); -} -const ForwardRef = React.forwardRef(SvgPauseWindow); +}; +const ForwardRef = forwardRef(SvgPauseWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Paypal.tsx b/packages/iconoir-react-native/src/Paypal.tsx index 31b761f4..4c3ce532 100644 --- a/packages/iconoir-react-native/src/Paypal.tsx +++ b/packages/iconoir-react-native/src/Paypal.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPaypal( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPaypal = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPaypal( ); -} -const ForwardRef = React.forwardRef(SvgPaypal); +}; +const ForwardRef = forwardRef(SvgPaypal); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PcCheck.tsx b/packages/iconoir-react-native/src/PcCheck.tsx index 1f3f146e..76807887 100644 --- a/packages/iconoir-react-native/src/PcCheck.tsx +++ b/packages/iconoir-react-native/src/PcCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPcCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPcCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgPcCheck( + + - - ); -} -const ForwardRef = React.forwardRef(SvgPcCheck); +}; +const ForwardRef = forwardRef(SvgPcCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PcFirewall.tsx b/packages/iconoir-react-native/src/PcFirewall.tsx index 81365b1a..b90843d3 100644 --- a/packages/iconoir-react-native/src/PcFirewall.tsx +++ b/packages/iconoir-react-native/src/PcFirewall.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPcFirewall( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPcFirewall = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgPcFirewall( + + - - ); -} -const ForwardRef = React.forwardRef(SvgPcFirewall); +}; +const ForwardRef = forwardRef(SvgPcFirewall); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PcMouse.tsx b/packages/iconoir-react-native/src/PcMouse.tsx index d21f2b41..32a2f7b6 100644 --- a/packages/iconoir-react-native/src/PcMouse.tsx +++ b/packages/iconoir-react-native/src/PcMouse.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPcMouse( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPcMouse = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgPcMouse( ); -} -const ForwardRef = React.forwardRef(SvgPcMouse); +}; +const ForwardRef = forwardRef(SvgPcMouse); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PcNoEntry.tsx b/packages/iconoir-react-native/src/PcNoEntry.tsx index dec4197c..f1ae354e 100644 --- a/packages/iconoir-react-native/src/PcNoEntry.tsx +++ b/packages/iconoir-react-native/src/PcNoEntry.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPcNoEntry( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPcNoEntry = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgPcNoEntry( + + - - ); -} -const ForwardRef = React.forwardRef(SvgPcNoEntry); +}; +const ForwardRef = forwardRef(SvgPcNoEntry); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PcWarning.tsx b/packages/iconoir-react-native/src/PcWarning.tsx index 71ce0c86..d19ffa2e 100644 --- a/packages/iconoir-react-native/src/PcWarning.tsx +++ b/packages/iconoir-react-native/src/PcWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPcWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPcWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgPcWarning( + + - - ); -} -const ForwardRef = React.forwardRef(SvgPcWarning); +}; +const ForwardRef = forwardRef(SvgPcWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PeaceHand.tsx b/packages/iconoir-react-native/src/PeaceHand.tsx index 5eaf2655..cca32a67 100644 --- a/packages/iconoir-react-native/src/PeaceHand.tsx +++ b/packages/iconoir-react-native/src/PeaceHand.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPeaceHand( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPeaceHand = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,35 +13,35 @@ function SvgPeaceHand( ); -} -const ForwardRef = React.forwardRef(SvgPeaceHand); +}; +const ForwardRef = forwardRef(SvgPeaceHand); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PenConnectBluetooth.tsx b/packages/iconoir-react-native/src/PenConnectBluetooth.tsx index b3ac6b9c..7dae15d5 100644 --- a/packages/iconoir-react-native/src/PenConnectBluetooth.tsx +++ b/packages/iconoir-react-native/src/PenConnectBluetooth.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPenConnectBluetooth( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPenConnectBluetooth = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgPenConnectBluetooth( - + - + ); -} -const ForwardRef = React.forwardRef(SvgPenConnectBluetooth); +}; +const ForwardRef = forwardRef(SvgPenConnectBluetooth); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PenConnectWifi.tsx b/packages/iconoir-react-native/src/PenConnectWifi.tsx index 2ac9c61c..dbbcc470 100644 --- a/packages/iconoir-react-native/src/PenConnectWifi.tsx +++ b/packages/iconoir-react-native/src/PenConnectWifi.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPenConnectWifi( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPenConnectWifi = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPenConnectWifi( ); -} -const ForwardRef = React.forwardRef(SvgPenConnectWifi); +}; +const ForwardRef = forwardRef(SvgPenConnectWifi); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PenTablet.tsx b/packages/iconoir-react-native/src/PenTablet.tsx index c6c0049c..99b14a23 100644 --- a/packages/iconoir-react-native/src/PenTablet.tsx +++ b/packages/iconoir-react-native/src/PenTablet.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPenTablet( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPenTablet = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgPenTablet( ); -} -const ForwardRef = React.forwardRef(SvgPenTablet); +}; +const ForwardRef = forwardRef(SvgPenTablet); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PenTabletConnectUsb.tsx b/packages/iconoir-react-native/src/PenTabletConnectUsb.tsx index 954d52ed..4e372de8 100644 --- a/packages/iconoir-react-native/src/PenTabletConnectUsb.tsx +++ b/packages/iconoir-react-native/src/PenTabletConnectUsb.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPenTabletConnectUsb( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPenTabletConnectUsb = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgPenTabletConnectUsb( - + ); -} -const ForwardRef = React.forwardRef(SvgPenTabletConnectUsb); +}; +const ForwardRef = forwardRef(SvgPenTabletConnectUsb); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PenTabletConnectWifi.tsx b/packages/iconoir-react-native/src/PenTabletConnectWifi.tsx index f564256b..7d1d5c15 100644 --- a/packages/iconoir-react-native/src/PenTabletConnectWifi.tsx +++ b/packages/iconoir-react-native/src/PenTabletConnectWifi.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPenTabletConnectWifi( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPenTabletConnectWifi = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgPenTabletConnectWifi( - + ); -} -const ForwardRef = React.forwardRef(SvgPenTabletConnectWifi); +}; +const ForwardRef = forwardRef(SvgPenTabletConnectWifi); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pentagon.tsx b/packages/iconoir-react-native/src/Pentagon.tsx index cc2e216b..32ee9793 100644 --- a/packages/iconoir-react-native/src/Pentagon.tsx +++ b/packages/iconoir-react-native/src/Pentagon.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPentagon( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPentagon = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPentagon( ); -} -const ForwardRef = React.forwardRef(SvgPentagon); +}; +const ForwardRef = forwardRef(SvgPentagon); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PeopleTag.tsx b/packages/iconoir-react-native/src/PeopleTag.tsx index 637f5643..91aedb97 100644 --- a/packages/iconoir-react-native/src/PeopleTag.tsx +++ b/packages/iconoir-react-native/src/PeopleTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPeopleTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPeopleTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgPeopleTag( ); -} -const ForwardRef = React.forwardRef(SvgPeopleTag); +}; +const ForwardRef = forwardRef(SvgPeopleTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PercentRotateOut.tsx b/packages/iconoir-react-native/src/PercentRotateOut.tsx index 3ea59404..6979cf0b 100644 --- a/packages/iconoir-react-native/src/PercentRotateOut.tsx +++ b/packages/iconoir-react-native/src/PercentRotateOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPercentRotateOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPercentRotateOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,46 +13,46 @@ function SvgPercentRotateOut( ); -} -const ForwardRef = React.forwardRef(SvgPercentRotateOut); +}; +const ForwardRef = forwardRef(SvgPercentRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Percentage.tsx b/packages/iconoir-react-native/src/Percentage.tsx index 93c466f8..9b6ec645 100644 --- a/packages/iconoir-react-native/src/Percentage.tsx +++ b/packages/iconoir-react-native/src/Percentage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPercentage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPercentage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPercentage( ); -} -const ForwardRef = React.forwardRef(SvgPercentage); +}; +const ForwardRef = forwardRef(SvgPercentage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PercentageCircle.tsx b/packages/iconoir-react-native/src/PercentageCircle.tsx index 6d67db03..cd9c3796 100644 --- a/packages/iconoir-react-native/src/PercentageCircle.tsx +++ b/packages/iconoir-react-native/src/PercentageCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPercentageCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPercentageCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgPercentageCircle( ); -} -const ForwardRef = React.forwardRef(SvgPercentageCircle); +}; +const ForwardRef = forwardRef(SvgPercentageCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PercentageSquare.tsx b/packages/iconoir-react-native/src/PercentageSquare.tsx index 69840223..e4d338e4 100644 --- a/packages/iconoir-react-native/src/PercentageSquare.tsx +++ b/packages/iconoir-react-native/src/PercentageSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPercentageSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPercentageSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgPercentageSquare( ); -} -const ForwardRef = React.forwardRef(SvgPercentageSquare); +}; +const ForwardRef = forwardRef(SvgPercentageSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PerspectiveView.tsx b/packages/iconoir-react-native/src/PerspectiveView.tsx index 0d83baed..7f139114 100644 --- a/packages/iconoir-react-native/src/PerspectiveView.tsx +++ b/packages/iconoir-react-native/src/PerspectiveView.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPerspectiveView( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPerspectiveView = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPerspectiveView( ); -} -const ForwardRef = React.forwardRef(SvgPerspectiveView); +}; +const ForwardRef = forwardRef(SvgPerspectiveView); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PharmacyCrossCircle.tsx b/packages/iconoir-react-native/src/PharmacyCrossCircle.tsx index 82516307..f3d993af 100644 --- a/packages/iconoir-react-native/src/PharmacyCrossCircle.tsx +++ b/packages/iconoir-react-native/src/PharmacyCrossCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPharmacyCrossCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPharmacyCrossCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgPharmacyCrossCircle( ); -} -const ForwardRef = React.forwardRef(SvgPharmacyCrossCircle); +}; +const ForwardRef = forwardRef(SvgPharmacyCrossCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PharmacyCrossSquare.tsx b/packages/iconoir-react-native/src/PharmacyCrossSquare.tsx index ddee6ba3..a0aa870d 100644 --- a/packages/iconoir-react-native/src/PharmacyCrossSquare.tsx +++ b/packages/iconoir-react-native/src/PharmacyCrossSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPharmacyCrossSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPharmacyCrossSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgPharmacyCrossSquare( ); -} -const ForwardRef = React.forwardRef(SvgPharmacyCrossSquare); +}; +const ForwardRef = forwardRef(SvgPharmacyCrossSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Phone.tsx b/packages/iconoir-react-native/src/Phone.tsx index a91cda42..b0a85b60 100644 --- a/packages/iconoir-react-native/src/Phone.tsx +++ b/packages/iconoir-react-native/src/Phone.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhone( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPhone = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPhone( ); -} -const ForwardRef = React.forwardRef(SvgPhone); +}; +const ForwardRef = forwardRef(SvgPhone); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PhoneAdd.tsx b/packages/iconoir-react-native/src/PhoneAdd.tsx index ab9f2a26..de706755 100644 --- a/packages/iconoir-react-native/src/PhoneAdd.tsx +++ b/packages/iconoir-react-native/src/PhoneAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPhoneAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPhoneAdd( ); -} -const ForwardRef = React.forwardRef(SvgPhoneAdd); +}; +const ForwardRef = forwardRef(SvgPhoneAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PhoneDelete.tsx b/packages/iconoir-react-native/src/PhoneDelete.tsx index 9cef1bcf..7aecf021 100644 --- a/packages/iconoir-react-native/src/PhoneDelete.tsx +++ b/packages/iconoir-react-native/src/PhoneDelete.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneDelete( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPhoneDelete = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgPhoneDelete( - + - + ); -} -const ForwardRef = React.forwardRef(SvgPhoneDelete); +}; +const ForwardRef = forwardRef(SvgPhoneDelete); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PhoneDisabled.tsx b/packages/iconoir-react-native/src/PhoneDisabled.tsx index d8089952..96c7352d 100644 --- a/packages/iconoir-react-native/src/PhoneDisabled.tsx +++ b/packages/iconoir-react-native/src/PhoneDisabled.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneDisabled( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPhoneDisabled = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPhoneDisabled( ); -} -const ForwardRef = React.forwardRef(SvgPhoneDisabled); +}; +const ForwardRef = forwardRef(SvgPhoneDisabled); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PhoneIncome.tsx b/packages/iconoir-react-native/src/PhoneIncome.tsx index efb2ff40..01b1088f 100644 --- a/packages/iconoir-react-native/src/PhoneIncome.tsx +++ b/packages/iconoir-react-native/src/PhoneIncome.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneIncome( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPhoneIncome = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPhoneIncome( ); -} -const ForwardRef = React.forwardRef(SvgPhoneIncome); +}; +const ForwardRef = forwardRef(SvgPhoneIncome); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PhoneOutcome.tsx b/packages/iconoir-react-native/src/PhoneOutcome.tsx index 25af60bb..a0d1a96d 100644 --- a/packages/iconoir-react-native/src/PhoneOutcome.tsx +++ b/packages/iconoir-react-native/src/PhoneOutcome.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneOutcome( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPhoneOutcome = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPhoneOutcome( ); -} -const ForwardRef = React.forwardRef(SvgPhoneOutcome); +}; +const ForwardRef = forwardRef(SvgPhoneOutcome); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PhonePaused.tsx b/packages/iconoir-react-native/src/PhonePaused.tsx index 7ff22857..d1385418 100644 --- a/packages/iconoir-react-native/src/PhonePaused.tsx +++ b/packages/iconoir-react-native/src/PhonePaused.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhonePaused( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPhonePaused = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPhonePaused( ); -} -const ForwardRef = React.forwardRef(SvgPhonePaused); +}; +const ForwardRef = forwardRef(SvgPhonePaused); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PhoneRemove.tsx b/packages/iconoir-react-native/src/PhoneRemove.tsx index dae85c7c..3ee4b6f4 100644 --- a/packages/iconoir-react-native/src/PhoneRemove.tsx +++ b/packages/iconoir-react-native/src/PhoneRemove.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneRemove( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPhoneRemove = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPhoneRemove( ); -} -const ForwardRef = React.forwardRef(SvgPhoneRemove); +}; +const ForwardRef = forwardRef(SvgPhoneRemove); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PiggyBank.tsx b/packages/iconoir-react-native/src/PiggyBank.tsx index 6cb60b7d..4d720da6 100644 --- a/packages/iconoir-react-native/src/PiggyBank.tsx +++ b/packages/iconoir-react-native/src/PiggyBank.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPiggyBank( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPiggyBank = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,39 +13,39 @@ function SvgPiggyBank( ); -} -const ForwardRef = React.forwardRef(SvgPiggyBank); +}; +const ForwardRef = forwardRef(SvgPiggyBank); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pillow.tsx b/packages/iconoir-react-native/src/Pillow.tsx index 607d93d9..9cb50e74 100644 --- a/packages/iconoir-react-native/src/Pillow.tsx +++ b/packages/iconoir-react-native/src/Pillow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPillow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPillow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPillow( ); -} -const ForwardRef = React.forwardRef(SvgPillow); +}; +const ForwardRef = forwardRef(SvgPillow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pin.tsx b/packages/iconoir-react-native/src/Pin.tsx index f95e8627..df49be47 100644 --- a/packages/iconoir-react-native/src/Pin.tsx +++ b/packages/iconoir-react-native/src/Pin.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPin( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPin = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPin( ); -} -const ForwardRef = React.forwardRef(SvgPin); +}; +const ForwardRef = forwardRef(SvgPin); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PinAlt.tsx b/packages/iconoir-react-native/src/PinAlt.tsx index bb3f3721..7d9eef80 100644 --- a/packages/iconoir-react-native/src/PinAlt.tsx +++ b/packages/iconoir-react-native/src/PinAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPinAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPinAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgPinAlt( ); -} -const ForwardRef = React.forwardRef(SvgPinAlt); +}; +const ForwardRef = forwardRef(SvgPinAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PineTree.tsx b/packages/iconoir-react-native/src/PineTree.tsx index 32f47da8..320ea58a 100644 --- a/packages/iconoir-react-native/src/PineTree.tsx +++ b/packages/iconoir-react-native/src/PineTree.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPineTree( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPineTree = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPineTree( ); -} -const ForwardRef = React.forwardRef(SvgPineTree); +}; +const ForwardRef = forwardRef(SvgPineTree); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pinterest.tsx b/packages/iconoir-react-native/src/Pinterest.tsx index 0aa91469..8f24bfd9 100644 --- a/packages/iconoir-react-native/src/Pinterest.tsx +++ b/packages/iconoir-react-native/src/Pinterest.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPinterest( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPinterest = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPinterest( ); -} -const ForwardRef = React.forwardRef(SvgPinterest); +}; +const ForwardRef = forwardRef(SvgPinterest); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pipe3D.tsx b/packages/iconoir-react-native/src/Pipe3D.tsx index fae1d0e9..a02c4b22 100644 --- a/packages/iconoir-react-native/src/Pipe3D.tsx +++ b/packages/iconoir-react-native/src/Pipe3D.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPipe3D( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPipe3D = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPipe3D( ); -} -const ForwardRef = React.forwardRef(SvgPipe3D); +}; +const ForwardRef = forwardRef(SvgPipe3D); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PizzaSlice.tsx b/packages/iconoir-react-native/src/PizzaSlice.tsx index beba1561..a004ceb7 100644 --- a/packages/iconoir-react-native/src/PizzaSlice.tsx +++ b/packages/iconoir-react-native/src/PizzaSlice.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPizzaSlice( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPizzaSlice = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,30 +13,30 @@ function SvgPizzaSlice( ); -} -const ForwardRef = React.forwardRef(SvgPizzaSlice); +}; +const ForwardRef = forwardRef(SvgPizzaSlice); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Planet.tsx b/packages/iconoir-react-native/src/Planet.tsx index 0c0bb7ec..c928c910 100644 --- a/packages/iconoir-react-native/src/Planet.tsx +++ b/packages/iconoir-react-native/src/Planet.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Circle, Path } from "react-native-svg"; +import Svg, { Circle, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlanet( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlanet = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgPlanet( ); -} -const ForwardRef = React.forwardRef(SvgPlanet); +}; +const ForwardRef = forwardRef(SvgPlanet); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PlanetAlt.tsx b/packages/iconoir-react-native/src/PlanetAlt.tsx index 7ef01d12..1bac6ca3 100644 --- a/packages/iconoir-react-native/src/PlanetAlt.tsx +++ b/packages/iconoir-react-native/src/PlanetAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Circle, Path } from "react-native-svg"; +import Svg, { Circle, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlanetAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlanetAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgPlanetAlt( ); -} -const ForwardRef = React.forwardRef(SvgPlanetAlt); +}; +const ForwardRef = forwardRef(SvgPlanetAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PlanetSat.tsx b/packages/iconoir-react-native/src/PlanetSat.tsx index a9596122..5a522cc5 100644 --- a/packages/iconoir-react-native/src/PlanetSat.tsx +++ b/packages/iconoir-react-native/src/PlanetSat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Circle, Path } from "react-native-svg"; +import Svg, { Circle, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlanetSat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlanetSat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgPlanetSat( ); -} -const ForwardRef = React.forwardRef(SvgPlanetSat); +}; +const ForwardRef = forwardRef(SvgPlanetSat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Planimetry.tsx b/packages/iconoir-react-native/src/Planimetry.tsx index 5ea2c1f9..2efb6ffb 100644 --- a/packages/iconoir-react-native/src/Planimetry.tsx +++ b/packages/iconoir-react-native/src/Planimetry.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlanimetry( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlanimetry = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPlanimetry( ); -} -const ForwardRef = React.forwardRef(SvgPlanimetry); +}; +const ForwardRef = forwardRef(SvgPlanimetry); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Play.tsx b/packages/iconoir-react-native/src/Play.tsx index d60fb08b..6b011bbb 100644 --- a/packages/iconoir-react-native/src/Play.tsx +++ b/packages/iconoir-react-native/src/Play.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlay( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlay = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPlay( ); -} -const ForwardRef = React.forwardRef(SvgPlay); +}; +const ForwardRef = forwardRef(SvgPlay); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Playlist.tsx b/packages/iconoir-react-native/src/Playlist.tsx index 0b30b6bc..3f14cca7 100644 --- a/packages/iconoir-react-native/src/Playlist.tsx +++ b/packages/iconoir-react-native/src/Playlist.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlaylist( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlaylist = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgPlaylist( ); -} -const ForwardRef = React.forwardRef(SvgPlaylist); +}; +const ForwardRef = forwardRef(SvgPlaylist); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PlaylistAdd.tsx b/packages/iconoir-react-native/src/PlaylistAdd.tsx index a912b9a9..a9da719e 100644 --- a/packages/iconoir-react-native/src/PlaylistAdd.tsx +++ b/packages/iconoir-react-native/src/PlaylistAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlaylistAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlaylistAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPlaylistAdd( ); -} -const ForwardRef = React.forwardRef(SvgPlaylistAdd); +}; +const ForwardRef = forwardRef(SvgPlaylistAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PlaylistPlay.tsx b/packages/iconoir-react-native/src/PlaylistPlay.tsx index 92e425fe..b43e84ca 100644 --- a/packages/iconoir-react-native/src/PlaylistPlay.tsx +++ b/packages/iconoir-react-native/src/PlaylistPlay.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlaylistPlay( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlaylistPlay = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPlaylistPlay( ); -} -const ForwardRef = React.forwardRef(SvgPlaylistPlay); +}; +const ForwardRef = forwardRef(SvgPlaylistPlay); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PlaystationGamepad.tsx b/packages/iconoir-react-native/src/PlaystationGamepad.tsx index 3f41ed49..264516bf 100644 --- a/packages/iconoir-react-native/src/PlaystationGamepad.tsx +++ b/packages/iconoir-react-native/src/PlaystationGamepad.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlaystationGamepad( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlaystationGamepad = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPlaystationGamepad( ); -} -const ForwardRef = React.forwardRef(SvgPlaystationGamepad); +}; +const ForwardRef = forwardRef(SvgPlaystationGamepad); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PlugTypeA.tsx b/packages/iconoir-react-native/src/PlugTypeA.tsx index b93b9280..4ded965e 100644 --- a/packages/iconoir-react-native/src/PlugTypeA.tsx +++ b/packages/iconoir-react-native/src/PlugTypeA.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlugTypeA( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlugTypeA = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPlugTypeA( ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeA); +}; +const ForwardRef = forwardRef(SvgPlugTypeA); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PlugTypeC.tsx b/packages/iconoir-react-native/src/PlugTypeC.tsx index 384f33dc..af9d407d 100644 --- a/packages/iconoir-react-native/src/PlugTypeC.tsx +++ b/packages/iconoir-react-native/src/PlugTypeC.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlugTypeC( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlugTypeC = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPlugTypeC( ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeC); +}; +const ForwardRef = forwardRef(SvgPlugTypeC); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PlugTypeG.tsx b/packages/iconoir-react-native/src/PlugTypeG.tsx index c1921746..c2e8848a 100644 --- a/packages/iconoir-react-native/src/PlugTypeG.tsx +++ b/packages/iconoir-react-native/src/PlugTypeG.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlugTypeG( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlugTypeG = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPlugTypeG( ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeG); +}; +const ForwardRef = forwardRef(SvgPlugTypeG); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PlugTypeL.tsx b/packages/iconoir-react-native/src/PlugTypeL.tsx index 6d1bf31d..ee715c9c 100644 --- a/packages/iconoir-react-native/src/PlugTypeL.tsx +++ b/packages/iconoir-react-native/src/PlugTypeL.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlugTypeL( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlugTypeL = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPlugTypeL( ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeL); +}; +const ForwardRef = forwardRef(SvgPlugTypeL); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Plus.tsx b/packages/iconoir-react-native/src/Plus.tsx index 08f41a7d..2648b99f 100644 --- a/packages/iconoir-react-native/src/Plus.tsx +++ b/packages/iconoir-react-native/src/Plus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPlus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPlus( ); -} -const ForwardRef = React.forwardRef(SvgPlus); +}; +const ForwardRef = forwardRef(SvgPlus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PngFormat.tsx b/packages/iconoir-react-native/src/PngFormat.tsx index 4bb22ff9..814db618 100644 --- a/packages/iconoir-react-native/src/PngFormat.tsx +++ b/packages/iconoir-react-native/src/PngFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPngFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPngFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgPngFormat( ); -} -const ForwardRef = React.forwardRef(SvgPngFormat); +}; +const ForwardRef = forwardRef(SvgPngFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pocket.tsx b/packages/iconoir-react-native/src/Pocket.tsx index 086ee8ec..f6b5b85b 100644 --- a/packages/iconoir-react-native/src/Pocket.tsx +++ b/packages/iconoir-react-native/src/Pocket.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPocket( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPocket = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPocket( ); -} -const ForwardRef = React.forwardRef(SvgPocket); +}; +const ForwardRef = forwardRef(SvgPocket); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Podcast.tsx b/packages/iconoir-react-native/src/Podcast.tsx index d3663149..7e4d805b 100644 --- a/packages/iconoir-react-native/src/Podcast.tsx +++ b/packages/iconoir-react-native/src/Podcast.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPodcast( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPodcast = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,39 @@ function SvgPodcast( + ); -} -const ForwardRef = React.forwardRef(SvgPodcast); +}; +const ForwardRef = forwardRef(SvgPodcast); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pokeball.tsx b/packages/iconoir-react-native/src/Pokeball.tsx index 16f46d00..3329e4ec 100644 --- a/packages/iconoir-react-native/src/Pokeball.tsx +++ b/packages/iconoir-react-native/src/Pokeball.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPokeball( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPokeball = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgPokeball( - + ); -} -const ForwardRef = React.forwardRef(SvgPokeball); +}; +const ForwardRef = forwardRef(SvgPokeball); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Position.tsx b/packages/iconoir-react-native/src/Position.tsx index 43d3261b..2153f734 100644 --- a/packages/iconoir-react-native/src/Position.tsx +++ b/packages/iconoir-react-native/src/Position.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPosition( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPosition = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPosition( ); -} -const ForwardRef = React.forwardRef(SvgPosition); +}; +const ForwardRef = forwardRef(SvgPosition); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PositionAlign.tsx b/packages/iconoir-react-native/src/PositionAlign.tsx index aadf4c21..9241d380 100644 --- a/packages/iconoir-react-native/src/PositionAlign.tsx +++ b/packages/iconoir-react-native/src/PositionAlign.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPositionAlign( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPositionAlign = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPositionAlign( ); -} -const ForwardRef = React.forwardRef(SvgPositionAlign); +}; +const ForwardRef = forwardRef(SvgPositionAlign); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Post.tsx b/packages/iconoir-react-native/src/Post.tsx index 049e5d70..f98da584 100644 --- a/packages/iconoir-react-native/src/Post.tsx +++ b/packages/iconoir-react-native/src/Post.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPost( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPost = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,24 +13,24 @@ function SvgPost( ); -} -const ForwardRef = React.forwardRef(SvgPost); +}; +const ForwardRef = forwardRef(SvgPost); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Potion.tsx b/packages/iconoir-react-native/src/Potion.tsx index 6cf61131..9aef48be 100644 --- a/packages/iconoir-react-native/src/Potion.tsx +++ b/packages/iconoir-react-native/src/Potion.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPotion( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPotion = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgPotion( - - + + ); -} -const ForwardRef = React.forwardRef(SvgPotion); +}; +const ForwardRef = forwardRef(SvgPotion); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Pound.tsx b/packages/iconoir-react-native/src/Pound.tsx index cd80559b..1330f8d8 100644 --- a/packages/iconoir-react-native/src/Pound.tsx +++ b/packages/iconoir-react-native/src/Pound.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPound( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPound = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPound( ); -} -const ForwardRef = React.forwardRef(SvgPound); +}; +const ForwardRef = forwardRef(SvgPound); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PrecisionTool.tsx b/packages/iconoir-react-native/src/PrecisionTool.tsx index 8c954b19..51aa5e22 100644 --- a/packages/iconoir-react-native/src/PrecisionTool.tsx +++ b/packages/iconoir-react-native/src/PrecisionTool.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrecisionTool( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPrecisionTool = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPrecisionTool( ); -} -const ForwardRef = React.forwardRef(SvgPrecisionTool); +}; +const ForwardRef = forwardRef(SvgPrecisionTool); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Presentation.tsx b/packages/iconoir-react-native/src/Presentation.tsx index 45184b4b..cf994e3c 100644 --- a/packages/iconoir-react-native/src/Presentation.tsx +++ b/packages/iconoir-react-native/src/Presentation.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPresentation( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPresentation = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPresentation( ); -} -const ForwardRef = React.forwardRef(SvgPresentation); +}; +const ForwardRef = forwardRef(SvgPresentation); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Printer.tsx b/packages/iconoir-react-native/src/Printer.tsx index da298d6a..66377492 100644 --- a/packages/iconoir-react-native/src/Printer.tsx +++ b/packages/iconoir-react-native/src/Printer.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrinter( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPrinter = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgPrinter( ); -} -const ForwardRef = React.forwardRef(SvgPrinter); +}; +const ForwardRef = forwardRef(SvgPrinter); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PrinterAlt.tsx b/packages/iconoir-react-native/src/PrinterAlt.tsx index 09ec8917..c5cd2ef4 100644 --- a/packages/iconoir-react-native/src/PrinterAlt.tsx +++ b/packages/iconoir-react-native/src/PrinterAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrinterAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPrinterAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPrinterAlt( ); -} -const ForwardRef = React.forwardRef(SvgPrinterAlt); +}; +const ForwardRef = forwardRef(SvgPrinterAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PrintingPage.tsx b/packages/iconoir-react-native/src/PrintingPage.tsx index 5588b368..5499e80a 100644 --- a/packages/iconoir-react-native/src/PrintingPage.tsx +++ b/packages/iconoir-react-native/src/PrintingPage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrintingPage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPrintingPage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgPrintingPage( ); -} -const ForwardRef = React.forwardRef(SvgPrintingPage); +}; +const ForwardRef = forwardRef(SvgPrintingPage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PriorityDown.tsx b/packages/iconoir-react-native/src/PriorityDown.tsx index 0b772ad5..a8ee9997 100644 --- a/packages/iconoir-react-native/src/PriorityDown.tsx +++ b/packages/iconoir-react-native/src/PriorityDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPriorityDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPriorityDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPriorityDown( ); -} -const ForwardRef = React.forwardRef(SvgPriorityDown); +}; +const ForwardRef = forwardRef(SvgPriorityDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PriorityUp.tsx b/packages/iconoir-react-native/src/PriorityUp.tsx index 181c49a5..770f4af9 100644 --- a/packages/iconoir-react-native/src/PriorityUp.tsx +++ b/packages/iconoir-react-native/src/PriorityUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPriorityUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPriorityUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPriorityUp( ); -} -const ForwardRef = React.forwardRef(SvgPriorityUp); +}; +const ForwardRef = forwardRef(SvgPriorityUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PrivacyPolicy.tsx b/packages/iconoir-react-native/src/PrivacyPolicy.tsx index d10decf7..f36418a5 100644 --- a/packages/iconoir-react-native/src/PrivacyPolicy.tsx +++ b/packages/iconoir-react-native/src/PrivacyPolicy.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrivacypolicy( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPrivacyPolicy = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgPrivacypolicy( ); -} -const ForwardRef = React.forwardRef(SvgPrivacypolicy); +}; +const ForwardRef = forwardRef(SvgPrivacyPolicy); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/PrivateWifi.tsx b/packages/iconoir-react-native/src/PrivateWifi.tsx index 3a03f824..b53cff8a 100644 --- a/packages/iconoir-react-native/src/PrivateWifi.tsx +++ b/packages/iconoir-react-native/src/PrivateWifi.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrivateWifi( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPrivateWifi = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPrivateWifi( ); -} -const ForwardRef = React.forwardRef(SvgPrivateWifi); +}; +const ForwardRef = forwardRef(SvgPrivateWifi); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ProfileCircle.tsx b/packages/iconoir-react-native/src/ProfileCircle.tsx index 1136afa7..2631cae3 100644 --- a/packages/iconoir-react-native/src/ProfileCircle.tsx +++ b/packages/iconoir-react-native/src/ProfileCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgProfileCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgProfileCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgProfileCircle( ); -} -const ForwardRef = React.forwardRef(SvgProfileCircle); +}; +const ForwardRef = forwardRef(SvgProfileCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Prohibition.tsx b/packages/iconoir-react-native/src/Prohibition.tsx index f6ae0b6d..c9222f7e 100644 --- a/packages/iconoir-react-native/src/Prohibition.tsx +++ b/packages/iconoir-react-native/src/Prohibition.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgProhibition( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgProhibition = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgProhibition( ); -} -const ForwardRef = React.forwardRef(SvgProhibition); +}; +const ForwardRef = forwardRef(SvgProhibition); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ProjectCurve3D.tsx b/packages/iconoir-react-native/src/ProjectCurve3D.tsx index b1ec4d8a..d0b11c35 100644 --- a/packages/iconoir-react-native/src/ProjectCurve3D.tsx +++ b/packages/iconoir-react-native/src/ProjectCurve3D.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgProjectCurve3D( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgProjectCurve3D = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgProjectCurve3D( ); -} -const ForwardRef = React.forwardRef(SvgProjectCurve3D); +}; +const ForwardRef = forwardRef(SvgProjectCurve3D); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Puzzle.tsx b/packages/iconoir-react-native/src/Puzzle.tsx index e61cb227..f9e2663a 100644 --- a/packages/iconoir-react-native/src/Puzzle.tsx +++ b/packages/iconoir-react-native/src/Puzzle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPuzzle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgPuzzle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgPuzzle( ); -} -const ForwardRef = React.forwardRef(SvgPuzzle); +}; +const ForwardRef = forwardRef(SvgPuzzle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/QrCode.tsx b/packages/iconoir-react-native/src/QrCode.tsx index aed7fee6..5faafedf 100644 --- a/packages/iconoir-react-native/src/QrCode.tsx +++ b/packages/iconoir-react-native/src/QrCode.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgQrCode( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgQrCode = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgQrCode( ); -} -const ForwardRef = React.forwardRef(SvgQrCode); +}; +const ForwardRef = forwardRef(SvgQrCode); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/QuestionMark.tsx b/packages/iconoir-react-native/src/QuestionMark.tsx index 46ce295a..2aa8db45 100644 --- a/packages/iconoir-react-native/src/QuestionMark.tsx +++ b/packages/iconoir-react-native/src/QuestionMark.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgQuestionMark( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgQuestionMark = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgQuestionMark( ); -} -const ForwardRef = React.forwardRef(SvgQuestionMark); +}; +const ForwardRef = forwardRef(SvgQuestionMark); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Quote.tsx b/packages/iconoir-react-native/src/Quote.tsx index 3784aaec..42f7e54d 100644 --- a/packages/iconoir-react-native/src/Quote.tsx +++ b/packages/iconoir-react-native/src/Quote.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgQuote( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgQuote = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgQuote( ); -} -const ForwardRef = React.forwardRef(SvgQuote); +}; +const ForwardRef = forwardRef(SvgQuote); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/QuoteMessage.tsx b/packages/iconoir-react-native/src/QuoteMessage.tsx index 017d0340..b3947b04 100644 --- a/packages/iconoir-react-native/src/QuoteMessage.tsx +++ b/packages/iconoir-react-native/src/QuoteMessage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgQuoteMessage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgQuoteMessage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,24 +13,24 @@ function SvgQuoteMessage( ); -} -const ForwardRef = React.forwardRef(SvgQuoteMessage); +}; +const ForwardRef = forwardRef(SvgQuoteMessage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Radiation.tsx b/packages/iconoir-react-native/src/Radiation.tsx index 23438e13..f441edb1 100644 --- a/packages/iconoir-react-native/src/Radiation.tsx +++ b/packages/iconoir-react-native/src/Radiation.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRadiation( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRadiation = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRadiation( ); -} -const ForwardRef = React.forwardRef(SvgRadiation); +}; +const ForwardRef = forwardRef(SvgRadiation); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Radius.tsx b/packages/iconoir-react-native/src/Radius.tsx index fdbd9b97..cd27d413 100644 --- a/packages/iconoir-react-native/src/Radius.tsx +++ b/packages/iconoir-react-native/src/Radius.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRadius( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRadius = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgRadius( ); -} -const ForwardRef = React.forwardRef(SvgRadius); +}; +const ForwardRef = forwardRef(SvgRadius); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Rain.tsx b/packages/iconoir-react-native/src/Rain.tsx index e4e14247..b4845f15 100644 --- a/packages/iconoir-react-native/src/Rain.tsx +++ b/packages/iconoir-react-native/src/Rain.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRain( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRain = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRain( ); -} -const ForwardRef = React.forwardRef(SvgRain); +}; +const ForwardRef = forwardRef(SvgRain); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RawFormat.tsx b/packages/iconoir-react-native/src/RawFormat.tsx index df1f365f..2a05c0c0 100644 --- a/packages/iconoir-react-native/src/RawFormat.tsx +++ b/packages/iconoir-react-native/src/RawFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRawFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRawFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgRawFormat( ); -} -const ForwardRef = React.forwardRef(SvgRawFormat); +}; +const ForwardRef = forwardRef(SvgRawFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ReceiveDollars.tsx b/packages/iconoir-react-native/src/ReceiveDollars.tsx index 1ab75dad..8c701983 100644 --- a/packages/iconoir-react-native/src/ReceiveDollars.tsx +++ b/packages/iconoir-react-native/src/ReceiveDollars.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReceiveDollars( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReceiveDollars = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgReceiveDollars( ); -} -const ForwardRef = React.forwardRef(SvgReceiveDollars); +}; +const ForwardRef = forwardRef(SvgReceiveDollars); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ReceiveEuros.tsx b/packages/iconoir-react-native/src/ReceiveEuros.tsx index 571754e2..32b8dd55 100644 --- a/packages/iconoir-react-native/src/ReceiveEuros.tsx +++ b/packages/iconoir-react-native/src/ReceiveEuros.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReceiveEuros( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReceiveEuros = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgReceiveEuros( ); -} -const ForwardRef = React.forwardRef(SvgReceiveEuros); +}; +const ForwardRef = forwardRef(SvgReceiveEuros); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ReceivePounds.tsx b/packages/iconoir-react-native/src/ReceivePounds.tsx index 0767627a..aae49119 100644 --- a/packages/iconoir-react-native/src/ReceivePounds.tsx +++ b/packages/iconoir-react-native/src/ReceivePounds.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReceivePounds( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReceivePounds = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgReceivePounds( ); -} -const ForwardRef = React.forwardRef(SvgReceivePounds); +}; +const ForwardRef = forwardRef(SvgReceivePounds); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ReceiveYens.tsx b/packages/iconoir-react-native/src/ReceiveYens.tsx index 9f9b028e..fc3845e8 100644 --- a/packages/iconoir-react-native/src/ReceiveYens.tsx +++ b/packages/iconoir-react-native/src/ReceiveYens.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReceiveYens( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReceiveYens = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgReceiveYens( ); -} -const ForwardRef = React.forwardRef(SvgReceiveYens); +}; +const ForwardRef = forwardRef(SvgReceiveYens); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Redo.tsx b/packages/iconoir-react-native/src/Redo.tsx index aedfbcd3..65d1d98d 100644 --- a/packages/iconoir-react-native/src/Redo.tsx +++ b/packages/iconoir-react-native/src/Redo.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRedo( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRedo = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRedo( ); -} -const ForwardRef = React.forwardRef(SvgRedo); +}; +const ForwardRef = forwardRef(SvgRedo); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RedoAction.tsx b/packages/iconoir-react-native/src/RedoAction.tsx index 53c2e286..f232b899 100644 --- a/packages/iconoir-react-native/src/RedoAction.tsx +++ b/packages/iconoir-react-native/src/RedoAction.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRedoAction( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRedoAction = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRedoAction( ); -} -const ForwardRef = React.forwardRef(SvgRedoAction); +}; +const ForwardRef = forwardRef(SvgRedoAction); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RedoCircle.tsx b/packages/iconoir-react-native/src/RedoCircle.tsx index a271b3bd..74e2add7 100644 --- a/packages/iconoir-react-native/src/RedoCircle.tsx +++ b/packages/iconoir-react-native/src/RedoCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRedoCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRedoCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgRedoCircle( ); -} -const ForwardRef = React.forwardRef(SvgRedoCircle); +}; +const ForwardRef = forwardRef(SvgRedoCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Reduce.tsx b/packages/iconoir-react-native/src/Reduce.tsx index ee7f9e94..d0e6d5ae 100644 --- a/packages/iconoir-react-native/src/Reduce.tsx +++ b/packages/iconoir-react-native/src/Reduce.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReduce( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReduce = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgReduce( ); -} -const ForwardRef = React.forwardRef(SvgReduce); +}; +const ForwardRef = forwardRef(SvgReduce); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ReduceRoundArrow.tsx b/packages/iconoir-react-native/src/ReduceRoundArrow.tsx index bd518b7e..0b919daf 100644 --- a/packages/iconoir-react-native/src/ReduceRoundArrow.tsx +++ b/packages/iconoir-react-native/src/ReduceRoundArrow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReduceRoundArrow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReduceRoundArrow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgReduceRoundArrow( ); -} -const ForwardRef = React.forwardRef(SvgReduceRoundArrow); +}; +const ForwardRef = forwardRef(SvgReduceRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Refresh.tsx b/packages/iconoir-react-native/src/Refresh.tsx index d6af0bc9..fea74cf8 100644 --- a/packages/iconoir-react-native/src/Refresh.tsx +++ b/packages/iconoir-react-native/src/Refresh.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRefresh( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRefresh = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRefresh( ); -} -const ForwardRef = React.forwardRef(SvgRefresh); +}; +const ForwardRef = forwardRef(SvgRefresh); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RefreshCircular.tsx b/packages/iconoir-react-native/src/RefreshCircular.tsx index 2433ab64..ad15fb52 100644 --- a/packages/iconoir-react-native/src/RefreshCircular.tsx +++ b/packages/iconoir-react-native/src/RefreshCircular.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Circle, Path } from "react-native-svg"; +import Svg, { Circle, Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRefreshCircular( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRefreshCircular = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgRefreshCircular( ); -} -const ForwardRef = React.forwardRef(SvgRefreshCircular); +}; +const ForwardRef = forwardRef(SvgRefreshCircular); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RefreshDouble.tsx b/packages/iconoir-react-native/src/RefreshDouble.tsx index 8f73f9c6..0d9eba10 100644 --- a/packages/iconoir-react-native/src/RefreshDouble.tsx +++ b/packages/iconoir-react-native/src/RefreshDouble.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRefreshDouble( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRefreshDouble = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgRefreshDouble( ); -} -const ForwardRef = React.forwardRef(SvgRefreshDouble); +}; +const ForwardRef = forwardRef(SvgRefreshDouble); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ReloadWindow.tsx b/packages/iconoir-react-native/src/ReloadWindow.tsx index f36f9dc8..f867b207 100644 --- a/packages/iconoir-react-native/src/ReloadWindow.tsx +++ b/packages/iconoir-react-native/src/ReloadWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReloadWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReloadWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,38 +13,38 @@ function SvgReloadWindow( ); -} -const ForwardRef = React.forwardRef(SvgReloadWindow); +}; +const ForwardRef = forwardRef(SvgReloadWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ReminderHandGesture.tsx b/packages/iconoir-react-native/src/ReminderHandGesture.tsx index 431b2cd0..34d539ad 100644 --- a/packages/iconoir-react-native/src/ReminderHandGesture.tsx +++ b/packages/iconoir-react-native/src/ReminderHandGesture.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReminderHandGesture( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReminderHandGesture = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgReminderHandGesture( ); -} -const ForwardRef = React.forwardRef(SvgReminderHandGesture); +}; +const ForwardRef = forwardRef(SvgReminderHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveDatabaseScript.tsx b/packages/iconoir-react-native/src/RemoveDatabaseScript.tsx index 4e124164..234a42ff 100644 --- a/packages/iconoir-react-native/src/RemoveDatabaseScript.tsx +++ b/packages/iconoir-react-native/src/RemoveDatabaseScript.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveDatabaseScript( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveDatabaseScript = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRemoveDatabaseScript( ); -} -const ForwardRef = React.forwardRef(SvgRemoveDatabaseScript); +}; +const ForwardRef = forwardRef(SvgRemoveDatabaseScript); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveFolder.tsx b/packages/iconoir-react-native/src/RemoveFolder.tsx index 519e6096..96a79942 100644 --- a/packages/iconoir-react-native/src/RemoveFolder.tsx +++ b/packages/iconoir-react-native/src/RemoveFolder.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveFolder( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveFolder = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRemoveFolder( ); -} -const ForwardRef = React.forwardRef(SvgRemoveFolder); +}; +const ForwardRef = forwardRef(SvgRemoveFolder); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveFrame.tsx b/packages/iconoir-react-native/src/RemoveFrame.tsx index da86f0b3..2ddd4081 100644 --- a/packages/iconoir-react-native/src/RemoveFrame.tsx +++ b/packages/iconoir-react-native/src/RemoveFrame.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveFrame( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveFrame = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgRemoveFrame( ); -} -const ForwardRef = React.forwardRef(SvgRemoveFrame); +}; +const ForwardRef = forwardRef(SvgRemoveFrame); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveFromCart.tsx b/packages/iconoir-react-native/src/RemoveFromCart.tsx index c2d5763b..e2ce5890 100644 --- a/packages/iconoir-react-native/src/RemoveFromCart.tsx +++ b/packages/iconoir-react-native/src/RemoveFromCart.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveFromCart( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveFromCart = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRemoveFromCart( ); -} -const ForwardRef = React.forwardRef(SvgRemoveFromCart); +}; +const ForwardRef = forwardRef(SvgRemoveFromCart); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveKeyframe.tsx b/packages/iconoir-react-native/src/RemoveKeyframe.tsx index c03f03bb..51f9d5f3 100644 --- a/packages/iconoir-react-native/src/RemoveKeyframe.tsx +++ b/packages/iconoir-react-native/src/RemoveKeyframe.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveKeyframe( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveKeyframe = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRemoveKeyframe( ); -} -const ForwardRef = React.forwardRef(SvgRemoveKeyframe); +}; +const ForwardRef = forwardRef(SvgRemoveKeyframe); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveKeyframeAlt.tsx b/packages/iconoir-react-native/src/RemoveKeyframeAlt.tsx index 628f4478..5fe9994c 100644 --- a/packages/iconoir-react-native/src/RemoveKeyframeAlt.tsx +++ b/packages/iconoir-react-native/src/RemoveKeyframeAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveKeyframeAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveKeyframeAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRemoveKeyframeAlt( ); -} -const ForwardRef = React.forwardRef(SvgRemoveKeyframeAlt); +}; +const ForwardRef = forwardRef(SvgRemoveKeyframeAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveKeyframes.tsx b/packages/iconoir-react-native/src/RemoveKeyframes.tsx index 1ef30a9a..eb4ccd2d 100644 --- a/packages/iconoir-react-native/src/RemoveKeyframes.tsx +++ b/packages/iconoir-react-native/src/RemoveKeyframes.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveKeyframes( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveKeyframes = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgRemoveKeyframes( ); -} -const ForwardRef = React.forwardRef(SvgRemoveKeyframes); +}; +const ForwardRef = forwardRef(SvgRemoveKeyframes); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveLink.tsx b/packages/iconoir-react-native/src/RemoveLink.tsx index f86a8a6d..c8ba94ff 100644 --- a/packages/iconoir-react-native/src/RemoveLink.tsx +++ b/packages/iconoir-react-native/src/RemoveLink.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveLink( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveLink = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRemoveLink( ); -} -const ForwardRef = React.forwardRef(SvgRemoveLink); +}; +const ForwardRef = forwardRef(SvgRemoveLink); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveMediaImage.tsx b/packages/iconoir-react-native/src/RemoveMediaImage.tsx index 5bdd90e4..4f4e690b 100644 --- a/packages/iconoir-react-native/src/RemoveMediaImage.tsx +++ b/packages/iconoir-react-native/src/RemoveMediaImage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveMediaImage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveMediaImage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRemoveMediaImage( ); -} -const ForwardRef = React.forwardRef(SvgRemoveMediaImage); +}; +const ForwardRef = forwardRef(SvgRemoveMediaImage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveMediaVideo.tsx b/packages/iconoir-react-native/src/RemoveMediaVideo.tsx index 15c82fc2..296be25a 100644 --- a/packages/iconoir-react-native/src/RemoveMediaVideo.tsx +++ b/packages/iconoir-react-native/src/RemoveMediaVideo.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveMediaVideo( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveMediaVideo = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRemoveMediaVideo( ); -} -const ForwardRef = React.forwardRef(SvgRemoveMediaVideo); +}; +const ForwardRef = forwardRef(SvgRemoveMediaVideo); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemovePage.tsx b/packages/iconoir-react-native/src/RemovePage.tsx index 638afac5..2d5281db 100644 --- a/packages/iconoir-react-native/src/RemovePage.tsx +++ b/packages/iconoir-react-native/src/RemovePage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemovePage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemovePage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRemovePage( ); -} -const ForwardRef = React.forwardRef(SvgRemovePage); +}; +const ForwardRef = forwardRef(SvgRemovePage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemovePageAlt.tsx b/packages/iconoir-react-native/src/RemovePageAlt.tsx index 4dcc3997..fca77c79 100644 --- a/packages/iconoir-react-native/src/RemovePageAlt.tsx +++ b/packages/iconoir-react-native/src/RemovePageAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemovePageAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemovePageAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRemovePageAlt( ); -} -const ForwardRef = React.forwardRef(SvgRemovePageAlt); +}; +const ForwardRef = forwardRef(SvgRemovePageAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemovePin.tsx b/packages/iconoir-react-native/src/RemovePin.tsx index b2610097..e409aebe 100644 --- a/packages/iconoir-react-native/src/RemovePin.tsx +++ b/packages/iconoir-react-native/src/RemovePin.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemovePin( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemovePin = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRemovePin( ); -} -const ForwardRef = React.forwardRef(SvgRemovePin); +}; +const ForwardRef = forwardRef(SvgRemovePin); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemovePinAlt.tsx b/packages/iconoir-react-native/src/RemovePinAlt.tsx index 333d798a..0d6bd515 100644 --- a/packages/iconoir-react-native/src/RemovePinAlt.tsx +++ b/packages/iconoir-react-native/src/RemovePinAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemovePinAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemovePinAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgRemovePinAlt( ); -} -const ForwardRef = React.forwardRef(SvgRemovePinAlt); +}; +const ForwardRef = forwardRef(SvgRemovePinAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveSelection.tsx b/packages/iconoir-react-native/src/RemoveSelection.tsx index e6d688fb..07888a47 100644 --- a/packages/iconoir-react-native/src/RemoveSelection.tsx +++ b/packages/iconoir-react-native/src/RemoveSelection.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveSelection( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveSelection = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRemoveSelection( ); -} -const ForwardRef = React.forwardRef(SvgRemoveSelection); +}; +const ForwardRef = forwardRef(SvgRemoveSelection); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveSquare.tsx b/packages/iconoir-react-native/src/RemoveSquare.tsx index 6cc31d46..190a3dc9 100644 --- a/packages/iconoir-react-native/src/RemoveSquare.tsx +++ b/packages/iconoir-react-native/src/RemoveSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRemoveSquare( ); -} -const ForwardRef = React.forwardRef(SvgRemoveSquare); +}; +const ForwardRef = forwardRef(SvgRemoveSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RemoveUser.tsx b/packages/iconoir-react-native/src/RemoveUser.tsx index a22a749d..1e847035 100644 --- a/packages/iconoir-react-native/src/RemoveUser.tsx +++ b/packages/iconoir-react-native/src/RemoveUser.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveUser( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRemoveUser = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgRemoveUser( - + - + ); -} -const ForwardRef = React.forwardRef(SvgRemoveUser); +}; +const ForwardRef = forwardRef(SvgRemoveUser); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Repeat.tsx b/packages/iconoir-react-native/src/Repeat.tsx index 65ff384c..74254498 100644 --- a/packages/iconoir-react-native/src/Repeat.tsx +++ b/packages/iconoir-react-native/src/Repeat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRepeat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRepeat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRepeat( ); -} -const ForwardRef = React.forwardRef(SvgRepeat); +}; +const ForwardRef = forwardRef(SvgRepeat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RepeatOnce.tsx b/packages/iconoir-react-native/src/RepeatOnce.tsx index b36b2f16..226c2155 100644 --- a/packages/iconoir-react-native/src/RepeatOnce.tsx +++ b/packages/iconoir-react-native/src/RepeatOnce.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRepeatOnce( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRepeatOnce = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRepeatOnce( ); -} -const ForwardRef = React.forwardRef(SvgRepeatOnce); +}; +const ForwardRef = forwardRef(SvgRepeatOnce); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Reply.tsx b/packages/iconoir-react-native/src/Reply.tsx index 8e144aff..dbe49dbc 100644 --- a/packages/iconoir-react-native/src/Reply.tsx +++ b/packages/iconoir-react-native/src/Reply.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReply( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReply = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgReply( ); -} -const ForwardRef = React.forwardRef(SvgReply); +}; +const ForwardRef = forwardRef(SvgReply); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ReplyToMessage.tsx b/packages/iconoir-react-native/src/ReplyToMessage.tsx index 76c157c4..d1c03f74 100644 --- a/packages/iconoir-react-native/src/ReplyToMessage.tsx +++ b/packages/iconoir-react-native/src/ReplyToMessage.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReplyToMessage( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReplyToMessage = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgReplyToMessage( ); -} -const ForwardRef = React.forwardRef(SvgReplyToMessage); +}; +const ForwardRef = forwardRef(SvgReplyToMessage); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ReportColumns.tsx b/packages/iconoir-react-native/src/ReportColumns.tsx index c91d7bc5..3c730720 100644 --- a/packages/iconoir-react-native/src/ReportColumns.tsx +++ b/packages/iconoir-react-native/src/ReportColumns.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReportColumns( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReportColumns = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgReportColumns( ); -} -const ForwardRef = React.forwardRef(SvgReportColumns); +}; +const ForwardRef = forwardRef(SvgReportColumns); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Reports.tsx b/packages/iconoir-react-native/src/Reports.tsx index 00c5d4ef..7168bb1e 100644 --- a/packages/iconoir-react-native/src/Reports.tsx +++ b/packages/iconoir-react-native/src/Reports.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReports( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgReports = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgReports( ); -} -const ForwardRef = React.forwardRef(SvgReports); +}; +const ForwardRef = forwardRef(SvgReports); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Repository.tsx b/packages/iconoir-react-native/src/Repository.tsx index 3594c955..1e971d71 100644 --- a/packages/iconoir-react-native/src/Repository.tsx +++ b/packages/iconoir-react-native/src/Repository.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRepository( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRepository = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgRepository( - + ); -} -const ForwardRef = React.forwardRef(SvgRepository); +}; +const ForwardRef = forwardRef(SvgRepository); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Restart.tsx b/packages/iconoir-react-native/src/Restart.tsx index a00b3120..d0cdf50d 100644 --- a/packages/iconoir-react-native/src/Restart.tsx +++ b/packages/iconoir-react-native/src/Restart.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRestart( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRestart = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,29 +13,29 @@ function SvgRestart( - - + + - + ); -} -const ForwardRef = React.forwardRef(SvgRestart); +}; +const ForwardRef = forwardRef(SvgRestart); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Rewind.tsx b/packages/iconoir-react-native/src/Rewind.tsx index 89d71492..d8357caa 100644 --- a/packages/iconoir-react-native/src/Rewind.tsx +++ b/packages/iconoir-react-native/src/Rewind.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRewind( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRewind = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRewind( ); -} -const ForwardRef = React.forwardRef(SvgRewind); +}; +const ForwardRef = forwardRef(SvgRewind); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Rhombus.tsx b/packages/iconoir-react-native/src/Rhombus.tsx index 1c84e47d..1d2ea2fa 100644 --- a/packages/iconoir-react-native/src/Rhombus.tsx +++ b/packages/iconoir-react-native/src/Rhombus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRhombus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRhombus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRhombus( ); -} -const ForwardRef = React.forwardRef(SvgRhombus); +}; +const ForwardRef = forwardRef(SvgRhombus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RightRoundArrow.tsx b/packages/iconoir-react-native/src/RightRoundArrow.tsx index c0c75171..d2543f7b 100644 --- a/packages/iconoir-react-native/src/RightRoundArrow.tsx +++ b/packages/iconoir-react-native/src/RightRoundArrow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRightRoundArrow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRightRoundArrow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgRightRoundArrow( ); -} -const ForwardRef = React.forwardRef(SvgRightRoundArrow); +}; +const ForwardRef = forwardRef(SvgRightRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Rings.tsx b/packages/iconoir-react-native/src/Rings.tsx index ce036a62..910ac6c3 100644 --- a/packages/iconoir-react-native/src/Rings.tsx +++ b/packages/iconoir-react-native/src/Rings.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRings( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRings = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRings( ); -} -const ForwardRef = React.forwardRef(SvgRings); +}; +const ForwardRef = forwardRef(SvgRings); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Rocket.tsx b/packages/iconoir-react-native/src/Rocket.tsx index d9cb27b0..441555a5 100644 --- a/packages/iconoir-react-native/src/Rocket.tsx +++ b/packages/iconoir-react-native/src/Rocket.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRocket( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRocket = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRocket( ); -} -const ForwardRef = React.forwardRef(SvgRocket); +}; +const ForwardRef = forwardRef(SvgRocket); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Rook.tsx b/packages/iconoir-react-native/src/Rook.tsx index 8dcaef8a..efbc74c4 100644 --- a/packages/iconoir-react-native/src/Rook.tsx +++ b/packages/iconoir-react-native/src/Rook.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRook( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRook = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgRook( ); -} -const ForwardRef = React.forwardRef(SvgRook); +}; +const ForwardRef = forwardRef(SvgRook); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RotateCameraLeft.tsx b/packages/iconoir-react-native/src/RotateCameraLeft.tsx index 39bc8190..ed7f42be 100644 --- a/packages/iconoir-react-native/src/RotateCameraLeft.tsx +++ b/packages/iconoir-react-native/src/RotateCameraLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRotateCameraLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRotateCameraLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgRotateCameraLeft( ); -} -const ForwardRef = React.forwardRef(SvgRotateCameraLeft); +}; +const ForwardRef = forwardRef(SvgRotateCameraLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RotateCameraRight.tsx b/packages/iconoir-react-native/src/RotateCameraRight.tsx index 6083152c..a1d0a11d 100644 --- a/packages/iconoir-react-native/src/RotateCameraRight.tsx +++ b/packages/iconoir-react-native/src/RotateCameraRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRotateCameraRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRotateCameraRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgRotateCameraRight( ); -} -const ForwardRef = React.forwardRef(SvgRotateCameraRight); +}; +const ForwardRef = forwardRef(SvgRotateCameraRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RoundFlask.tsx b/packages/iconoir-react-native/src/RoundFlask.tsx index 568d637c..d1521eab 100644 --- a/packages/iconoir-react-native/src/RoundFlask.tsx +++ b/packages/iconoir-react-native/src/RoundFlask.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRoundFlask( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRoundFlask = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,23 +12,23 @@ function SvgRoundFlask( return ( - + ); -} -const ForwardRef = React.forwardRef(SvgRoundFlask); +}; +const ForwardRef = forwardRef(SvgRoundFlask); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RoundedMirror.tsx b/packages/iconoir-react-native/src/RoundedMirror.tsx index 4b80655c..1e07ac0e 100644 --- a/packages/iconoir-react-native/src/RoundedMirror.tsx +++ b/packages/iconoir-react-native/src/RoundedMirror.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRoundedMirror( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRoundedMirror = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRoundedMirror( ); -} -const ForwardRef = React.forwardRef(SvgRoundedMirror); +}; +const ForwardRef = forwardRef(SvgRoundedMirror); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RssFeed.tsx b/packages/iconoir-react-native/src/RssFeed.tsx index 34790d02..c7d749c6 100644 --- a/packages/iconoir-react-native/src/RssFeed.tsx +++ b/packages/iconoir-react-native/src/RssFeed.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRssFeed( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRssFeed = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRssFeed( ); -} -const ForwardRef = React.forwardRef(SvgRssFeed); +}; +const ForwardRef = forwardRef(SvgRssFeed); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RssFeedTag.tsx b/packages/iconoir-react-native/src/RssFeedTag.tsx index e2904ba3..5375130a 100644 --- a/packages/iconoir-react-native/src/RssFeedTag.tsx +++ b/packages/iconoir-react-native/src/RssFeedTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRssFeedTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRssFeedTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRssFeedTag( ); -} -const ForwardRef = React.forwardRef(SvgRssFeedTag); +}; +const ForwardRef = forwardRef(SvgRssFeedTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RubikCube.tsx b/packages/iconoir-react-native/src/RubikCube.tsx index 77466e79..a778f2aa 100644 --- a/packages/iconoir-react-native/src/RubikCube.tsx +++ b/packages/iconoir-react-native/src/RubikCube.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRubikCube( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRubikCube = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRubikCube( ); -} -const ForwardRef = React.forwardRef(SvgRubikCube); +}; +const ForwardRef = forwardRef(SvgRubikCube); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Ruler.tsx b/packages/iconoir-react-native/src/Ruler.tsx index 7eb4827b..188d72b3 100644 --- a/packages/iconoir-react-native/src/Ruler.tsx +++ b/packages/iconoir-react-native/src/Ruler.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRuler( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRuler = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRuler( ); -} -const ForwardRef = React.forwardRef(SvgRuler); +}; +const ForwardRef = forwardRef(SvgRuler); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RulerAdd.tsx b/packages/iconoir-react-native/src/RulerAdd.tsx index 448f9838..fd141083 100644 --- a/packages/iconoir-react-native/src/RulerAdd.tsx +++ b/packages/iconoir-react-native/src/RulerAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRulerAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRulerAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRulerAdd( ); -} -const ForwardRef = React.forwardRef(SvgRulerAdd); +}; +const ForwardRef = forwardRef(SvgRulerAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RulerCombine.tsx b/packages/iconoir-react-native/src/RulerCombine.tsx index 4fabbafa..7886f472 100644 --- a/packages/iconoir-react-native/src/RulerCombine.tsx +++ b/packages/iconoir-react-native/src/RulerCombine.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRulerCombine( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRulerCombine = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRulerCombine( ); -} -const ForwardRef = React.forwardRef(SvgRulerCombine); +}; +const ForwardRef = forwardRef(SvgRulerCombine); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/RulerRemove.tsx b/packages/iconoir-react-native/src/RulerRemove.tsx index fbb9af98..5fdc8eb3 100644 --- a/packages/iconoir-react-native/src/RulerRemove.tsx +++ b/packages/iconoir-react-native/src/RulerRemove.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRulerRemove( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRulerRemove = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgRulerRemove( ); -} -const ForwardRef = React.forwardRef(SvgRulerRemove); +}; +const ForwardRef = forwardRef(SvgRulerRemove); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Running.tsx b/packages/iconoir-react-native/src/Running.tsx index 4dbb39e9..03644536 100644 --- a/packages/iconoir-react-native/src/Running.tsx +++ b/packages/iconoir-react-native/src/Running.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRunning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgRunning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgRunning( ); -} -const ForwardRef = React.forwardRef(SvgRunning); +}; +const ForwardRef = forwardRef(SvgRunning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Safari.tsx b/packages/iconoir-react-native/src/Safari.tsx index 17c6cedf..5003113b 100644 --- a/packages/iconoir-react-native/src/Safari.tsx +++ b/packages/iconoir-react-native/src/Safari.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSafari( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSafari = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSafari( ); -} -const ForwardRef = React.forwardRef(SvgSafari); +}; +const ForwardRef = forwardRef(SvgSafari); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Safe.tsx b/packages/iconoir-react-native/src/Safe.tsx index f271704f..fc0ae9f3 100644 --- a/packages/iconoir-react-native/src/Safe.tsx +++ b/packages/iconoir-react-native/src/Safe.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSafe( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSafe = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgSafe( ); -} -const ForwardRef = React.forwardRef(SvgSafe); +}; +const ForwardRef = forwardRef(SvgSafe); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SafeArrowLeft.tsx b/packages/iconoir-react-native/src/SafeArrowLeft.tsx index 44c6ddae..1ad1ebf5 100644 --- a/packages/iconoir-react-native/src/SafeArrowLeft.tsx +++ b/packages/iconoir-react-native/src/SafeArrowLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSafeArrowLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSafeArrowLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgSafeArrowLeft( ); -} -const ForwardRef = React.forwardRef(SvgSafeArrowLeft); +}; +const ForwardRef = forwardRef(SvgSafeArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SafeArrowRight.tsx b/packages/iconoir-react-native/src/SafeArrowRight.tsx index 7441e28a..a47845e6 100644 --- a/packages/iconoir-react-native/src/SafeArrowRight.tsx +++ b/packages/iconoir-react-native/src/SafeArrowRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSafeArrowRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSafeArrowRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgSafeArrowRight( ); -} -const ForwardRef = React.forwardRef(SvgSafeArrowRight); +}; +const ForwardRef = forwardRef(SvgSafeArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SafeOpen.tsx b/packages/iconoir-react-native/src/SafeOpen.tsx index 6c3feba5..563e01f7 100644 --- a/packages/iconoir-react-native/src/SafeOpen.tsx +++ b/packages/iconoir-react-native/src/SafeOpen.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSafeOpen( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSafeOpen = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,29 @@ function SvgSafeOpen( + - ); -} -const ForwardRef = React.forwardRef(SvgSafeOpen); +}; +const ForwardRef = forwardRef(SvgSafeOpen); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Sandals.tsx b/packages/iconoir-react-native/src/Sandals.tsx index 8692f9a2..26636001 100644 --- a/packages/iconoir-react-native/src/Sandals.tsx +++ b/packages/iconoir-react-native/src/Sandals.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSandals( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSandals = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSandals( ); -} -const ForwardRef = React.forwardRef(SvgSandals); +}; +const ForwardRef = forwardRef(SvgSandals); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SaveActionFloppy.tsx b/packages/iconoir-react-native/src/SaveActionFloppy.tsx index 36536347..de1f2dac 100644 --- a/packages/iconoir-react-native/src/SaveActionFloppy.tsx +++ b/packages/iconoir-react-native/src/SaveActionFloppy.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSaveActionFloppy( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSaveActionFloppy = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSaveActionFloppy( ); -} -const ForwardRef = React.forwardRef(SvgSaveActionFloppy); +}; +const ForwardRef = forwardRef(SvgSaveActionFloppy); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SaveFloppyDisk.tsx b/packages/iconoir-react-native/src/SaveFloppyDisk.tsx index bddd1e1c..cd3f7360 100644 --- a/packages/iconoir-react-native/src/SaveFloppyDisk.tsx +++ b/packages/iconoir-react-native/src/SaveFloppyDisk.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSaveFloppyDisk( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSaveFloppyDisk = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,23 @@ function SvgSaveFloppyDisk( ); -} -const ForwardRef = React.forwardRef(SvgSaveFloppyDisk); +}; +const ForwardRef = forwardRef(SvgSaveFloppyDisk); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ScaleFrameEnlarge.tsx b/packages/iconoir-react-native/src/ScaleFrameEnlarge.tsx index 1d453b65..4ddca3f7 100644 --- a/packages/iconoir-react-native/src/ScaleFrameEnlarge.tsx +++ b/packages/iconoir-react-native/src/ScaleFrameEnlarge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScaleFrameEnlarge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgScaleFrameEnlarge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgScaleFrameEnlarge( ); -} -const ForwardRef = React.forwardRef(SvgScaleFrameEnlarge); +}; +const ForwardRef = forwardRef(SvgScaleFrameEnlarge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ScaleFrameReduce.tsx b/packages/iconoir-react-native/src/ScaleFrameReduce.tsx index 7bcf4300..841cca7e 100644 --- a/packages/iconoir-react-native/src/ScaleFrameReduce.tsx +++ b/packages/iconoir-react-native/src/ScaleFrameReduce.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScaleFrameReduce( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgScaleFrameReduce = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgScaleFrameReduce( ); -} -const ForwardRef = React.forwardRef(SvgScaleFrameReduce); +}; +const ForwardRef = forwardRef(SvgScaleFrameReduce); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ScanBarcode.tsx b/packages/iconoir-react-native/src/ScanBarcode.tsx index 60159889..ae1baae5 100644 --- a/packages/iconoir-react-native/src/ScanBarcode.tsx +++ b/packages/iconoir-react-native/src/ScanBarcode.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScanBarcode( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgScanBarcode = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgScanBarcode( ); -} -const ForwardRef = React.forwardRef(SvgScanBarcode); +}; +const ForwardRef = forwardRef(SvgScanBarcode); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ScanQrCode.tsx b/packages/iconoir-react-native/src/ScanQrCode.tsx index 06c701c7..f6ce3d31 100644 --- a/packages/iconoir-react-native/src/ScanQrCode.tsx +++ b/packages/iconoir-react-native/src/ScanQrCode.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScanQrCode( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgScanQrCode = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgScanQrCode( ); -} -const ForwardRef = React.forwardRef(SvgScanQrCode); +}; +const ForwardRef = forwardRef(SvgScanQrCode); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Scanning.tsx b/packages/iconoir-react-native/src/Scanning.tsx index 55ccb38b..ce776447 100644 --- a/packages/iconoir-react-native/src/Scanning.tsx +++ b/packages/iconoir-react-native/src/Scanning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScanning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgScanning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgScanning( ); -} -const ForwardRef = React.forwardRef(SvgScanning); +}; +const ForwardRef = forwardRef(SvgScanning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Scarf.tsx b/packages/iconoir-react-native/src/Scarf.tsx index 0d2518ac..92f08635 100644 --- a/packages/iconoir-react-native/src/Scarf.tsx +++ b/packages/iconoir-react-native/src/Scarf.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScarf( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgScarf = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgScarf( ); -} -const ForwardRef = React.forwardRef(SvgScarf); +}; +const ForwardRef = forwardRef(SvgScarf); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Scissor.tsx b/packages/iconoir-react-native/src/Scissor.tsx index 2cb29e05..ac3408e1 100644 --- a/packages/iconoir-react-native/src/Scissor.tsx +++ b/packages/iconoir-react-native/src/Scissor.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScissor( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgScissor = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgScissor( ); -} -const ForwardRef = React.forwardRef(SvgScissor); +}; +const ForwardRef = forwardRef(SvgScissor); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ScissorAlt.tsx b/packages/iconoir-react-native/src/ScissorAlt.tsx index ae23a12f..aaf476a6 100644 --- a/packages/iconoir-react-native/src/ScissorAlt.tsx +++ b/packages/iconoir-react-native/src/ScissorAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScissorAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgScissorAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgScissorAlt( ); -} -const ForwardRef = React.forwardRef(SvgScissorAlt); +}; +const ForwardRef = forwardRef(SvgScissorAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Screenshot.tsx b/packages/iconoir-react-native/src/Screenshot.tsx index 80716a64..bab3f227 100644 --- a/packages/iconoir-react-native/src/Screenshot.tsx +++ b/packages/iconoir-react-native/src/Screenshot.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScreenshot( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgScreenshot = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgScreenshot( ); -} -const ForwardRef = React.forwardRef(SvgScreenshot); +}; +const ForwardRef = forwardRef(SvgScreenshot); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SeaAndSun.tsx b/packages/iconoir-react-native/src/SeaAndSun.tsx index 447836d8..df513e23 100644 --- a/packages/iconoir-react-native/src/SeaAndSun.tsx +++ b/packages/iconoir-react-native/src/SeaAndSun.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSeaAndSun( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSeaAndSun = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSeaAndSun( ); -} -const ForwardRef = React.forwardRef(SvgSeaAndSun); +}; +const ForwardRef = forwardRef(SvgSeaAndSun); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SeaWaves.tsx b/packages/iconoir-react-native/src/SeaWaves.tsx index f04f34e7..6fcc02ec 100644 --- a/packages/iconoir-react-native/src/SeaWaves.tsx +++ b/packages/iconoir-react-native/src/SeaWaves.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSeaWaves( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSeaWaves = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSeaWaves( ); -} -const ForwardRef = React.forwardRef(SvgSeaWaves); +}; +const ForwardRef = forwardRef(SvgSeaWaves); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Search.tsx b/packages/iconoir-react-native/src/Search.tsx index 03a7c157..891df17c 100644 --- a/packages/iconoir-react-native/src/Search.tsx +++ b/packages/iconoir-react-native/src/Search.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSearch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSearch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSearch( ); -} -const ForwardRef = React.forwardRef(SvgSearch); +}; +const ForwardRef = forwardRef(SvgSearch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SearchEngine.tsx b/packages/iconoir-react-native/src/SearchEngine.tsx index 22fb1b2a..382658b4 100644 --- a/packages/iconoir-react-native/src/SearchEngine.tsx +++ b/packages/iconoir-react-native/src/SearchEngine.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSearchEngine( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSearchEngine = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgSearchEngine( ); -} -const ForwardRef = React.forwardRef(SvgSearchEngine); +}; +const ForwardRef = forwardRef(SvgSearchEngine); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SearchFont.tsx b/packages/iconoir-react-native/src/SearchFont.tsx index bb3113ca..e8dc9f66 100644 --- a/packages/iconoir-react-native/src/SearchFont.tsx +++ b/packages/iconoir-react-native/src/SearchFont.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSearchFont( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSearchFont = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSearchFont( ); -} -const ForwardRef = React.forwardRef(SvgSearchFont); +}; +const ForwardRef = forwardRef(SvgSearchFont); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SearchWindow.tsx b/packages/iconoir-react-native/src/SearchWindow.tsx index 6f18206e..18b2b74a 100644 --- a/packages/iconoir-react-native/src/SearchWindow.tsx +++ b/packages/iconoir-react-native/src/SearchWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSearchWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSearchWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgSearchWindow( ); -} -const ForwardRef = React.forwardRef(SvgSearchWindow); +}; +const ForwardRef = forwardRef(SvgSearchWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SecureWindow.tsx b/packages/iconoir-react-native/src/SecureWindow.tsx index 48141cfe..d0702e58 100644 --- a/packages/iconoir-react-native/src/SecureWindow.tsx +++ b/packages/iconoir-react-native/src/SecureWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSecureWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSecureWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgSecureWindow( ); -} -const ForwardRef = React.forwardRef(SvgSecureWindow); +}; +const ForwardRef = forwardRef(SvgSecureWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SecurityPass.tsx b/packages/iconoir-react-native/src/SecurityPass.tsx index f9880836..329f8b92 100644 --- a/packages/iconoir-react-native/src/SecurityPass.tsx +++ b/packages/iconoir-react-native/src/SecurityPass.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSecurityPass( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSecurityPass = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgSecurityPass( + ); -} -const ForwardRef = React.forwardRef(SvgSecurityPass); +}; +const ForwardRef = forwardRef(SvgSecurityPass); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SelectWindow.tsx b/packages/iconoir-react-native/src/SelectWindow.tsx index 0423a260..ff1c1ce0 100644 --- a/packages/iconoir-react-native/src/SelectWindow.tsx +++ b/packages/iconoir-react-native/src/SelectWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSelectWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSelectWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgSelectWindow( ); -} -const ForwardRef = React.forwardRef(SvgSelectWindow); +}; +const ForwardRef = forwardRef(SvgSelectWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Selection.tsx b/packages/iconoir-react-native/src/Selection.tsx index 60d7e3e2..845d8d06 100644 --- a/packages/iconoir-react-native/src/Selection.tsx +++ b/packages/iconoir-react-native/src/Selection.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSelection( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSelection = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSelection( ); -} -const ForwardRef = React.forwardRef(SvgSelection); +}; +const ForwardRef = forwardRef(SvgSelection); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SelectiveTool.tsx b/packages/iconoir-react-native/src/SelectiveTool.tsx index 07e969f4..7f78b73f 100644 --- a/packages/iconoir-react-native/src/SelectiveTool.tsx +++ b/packages/iconoir-react-native/src/SelectiveTool.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSelectiveTool( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSelectiveTool = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgSelectiveTool( ); -} -const ForwardRef = React.forwardRef(SvgSelectiveTool); +}; +const ForwardRef = forwardRef(SvgSelectiveTool); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Send.tsx b/packages/iconoir-react-native/src/Send.tsx index de304559..bc5339ed 100644 --- a/packages/iconoir-react-native/src/Send.tsx +++ b/packages/iconoir-react-native/src/Send.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSend( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSend = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSend( ); -} -const ForwardRef = React.forwardRef(SvgSend); +}; +const ForwardRef = forwardRef(SvgSend); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SendDiagonal.tsx b/packages/iconoir-react-native/src/SendDiagonal.tsx index 173715bb..01b5d075 100644 --- a/packages/iconoir-react-native/src/SendDiagonal.tsx +++ b/packages/iconoir-react-native/src/SendDiagonal.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendDiagonal( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSendDiagonal = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgSendDiagonal( - + - + ); -} -const ForwardRef = React.forwardRef(SvgSendDiagonal); +}; +const ForwardRef = forwardRef(SvgSendDiagonal); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SendDollars.tsx b/packages/iconoir-react-native/src/SendDollars.tsx index 8bc3fd2e..42bb5462 100644 --- a/packages/iconoir-react-native/src/SendDollars.tsx +++ b/packages/iconoir-react-native/src/SendDollars.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendDollars( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSendDollars = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSendDollars( ); -} -const ForwardRef = React.forwardRef(SvgSendDollars); +}; +const ForwardRef = forwardRef(SvgSendDollars); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SendEuros.tsx b/packages/iconoir-react-native/src/SendEuros.tsx index f4f15765..0822564b 100644 --- a/packages/iconoir-react-native/src/SendEuros.tsx +++ b/packages/iconoir-react-native/src/SendEuros.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendEuros( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSendEuros = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSendEuros( ); -} -const ForwardRef = React.forwardRef(SvgSendEuros); +}; +const ForwardRef = forwardRef(SvgSendEuros); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SendMail.tsx b/packages/iconoir-react-native/src/SendMail.tsx index 9f682ba7..d492d84e 100644 --- a/packages/iconoir-react-native/src/SendMail.tsx +++ b/packages/iconoir-react-native/src/SendMail.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendMail( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSendMail = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgSendMail( ); -} -const ForwardRef = React.forwardRef(SvgSendMail); +}; +const ForwardRef = forwardRef(SvgSendMail); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SendPounds.tsx b/packages/iconoir-react-native/src/SendPounds.tsx index 1513b262..9caa7071 100644 --- a/packages/iconoir-react-native/src/SendPounds.tsx +++ b/packages/iconoir-react-native/src/SendPounds.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendPounds( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSendPounds = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSendPounds( ); -} -const ForwardRef = React.forwardRef(SvgSendPounds); +}; +const ForwardRef = forwardRef(SvgSendPounds); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SendYens.tsx b/packages/iconoir-react-native/src/SendYens.tsx index 156aa731..eebe6601 100644 --- a/packages/iconoir-react-native/src/SendYens.tsx +++ b/packages/iconoir-react-native/src/SendYens.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendYens( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSendYens = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSendYens( ); -} -const ForwardRef = React.forwardRef(SvgSendYens); +}; +const ForwardRef = forwardRef(SvgSendYens); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Server.tsx b/packages/iconoir-react-native/src/Server.tsx index 50094457..1c3cd0eb 100644 --- a/packages/iconoir-react-native/src/Server.tsx +++ b/packages/iconoir-react-native/src/Server.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgServer( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgServer = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgServer( ); -} -const ForwardRef = React.forwardRef(SvgServer); +}; +const ForwardRef = forwardRef(SvgServer); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ServerConnection.tsx b/packages/iconoir-react-native/src/ServerConnection.tsx index 410ab814..f2ce0cbe 100644 --- a/packages/iconoir-react-native/src/ServerConnection.tsx +++ b/packages/iconoir-react-native/src/ServerConnection.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgServerConnection( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgServerConnection = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgServerConnection( ); -} -const ForwardRef = React.forwardRef(SvgServerConnection); +}; +const ForwardRef = forwardRef(SvgServerConnection); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Settings.tsx b/packages/iconoir-react-native/src/Settings.tsx index 865f463d..bd417240 100644 --- a/packages/iconoir-react-native/src/Settings.tsx +++ b/packages/iconoir-react-native/src/Settings.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSettings( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSettings = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSettings( ); -} -const ForwardRef = React.forwardRef(SvgSettings); +}; +const ForwardRef = forwardRef(SvgSettings); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SettingsCloud.tsx b/packages/iconoir-react-native/src/SettingsCloud.tsx index b33ef047..0a577565 100644 --- a/packages/iconoir-react-native/src/SettingsCloud.tsx +++ b/packages/iconoir-react-native/src/SettingsCloud.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSettingsCloud( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSettingsCloud = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,24 +13,24 @@ function SvgSettingsCloud( ); -} -const ForwardRef = React.forwardRef(SvgSettingsCloud); +}; +const ForwardRef = forwardRef(SvgSettingsCloud); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SettingsProfiles.tsx b/packages/iconoir-react-native/src/SettingsProfiles.tsx index 6817ac7e..723dc0f1 100644 --- a/packages/iconoir-react-native/src/SettingsProfiles.tsx +++ b/packages/iconoir-react-native/src/SettingsProfiles.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSettingsProfiles( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSettingsProfiles = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgSettingsProfiles( ); -} -const ForwardRef = React.forwardRef(SvgSettingsProfiles); +}; +const ForwardRef = forwardRef(SvgSettingsProfiles); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShareAndroid.tsx b/packages/iconoir-react-native/src/ShareAndroid.tsx index fab821a1..a554362d 100644 --- a/packages/iconoir-react-native/src/ShareAndroid.tsx +++ b/packages/iconoir-react-native/src/ShareAndroid.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShareAndroid( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShareAndroid = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgShareAndroid( - + ); -} -const ForwardRef = React.forwardRef(SvgShareAndroid); +}; +const ForwardRef = forwardRef(SvgShareAndroid); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShareIos.tsx b/packages/iconoir-react-native/src/ShareIos.tsx index d8f8d4bb..5d028363 100644 --- a/packages/iconoir-react-native/src/ShareIos.tsx +++ b/packages/iconoir-react-native/src/ShareIos.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShareIos( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShareIos = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShareIos( ); -} -const ForwardRef = React.forwardRef(SvgShareIos); +}; +const ForwardRef = forwardRef(SvgShareIos); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Shield.tsx b/packages/iconoir-react-native/src/Shield.tsx index b270db88..089c4e15 100644 --- a/packages/iconoir-react-native/src/Shield.tsx +++ b/packages/iconoir-react-native/src/Shield.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShield( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShield = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShield( ); -} -const ForwardRef = React.forwardRef(SvgShield); +}; +const ForwardRef = forwardRef(SvgShield); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldAdd.tsx b/packages/iconoir-react-native/src/ShieldAdd.tsx index 1a63f308..5ae6f067 100644 --- a/packages/iconoir-react-native/src/ShieldAdd.tsx +++ b/packages/iconoir-react-native/src/ShieldAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShieldAdd( ); -} -const ForwardRef = React.forwardRef(SvgShieldAdd); +}; +const ForwardRef = forwardRef(SvgShieldAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldAlert.tsx b/packages/iconoir-react-native/src/ShieldAlert.tsx index 74e3ee8d..86ab25f3 100644 --- a/packages/iconoir-react-native/src/ShieldAlert.tsx +++ b/packages/iconoir-react-native/src/ShieldAlert.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldAlert( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldAlert = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShieldAlert( ); -} -const ForwardRef = React.forwardRef(SvgShieldAlert); +}; +const ForwardRef = forwardRef(SvgShieldAlert); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldAlt.tsx b/packages/iconoir-react-native/src/ShieldAlt.tsx index 12e8eb8d..3fd065a1 100644 --- a/packages/iconoir-react-native/src/ShieldAlt.tsx +++ b/packages/iconoir-react-native/src/ShieldAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShieldAlt( ); -} -const ForwardRef = React.forwardRef(SvgShieldAlt); +}; +const ForwardRef = forwardRef(SvgShieldAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldBroken.tsx b/packages/iconoir-react-native/src/ShieldBroken.tsx index 2d185785..d72eda34 100644 --- a/packages/iconoir-react-native/src/ShieldBroken.tsx +++ b/packages/iconoir-react-native/src/ShieldBroken.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldBroken( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldBroken = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgShieldBroken( ); -} -const ForwardRef = React.forwardRef(SvgShieldBroken); +}; +const ForwardRef = forwardRef(SvgShieldBroken); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldCheck.tsx b/packages/iconoir-react-native/src/ShieldCheck.tsx index 19c69ca3..94a5cc02 100644 --- a/packages/iconoir-react-native/src/ShieldCheck.tsx +++ b/packages/iconoir-react-native/src/ShieldCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgShieldCheck( ); -} -const ForwardRef = React.forwardRef(SvgShieldCheck); +}; +const ForwardRef = forwardRef(SvgShieldCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldCross.tsx b/packages/iconoir-react-native/src/ShieldCross.tsx index 5a8ceb55..a56f134d 100644 --- a/packages/iconoir-react-native/src/ShieldCross.tsx +++ b/packages/iconoir-react-native/src/ShieldCross.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldCross( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldCross = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShieldCross( ); -} -const ForwardRef = React.forwardRef(SvgShieldCross); +}; +const ForwardRef = forwardRef(SvgShieldCross); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldDownload.tsx b/packages/iconoir-react-native/src/ShieldDownload.tsx index cf4d0eb8..f7bd985a 100644 --- a/packages/iconoir-react-native/src/ShieldDownload.tsx +++ b/packages/iconoir-react-native/src/ShieldDownload.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldDownload( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldDownload = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShieldDownload( ); -} -const ForwardRef = React.forwardRef(SvgShieldDownload); +}; +const ForwardRef = forwardRef(SvgShieldDownload); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldEye.tsx b/packages/iconoir-react-native/src/ShieldEye.tsx index 76d5d8f7..af68d0ae 100644 --- a/packages/iconoir-react-native/src/ShieldEye.tsx +++ b/packages/iconoir-react-native/src/ShieldEye.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldEye( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldEye = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgShieldEye( ); -} -const ForwardRef = React.forwardRef(SvgShieldEye); +}; +const ForwardRef = forwardRef(SvgShieldEye); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldLoading.tsx b/packages/iconoir-react-native/src/ShieldLoading.tsx index 305a5eaa..9cc02e1a 100644 --- a/packages/iconoir-react-native/src/ShieldLoading.tsx +++ b/packages/iconoir-react-native/src/ShieldLoading.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldLoading( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldLoading = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShieldLoading( ); -} -const ForwardRef = React.forwardRef(SvgShieldLoading); +}; +const ForwardRef = forwardRef(SvgShieldLoading); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldMinus.tsx b/packages/iconoir-react-native/src/ShieldMinus.tsx index 60ccdc1a..637f019b 100644 --- a/packages/iconoir-react-native/src/ShieldMinus.tsx +++ b/packages/iconoir-react-native/src/ShieldMinus.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldMinus( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldMinus = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShieldMinus( ); -} -const ForwardRef = React.forwardRef(SvgShieldMinus); +}; +const ForwardRef = forwardRef(SvgShieldMinus); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldQuestion.tsx b/packages/iconoir-react-native/src/ShieldQuestion.tsx index 65fd73db..85c7c2c6 100644 --- a/packages/iconoir-react-native/src/ShieldQuestion.tsx +++ b/packages/iconoir-react-native/src/ShieldQuestion.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldQuestion( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldQuestion = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgShieldQuestion( ); -} -const ForwardRef = React.forwardRef(SvgShieldQuestion); +}; +const ForwardRef = forwardRef(SvgShieldQuestion); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldSearch.tsx b/packages/iconoir-react-native/src/ShieldSearch.tsx index 5cee3c79..5e33452d 100644 --- a/packages/iconoir-react-native/src/ShieldSearch.tsx +++ b/packages/iconoir-react-native/src/ShieldSearch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldSearch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldSearch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgShieldSearch( ); -} -const ForwardRef = React.forwardRef(SvgShieldSearch); +}; +const ForwardRef = forwardRef(SvgShieldSearch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShieldUpload.tsx b/packages/iconoir-react-native/src/ShieldUpload.tsx index 61b12c96..4bd6996d 100644 --- a/packages/iconoir-react-native/src/ShieldUpload.tsx +++ b/packages/iconoir-react-native/src/ShieldUpload.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldUpload( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShieldUpload = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShieldUpload( ); -} -const ForwardRef = React.forwardRef(SvgShieldUpload); +}; +const ForwardRef = forwardRef(SvgShieldUpload); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Shop.tsx b/packages/iconoir-react-native/src/Shop.tsx index 96614688..f363a0a5 100644 --- a/packages/iconoir-react-native/src/Shop.tsx +++ b/packages/iconoir-react-native/src/Shop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,35 @@ function SvgShop( - + ); -} -const ForwardRef = React.forwardRef(SvgShop); +}; +const ForwardRef = forwardRef(SvgShop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShopAlt.tsx b/packages/iconoir-react-native/src/ShopAlt.tsx index 4304f578..ad5d25a9 100644 --- a/packages/iconoir-react-native/src/ShopAlt.tsx +++ b/packages/iconoir-react-native/src/ShopAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShopAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShopAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,37 +13,40 @@ function SvgShopAlt( + - ); -} -const ForwardRef = React.forwardRef(SvgShopAlt); +}; +const ForwardRef = forwardRef(SvgShopAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingBag.tsx b/packages/iconoir-react-native/src/ShoppingBag.tsx index ded6eec7..27806b56 100644 --- a/packages/iconoir-react-native/src/ShoppingBag.tsx +++ b/packages/iconoir-react-native/src/ShoppingBag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingBag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShoppingBag( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBag); +}; +const ForwardRef = forwardRef(SvgShoppingBag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingBagAdd.tsx b/packages/iconoir-react-native/src/ShoppingBagAdd.tsx index 6ce5cf46..de067cb6 100644 --- a/packages/iconoir-react-native/src/ShoppingBagAdd.tsx +++ b/packages/iconoir-react-native/src/ShoppingBagAdd.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagAdd( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingBagAdd = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShoppingBagAdd( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagAdd); +}; +const ForwardRef = forwardRef(SvgShoppingBagAdd); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingBagAlt.tsx b/packages/iconoir-react-native/src/ShoppingBagAlt.tsx index 34f37032..3ec63fa0 100644 --- a/packages/iconoir-react-native/src/ShoppingBagAlt.tsx +++ b/packages/iconoir-react-native/src/ShoppingBagAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingBagAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShoppingBagAlt( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagAlt); +}; +const ForwardRef = forwardRef(SvgShoppingBagAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingBagArrowDown.tsx b/packages/iconoir-react-native/src/ShoppingBagArrowDown.tsx index 5a310311..8a02212f 100644 --- a/packages/iconoir-react-native/src/ShoppingBagArrowDown.tsx +++ b/packages/iconoir-react-native/src/ShoppingBagArrowDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagArrowDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingBagArrowDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShoppingBagArrowDown( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagArrowDown); +}; +const ForwardRef = forwardRef(SvgShoppingBagArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingBagArrowUp.tsx b/packages/iconoir-react-native/src/ShoppingBagArrowUp.tsx index 6625a7cd..666f078c 100644 --- a/packages/iconoir-react-native/src/ShoppingBagArrowUp.tsx +++ b/packages/iconoir-react-native/src/ShoppingBagArrowUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagArrowUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingBagArrowUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShoppingBagArrowUp( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagArrowUp); +}; +const ForwardRef = forwardRef(SvgShoppingBagArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingBagCheck.tsx b/packages/iconoir-react-native/src/ShoppingBagCheck.tsx index c15a811c..f6589a11 100644 --- a/packages/iconoir-react-native/src/ShoppingBagCheck.tsx +++ b/packages/iconoir-react-native/src/ShoppingBagCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingBagCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgShoppingBagCheck( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagCheck); +}; +const ForwardRef = forwardRef(SvgShoppingBagCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingBagIssue.tsx b/packages/iconoir-react-native/src/ShoppingBagIssue.tsx index 245f8957..7acc7d5e 100644 --- a/packages/iconoir-react-native/src/ShoppingBagIssue.tsx +++ b/packages/iconoir-react-native/src/ShoppingBagIssue.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagIssue( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingBagIssue = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShoppingBagIssue( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagIssue); +}; +const ForwardRef = forwardRef(SvgShoppingBagIssue); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingBagRemove.tsx b/packages/iconoir-react-native/src/ShoppingBagRemove.tsx index 12c14f33..4d68c53f 100644 --- a/packages/iconoir-react-native/src/ShoppingBagRemove.tsx +++ b/packages/iconoir-react-native/src/ShoppingBagRemove.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagRemove( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingBagRemove = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShoppingBagRemove( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagRemove); +}; +const ForwardRef = forwardRef(SvgShoppingBagRemove); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingCode.tsx b/packages/iconoir-react-native/src/ShoppingCode.tsx index f58be8ba..c99d1290 100644 --- a/packages/iconoir-react-native/src/ShoppingCode.tsx +++ b/packages/iconoir-react-native/src/ShoppingCode.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingCode( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingCode = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShoppingCode( ); -} -const ForwardRef = React.forwardRef(SvgShoppingCode); +}; +const ForwardRef = forwardRef(SvgShoppingCode); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingCodeCheck.tsx b/packages/iconoir-react-native/src/ShoppingCodeCheck.tsx index 4f957d68..7872f3fa 100644 --- a/packages/iconoir-react-native/src/ShoppingCodeCheck.tsx +++ b/packages/iconoir-react-native/src/ShoppingCodeCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingCodeCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingCodeCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShoppingCodeCheck( ); -} -const ForwardRef = React.forwardRef(SvgShoppingCodeCheck); +}; +const ForwardRef = forwardRef(SvgShoppingCodeCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShoppingCodeError.tsx b/packages/iconoir-react-native/src/ShoppingCodeError.tsx index 9629e96b..11387fb3 100644 --- a/packages/iconoir-react-native/src/ShoppingCodeError.tsx +++ b/packages/iconoir-react-native/src/ShoppingCodeError.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingCodeError( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShoppingCodeError = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShoppingCodeError( ); -} -const ForwardRef = React.forwardRef(SvgShoppingCodeError); +}; +const ForwardRef = forwardRef(SvgShoppingCodeError); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShortPants.tsx b/packages/iconoir-react-native/src/ShortPants.tsx index 1ee9b2af..dd764acc 100644 --- a/packages/iconoir-react-native/src/ShortPants.tsx +++ b/packages/iconoir-react-native/src/ShortPants.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShortPants( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShortPants = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,23 @@ function SvgShortPants( ); -} -const ForwardRef = React.forwardRef(SvgShortPants); +}; +const ForwardRef = forwardRef(SvgShortPants); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ShortPantsAlt.tsx b/packages/iconoir-react-native/src/ShortPantsAlt.tsx index cc7a5f40..1d8197e5 100644 --- a/packages/iconoir-react-native/src/ShortPantsAlt.tsx +++ b/packages/iconoir-react-native/src/ShortPantsAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShortPantsAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShortPantsAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgShortPantsAlt( ); -} -const ForwardRef = React.forwardRef(SvgShortPantsAlt); +}; +const ForwardRef = forwardRef(SvgShortPantsAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Shortcut.tsx b/packages/iconoir-react-native/src/Shortcut.tsx index c984907b..2af42706 100644 --- a/packages/iconoir-react-native/src/Shortcut.tsx +++ b/packages/iconoir-react-native/src/Shortcut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShortcut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShortcut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgShortcut( ); -} -const ForwardRef = React.forwardRef(SvgShortcut); +}; +const ForwardRef = forwardRef(SvgShortcut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Shuffle.tsx b/packages/iconoir-react-native/src/Shuffle.tsx index f828a752..71b455b3 100644 --- a/packages/iconoir-react-native/src/Shuffle.tsx +++ b/packages/iconoir-react-native/src/Shuffle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShuffle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgShuffle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgShuffle( ); -} -const ForwardRef = React.forwardRef(SvgShuffle); +}; +const ForwardRef = forwardRef(SvgShuffle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SidebarCollapse.tsx b/packages/iconoir-react-native/src/SidebarCollapse.tsx index cba54be2..76624bab 100644 --- a/packages/iconoir-react-native/src/SidebarCollapse.tsx +++ b/packages/iconoir-react-native/src/SidebarCollapse.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSidebarCollapse( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSidebarCollapse = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgSidebarCollapse( return ( ); -} -const ForwardRef = React.forwardRef(SvgSidebarCollapse); +}; +const ForwardRef = forwardRef(SvgSidebarCollapse); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SidebarExpand.tsx b/packages/iconoir-react-native/src/SidebarExpand.tsx index 543aac48..02934186 100644 --- a/packages/iconoir-react-native/src/SidebarExpand.tsx +++ b/packages/iconoir-react-native/src/SidebarExpand.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSidebarExpand( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSidebarExpand = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,28 +12,28 @@ function SvgSidebarExpand( return ( ); -} -const ForwardRef = React.forwardRef(SvgSidebarExpand); +}; +const ForwardRef = forwardRef(SvgSidebarExpand); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SigmaFunction.tsx b/packages/iconoir-react-native/src/SigmaFunction.tsx index 09b3f9cf..323d3d28 100644 --- a/packages/iconoir-react-native/src/SigmaFunction.tsx +++ b/packages/iconoir-react-native/src/SigmaFunction.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSigmaFunction( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSigmaFunction = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSigmaFunction( ); -} -const ForwardRef = React.forwardRef(SvgSigmaFunction); +}; +const ForwardRef = forwardRef(SvgSigmaFunction); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SimpleCart.tsx b/packages/iconoir-react-native/src/SimpleCart.tsx index 2ea72c8f..2be65f4d 100644 --- a/packages/iconoir-react-native/src/SimpleCart.tsx +++ b/packages/iconoir-react-native/src/SimpleCart.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSimpleCart( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSimpleCart = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSimpleCart( ); -} -const ForwardRef = React.forwardRef(SvgSimpleCart); +}; +const ForwardRef = forwardRef(SvgSimpleCart); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SineWave.tsx b/packages/iconoir-react-native/src/SineWave.tsx index 9a2b74b8..01592439 100644 --- a/packages/iconoir-react-native/src/SineWave.tsx +++ b/packages/iconoir-react-native/src/SineWave.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSineWave( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSineWave = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSineWave( ); -} -const ForwardRef = React.forwardRef(SvgSineWave); +}; +const ForwardRef = forwardRef(SvgSineWave); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SingleTapGesture.tsx b/packages/iconoir-react-native/src/SingleTapGesture.tsx index 8855c615..506f4d5a 100644 --- a/packages/iconoir-react-native/src/SingleTapGesture.tsx +++ b/packages/iconoir-react-native/src/SingleTapGesture.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSingleTapGesture( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSingleTapGesture = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSingleTapGesture( ); -} -const ForwardRef = React.forwardRef(SvgSingleTapGesture); +}; +const ForwardRef = forwardRef(SvgSingleTapGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Skateboard.tsx b/packages/iconoir-react-native/src/Skateboard.tsx index 3bc71540..8620103b 100644 --- a/packages/iconoir-react-native/src/Skateboard.tsx +++ b/packages/iconoir-react-native/src/Skateboard.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSkateboard( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSkateboard = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSkateboard( ); -} -const ForwardRef = React.forwardRef(SvgSkateboard); +}; +const ForwardRef = forwardRef(SvgSkateboard); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Skateboarding.tsx b/packages/iconoir-react-native/src/Skateboarding.tsx index 3e199b1e..45d595e0 100644 --- a/packages/iconoir-react-native/src/Skateboarding.tsx +++ b/packages/iconoir-react-native/src/Skateboarding.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSkateboarding( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSkateboarding = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSkateboarding( ); -} -const ForwardRef = React.forwardRef(SvgSkateboarding); +}; +const ForwardRef = forwardRef(SvgSkateboarding); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SkipNext.tsx b/packages/iconoir-react-native/src/SkipNext.tsx index b41308d7..a1f2a1e2 100644 --- a/packages/iconoir-react-native/src/SkipNext.tsx +++ b/packages/iconoir-react-native/src/SkipNext.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSkipNext( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSkipNext = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSkipNext( ); -} -const ForwardRef = React.forwardRef(SvgSkipNext); +}; +const ForwardRef = forwardRef(SvgSkipNext); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SkipPrev.tsx b/packages/iconoir-react-native/src/SkipPrev.tsx index e34b0808..80915684 100644 --- a/packages/iconoir-react-native/src/SkipPrev.tsx +++ b/packages/iconoir-react-native/src/SkipPrev.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSkipPrev( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSkipPrev = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSkipPrev( ); -} -const ForwardRef = React.forwardRef(SvgSkipPrev); +}; +const ForwardRef = forwardRef(SvgSkipPrev); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Slash.tsx b/packages/iconoir-react-native/src/Slash.tsx index ca357385..d186aca1 100644 --- a/packages/iconoir-react-native/src/Slash.tsx +++ b/packages/iconoir-react-native/src/Slash.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSlash( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSlash = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSlash( ); -} -const ForwardRef = React.forwardRef(SvgSlash); +}; +const ForwardRef = forwardRef(SvgSlash); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SleeperChair.tsx b/packages/iconoir-react-native/src/SleeperChair.tsx index aa4a6de5..ce32bffb 100644 --- a/packages/iconoir-react-native/src/SleeperChair.tsx +++ b/packages/iconoir-react-native/src/SleeperChair.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSleeperChair( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSleeperChair = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSleeperChair( ); -} -const ForwardRef = React.forwardRef(SvgSleeperChair); +}; +const ForwardRef = forwardRef(SvgSleeperChair); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SmallLamp.tsx b/packages/iconoir-react-native/src/SmallLamp.tsx index 4514291e..a0ed92db 100644 --- a/packages/iconoir-react-native/src/SmallLamp.tsx +++ b/packages/iconoir-react-native/src/SmallLamp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmallLamp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSmallLamp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSmallLamp( ); -} -const ForwardRef = React.forwardRef(SvgSmallLamp); +}; +const ForwardRef = forwardRef(SvgSmallLamp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SmallLampAlt.tsx b/packages/iconoir-react-native/src/SmallLampAlt.tsx index c39dd565..b564d7ec 100644 --- a/packages/iconoir-react-native/src/SmallLampAlt.tsx +++ b/packages/iconoir-react-native/src/SmallLampAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmallLampAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSmallLampAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSmallLampAlt( ); -} -const ForwardRef = React.forwardRef(SvgSmallLampAlt); +}; +const ForwardRef = forwardRef(SvgSmallLampAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SmallShop.tsx b/packages/iconoir-react-native/src/SmallShop.tsx index 52029770..f5a7a8e9 100644 --- a/packages/iconoir-react-native/src/SmallShop.tsx +++ b/packages/iconoir-react-native/src/SmallShop.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmallShop( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSmallShop = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,31 @@ function SvgSmallShop( + - ); -} -const ForwardRef = React.forwardRef(SvgSmallShop); +}; +const ForwardRef = forwardRef(SvgSmallShop); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SmallShopAlt.tsx b/packages/iconoir-react-native/src/SmallShopAlt.tsx index 9d4a5094..b8bab3f1 100644 --- a/packages/iconoir-react-native/src/SmallShopAlt.tsx +++ b/packages/iconoir-react-native/src/SmallShopAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmallShopAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSmallShopAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,36 @@ function SvgSmallShopAlt( - + ); -} -const ForwardRef = React.forwardRef(SvgSmallShopAlt); +}; +const ForwardRef = forwardRef(SvgSmallShopAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SmartphoneDevice.tsx b/packages/iconoir-react-native/src/SmartphoneDevice.tsx index 8a042e58..2e7699a8 100644 --- a/packages/iconoir-react-native/src/SmartphoneDevice.tsx +++ b/packages/iconoir-react-native/src/SmartphoneDevice.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmartphoneDevice( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSmartphoneDevice = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgSmartphoneDevice( ); -} -const ForwardRef = React.forwardRef(SvgSmartphoneDevice); +}; +const ForwardRef = forwardRef(SvgSmartphoneDevice); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Smoking.tsx b/packages/iconoir-react-native/src/Smoking.tsx index 98564202..5610c3b0 100644 --- a/packages/iconoir-react-native/src/Smoking.tsx +++ b/packages/iconoir-react-native/src/Smoking.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path, Rect } from "react-native-svg"; +import Svg, { Path, Rect } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmoking( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSmoking = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgSmoking( - + ); -} -const ForwardRef = React.forwardRef(SvgSmoking); +}; +const ForwardRef = forwardRef(SvgSmoking); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Snapchat.tsx b/packages/iconoir-react-native/src/Snapchat.tsx index 5be5f918..87d01bc0 100644 --- a/packages/iconoir-react-native/src/Snapchat.tsx +++ b/packages/iconoir-react-native/src/Snapchat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSnapchat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSnapchat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,22 +13,22 @@ function SvgSnapchat( ); -} -const ForwardRef = React.forwardRef(SvgSnapchat); +}; +const ForwardRef = forwardRef(SvgSnapchat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Snow.tsx b/packages/iconoir-react-native/src/Snow.tsx index 8ba6c395..23bd084d 100644 --- a/packages/iconoir-react-native/src/Snow.tsx +++ b/packages/iconoir-react-native/src/Snow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSnow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSnow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSnow( ); -} -const ForwardRef = React.forwardRef(SvgSnow); +}; +const ForwardRef = forwardRef(SvgSnow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SnowFlake.tsx b/packages/iconoir-react-native/src/SnowFlake.tsx index 4dc161e9..dcd5e12a 100644 --- a/packages/iconoir-react-native/src/SnowFlake.tsx +++ b/packages/iconoir-react-native/src/SnowFlake.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSnowFlake( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSnowFlake = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSnowFlake( ); -} -const ForwardRef = React.forwardRef(SvgSnowFlake); +}; +const ForwardRef = forwardRef(SvgSnowFlake); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Soap.tsx b/packages/iconoir-react-native/src/Soap.tsx index 2caf26cc..3bff6b5f 100644 --- a/packages/iconoir-react-native/src/Soap.tsx +++ b/packages/iconoir-react-native/src/Soap.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoap( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSoap = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgSoap( ); -} -const ForwardRef = React.forwardRef(SvgSoap); +}; +const ForwardRef = forwardRef(SvgSoap); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SoccerBall.tsx b/packages/iconoir-react-native/src/SoccerBall.tsx index 5b77923d..4015883f 100644 --- a/packages/iconoir-react-native/src/SoccerBall.tsx +++ b/packages/iconoir-react-native/src/SoccerBall.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoccerBall( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSoccerBall = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSoccerBall( ); -} -const ForwardRef = React.forwardRef(SvgSoccerBall); +}; +const ForwardRef = forwardRef(SvgSoccerBall); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Sofa.tsx b/packages/iconoir-react-native/src/Sofa.tsx index c4f7ce8d..5880754f 100644 --- a/packages/iconoir-react-native/src/Sofa.tsx +++ b/packages/iconoir-react-native/src/Sofa.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSofa( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSofa = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSofa( ); -} -const ForwardRef = React.forwardRef(SvgSofa); +}; +const ForwardRef = forwardRef(SvgSofa); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Soil.tsx b/packages/iconoir-react-native/src/Soil.tsx index 306a309a..9dc3c137 100644 --- a/packages/iconoir-react-native/src/Soil.tsx +++ b/packages/iconoir-react-native/src/Soil.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoil( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSoil = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSoil( ); -} -const ForwardRef = React.forwardRef(SvgSoil); +}; +const ForwardRef = forwardRef(SvgSoil); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SoilAlt.tsx b/packages/iconoir-react-native/src/SoilAlt.tsx index ce3bd5a0..3c7dbf7a 100644 --- a/packages/iconoir-react-native/src/SoilAlt.tsx +++ b/packages/iconoir-react-native/src/SoilAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoilAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSoilAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSoilAlt( ); -} -const ForwardRef = React.forwardRef(SvgSoilAlt); +}; +const ForwardRef = forwardRef(SvgSoilAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Sort.tsx b/packages/iconoir-react-native/src/Sort.tsx index 79088965..afa487ab 100644 --- a/packages/iconoir-react-native/src/Sort.tsx +++ b/packages/iconoir-react-native/src/Sort.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSort( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSort = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSort( ); -} -const ForwardRef = React.forwardRef(SvgSort); +}; +const ForwardRef = forwardRef(SvgSort); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SortDown.tsx b/packages/iconoir-react-native/src/SortDown.tsx index b0beebb1..04d74f01 100644 --- a/packages/iconoir-react-native/src/SortDown.tsx +++ b/packages/iconoir-react-native/src/SortDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSortDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSortDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSortDown( ); -} -const ForwardRef = React.forwardRef(SvgSortDown); +}; +const ForwardRef = forwardRef(SvgSortDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SortUp.tsx b/packages/iconoir-react-native/src/SortUp.tsx index b82cfd37..bdbde4c2 100644 --- a/packages/iconoir-react-native/src/SortUp.tsx +++ b/packages/iconoir-react-native/src/SortUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSortUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSortUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSortUp( ); -} -const ForwardRef = React.forwardRef(SvgSortUp); +}; +const ForwardRef = forwardRef(SvgSortUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SoundHigh.tsx b/packages/iconoir-react-native/src/SoundHigh.tsx index 9a39836d..eae4777c 100644 --- a/packages/iconoir-react-native/src/SoundHigh.tsx +++ b/packages/iconoir-react-native/src/SoundHigh.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoundHigh( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSoundHigh = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgSoundHigh( ); -} -const ForwardRef = React.forwardRef(SvgSoundHigh); +}; +const ForwardRef = forwardRef(SvgSoundHigh); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SoundLow.tsx b/packages/iconoir-react-native/src/SoundLow.tsx index 211550c2..7e9eff7a 100644 --- a/packages/iconoir-react-native/src/SoundLow.tsx +++ b/packages/iconoir-react-native/src/SoundLow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoundLow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSoundLow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgSoundLow( ); -} -const ForwardRef = React.forwardRef(SvgSoundLow); +}; +const ForwardRef = forwardRef(SvgSoundLow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SoundMin.tsx b/packages/iconoir-react-native/src/SoundMin.tsx index 861d26bc..697bc08b 100644 --- a/packages/iconoir-react-native/src/SoundMin.tsx +++ b/packages/iconoir-react-native/src/SoundMin.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoundMin( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSoundMin = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgSoundMin( - + ); -} -const ForwardRef = React.forwardRef(SvgSoundMin); +}; +const ForwardRef = forwardRef(SvgSoundMin); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SoundOff.tsx b/packages/iconoir-react-native/src/SoundOff.tsx index 707310bd..0a5dcd60 100644 --- a/packages/iconoir-react-native/src/SoundOff.tsx +++ b/packages/iconoir-react-native/src/SoundOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoundOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSoundOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgSoundOff( - + - + - + ); -} -const ForwardRef = React.forwardRef(SvgSoundOff); +}; +const ForwardRef = forwardRef(SvgSoundOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Spades.tsx b/packages/iconoir-react-native/src/Spades.tsx index 52f73869..f7c16858 100644 --- a/packages/iconoir-react-native/src/Spades.tsx +++ b/packages/iconoir-react-native/src/Spades.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSpades( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSpades = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgSpades( ); -} -const ForwardRef = React.forwardRef(SvgSpades); +}; +const ForwardRef = forwardRef(SvgSpades); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Spark.tsx b/packages/iconoir-react-native/src/Spark.tsx index e963d271..e976f65e 100644 --- a/packages/iconoir-react-native/src/Spark.tsx +++ b/packages/iconoir-react-native/src/Spark.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSpark( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSpark = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgSpark( ); -} -const ForwardRef = React.forwardRef(SvgSpark); +}; +const ForwardRef = forwardRef(SvgSpark); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Sparks.tsx b/packages/iconoir-react-native/src/Sparks.tsx index 7b7b3b42..0990b3c4 100644 --- a/packages/iconoir-react-native/src/Sparks.tsx +++ b/packages/iconoir-react-native/src/Sparks.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSparks( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSparks = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,20 +13,20 @@ function SvgSparks( ); -} -const ForwardRef = React.forwardRef(SvgSparks); +}; +const ForwardRef = forwardRef(SvgSparks); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Sphere.tsx b/packages/iconoir-react-native/src/Sphere.tsx index d216e407..6809cb41 100644 --- a/packages/iconoir-react-native/src/Sphere.tsx +++ b/packages/iconoir-react-native/src/Sphere.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSphere( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSphere = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSphere( ); -} -const ForwardRef = React.forwardRef(SvgSphere); +}; +const ForwardRef = forwardRef(SvgSphere); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Spiral.tsx b/packages/iconoir-react-native/src/Spiral.tsx index ef1f2c65..c3baa3a7 100644 --- a/packages/iconoir-react-native/src/Spiral.tsx +++ b/packages/iconoir-react-native/src/Spiral.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSpiral( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSpiral = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSpiral( ); -} -const ForwardRef = React.forwardRef(SvgSpiral); +}; +const ForwardRef = forwardRef(SvgSpiral); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SpockHandGesture.tsx b/packages/iconoir-react-native/src/SpockHandGesture.tsx index e8095216..da1d5ca4 100644 --- a/packages/iconoir-react-native/src/SpockHandGesture.tsx +++ b/packages/iconoir-react-native/src/SpockHandGesture.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSpockHandGesture( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSpockHandGesture = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSpockHandGesture( ); -} -const ForwardRef = React.forwardRef(SvgSpockHandGesture); +}; +const ForwardRef = forwardRef(SvgSpockHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Spotify.tsx b/packages/iconoir-react-native/src/Spotify.tsx index 95caf9e4..b6984e1d 100644 --- a/packages/iconoir-react-native/src/Spotify.tsx +++ b/packages/iconoir-react-native/src/Spotify.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSpotify( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSpotify = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSpotify( ); -} -const ForwardRef = React.forwardRef(SvgSpotify); +}; +const ForwardRef = forwardRef(SvgSpotify); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Square.tsx b/packages/iconoir-react-native/src/Square.tsx index 3fa8f5f4..f15bdcc8 100644 --- a/packages/iconoir-react-native/src/Square.tsx +++ b/packages/iconoir-react-native/src/Square.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSquare( ); -} -const ForwardRef = React.forwardRef(SvgSquare); +}; +const ForwardRef = forwardRef(SvgSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SquareCursor.tsx b/packages/iconoir-react-native/src/SquareCursor.tsx index 771a9bec..fe869bb6 100644 --- a/packages/iconoir-react-native/src/SquareCursor.tsx +++ b/packages/iconoir-react-native/src/SquareCursor.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSquareCursor( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSquareCursor = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,24 +13,24 @@ function SvgSquareCursor( ); -} -const ForwardRef = React.forwardRef(SvgSquareCursor); +}; +const ForwardRef = forwardRef(SvgSquareCursor); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SquareWave.tsx b/packages/iconoir-react-native/src/SquareWave.tsx index f87c6795..9a35c6a5 100644 --- a/packages/iconoir-react-native/src/SquareWave.tsx +++ b/packages/iconoir-react-native/src/SquareWave.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSquareWave( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSquareWave = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSquareWave( ); -} -const ForwardRef = React.forwardRef(SvgSquareWave); +}; +const ForwardRef = forwardRef(SvgSquareWave); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Stackoverflow.tsx b/packages/iconoir-react-native/src/Stackoverflow.tsx index d3bb3816..efff37da 100644 --- a/packages/iconoir-react-native/src/Stackoverflow.tsx +++ b/packages/iconoir-react-native/src/Stackoverflow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStackoverflow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStackoverflow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgStackoverflow( ); -} -const ForwardRef = React.forwardRef(SvgStackoverflow); +}; +const ForwardRef = forwardRef(SvgStackoverflow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Star.tsx b/packages/iconoir-react-native/src/Star.tsx index b1bfa30d..74c4a5bc 100644 --- a/packages/iconoir-react-native/src/Star.tsx +++ b/packages/iconoir-react-native/src/Star.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgStar( ); -} -const ForwardRef = React.forwardRef(SvgStar); +}; +const ForwardRef = forwardRef(SvgStar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/StarDashed.tsx b/packages/iconoir-react-native/src/StarDashed.tsx index ded37b94..cdefca44 100644 --- a/packages/iconoir-react-native/src/StarDashed.tsx +++ b/packages/iconoir-react-native/src/StarDashed.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStarDashed( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStarDashed = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgStarDashed( ); -} -const ForwardRef = React.forwardRef(SvgStarDashed); +}; +const ForwardRef = forwardRef(SvgStarDashed); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/StarHalfDashed.tsx b/packages/iconoir-react-native/src/StarHalfDashed.tsx index c1f34e53..15d8fdf3 100644 --- a/packages/iconoir-react-native/src/StarHalfDashed.tsx +++ b/packages/iconoir-react-native/src/StarHalfDashed.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStarHalfDashed( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStarHalfDashed = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgStarHalfDashed( ); -} -const ForwardRef = React.forwardRef(SvgStarHalfDashed); +}; +const ForwardRef = forwardRef(SvgStarHalfDashed); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/StatDown.tsx b/packages/iconoir-react-native/src/StatDown.tsx index afb50e17..4d153e5b 100644 --- a/packages/iconoir-react-native/src/StatDown.tsx +++ b/packages/iconoir-react-native/src/StatDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStatDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStatDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgStatDown( ); -} -const ForwardRef = React.forwardRef(SvgStatDown); +}; +const ForwardRef = forwardRef(SvgStatDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/StatUp.tsx b/packages/iconoir-react-native/src/StatUp.tsx index 936d4afa..ade8bb0f 100644 --- a/packages/iconoir-react-native/src/StatUp.tsx +++ b/packages/iconoir-react-native/src/StatUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStatUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStatUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgStatUp( ); -} -const ForwardRef = React.forwardRef(SvgStatUp); +}; +const ForwardRef = forwardRef(SvgStatUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/StatsDownSquare.tsx b/packages/iconoir-react-native/src/StatsDownSquare.tsx index 35642400..1b60ce5f 100644 --- a/packages/iconoir-react-native/src/StatsDownSquare.tsx +++ b/packages/iconoir-react-native/src/StatsDownSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStatsDownSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStatsDownSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgStatsDownSquare( ); -} -const ForwardRef = React.forwardRef(SvgStatsDownSquare); +}; +const ForwardRef = forwardRef(SvgStatsDownSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/StatsReport.tsx b/packages/iconoir-react-native/src/StatsReport.tsx index 24412228..c5132cd7 100644 --- a/packages/iconoir-react-native/src/StatsReport.tsx +++ b/packages/iconoir-react-native/src/StatsReport.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStatsReport( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStatsReport = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgStatsReport( ); -} -const ForwardRef = React.forwardRef(SvgStatsReport); +}; +const ForwardRef = forwardRef(SvgStatsReport); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/StatsUpSquare.tsx b/packages/iconoir-react-native/src/StatsUpSquare.tsx index 7b20d537..09b8e418 100644 --- a/packages/iconoir-react-native/src/StatsUpSquare.tsx +++ b/packages/iconoir-react-native/src/StatsUpSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStatsUpSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStatsUpSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgStatsUpSquare( ); -} -const ForwardRef = React.forwardRef(SvgStatsUpSquare); +}; +const ForwardRef = forwardRef(SvgStatsUpSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Strategy.tsx b/packages/iconoir-react-native/src/Strategy.tsx index 9890845e..700697f0 100644 --- a/packages/iconoir-react-native/src/Strategy.tsx +++ b/packages/iconoir-react-native/src/Strategy.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStrategy( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStrategy = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgStrategy( + ); -} -const ForwardRef = React.forwardRef(SvgStrategy); +}; +const ForwardRef = forwardRef(SvgStrategy); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Stretching.tsx b/packages/iconoir-react-native/src/Stretching.tsx index 83257ade..8fd11b93 100644 --- a/packages/iconoir-react-native/src/Stretching.tsx +++ b/packages/iconoir-react-native/src/Stretching.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStretching( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStretching = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgStretching( ); -} -const ForwardRef = React.forwardRef(SvgStretching); +}; +const ForwardRef = forwardRef(SvgStretching); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Strikethrough.tsx b/packages/iconoir-react-native/src/Strikethrough.tsx index fb5b18b9..65032a41 100644 --- a/packages/iconoir-react-native/src/Strikethrough.tsx +++ b/packages/iconoir-react-native/src/Strikethrough.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStrikethrough( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStrikethrough = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgStrikethrough( ); -} -const ForwardRef = React.forwardRef(SvgStrikethrough); +}; +const ForwardRef = forwardRef(SvgStrikethrough); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Stroller.tsx b/packages/iconoir-react-native/src/Stroller.tsx index 2e7870f1..32199ec5 100644 --- a/packages/iconoir-react-native/src/Stroller.tsx +++ b/packages/iconoir-react-native/src/Stroller.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStroller( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStroller = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgStroller( - + - + ); -} -const ForwardRef = React.forwardRef(SvgStroller); +}; +const ForwardRef = forwardRef(SvgStroller); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/StyleBorder.tsx b/packages/iconoir-react-native/src/StyleBorder.tsx index f98ac748..11da15c5 100644 --- a/packages/iconoir-react-native/src/StyleBorder.tsx +++ b/packages/iconoir-react-native/src/StyleBorder.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStyleBorder( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgStyleBorder = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,30 +13,30 @@ function SvgStyleBorder( ); -} -const ForwardRef = React.forwardRef(SvgStyleBorder); +}; +const ForwardRef = forwardRef(SvgStyleBorder); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SubmitDocument.tsx b/packages/iconoir-react-native/src/SubmitDocument.tsx index 499a1f48..1eb95d5a 100644 --- a/packages/iconoir-react-native/src/SubmitDocument.tsx +++ b/packages/iconoir-react-native/src/SubmitDocument.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSubmitDocument( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSubmitDocument = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSubmitDocument( ); -} -const ForwardRef = React.forwardRef(SvgSubmitDocument); +}; +const ForwardRef = forwardRef(SvgSubmitDocument); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Substract.tsx b/packages/iconoir-react-native/src/Substract.tsx index cc598196..a79daa56 100644 --- a/packages/iconoir-react-native/src/Substract.tsx +++ b/packages/iconoir-react-native/src/Substract.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSubstract( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSubstract = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgSubstract( ); -} -const ForwardRef = React.forwardRef(SvgSubstract); +}; +const ForwardRef = forwardRef(SvgSubstract); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Suggestion.tsx b/packages/iconoir-react-native/src/Suggestion.tsx index ce2da823..99f40cd6 100644 --- a/packages/iconoir-react-native/src/Suggestion.tsx +++ b/packages/iconoir-react-native/src/Suggestion.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSuggestion( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSuggestion = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgSuggestion( ); -} -const ForwardRef = React.forwardRef(SvgSuggestion); +}; +const ForwardRef = forwardRef(SvgSuggestion); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SunLight.tsx b/packages/iconoir-react-native/src/SunLight.tsx index 0ac83d94..57e9129d 100644 --- a/packages/iconoir-react-native/src/SunLight.tsx +++ b/packages/iconoir-react-native/src/SunLight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSunLight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSunLight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSunLight( ); -} -const ForwardRef = React.forwardRef(SvgSunLight); +}; +const ForwardRef = forwardRef(SvgSunLight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SvgFormat.tsx b/packages/iconoir-react-native/src/SvgFormat.tsx index c465e773..71867c7d 100644 --- a/packages/iconoir-react-native/src/SvgFormat.tsx +++ b/packages/iconoir-react-native/src/SvgFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSvgFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSvgFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgSvgFormat( ); -} -const ForwardRef = React.forwardRef(SvgSvgFormat); +}; +const ForwardRef = forwardRef(SvgSvgFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Sweep3D.tsx b/packages/iconoir-react-native/src/Sweep3D.tsx index 8fbaa2d5..f794034d 100644 --- a/packages/iconoir-react-native/src/Sweep3D.tsx +++ b/packages/iconoir-react-native/src/Sweep3D.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSweep3D( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSweep3D = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSweep3D( ); -} -const ForwardRef = React.forwardRef(SvgSweep3D); +}; +const ForwardRef = forwardRef(SvgSweep3D); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Swimming.tsx b/packages/iconoir-react-native/src/Swimming.tsx index c64bf28b..62e764f2 100644 --- a/packages/iconoir-react-native/src/Swimming.tsx +++ b/packages/iconoir-react-native/src/Swimming.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwimming( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSwimming = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSwimming( ); -} -const ForwardRef = React.forwardRef(SvgSwimming); +}; +const ForwardRef = forwardRef(SvgSwimming); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SwipeDownGesture.tsx b/packages/iconoir-react-native/src/SwipeDownGesture.tsx index 26f549ec..99ff45cc 100644 --- a/packages/iconoir-react-native/src/SwipeDownGesture.tsx +++ b/packages/iconoir-react-native/src/SwipeDownGesture.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeDownGesture( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSwipeDownGesture = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSwipeDownGesture( ); -} -const ForwardRef = React.forwardRef(SvgSwipeDownGesture); +}; +const ForwardRef = forwardRef(SvgSwipeDownGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SwipeLeftGesture.tsx b/packages/iconoir-react-native/src/SwipeLeftGesture.tsx index 93863a07..a4703160 100644 --- a/packages/iconoir-react-native/src/SwipeLeftGesture.tsx +++ b/packages/iconoir-react-native/src/SwipeLeftGesture.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeLeftGesture( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSwipeLeftGesture = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSwipeLeftGesture( ); -} -const ForwardRef = React.forwardRef(SvgSwipeLeftGesture); +}; +const ForwardRef = forwardRef(SvgSwipeLeftGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SwipeRightGesture.tsx b/packages/iconoir-react-native/src/SwipeRightGesture.tsx index ca2b7b14..648f2a98 100644 --- a/packages/iconoir-react-native/src/SwipeRightGesture.tsx +++ b/packages/iconoir-react-native/src/SwipeRightGesture.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeRightGesture( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSwipeRightGesture = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSwipeRightGesture( ); -} -const ForwardRef = React.forwardRef(SvgSwipeRightGesture); +}; +const ForwardRef = forwardRef(SvgSwipeRightGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SwipeTwoFingersDownGesture.tsx b/packages/iconoir-react-native/src/SwipeTwoFingersDownGesture.tsx index 06d435df..3d9fa8aa 100644 --- a/packages/iconoir-react-native/src/SwipeTwoFingersDownGesture.tsx +++ b/packages/iconoir-react-native/src/SwipeTwoFingersDownGesture.tsx @@ -1,10 +1,12 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeTwoFingersDownGesture( +const SvgSwipeTwoFingersDownGesture = ( passedProps: SvgProps, - svgRef?: React.Ref> -) { + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +16,21 @@ function SvgSwipeTwoFingersDownGesture( ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersDownGesture); +}; +const ForwardRef = forwardRef(SvgSwipeTwoFingersDownGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SwipeTwoFingersLeftGesture.tsx b/packages/iconoir-react-native/src/SwipeTwoFingersLeftGesture.tsx index 09e75341..9e8bd7b3 100644 --- a/packages/iconoir-react-native/src/SwipeTwoFingersLeftGesture.tsx +++ b/packages/iconoir-react-native/src/SwipeTwoFingersLeftGesture.tsx @@ -1,10 +1,12 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeTwoFingersLeftGesture( +const SvgSwipeTwoFingersLeftGesture = ( passedProps: SvgProps, - svgRef?: React.Ref> -) { + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +16,21 @@ function SvgSwipeTwoFingersLeftGesture( ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersLeftGesture); +}; +const ForwardRef = forwardRef(SvgSwipeTwoFingersLeftGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SwipeTwoFingersRightGesture.tsx b/packages/iconoir-react-native/src/SwipeTwoFingersRightGesture.tsx index b426ed8d..06ed6b4d 100644 --- a/packages/iconoir-react-native/src/SwipeTwoFingersRightGesture.tsx +++ b/packages/iconoir-react-native/src/SwipeTwoFingersRightGesture.tsx @@ -1,10 +1,12 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeTwoFingersRightGesture( +const SvgSwipeTwoFingersRightGesture = ( passedProps: SvgProps, - svgRef?: React.Ref> -) { + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +16,21 @@ function SvgSwipeTwoFingersRightGesture( ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersRightGesture); +}; +const ForwardRef = forwardRef(SvgSwipeTwoFingersRightGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SwipeTwoFingersUpGesture.tsx b/packages/iconoir-react-native/src/SwipeTwoFingersUpGesture.tsx index 58723251..721f9785 100644 --- a/packages/iconoir-react-native/src/SwipeTwoFingersUpGesture.tsx +++ b/packages/iconoir-react-native/src/SwipeTwoFingersUpGesture.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeTwoFingersUpGesture( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSwipeTwoFingersUpGesture = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSwipeTwoFingersUpGesture( ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersUpGesture); +}; +const ForwardRef = forwardRef(SvgSwipeTwoFingersUpGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SwipeUpGesture.tsx b/packages/iconoir-react-native/src/SwipeUpGesture.tsx index bb0e3547..2c543d83 100644 --- a/packages/iconoir-react-native/src/SwipeUpGesture.tsx +++ b/packages/iconoir-react-native/src/SwipeUpGesture.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeUpGesture( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSwipeUpGesture = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSwipeUpGesture( ); -} -const ForwardRef = React.forwardRef(SvgSwipeUpGesture); +}; +const ForwardRef = forwardRef(SvgSwipeUpGesture); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SwitchOff.tsx b/packages/iconoir-react-native/src/SwitchOff.tsx index 08161b99..1737499d 100644 --- a/packages/iconoir-react-native/src/SwitchOff.tsx +++ b/packages/iconoir-react-native/src/SwitchOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwitchOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSwitchOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,26 @@ function SvgSwitchOff( + - ); -} -const ForwardRef = React.forwardRef(SvgSwitchOff); +}; +const ForwardRef = forwardRef(SvgSwitchOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SwitchOn.tsx b/packages/iconoir-react-native/src/SwitchOn.tsx index 2fbf9a83..46436dea 100644 --- a/packages/iconoir-react-native/src/SwitchOn.tsx +++ b/packages/iconoir-react-native/src/SwitchOn.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwitchOn( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSwitchOn = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,23 +13,26 @@ function SvgSwitchOn( + - ); -} -const ForwardRef = React.forwardRef(SvgSwitchOn); +}; +const ForwardRef = forwardRef(SvgSwitchOn); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SystemRestart.tsx b/packages/iconoir-react-native/src/SystemRestart.tsx index cddfe79d..32d7b73b 100644 --- a/packages/iconoir-react-native/src/SystemRestart.tsx +++ b/packages/iconoir-react-native/src/SystemRestart.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSystemRestart( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSystemRestart = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSystemRestart( ); -} -const ForwardRef = React.forwardRef(SvgSystemRestart); +}; +const ForwardRef = forwardRef(SvgSystemRestart); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/SystemShut.tsx b/packages/iconoir-react-native/src/SystemShut.tsx index df11ef41..f9b43e01 100644 --- a/packages/iconoir-react-native/src/SystemShut.tsx +++ b/packages/iconoir-react-native/src/SystemShut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSystemShut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgSystemShut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgSystemShut( ); -} -const ForwardRef = React.forwardRef(SvgSystemShut); +}; +const ForwardRef = forwardRef(SvgSystemShut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TShirt.tsx b/packages/iconoir-react-native/src/TShirt.tsx index d6bae2de..26996beb 100644 --- a/packages/iconoir-react-native/src/TShirt.tsx +++ b/packages/iconoir-react-native/src/TShirt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTShirt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTShirt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTShirt( ); -} -const ForwardRef = React.forwardRef(SvgTShirt); +}; +const ForwardRef = forwardRef(SvgTShirt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Table.tsx b/packages/iconoir-react-native/src/Table.tsx index c7e071ba..c176fdfc 100644 --- a/packages/iconoir-react-native/src/Table.tsx +++ b/packages/iconoir-react-native/src/Table.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTable( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTable = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTable( ); -} -const ForwardRef = React.forwardRef(SvgTable); +}; +const ForwardRef = forwardRef(SvgTable); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Table2Columns.tsx b/packages/iconoir-react-native/src/Table2Columns.tsx index 692ecf0d..9043a14e 100644 --- a/packages/iconoir-react-native/src/Table2Columns.tsx +++ b/packages/iconoir-react-native/src/Table2Columns.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTable2Columns( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTable2Columns = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgTable2Columns( ); -} -const ForwardRef = React.forwardRef(SvgTable2Columns); +}; +const ForwardRef = forwardRef(SvgTable2Columns); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TableRows.tsx b/packages/iconoir-react-native/src/TableRows.tsx index 6f567fbe..08b933bd 100644 --- a/packages/iconoir-react-native/src/TableRows.tsx +++ b/packages/iconoir-react-native/src/TableRows.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTableRows( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTableRows = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgTableRows( ); -} -const ForwardRef = React.forwardRef(SvgTableRows); +}; +const ForwardRef = forwardRef(SvgTableRows); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TaskList.tsx b/packages/iconoir-react-native/src/TaskList.tsx index ab2fa873..57a2efa6 100644 --- a/packages/iconoir-react-native/src/TaskList.tsx +++ b/packages/iconoir-react-native/src/TaskList.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTaskList( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTaskList = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,22 +12,22 @@ function SvgTaskList( return ( ); -} -const ForwardRef = React.forwardRef(SvgTaskList); +}; +const ForwardRef = forwardRef(SvgTaskList); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Telegram.tsx b/packages/iconoir-react-native/src/Telegram.tsx index c167c7e0..0c2fc2df 100644 --- a/packages/iconoir-react-native/src/Telegram.tsx +++ b/packages/iconoir-react-native/src/Telegram.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTelegram( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTelegram = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTelegram( ); -} -const ForwardRef = React.forwardRef(SvgTelegram); +}; +const ForwardRef = forwardRef(SvgTelegram); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TelegramCircle.tsx b/packages/iconoir-react-native/src/TelegramCircle.tsx index c5a2efd8..ab026c03 100644 --- a/packages/iconoir-react-native/src/TelegramCircle.tsx +++ b/packages/iconoir-react-native/src/TelegramCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTelegramCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTelegramCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTelegramCircle( ); -} -const ForwardRef = React.forwardRef(SvgTelegramCircle); +}; +const ForwardRef = forwardRef(SvgTelegramCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TemperatureDown.tsx b/packages/iconoir-react-native/src/TemperatureDown.tsx index fb13257f..36f82bed 100644 --- a/packages/iconoir-react-native/src/TemperatureDown.tsx +++ b/packages/iconoir-react-native/src/TemperatureDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTemperatureDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTemperatureDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTemperatureDown( ); -} -const ForwardRef = React.forwardRef(SvgTemperatureDown); +}; +const ForwardRef = forwardRef(SvgTemperatureDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TemperatureHigh.tsx b/packages/iconoir-react-native/src/TemperatureHigh.tsx index 2e8973da..f829fa3e 100644 --- a/packages/iconoir-react-native/src/TemperatureHigh.tsx +++ b/packages/iconoir-react-native/src/TemperatureHigh.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTemperatureHigh( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTemperatureHigh = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTemperatureHigh( ); -} -const ForwardRef = React.forwardRef(SvgTemperatureHigh); +}; +const ForwardRef = forwardRef(SvgTemperatureHigh); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TemperatureLow.tsx b/packages/iconoir-react-native/src/TemperatureLow.tsx index 480eca05..ed5bfd73 100644 --- a/packages/iconoir-react-native/src/TemperatureLow.tsx +++ b/packages/iconoir-react-native/src/TemperatureLow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTemperatureLow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTemperatureLow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTemperatureLow( ); -} -const ForwardRef = React.forwardRef(SvgTemperatureLow); +}; +const ForwardRef = forwardRef(SvgTemperatureLow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TemperatureUp.tsx b/packages/iconoir-react-native/src/TemperatureUp.tsx index b4a267c2..649dffdb 100644 --- a/packages/iconoir-react-native/src/TemperatureUp.tsx +++ b/packages/iconoir-react-native/src/TemperatureUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTemperatureUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTemperatureUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTemperatureUp( ); -} -const ForwardRef = React.forwardRef(SvgTemperatureUp); +}; +const ForwardRef = forwardRef(SvgTemperatureUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TennisBall.tsx b/packages/iconoir-react-native/src/TennisBall.tsx index 84db7364..bbd732e9 100644 --- a/packages/iconoir-react-native/src/TennisBall.tsx +++ b/packages/iconoir-react-native/src/TennisBall.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTennisBall( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTennisBall = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgTennisBall( + ); -} -const ForwardRef = React.forwardRef(SvgTennisBall); +}; +const ForwardRef = forwardRef(SvgTennisBall); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TennisBallAlt.tsx b/packages/iconoir-react-native/src/TennisBallAlt.tsx index 1e591a05..80a0d04e 100644 --- a/packages/iconoir-react-native/src/TennisBallAlt.tsx +++ b/packages/iconoir-react-native/src/TennisBallAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTennisBallAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTennisBallAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgTennisBallAlt( + ); -} -const ForwardRef = React.forwardRef(SvgTennisBallAlt); +}; +const ForwardRef = forwardRef(SvgTennisBallAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Terminal.tsx b/packages/iconoir-react-native/src/Terminal.tsx index a8df91b1..5d9a5939 100644 --- a/packages/iconoir-react-native/src/Terminal.tsx +++ b/packages/iconoir-react-native/src/Terminal.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTerminal( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTerminal = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTerminal( ); -} -const ForwardRef = React.forwardRef(SvgTerminal); +}; +const ForwardRef = forwardRef(SvgTerminal); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TerminalTag.tsx b/packages/iconoir-react-native/src/TerminalTag.tsx index 00b9c4a8..de9bf477 100644 --- a/packages/iconoir-react-native/src/TerminalTag.tsx +++ b/packages/iconoir-react-native/src/TerminalTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTerminalTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTerminalTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTerminalTag( ); -} -const ForwardRef = React.forwardRef(SvgTerminalTag); +}; +const ForwardRef = forwardRef(SvgTerminalTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TestTube.tsx b/packages/iconoir-react-native/src/TestTube.tsx index f23fed4a..091d2f1a 100644 --- a/packages/iconoir-react-native/src/TestTube.tsx +++ b/packages/iconoir-react-native/src/TestTube.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTestTube( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTestTube = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,22 +12,28 @@ function SvgTestTube( return ( + ); -} -const ForwardRef = React.forwardRef(SvgTestTube); +}; +const ForwardRef = forwardRef(SvgTestTube); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Text.tsx b/packages/iconoir-react-native/src/Text.tsx index a42c4e57..d9d91721 100644 --- a/packages/iconoir-react-native/src/Text.tsx +++ b/packages/iconoir-react-native/src/Text.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgText( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgText = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgText( ); -} -const ForwardRef = React.forwardRef(SvgText); +}; +const ForwardRef = forwardRef(SvgText); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TextAlt.tsx b/packages/iconoir-react-native/src/TextAlt.tsx index 5fb3525c..722aec71 100644 --- a/packages/iconoir-react-native/src/TextAlt.tsx +++ b/packages/iconoir-react-native/src/TextAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTextAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTextAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTextAlt( ); -} -const ForwardRef = React.forwardRef(SvgTextAlt); +}; +const ForwardRef = forwardRef(SvgTextAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TextBox.tsx b/packages/iconoir-react-native/src/TextBox.tsx index 45cf93eb..8403790d 100644 --- a/packages/iconoir-react-native/src/TextBox.tsx +++ b/packages/iconoir-react-native/src/TextBox.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTextBox( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTextBox = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgTextBox( ); -} -const ForwardRef = React.forwardRef(SvgTextBox); +}; +const ForwardRef = forwardRef(SvgTextBox); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TextSize.tsx b/packages/iconoir-react-native/src/TextSize.tsx index de1e19e2..1c0278d2 100644 --- a/packages/iconoir-react-native/src/TextSize.tsx +++ b/packages/iconoir-react-native/src/TextSize.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTextSize( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTextSize = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTextSize( ); -} -const ForwardRef = React.forwardRef(SvgTextSize); +}; +const ForwardRef = forwardRef(SvgTextSize); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Threads.tsx b/packages/iconoir-react-native/src/Threads.tsx index 9a32b71b..bf04710f 100644 --- a/packages/iconoir-react-native/src/Threads.tsx +++ b/packages/iconoir-react-native/src/Threads.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThreads( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgThreads = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgThreads( ); -} -const ForwardRef = React.forwardRef(SvgThreads); +}; +const ForwardRef = forwardRef(SvgThreads); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ThreePointsCircle.tsx b/packages/iconoir-react-native/src/ThreePointsCircle.tsx index 73c9b894..b8ec5373 100644 --- a/packages/iconoir-react-native/src/ThreePointsCircle.tsx +++ b/packages/iconoir-react-native/src/ThreePointsCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThreePointsCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgThreePointsCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,47 +13,47 @@ function SvgThreePointsCircle( ); -} -const ForwardRef = React.forwardRef(SvgThreePointsCircle); +}; +const ForwardRef = forwardRef(SvgThreePointsCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ThreeStars.tsx b/packages/iconoir-react-native/src/ThreeStars.tsx index 133f5b75..f1edefd7 100644 --- a/packages/iconoir-react-native/src/ThreeStars.tsx +++ b/packages/iconoir-react-native/src/ThreeStars.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThreeStars( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgThreeStars = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgThreeStars( ); -} -const ForwardRef = React.forwardRef(SvgThreeStars); +}; +const ForwardRef = forwardRef(SvgThreeStars); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ThumbsDown.tsx b/packages/iconoir-react-native/src/ThumbsDown.tsx index 22dea2df..d1c0503b 100644 --- a/packages/iconoir-react-native/src/ThumbsDown.tsx +++ b/packages/iconoir-react-native/src/ThumbsDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThumbsDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgThumbsDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgThumbsDown( ); -} -const ForwardRef = React.forwardRef(SvgThumbsDown); +}; +const ForwardRef = forwardRef(SvgThumbsDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ThumbsUp.tsx b/packages/iconoir-react-native/src/ThumbsUp.tsx index 32f8cb0a..3ff6ead5 100644 --- a/packages/iconoir-react-native/src/ThumbsUp.tsx +++ b/packages/iconoir-react-native/src/ThumbsUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThumbsUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgThumbsUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgThumbsUp( ); -} -const ForwardRef = React.forwardRef(SvgThumbsUp); +}; +const ForwardRef = forwardRef(SvgThumbsUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Thunderstorm.tsx b/packages/iconoir-react-native/src/Thunderstorm.tsx index fdf3a23e..cac6ef65 100644 --- a/packages/iconoir-react-native/src/Thunderstorm.tsx +++ b/packages/iconoir-react-native/src/Thunderstorm.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThunderstorm( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgThunderstorm = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgThunderstorm( ); -} -const ForwardRef = React.forwardRef(SvgThunderstorm); +}; +const ForwardRef = forwardRef(SvgThunderstorm); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TifFormat.tsx b/packages/iconoir-react-native/src/TifFormat.tsx index 02f8791e..99128c5d 100644 --- a/packages/iconoir-react-native/src/TifFormat.tsx +++ b/packages/iconoir-react-native/src/TifFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTifFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTifFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgTifFormat( ); -} -const ForwardRef = React.forwardRef(SvgTifFormat); +}; +const ForwardRef = forwardRef(SvgTifFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TiffFormat.tsx b/packages/iconoir-react-native/src/TiffFormat.tsx index 12385540..a7cd797c 100644 --- a/packages/iconoir-react-native/src/TiffFormat.tsx +++ b/packages/iconoir-react-native/src/TiffFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTiffFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTiffFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgTiffFormat( ); -} -const ForwardRef = React.forwardRef(SvgTiffFormat); +}; +const ForwardRef = forwardRef(SvgTiffFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TikTok.tsx b/packages/iconoir-react-native/src/TikTok.tsx index 424f0b52..63ef9e98 100644 --- a/packages/iconoir-react-native/src/TikTok.tsx +++ b/packages/iconoir-react-native/src/TikTok.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTikTok( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTikTok = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTikTok( ); -} -const ForwardRef = React.forwardRef(SvgTikTok); +}; +const ForwardRef = forwardRef(SvgTikTok); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TimeZone.tsx b/packages/iconoir-react-native/src/TimeZone.tsx index f1e6c0a5..d324584f 100644 --- a/packages/iconoir-react-native/src/TimeZone.tsx +++ b/packages/iconoir-react-native/src/TimeZone.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTimeZone( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTimeZone = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgTimeZone( ); -} -const ForwardRef = React.forwardRef(SvgTimeZone); +}; +const ForwardRef = forwardRef(SvgTimeZone); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Timer.tsx b/packages/iconoir-react-native/src/Timer.tsx index 25877f6c..a1ea7433 100644 --- a/packages/iconoir-react-native/src/Timer.tsx +++ b/packages/iconoir-react-native/src/Timer.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTimer( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTimer = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTimer( ); -} -const ForwardRef = React.forwardRef(SvgTimer); +}; +const ForwardRef = forwardRef(SvgTimer); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TimerOff.tsx b/packages/iconoir-react-native/src/TimerOff.tsx index fe1d083e..9139539b 100644 --- a/packages/iconoir-react-native/src/TimerOff.tsx +++ b/packages/iconoir-react-native/src/TimerOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTimerOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTimerOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTimerOff( ); -} -const ForwardRef = React.forwardRef(SvgTimerOff); +}; +const ForwardRef = forwardRef(SvgTimerOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Tools.tsx b/packages/iconoir-react-native/src/Tools.tsx index 92f50b3e..069c9f74 100644 --- a/packages/iconoir-react-native/src/Tools.tsx +++ b/packages/iconoir-react-native/src/Tools.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTools( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTools = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTools( ); -} -const ForwardRef = React.forwardRef(SvgTools); +}; +const ForwardRef = forwardRef(SvgTools); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Tournament.tsx b/packages/iconoir-react-native/src/Tournament.tsx index d85a5e76..b4e8eb2b 100644 --- a/packages/iconoir-react-native/src/Tournament.tsx +++ b/packages/iconoir-react-native/src/Tournament.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTournament( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTournament = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTournament( ); -} -const ForwardRef = React.forwardRef(SvgTournament); +}; +const ForwardRef = forwardRef(SvgTournament); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Tower.tsx b/packages/iconoir-react-native/src/Tower.tsx index 559de541..475fabf6 100644 --- a/packages/iconoir-react-native/src/Tower.tsx +++ b/packages/iconoir-react-native/src/Tower.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTower( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTower = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgTower( ); -} -const ForwardRef = React.forwardRef(SvgTower); +}; +const ForwardRef = forwardRef(SvgTower); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TowerCheck.tsx b/packages/iconoir-react-native/src/TowerCheck.tsx index 7186b1b5..a1a96a98 100644 --- a/packages/iconoir-react-native/src/TowerCheck.tsx +++ b/packages/iconoir-react-native/src/TowerCheck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTowerCheck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTowerCheck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTowerCheck( ); -} -const ForwardRef = React.forwardRef(SvgTowerCheck); +}; +const ForwardRef = forwardRef(SvgTowerCheck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TowerNoAccess.tsx b/packages/iconoir-react-native/src/TowerNoAccess.tsx index c96ed744..cfefeb82 100644 --- a/packages/iconoir-react-native/src/TowerNoAccess.tsx +++ b/packages/iconoir-react-native/src/TowerNoAccess.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTowerNoAccess( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTowerNoAccess = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTowerNoAccess( ); -} -const ForwardRef = React.forwardRef(SvgTowerNoAccess); +}; +const ForwardRef = forwardRef(SvgTowerNoAccess); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TowerWarning.tsx b/packages/iconoir-react-native/src/TowerWarning.tsx index 2f4f276e..b3800e97 100644 --- a/packages/iconoir-react-native/src/TowerWarning.tsx +++ b/packages/iconoir-react-native/src/TowerWarning.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTowerWarning( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTowerWarning = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgTowerWarning( ); -} -const ForwardRef = React.forwardRef(SvgTowerWarning); +}; +const ForwardRef = forwardRef(SvgTowerWarning); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Trademark.tsx b/packages/iconoir-react-native/src/Trademark.tsx index 24fcbb58..fa178562 100644 --- a/packages/iconoir-react-native/src/Trademark.tsx +++ b/packages/iconoir-react-native/src/Trademark.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrademark( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTrademark = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTrademark( ); -} -const ForwardRef = React.forwardRef(SvgTrademark); +}; +const ForwardRef = forwardRef(SvgTrademark); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Train.tsx b/packages/iconoir-react-native/src/Train.tsx index 1add635f..735888ad 100644 --- a/packages/iconoir-react-native/src/Train.tsx +++ b/packages/iconoir-react-native/src/Train.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrain( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTrain = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgTrain( ); -} -const ForwardRef = React.forwardRef(SvgTrain); +}; +const ForwardRef = forwardRef(SvgTrain); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Tram.tsx b/packages/iconoir-react-native/src/Tram.tsx index d23a4600..4b1d20a5 100644 --- a/packages/iconoir-react-native/src/Tram.tsx +++ b/packages/iconoir-react-native/src/Tram.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTram( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTram = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgTram( ); -} -const ForwardRef = React.forwardRef(SvgTram); +}; +const ForwardRef = forwardRef(SvgTram); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TransitionDown.tsx b/packages/iconoir-react-native/src/TransitionDown.tsx index 3a814519..727ace32 100644 --- a/packages/iconoir-react-native/src/TransitionDown.tsx +++ b/packages/iconoir-react-native/src/TransitionDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTransitionDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTransitionDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgTransitionDown( ); -} -const ForwardRef = React.forwardRef(SvgTransitionDown); +}; +const ForwardRef = forwardRef(SvgTransitionDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TransitionLeft.tsx b/packages/iconoir-react-native/src/TransitionLeft.tsx index 934414fe..ac30f692 100644 --- a/packages/iconoir-react-native/src/TransitionLeft.tsx +++ b/packages/iconoir-react-native/src/TransitionLeft.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTransitionLeft( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTransitionLeft = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgTransitionLeft( ); -} -const ForwardRef = React.forwardRef(SvgTransitionLeft); +}; +const ForwardRef = forwardRef(SvgTransitionLeft); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TransitionRight.tsx b/packages/iconoir-react-native/src/TransitionRight.tsx index bfe59a76..e274b770 100644 --- a/packages/iconoir-react-native/src/TransitionRight.tsx +++ b/packages/iconoir-react-native/src/TransitionRight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTransitionRight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTransitionRight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgTransitionRight( ); -} -const ForwardRef = React.forwardRef(SvgTransitionRight); +}; +const ForwardRef = forwardRef(SvgTransitionRight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TransitionUp.tsx b/packages/iconoir-react-native/src/TransitionUp.tsx index ba8df51b..4137bf67 100644 --- a/packages/iconoir-react-native/src/TransitionUp.tsx +++ b/packages/iconoir-react-native/src/TransitionUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTransitionUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTransitionUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgTransitionUp( ); -} -const ForwardRef = React.forwardRef(SvgTransitionUp); +}; +const ForwardRef = forwardRef(SvgTransitionUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Translate.tsx b/packages/iconoir-react-native/src/Translate.tsx index f31d048e..39de1fe1 100644 --- a/packages/iconoir-react-native/src/Translate.tsx +++ b/packages/iconoir-react-native/src/Translate.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTranslate( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTranslate = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTranslate( ); -} -const ForwardRef = React.forwardRef(SvgTranslate); +}; +const ForwardRef = forwardRef(SvgTranslate); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Trash.tsx b/packages/iconoir-react-native/src/Trash.tsx index a881cab7..2614baf4 100644 --- a/packages/iconoir-react-native/src/Trash.tsx +++ b/packages/iconoir-react-native/src/Trash.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrash( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTrash = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTrash( ); -} -const ForwardRef = React.forwardRef(SvgTrash); +}; +const ForwardRef = forwardRef(SvgTrash); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Treadmill.tsx b/packages/iconoir-react-native/src/Treadmill.tsx index a5e24160..f80fa8a9 100644 --- a/packages/iconoir-react-native/src/Treadmill.tsx +++ b/packages/iconoir-react-native/src/Treadmill.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTreadmill( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTreadmill = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgTreadmill( ); -} -const ForwardRef = React.forwardRef(SvgTreadmill); +}; +const ForwardRef = forwardRef(SvgTreadmill); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Tree.tsx b/packages/iconoir-react-native/src/Tree.tsx index bd7aff88..ac8df4e7 100644 --- a/packages/iconoir-react-native/src/Tree.tsx +++ b/packages/iconoir-react-native/src/Tree.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTree( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTree = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTree( ); -} -const ForwardRef = React.forwardRef(SvgTree); +}; +const ForwardRef = forwardRef(SvgTree); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Trekking.tsx b/packages/iconoir-react-native/src/Trekking.tsx index 87fe7b25..f1dc4d35 100644 --- a/packages/iconoir-react-native/src/Trekking.tsx +++ b/packages/iconoir-react-native/src/Trekking.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrekking( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTrekking = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTrekking( ); -} -const ForwardRef = React.forwardRef(SvgTrekking); +}; +const ForwardRef = forwardRef(SvgTrekking); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Trello.tsx b/packages/iconoir-react-native/src/Trello.tsx index b183465a..28386fd0 100644 --- a/packages/iconoir-react-native/src/Trello.tsx +++ b/packages/iconoir-react-native/src/Trello.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrello( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTrello = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTrello( ); -} -const ForwardRef = React.forwardRef(SvgTrello); +}; +const ForwardRef = forwardRef(SvgTrello); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Triangle.tsx b/packages/iconoir-react-native/src/Triangle.tsx index d0449cd4..6c7cd6b1 100644 --- a/packages/iconoir-react-native/src/Triangle.tsx +++ b/packages/iconoir-react-native/src/Triangle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTriangle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTriangle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTriangle( ); -} -const ForwardRef = React.forwardRef(SvgTriangle); +}; +const ForwardRef = forwardRef(SvgTriangle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TriangleFlag.tsx b/packages/iconoir-react-native/src/TriangleFlag.tsx index 4eba1709..3e3e95fe 100644 --- a/packages/iconoir-react-native/src/TriangleFlag.tsx +++ b/packages/iconoir-react-native/src/TriangleFlag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTriangleFlag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTriangleFlag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTriangleFlag( ); -} -const ForwardRef = React.forwardRef(SvgTriangleFlag); +}; +const ForwardRef = forwardRef(SvgTriangleFlag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TriangleFlagCircle.tsx b/packages/iconoir-react-native/src/TriangleFlagCircle.tsx index ba37f96c..8f4d2937 100644 --- a/packages/iconoir-react-native/src/TriangleFlagCircle.tsx +++ b/packages/iconoir-react-native/src/TriangleFlagCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTriangleFlagCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTriangleFlagCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTriangleFlagCircle( ); -} -const ForwardRef = React.forwardRef(SvgTriangleFlagCircle); +}; +const ForwardRef = forwardRef(SvgTriangleFlagCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TriangleFlagTwoStripes.tsx b/packages/iconoir-react-native/src/TriangleFlagTwoStripes.tsx index fe62e50d..88336ab1 100644 --- a/packages/iconoir-react-native/src/TriangleFlagTwoStripes.tsx +++ b/packages/iconoir-react-native/src/TriangleFlagTwoStripes.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTriangleFlagTwoStripes( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTriangleFlagTwoStripes = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTriangleFlagTwoStripes( ); -} -const ForwardRef = React.forwardRef(SvgTriangleFlagTwoStripes); +}; +const ForwardRef = forwardRef(SvgTriangleFlagTwoStripes); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Trophy.tsx b/packages/iconoir-react-native/src/Trophy.tsx index 8ab365b1..6132e7cf 100644 --- a/packages/iconoir-react-native/src/Trophy.tsx +++ b/packages/iconoir-react-native/src/Trophy.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrophy( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTrophy = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTrophy( ); -} -const ForwardRef = React.forwardRef(SvgTrophy); +}; +const ForwardRef = forwardRef(SvgTrophy); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Truck.tsx b/packages/iconoir-react-native/src/Truck.tsx index f62473c9..b47a31c4 100644 --- a/packages/iconoir-react-native/src/Truck.tsx +++ b/packages/iconoir-react-native/src/Truck.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTruck( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTruck = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTruck( ); -} -const ForwardRef = React.forwardRef(SvgTruck); +}; +const ForwardRef = forwardRef(SvgTruck); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TruckLength.tsx b/packages/iconoir-react-native/src/TruckLength.tsx index 5776b8a0..c199fb68 100644 --- a/packages/iconoir-react-native/src/TruckLength.tsx +++ b/packages/iconoir-react-native/src/TruckLength.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTruckLength( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTruckLength = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgTruckLength( ); -} -const ForwardRef = React.forwardRef(SvgTruckLength); +}; +const ForwardRef = forwardRef(SvgTruckLength); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Tunnel.tsx b/packages/iconoir-react-native/src/Tunnel.tsx index 7cba09a8..9cd944c7 100644 --- a/packages/iconoir-react-native/src/Tunnel.tsx +++ b/packages/iconoir-react-native/src/Tunnel.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTunnel( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTunnel = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgTunnel( ); -} -const ForwardRef = React.forwardRef(SvgTunnel); +}; +const ForwardRef = forwardRef(SvgTunnel); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Tv.tsx b/packages/iconoir-react-native/src/Tv.tsx index e422a1c8..4e740dae 100644 --- a/packages/iconoir-react-native/src/Tv.tsx +++ b/packages/iconoir-react-native/src/Tv.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTv( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTv = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgTv( ); -} -const ForwardRef = React.forwardRef(SvgTv); +}; +const ForwardRef = forwardRef(SvgTv); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TvFix.tsx b/packages/iconoir-react-native/src/TvFix.tsx index f693503b..00019a72 100644 --- a/packages/iconoir-react-native/src/TvFix.tsx +++ b/packages/iconoir-react-native/src/TvFix.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTvFix( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTvFix = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgTvFix( ); -} -const ForwardRef = React.forwardRef(SvgTvFix); +}; +const ForwardRef = forwardRef(SvgTvFix); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TvIssue.tsx b/packages/iconoir-react-native/src/TvIssue.tsx index 42b2d9fc..73fdd854 100644 --- a/packages/iconoir-react-native/src/TvIssue.tsx +++ b/packages/iconoir-react-native/src/TvIssue.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTvIssue( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTvIssue = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgTvIssue( + + - - ); -} -const ForwardRef = React.forwardRef(SvgTvIssue); +}; +const ForwardRef = forwardRef(SvgTvIssue); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Twitter.tsx b/packages/iconoir-react-native/src/Twitter.tsx index 8e88c18d..37e294d1 100644 --- a/packages/iconoir-react-native/src/Twitter.tsx +++ b/packages/iconoir-react-native/src/Twitter.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTwitter( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTwitter = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgTwitter( ); -} -const ForwardRef = React.forwardRef(SvgTwitter); +}; +const ForwardRef = forwardRef(SvgTwitter); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TwitterVerifiedBadge.tsx b/packages/iconoir-react-native/src/TwitterVerifiedBadge.tsx index 9d99ce7e..70ae359f 100644 --- a/packages/iconoir-react-native/src/TwitterVerifiedBadge.tsx +++ b/packages/iconoir-react-native/src/TwitterVerifiedBadge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTwitterVerifiedBadge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTwitterVerifiedBadge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgTwitterVerifiedBadge( ); -} -const ForwardRef = React.forwardRef(SvgTwitterVerifiedBadge); +}; +const ForwardRef = forwardRef(SvgTwitterVerifiedBadge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TwoPointsCircle.tsx b/packages/iconoir-react-native/src/TwoPointsCircle.tsx index 32ddace8..acf724f4 100644 --- a/packages/iconoir-react-native/src/TwoPointsCircle.tsx +++ b/packages/iconoir-react-native/src/TwoPointsCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTwoPointsCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTwoPointsCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,34 +13,34 @@ function SvgTwoPointsCircle( ); -} -const ForwardRef = React.forwardRef(SvgTwoPointsCircle); +}; +const ForwardRef = forwardRef(SvgTwoPointsCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/TwoSeaterSofa.tsx b/packages/iconoir-react-native/src/TwoSeaterSofa.tsx index 255b2863..7311f886 100644 --- a/packages/iconoir-react-native/src/TwoSeaterSofa.tsx +++ b/packages/iconoir-react-native/src/TwoSeaterSofa.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTwoSeaterSofa( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgTwoSeaterSofa = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgTwoSeaterSofa( ); -} -const ForwardRef = React.forwardRef(SvgTwoSeaterSofa); +}; +const ForwardRef = forwardRef(SvgTwoSeaterSofa); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Type.tsx b/packages/iconoir-react-native/src/Type.tsx index bf82e4dc..3805e83e 100644 --- a/packages/iconoir-react-native/src/Type.tsx +++ b/packages/iconoir-react-native/src/Type.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgType( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgType = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgType( ); -} -const ForwardRef = React.forwardRef(SvgType); +}; +const ForwardRef = forwardRef(SvgType); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UmbrellaFull.tsx b/packages/iconoir-react-native/src/UmbrellaFull.tsx index 9ea460c7..f22a474e 100644 --- a/packages/iconoir-react-native/src/UmbrellaFull.tsx +++ b/packages/iconoir-react-native/src/UmbrellaFull.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUmbrellaFull( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUmbrellaFull = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgUmbrellaFull( ); -} -const ForwardRef = React.forwardRef(SvgUmbrellaFull); +}; +const ForwardRef = forwardRef(SvgUmbrellaFull); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Underline.tsx b/packages/iconoir-react-native/src/Underline.tsx index be5cc0af..52327648 100644 --- a/packages/iconoir-react-native/src/Underline.tsx +++ b/packages/iconoir-react-native/src/Underline.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnderline( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUnderline = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgUnderline( ); -} -const ForwardRef = React.forwardRef(SvgUnderline); +}; +const ForwardRef = forwardRef(SvgUnderline); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UnderlineSquare.tsx b/packages/iconoir-react-native/src/UnderlineSquare.tsx index b454d109..2fb69955 100644 --- a/packages/iconoir-react-native/src/UnderlineSquare.tsx +++ b/packages/iconoir-react-native/src/UnderlineSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnderlineSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUnderlineSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgUnderlineSquare( ); -} -const ForwardRef = React.forwardRef(SvgUnderlineSquare); +}; +const ForwardRef = forwardRef(SvgUnderlineSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Undo.tsx b/packages/iconoir-react-native/src/Undo.tsx index a84e2d7b..cbde319e 100644 --- a/packages/iconoir-react-native/src/Undo.tsx +++ b/packages/iconoir-react-native/src/Undo.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUndo( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUndo = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgUndo( ); -} -const ForwardRef = React.forwardRef(SvgUndo); +}; +const ForwardRef = forwardRef(SvgUndo); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UndoAction.tsx b/packages/iconoir-react-native/src/UndoAction.tsx index 2b584d30..f4340332 100644 --- a/packages/iconoir-react-native/src/UndoAction.tsx +++ b/packages/iconoir-react-native/src/UndoAction.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUndoAction( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUndoAction = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgUndoAction( ); -} -const ForwardRef = React.forwardRef(SvgUndoAction); +}; +const ForwardRef = forwardRef(SvgUndoAction); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UndoCircle.tsx b/packages/iconoir-react-native/src/UndoCircle.tsx index aacef8e4..79d8a62c 100644 --- a/packages/iconoir-react-native/src/UndoCircle.tsx +++ b/packages/iconoir-react-native/src/UndoCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUndoCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUndoCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgUndoCircle( ); -} -const ForwardRef = React.forwardRef(SvgUndoCircle); +}; +const ForwardRef = forwardRef(SvgUndoCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Union.tsx b/packages/iconoir-react-native/src/Union.tsx index dd9fa77c..bf9bc04b 100644 --- a/packages/iconoir-react-native/src/Union.tsx +++ b/packages/iconoir-react-native/src/Union.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnion( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUnion = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgUnion( ); -} -const ForwardRef = React.forwardRef(SvgUnion); +}; +const ForwardRef = forwardRef(SvgUnion); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UnionAlt.tsx b/packages/iconoir-react-native/src/UnionAlt.tsx index 1a878058..43289949 100644 --- a/packages/iconoir-react-native/src/UnionAlt.tsx +++ b/packages/iconoir-react-native/src/UnionAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnionAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUnionAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgUnionAlt( ); -} -const ForwardRef = React.forwardRef(SvgUnionAlt); +}; +const ForwardRef = forwardRef(SvgUnionAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UnionHorizAlt.tsx b/packages/iconoir-react-native/src/UnionHorizAlt.tsx index 41f52fd7..31ffdc06 100644 --- a/packages/iconoir-react-native/src/UnionHorizAlt.tsx +++ b/packages/iconoir-react-native/src/UnionHorizAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnionHorizAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUnionHorizAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgUnionHorizAlt( ); -} -const ForwardRef = React.forwardRef(SvgUnionHorizAlt); +}; +const ForwardRef = forwardRef(SvgUnionHorizAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Unity.tsx b/packages/iconoir-react-native/src/Unity.tsx index 43091015..7918c6cb 100644 --- a/packages/iconoir-react-native/src/Unity.tsx +++ b/packages/iconoir-react-native/src/Unity.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnity( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUnity = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgUnity( - + - + ); -} -const ForwardRef = React.forwardRef(SvgUnity); +}; +const ForwardRef = forwardRef(SvgUnity); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Unity5.tsx b/packages/iconoir-react-native/src/Unity5.tsx index e03c43fb..0b5ff5c3 100644 --- a/packages/iconoir-react-native/src/Unity5.tsx +++ b/packages/iconoir-react-native/src/Unity5.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnity5( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUnity5 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgUnity5( ); -} -const ForwardRef = React.forwardRef(SvgUnity5); +}; +const ForwardRef = forwardRef(SvgUnity5); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Unjoin3D.tsx b/packages/iconoir-react-native/src/Unjoin3D.tsx index e5f4d896..f90b1b02 100644 --- a/packages/iconoir-react-native/src/Unjoin3D.tsx +++ b/packages/iconoir-react-native/src/Unjoin3D.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnjoin3D( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUnjoin3D = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgUnjoin3D( ); -} -const ForwardRef = React.forwardRef(SvgUnjoin3D); +}; +const ForwardRef = forwardRef(SvgUnjoin3D); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UpRoundArrow.tsx b/packages/iconoir-react-native/src/UpRoundArrow.tsx index 418e5d09..e6daf2c6 100644 --- a/packages/iconoir-react-native/src/UpRoundArrow.tsx +++ b/packages/iconoir-react-native/src/UpRoundArrow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUpRoundArrow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUpRoundArrow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgUpRoundArrow( ); -} -const ForwardRef = React.forwardRef(SvgUpRoundArrow); +}; +const ForwardRef = forwardRef(SvgUpRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Upload.tsx b/packages/iconoir-react-native/src/Upload.tsx index 49ad5c70..0d014a9c 100644 --- a/packages/iconoir-react-native/src/Upload.tsx +++ b/packages/iconoir-react-native/src/Upload.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUpload( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUpload = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgUpload( ); -} -const ForwardRef = React.forwardRef(SvgUpload); +}; +const ForwardRef = forwardRef(SvgUpload); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UploadDataWindow.tsx b/packages/iconoir-react-native/src/UploadDataWindow.tsx index 0353519a..acd40778 100644 --- a/packages/iconoir-react-native/src/UploadDataWindow.tsx +++ b/packages/iconoir-react-native/src/UploadDataWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUploadDataWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUploadDataWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgUploadDataWindow( ); -} -const ForwardRef = React.forwardRef(SvgUploadDataWindow); +}; +const ForwardRef = forwardRef(SvgUploadDataWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UploadSquare.tsx b/packages/iconoir-react-native/src/UploadSquare.tsx index 0457a5d5..b834260a 100644 --- a/packages/iconoir-react-native/src/UploadSquare.tsx +++ b/packages/iconoir-react-native/src/UploadSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUploadSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUploadSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgUploadSquare( ); -} -const ForwardRef = React.forwardRef(SvgUploadSquare); +}; +const ForwardRef = forwardRef(SvgUploadSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Usb.tsx b/packages/iconoir-react-native/src/Usb.tsx index d5ff922c..88b2ea9a 100644 --- a/packages/iconoir-react-native/src/Usb.tsx +++ b/packages/iconoir-react-native/src/Usb.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUsb( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUsb = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgUsb( ); -} -const ForwardRef = React.forwardRef(SvgUsb); +}; +const ForwardRef = forwardRef(SvgUsb); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/User.tsx b/packages/iconoir-react-native/src/User.tsx index adaa73b4..78f86834 100644 --- a/packages/iconoir-react-native/src/User.tsx +++ b/packages/iconoir-react-native/src/User.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUser( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUser = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgUser( ); -} -const ForwardRef = React.forwardRef(SvgUser); +}; +const ForwardRef = forwardRef(SvgUser); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UserBag.tsx b/packages/iconoir-react-native/src/UserBag.tsx index 7e1608b4..1f835ea3 100644 --- a/packages/iconoir-react-native/src/UserBag.tsx +++ b/packages/iconoir-react-native/src/UserBag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserBag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUserBag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgUserBag( + ); -} -const ForwardRef = React.forwardRef(SvgUserBag); +}; +const ForwardRef = forwardRef(SvgUserBag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UserCart.tsx b/packages/iconoir-react-native/src/UserCart.tsx index 2b3667b6..5570c7df 100644 --- a/packages/iconoir-react-native/src/UserCart.tsx +++ b/packages/iconoir-react-native/src/UserCart.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserCart( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUserCart = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgUserCart( + ); -} -const ForwardRef = React.forwardRef(SvgUserCart); +}; +const ForwardRef = forwardRef(SvgUserCart); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UserCircle.tsx b/packages/iconoir-react-native/src/UserCircle.tsx index 4d0b8635..e3fca8a7 100644 --- a/packages/iconoir-react-native/src/UserCircle.tsx +++ b/packages/iconoir-react-native/src/UserCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path, Circle } from "react-native-svg"; +import Svg, { Path, Circle } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUserCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgUserCircle( ); -} -const ForwardRef = React.forwardRef(SvgUserCircle); +}; +const ForwardRef = forwardRef(SvgUserCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UserCrown.tsx b/packages/iconoir-react-native/src/UserCrown.tsx index a0f8f072..d56d733e 100644 --- a/packages/iconoir-react-native/src/UserCrown.tsx +++ b/packages/iconoir-react-native/src/UserCrown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserCrown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUserCrown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgUserCrown( ); -} -const ForwardRef = React.forwardRef(SvgUserCrown); +}; +const ForwardRef = forwardRef(SvgUserCrown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UserLove.tsx b/packages/iconoir-react-native/src/UserLove.tsx index 01ef888b..1475026d 100644 --- a/packages/iconoir-react-native/src/UserLove.tsx +++ b/packages/iconoir-react-native/src/UserLove.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserLove( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUserLove = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgUserLove( ); -} -const ForwardRef = React.forwardRef(SvgUserLove); +}; +const ForwardRef = forwardRef(SvgUserLove); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UserScan.tsx b/packages/iconoir-react-native/src/UserScan.tsx index 0a1f51ab..0e1b17a0 100644 --- a/packages/iconoir-react-native/src/UserScan.tsx +++ b/packages/iconoir-react-native/src/UserScan.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserScan( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUserScan = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgUserScan( ); -} -const ForwardRef = React.forwardRef(SvgUserScan); +}; +const ForwardRef = forwardRef(SvgUserScan); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UserSquare.tsx b/packages/iconoir-react-native/src/UserSquare.tsx index 57fa06ad..d4c08fb9 100644 --- a/packages/iconoir-react-native/src/UserSquare.tsx +++ b/packages/iconoir-react-native/src/UserSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUserSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgUserSquare( ); -} -const ForwardRef = React.forwardRef(SvgUserSquare); +}; +const ForwardRef = forwardRef(SvgUserSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/UserStar.tsx b/packages/iconoir-react-native/src/UserStar.tsx index a9c41057..cc5708e5 100644 --- a/packages/iconoir-react-native/src/UserStar.tsx +++ b/packages/iconoir-react-native/src/UserStar.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserStar( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgUserStar = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgUserStar( ); -} -const ForwardRef = React.forwardRef(SvgUserStar); +}; +const ForwardRef = forwardRef(SvgUserStar); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Vegan.tsx b/packages/iconoir-react-native/src/Vegan.tsx index d20a9954..088c667d 100644 --- a/packages/iconoir-react-native/src/Vegan.tsx +++ b/packages/iconoir-react-native/src/Vegan.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVegan( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVegan = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgVegan( ); -} -const ForwardRef = React.forwardRef(SvgVegan); +}; +const ForwardRef = forwardRef(SvgVegan); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VeganCircle.tsx b/packages/iconoir-react-native/src/VeganCircle.tsx index ae8bf242..208026dd 100644 --- a/packages/iconoir-react-native/src/VeganCircle.tsx +++ b/packages/iconoir-react-native/src/VeganCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVeganCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVeganCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgVeganCircle( ); -} -const ForwardRef = React.forwardRef(SvgVeganCircle); +}; +const ForwardRef = forwardRef(SvgVeganCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VeganSquare.tsx b/packages/iconoir-react-native/src/VeganSquare.tsx index db7bbb3e..c681afaf 100644 --- a/packages/iconoir-react-native/src/VeganSquare.tsx +++ b/packages/iconoir-react-native/src/VeganSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVeganSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVeganSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgVeganSquare( ); -} -const ForwardRef = React.forwardRef(SvgVeganSquare); +}; +const ForwardRef = forwardRef(SvgVeganSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VerifiedBadge.tsx b/packages/iconoir-react-native/src/VerifiedBadge.tsx index 38bbc4c9..70ec14eb 100644 --- a/packages/iconoir-react-native/src/VerifiedBadge.tsx +++ b/packages/iconoir-react-native/src/VerifiedBadge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVerifiedBadge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVerifiedBadge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgVerifiedBadge( ); -} -const ForwardRef = React.forwardRef(SvgVerifiedBadge); +}; +const ForwardRef = forwardRef(SvgVerifiedBadge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VerifiedUser.tsx b/packages/iconoir-react-native/src/VerifiedUser.tsx index a457efbc..5f138884 100644 --- a/packages/iconoir-react-native/src/VerifiedUser.tsx +++ b/packages/iconoir-react-native/src/VerifiedUser.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVerifiedUser( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVerifiedUser = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgVerifiedUser( ); -} -const ForwardRef = React.forwardRef(SvgVerifiedUser); +}; +const ForwardRef = forwardRef(SvgVerifiedUser); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VerticalMerge.tsx b/packages/iconoir-react-native/src/VerticalMerge.tsx index e11c9a82..1e104706 100644 --- a/packages/iconoir-react-native/src/VerticalMerge.tsx +++ b/packages/iconoir-react-native/src/VerticalMerge.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVerticalMerge( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVerticalMerge = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVerticalMerge( ); -} -const ForwardRef = React.forwardRef(SvgVerticalMerge); +}; +const ForwardRef = forwardRef(SvgVerticalMerge); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VerticalSplit.tsx b/packages/iconoir-react-native/src/VerticalSplit.tsx index ef2ae2d5..2351560a 100644 --- a/packages/iconoir-react-native/src/VerticalSplit.tsx +++ b/packages/iconoir-react-native/src/VerticalSplit.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVerticalSplit( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVerticalSplit = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVerticalSplit( ); -} -const ForwardRef = React.forwardRef(SvgVerticalSplit); +}; +const ForwardRef = forwardRef(SvgVerticalSplit); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Vials.tsx b/packages/iconoir-react-native/src/Vials.tsx index fd320c30..cb8dc8e7 100644 --- a/packages/iconoir-react-native/src/Vials.tsx +++ b/packages/iconoir-react-native/src/Vials.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVials( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVials = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVials( ); -} -const ForwardRef = React.forwardRef(SvgVials); +}; +const ForwardRef = forwardRef(SvgVials); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VideoCamera.tsx b/packages/iconoir-react-native/src/VideoCamera.tsx index cfeba4c2..a05d4192 100644 --- a/packages/iconoir-react-native/src/VideoCamera.tsx +++ b/packages/iconoir-react-native/src/VideoCamera.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVideoCamera( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVideoCamera = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVideoCamera( ); -} -const ForwardRef = React.forwardRef(SvgVideoCamera); +}; +const ForwardRef = forwardRef(SvgVideoCamera); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VideoCameraOff.tsx b/packages/iconoir-react-native/src/VideoCameraOff.tsx index 367247bd..e2dd6fd7 100644 --- a/packages/iconoir-react-native/src/VideoCameraOff.tsx +++ b/packages/iconoir-react-native/src/VideoCameraOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVideoCameraOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVideoCameraOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVideoCameraOff( ); -} -const ForwardRef = React.forwardRef(SvgVideoCameraOff); +}; +const ForwardRef = forwardRef(SvgVideoCameraOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VideoProjector.tsx b/packages/iconoir-react-native/src/VideoProjector.tsx index 73bd8df8..13b100cb 100644 --- a/packages/iconoir-react-native/src/VideoProjector.tsx +++ b/packages/iconoir-react-native/src/VideoProjector.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVideoProjector( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVideoProjector = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,31 +13,31 @@ function SvgVideoProjector( + + - - ); -} -const ForwardRef = React.forwardRef(SvgVideoProjector); +}; +const ForwardRef = forwardRef(SvgVideoProjector); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/View360.tsx b/packages/iconoir-react-native/src/View360.tsx index 61955dde..3fa00951 100644 --- a/packages/iconoir-react-native/src/View360.tsx +++ b/packages/iconoir-react-native/src/View360.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgView360( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgView360 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgView360( ); -} -const ForwardRef = React.forwardRef(SvgView360); +}; +const ForwardRef = forwardRef(SvgView360); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ViewColumns2.tsx b/packages/iconoir-react-native/src/ViewColumns2.tsx index 63d96b38..87f94829 100644 --- a/packages/iconoir-react-native/src/ViewColumns2.tsx +++ b/packages/iconoir-react-native/src/ViewColumns2.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgViewColumns2( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgViewColumns2 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgViewColumns2( ); -} -const ForwardRef = React.forwardRef(SvgViewColumns2); +}; +const ForwardRef = forwardRef(SvgViewColumns2); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ViewColumns3.tsx b/packages/iconoir-react-native/src/ViewColumns3.tsx index ec6c2a9f..322a577b 100644 --- a/packages/iconoir-react-native/src/ViewColumns3.tsx +++ b/packages/iconoir-react-native/src/ViewColumns3.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgViewColumns3( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgViewColumns3 = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgViewColumns3( ); -} -const ForwardRef = React.forwardRef(SvgViewColumns3); +}; +const ForwardRef = forwardRef(SvgViewColumns3); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ViewGrid.tsx b/packages/iconoir-react-native/src/ViewGrid.tsx index 7646576d..e701ece0 100644 --- a/packages/iconoir-react-native/src/ViewGrid.tsx +++ b/packages/iconoir-react-native/src/ViewGrid.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgViewGrid( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgViewGrid = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgViewGrid( ); -} -const ForwardRef = React.forwardRef(SvgViewGrid); +}; +const ForwardRef = forwardRef(SvgViewGrid); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ViewStructureDown.tsx b/packages/iconoir-react-native/src/ViewStructureDown.tsx index eb64af71..a3418853 100644 --- a/packages/iconoir-react-native/src/ViewStructureDown.tsx +++ b/packages/iconoir-react-native/src/ViewStructureDown.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgViewStructureDown( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgViewStructureDown = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgViewStructureDown( ); -} -const ForwardRef = React.forwardRef(SvgViewStructureDown); +}; +const ForwardRef = forwardRef(SvgViewStructureDown); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ViewStructureUp.tsx b/packages/iconoir-react-native/src/ViewStructureUp.tsx index c1423bb3..532b0d68 100644 --- a/packages/iconoir-react-native/src/ViewStructureUp.tsx +++ b/packages/iconoir-react-native/src/ViewStructureUp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgViewStructureUp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgViewStructureUp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgViewStructureUp( ); -} -const ForwardRef = React.forwardRef(SvgViewStructureUp); +}; +const ForwardRef = forwardRef(SvgViewStructureUp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Voice.tsx b/packages/iconoir-react-native/src/Voice.tsx index 5bee2d46..29469fd1 100644 --- a/packages/iconoir-react-native/src/Voice.tsx +++ b/packages/iconoir-react-native/src/Voice.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoice( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVoice = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVoice( ); -} -const ForwardRef = React.forwardRef(SvgVoice); +}; +const ForwardRef = forwardRef(SvgVoice); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VoiceCircle.tsx b/packages/iconoir-react-native/src/VoiceCircle.tsx index 78f1ea2a..ee3419a8 100644 --- a/packages/iconoir-react-native/src/VoiceCircle.tsx +++ b/packages/iconoir-react-native/src/VoiceCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVoiceCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVoiceCircle( ); -} -const ForwardRef = React.forwardRef(SvgVoiceCircle); +}; +const ForwardRef = forwardRef(SvgVoiceCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VoiceError.tsx b/packages/iconoir-react-native/src/VoiceError.tsx index 6ac0044b..4ead3990 100644 --- a/packages/iconoir-react-native/src/VoiceError.tsx +++ b/packages/iconoir-react-native/src/VoiceError.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceError( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVoiceError = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVoiceError( ); -} -const ForwardRef = React.forwardRef(SvgVoiceError); +}; +const ForwardRef = forwardRef(SvgVoiceError); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VoiceLockCircle.tsx b/packages/iconoir-react-native/src/VoiceLockCircle.tsx index fb1a5bc0..27d1795e 100644 --- a/packages/iconoir-react-native/src/VoiceLockCircle.tsx +++ b/packages/iconoir-react-native/src/VoiceLockCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceLockCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVoiceLockCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgVoiceLockCircle( ); -} -const ForwardRef = React.forwardRef(SvgVoiceLockCircle); +}; +const ForwardRef = forwardRef(SvgVoiceLockCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VoiceOk.tsx b/packages/iconoir-react-native/src/VoiceOk.tsx index 565a79d4..06f748ea 100644 --- a/packages/iconoir-react-native/src/VoiceOk.tsx +++ b/packages/iconoir-react-native/src/VoiceOk.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceOk( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVoiceOk = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVoiceOk( ); -} -const ForwardRef = React.forwardRef(SvgVoiceOk); +}; +const ForwardRef = forwardRef(SvgVoiceOk); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VoicePhone.tsx b/packages/iconoir-react-native/src/VoicePhone.tsx index d9de5ba8..78b3f7ae 100644 --- a/packages/iconoir-react-native/src/VoicePhone.tsx +++ b/packages/iconoir-react-native/src/VoicePhone.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoicePhone( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVoicePhone = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVoicePhone( ); -} -const ForwardRef = React.forwardRef(SvgVoicePhone); +}; +const ForwardRef = forwardRef(SvgVoicePhone); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VoiceScan.tsx b/packages/iconoir-react-native/src/VoiceScan.tsx index 09b5d3e3..bffebeb7 100644 --- a/packages/iconoir-react-native/src/VoiceScan.tsx +++ b/packages/iconoir-react-native/src/VoiceScan.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceScan( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVoiceScan = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVoiceScan( ); -} -const ForwardRef = React.forwardRef(SvgVoiceScan); +}; +const ForwardRef = forwardRef(SvgVoiceScan); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VoiceSquare.tsx b/packages/iconoir-react-native/src/VoiceSquare.tsx index 7ee5ea15..2218e786 100644 --- a/packages/iconoir-react-native/src/VoiceSquare.tsx +++ b/packages/iconoir-react-native/src/VoiceSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVoiceSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgVoiceSquare( ); -} -const ForwardRef = React.forwardRef(SvgVoiceSquare); +}; +const ForwardRef = forwardRef(SvgVoiceSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VrSymbol.tsx b/packages/iconoir-react-native/src/VrSymbol.tsx index e7fdcf44..a9715785 100644 --- a/packages/iconoir-react-native/src/VrSymbol.tsx +++ b/packages/iconoir-react-native/src/VrSymbol.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVrSymbol( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVrSymbol = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgVrSymbol( ); -} -const ForwardRef = React.forwardRef(SvgVrSymbol); +}; +const ForwardRef = forwardRef(SvgVrSymbol); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/VueJs.tsx b/packages/iconoir-react-native/src/VueJs.tsx index 58206a44..aa2bca6a 100644 --- a/packages/iconoir-react-native/src/VueJs.tsx +++ b/packages/iconoir-react-native/src/VueJs.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVueJs( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgVueJs = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgVueJs( ); -} -const ForwardRef = React.forwardRef(SvgVueJs); +}; +const ForwardRef = forwardRef(SvgVueJs); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Waist.tsx b/packages/iconoir-react-native/src/Waist.tsx index 3fa15dff..9a7fed5e 100644 --- a/packages/iconoir-react-native/src/Waist.tsx +++ b/packages/iconoir-react-native/src/Waist.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWaist( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWaist = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgWaist( ); -} -const ForwardRef = React.forwardRef(SvgWaist); +}; +const ForwardRef = forwardRef(SvgWaist); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Walking.tsx b/packages/iconoir-react-native/src/Walking.tsx index 1beebc7b..cb064ba4 100644 --- a/packages/iconoir-react-native/src/Walking.tsx +++ b/packages/iconoir-react-native/src/Walking.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWalking( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWalking = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgWalking( ); -} -const ForwardRef = React.forwardRef(SvgWalking); +}; +const ForwardRef = forwardRef(SvgWalking); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Wallet.tsx b/packages/iconoir-react-native/src/Wallet.tsx index a72f2c09..e04e6499 100644 --- a/packages/iconoir-react-native/src/Wallet.tsx +++ b/packages/iconoir-react-native/src/Wallet.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWallet( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWallet = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -13,31 +12,31 @@ function SvgWallet( return ( ); -} -const ForwardRef = React.forwardRef(SvgWallet); +}; +const ForwardRef = forwardRef(SvgWallet); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WarningCircle.tsx b/packages/iconoir-react-native/src/WarningCircle.tsx index 0624c542..4d29148d 100644 --- a/packages/iconoir-react-native/src/WarningCircle.tsx +++ b/packages/iconoir-react-native/src/WarningCircle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWarningCircle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWarningCircle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgWarningCircle( ); -} -const ForwardRef = React.forwardRef(SvgWarningCircle); +}; +const ForwardRef = forwardRef(SvgWarningCircle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WarningHexagon.tsx b/packages/iconoir-react-native/src/WarningHexagon.tsx index aaac9dce..628e1c3d 100644 --- a/packages/iconoir-react-native/src/WarningHexagon.tsx +++ b/packages/iconoir-react-native/src/WarningHexagon.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWarningHexagon( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWarningHexagon = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgWarningHexagon( ); -} -const ForwardRef = React.forwardRef(SvgWarningHexagon); +}; +const ForwardRef = forwardRef(SvgWarningHexagon); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WarningSquare.tsx b/packages/iconoir-react-native/src/WarningSquare.tsx index ffe395a2..3094eb2d 100644 --- a/packages/iconoir-react-native/src/WarningSquare.tsx +++ b/packages/iconoir-react-native/src/WarningSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWarningSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWarningSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgWarningSquare( ); -} -const ForwardRef = React.forwardRef(SvgWarningSquare); +}; +const ForwardRef = forwardRef(SvgWarningSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WarningTriangle.tsx b/packages/iconoir-react-native/src/WarningTriangle.tsx index 89210762..9db93b92 100644 --- a/packages/iconoir-react-native/src/WarningTriangle.tsx +++ b/packages/iconoir-react-native/src/WarningTriangle.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWarningTriangle( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWarningTriangle = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgWarningTriangle( ); -} -const ForwardRef = React.forwardRef(SvgWarningTriangle); +}; +const ForwardRef = forwardRef(SvgWarningTriangle); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WarningWindow.tsx b/packages/iconoir-react-native/src/WarningWindow.tsx index 169785a6..fa92b286 100644 --- a/packages/iconoir-react-native/src/WarningWindow.tsx +++ b/packages/iconoir-react-native/src/WarningWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWarningWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWarningWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgWarningWindow( ); -} -const ForwardRef = React.forwardRef(SvgWarningWindow); +}; +const ForwardRef = forwardRef(SvgWarningWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Wash.tsx b/packages/iconoir-react-native/src/Wash.tsx index f96f1d13..c182681a 100644 --- a/packages/iconoir-react-native/src/Wash.tsx +++ b/packages/iconoir-react-native/src/Wash.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWash( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWash = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgWash( ); -} -const ForwardRef = React.forwardRef(SvgWash); +}; +const ForwardRef = forwardRef(SvgWash); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WashingMachine.tsx b/packages/iconoir-react-native/src/WashingMachine.tsx index 49382fe5..daa959b9 100644 --- a/packages/iconoir-react-native/src/WashingMachine.tsx +++ b/packages/iconoir-react-native/src/WashingMachine.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWashingMachine( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWashingMachine = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,33 @@ function SvgWashingMachine( + ); -} -const ForwardRef = React.forwardRef(SvgWashingMachine); +}; +const ForwardRef = forwardRef(SvgWashingMachine); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WateringSoil.tsx b/packages/iconoir-react-native/src/WateringSoil.tsx index 74589fff..5cb2f078 100644 --- a/packages/iconoir-react-native/src/WateringSoil.tsx +++ b/packages/iconoir-react-native/src/WateringSoil.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWateringSoil( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWateringSoil = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgWateringSoil( ); -} -const ForwardRef = React.forwardRef(SvgWateringSoil); +}; +const ForwardRef = forwardRef(SvgWateringSoil); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WebWindow.tsx b/packages/iconoir-react-native/src/WebWindow.tsx index fa2c2bf8..9ee76499 100644 --- a/packages/iconoir-react-native/src/WebWindow.tsx +++ b/packages/iconoir-react-native/src/WebWindow.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWebWindow( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWebWindow = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgWebWindow( ); -} -const ForwardRef = React.forwardRef(SvgWebWindow); +}; +const ForwardRef = forwardRef(SvgWebWindow); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WebWindowClose.tsx b/packages/iconoir-react-native/src/WebWindowClose.tsx index 0c4cd986..0be0b3a2 100644 --- a/packages/iconoir-react-native/src/WebWindowClose.tsx +++ b/packages/iconoir-react-native/src/WebWindowClose.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWebWindowClose( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWebWindowClose = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgWebWindowClose( ); -} -const ForwardRef = React.forwardRef(SvgWebWindowClose); +}; +const ForwardRef = forwardRef(SvgWebWindowClose); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WebWindowEnergyConsumption.tsx b/packages/iconoir-react-native/src/WebWindowEnergyConsumption.tsx index 184d22e2..27e1106a 100644 --- a/packages/iconoir-react-native/src/WebWindowEnergyConsumption.tsx +++ b/packages/iconoir-react-native/src/WebWindowEnergyConsumption.tsx @@ -1,10 +1,12 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWebWindowEnergyConsumption( +const SvgWebWindowEnergyConsumption = ( passedProps: SvgProps, - svgRef?: React.Ref> -) { + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +16,25 @@ function SvgWebWindowEnergyConsumption( ); -} -const ForwardRef = React.forwardRef(SvgWebWindowEnergyConsumption); +}; +const ForwardRef = forwardRef(SvgWebWindowEnergyConsumption); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WebpFormat.tsx b/packages/iconoir-react-native/src/WebpFormat.tsx index 3cbf6830..eafa5559 100644 --- a/packages/iconoir-react-native/src/WebpFormat.tsx +++ b/packages/iconoir-react-native/src/WebpFormat.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWebpFormat( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWebpFormat = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,32 +13,32 @@ function SvgWebpFormat( ); -} -const ForwardRef = React.forwardRef(SvgWebpFormat); +}; +const ForwardRef = forwardRef(SvgWebpFormat); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Weight.tsx b/packages/iconoir-react-native/src/Weight.tsx index 65f2bfbd..9a0692b8 100644 --- a/packages/iconoir-react-native/src/Weight.tsx +++ b/packages/iconoir-react-native/src/Weight.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWeight( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWeight = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgWeight( ); -} -const ForwardRef = React.forwardRef(SvgWeight); +}; +const ForwardRef = forwardRef(SvgWeight); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WeightAlt.tsx b/packages/iconoir-react-native/src/WeightAlt.tsx index 6c19333e..65eab400 100644 --- a/packages/iconoir-react-native/src/WeightAlt.tsx +++ b/packages/iconoir-react-native/src/WeightAlt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWeightAlt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWeightAlt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgWeightAlt( ); -} -const ForwardRef = React.forwardRef(SvgWeightAlt); +}; +const ForwardRef = forwardRef(SvgWeightAlt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WhiteFlag.tsx b/packages/iconoir-react-native/src/WhiteFlag.tsx index 12c32179..9ebbb984 100644 --- a/packages/iconoir-react-native/src/WhiteFlag.tsx +++ b/packages/iconoir-react-native/src/WhiteFlag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWhiteFlag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWhiteFlag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgWhiteFlag( ); -} -const ForwardRef = React.forwardRef(SvgWhiteFlag); +}; +const ForwardRef = forwardRef(SvgWhiteFlag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Wifi.tsx b/packages/iconoir-react-native/src/Wifi.tsx index 9ec45da8..352d03d6 100644 --- a/packages/iconoir-react-native/src/Wifi.tsx +++ b/packages/iconoir-react-native/src/Wifi.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifi( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWifi = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgWifi( ); -} -const ForwardRef = React.forwardRef(SvgWifi); +}; +const ForwardRef = forwardRef(SvgWifi); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WifiError.tsx b/packages/iconoir-react-native/src/WifiError.tsx index 292f33b4..15f9c245 100644 --- a/packages/iconoir-react-native/src/WifiError.tsx +++ b/packages/iconoir-react-native/src/WifiError.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifiError( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWifiError = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgWifiError( ); -} -const ForwardRef = React.forwardRef(SvgWifiError); +}; +const ForwardRef = forwardRef(SvgWifiError); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WifiIssue.tsx b/packages/iconoir-react-native/src/WifiIssue.tsx index 34743c39..a66e0799 100644 --- a/packages/iconoir-react-native/src/WifiIssue.tsx +++ b/packages/iconoir-react-native/src/WifiIssue.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifiIssue( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWifiIssue = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgWifiIssue( ); -} -const ForwardRef = React.forwardRef(SvgWifiIssue); +}; +const ForwardRef = forwardRef(SvgWifiIssue); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WifiOff.tsx b/packages/iconoir-react-native/src/WifiOff.tsx index 04faf861..75424a33 100644 --- a/packages/iconoir-react-native/src/WifiOff.tsx +++ b/packages/iconoir-react-native/src/WifiOff.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifiOff( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWifiOff = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgWifiOff( ); -} -const ForwardRef = React.forwardRef(SvgWifiOff); +}; +const ForwardRef = forwardRef(SvgWifiOff); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WifiSignalNone.tsx b/packages/iconoir-react-native/src/WifiSignalNone.tsx index a1db2fb3..a600058a 100644 --- a/packages/iconoir-react-native/src/WifiSignalNone.tsx +++ b/packages/iconoir-react-native/src/WifiSignalNone.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifiSignalNone( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWifiSignalNone = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgWifiSignalNone( ); -} -const ForwardRef = React.forwardRef(SvgWifiSignalNone); +}; +const ForwardRef = forwardRef(SvgWifiSignalNone); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WifiTag.tsx b/packages/iconoir-react-native/src/WifiTag.tsx index 1ee41db2..2f137265 100644 --- a/packages/iconoir-react-native/src/WifiTag.tsx +++ b/packages/iconoir-react-native/src/WifiTag.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifiTag( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWifiTag = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgWifiTag( ); -} -const ForwardRef = React.forwardRef(SvgWifiTag); +}; +const ForwardRef = forwardRef(SvgWifiTag); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Wind.tsx b/packages/iconoir-react-native/src/Wind.tsx index 93372b97..10a6e733 100644 --- a/packages/iconoir-react-native/src/Wind.tsx +++ b/packages/iconoir-react-native/src/Wind.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWind( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWind = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgWind( ); -} -const ForwardRef = React.forwardRef(SvgWind); +}; +const ForwardRef = forwardRef(SvgWind); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Windows.tsx b/packages/iconoir-react-native/src/Windows.tsx index 5bef5159..cb72974f 100644 --- a/packages/iconoir-react-native/src/Windows.tsx +++ b/packages/iconoir-react-native/src/Windows.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWindows( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWindows = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,19 +13,19 @@ function SvgWindows( ); -} -const ForwardRef = React.forwardRef(SvgWindows); +}; +const ForwardRef = forwardRef(SvgWindows); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Wolf.tsx b/packages/iconoir-react-native/src/Wolf.tsx index f27bbdd7..ae7869bc 100644 --- a/packages/iconoir-react-native/src/Wolf.tsx +++ b/packages/iconoir-react-native/src/Wolf.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWolf( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWolf = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgWolf( ); -} -const ForwardRef = React.forwardRef(SvgWolf); +}; +const ForwardRef = forwardRef(SvgWolf); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WomenTShirt.tsx b/packages/iconoir-react-native/src/WomenTShirt.tsx index 8d2b45f0..91844b80 100644 --- a/packages/iconoir-react-native/src/WomenTShirt.tsx +++ b/packages/iconoir-react-native/src/WomenTShirt.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWomenTShirt( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWomenTShirt = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgWomenTShirt( ); -} -const ForwardRef = React.forwardRef(SvgWomenTShirt); +}; +const ForwardRef = forwardRef(SvgWomenTShirt); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/WrapText.tsx b/packages/iconoir-react-native/src/WrapText.tsx index 5f1f9dc0..59cbe9a1 100644 --- a/packages/iconoir-react-native/src/WrapText.tsx +++ b/packages/iconoir-react-native/src/WrapText.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWrapText( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWrapText = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgWrapText( ); -} -const ForwardRef = React.forwardRef(SvgWrapText); +}; +const ForwardRef = forwardRef(SvgWrapText); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Wrench.tsx b/packages/iconoir-react-native/src/Wrench.tsx index de335c8c..260bff4b 100644 --- a/packages/iconoir-react-native/src/Wrench.tsx +++ b/packages/iconoir-react-native/src/Wrench.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg"; +import Svg, { G, Path, Defs, ClipPath } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWrench( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWrench = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,28 +13,28 @@ function SvgWrench( - + - + ); -} -const ForwardRef = React.forwardRef(SvgWrench); +}; +const ForwardRef = forwardRef(SvgWrench); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Wristwatch.tsx b/packages/iconoir-react-native/src/Wristwatch.tsx index 693f8d5a..9fa4fb6c 100644 --- a/packages/iconoir-react-native/src/Wristwatch.tsx +++ b/packages/iconoir-react-native/src/Wristwatch.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWristwatch( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWristwatch = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgWristwatch( ); -} -const ForwardRef = React.forwardRef(SvgWristwatch); +}; +const ForwardRef = forwardRef(SvgWristwatch); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Www.tsx b/packages/iconoir-react-native/src/Www.tsx index a89a4419..66f09315 100644 --- a/packages/iconoir-react-native/src/Www.tsx +++ b/packages/iconoir-react-native/src/Www.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWww( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgWww = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,27 @@ function SvgWww( + ); -} -const ForwardRef = React.forwardRef(SvgWww); +}; +const ForwardRef = forwardRef(SvgWww); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/XCoordinate.tsx b/packages/iconoir-react-native/src/XCoordinate.tsx index 2df4323a..88c11399 100644 --- a/packages/iconoir-react-native/src/XCoordinate.tsx +++ b/packages/iconoir-react-native/src/XCoordinate.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXCoordinate( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgXCoordinate = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgXCoordinate( ); -} -const ForwardRef = React.forwardRef(SvgXCoordinate); +}; +const ForwardRef = forwardRef(SvgXCoordinate); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/XboxA.tsx b/packages/iconoir-react-native/src/XboxA.tsx index 1838c20b..7168bcda 100644 --- a/packages/iconoir-react-native/src/XboxA.tsx +++ b/packages/iconoir-react-native/src/XboxA.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXboxA( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgXboxA = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgXboxA( ); -} -const ForwardRef = React.forwardRef(SvgXboxA); +}; +const ForwardRef = forwardRef(SvgXboxA); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/XboxB.tsx b/packages/iconoir-react-native/src/XboxB.tsx index 7eef77f0..2ab50e65 100644 --- a/packages/iconoir-react-native/src/XboxB.tsx +++ b/packages/iconoir-react-native/src/XboxB.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXboxB( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgXboxB = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgXboxB( ); -} -const ForwardRef = React.forwardRef(SvgXboxB); +}; +const ForwardRef = forwardRef(SvgXboxB); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/XboxX.tsx b/packages/iconoir-react-native/src/XboxX.tsx index d132ca41..bd0b48f4 100644 --- a/packages/iconoir-react-native/src/XboxX.tsx +++ b/packages/iconoir-react-native/src/XboxX.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXboxX( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgXboxX = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgXboxX( ); -} -const ForwardRef = React.forwardRef(SvgXboxX); +}; +const ForwardRef = forwardRef(SvgXboxX); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/XboxY.tsx b/packages/iconoir-react-native/src/XboxY.tsx index 6eeb4510..444e2ab7 100644 --- a/packages/iconoir-react-native/src/XboxY.tsx +++ b/packages/iconoir-react-native/src/XboxY.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXboxY( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgXboxY = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgXboxY( ); -} -const ForwardRef = React.forwardRef(SvgXboxY); +}; +const ForwardRef = forwardRef(SvgXboxY); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/XrayView.tsx b/packages/iconoir-react-native/src/XrayView.tsx index 89d6b9d1..fcf07480 100644 --- a/packages/iconoir-react-native/src/XrayView.tsx +++ b/packages/iconoir-react-native/src/XrayView.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXrayView( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgXrayView = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgXrayView( ); -} -const ForwardRef = React.forwardRef(SvgXrayView); +}; +const ForwardRef = forwardRef(SvgXrayView); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/YCoordinate.tsx b/packages/iconoir-react-native/src/YCoordinate.tsx index d40e33fc..4aba712e 100644 --- a/packages/iconoir-react-native/src/YCoordinate.tsx +++ b/packages/iconoir-react-native/src/YCoordinate.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYCoordinate( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgYCoordinate = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgYCoordinate( ); -} -const ForwardRef = React.forwardRef(SvgYCoordinate); +}; +const ForwardRef = forwardRef(SvgYCoordinate); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Yelp.tsx b/packages/iconoir-react-native/src/Yelp.tsx index 1d3caa5b..6eb04dcc 100644 --- a/packages/iconoir-react-native/src/Yelp.tsx +++ b/packages/iconoir-react-native/src/Yelp.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYelp( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgYelp = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgYelp( ); -} -const ForwardRef = React.forwardRef(SvgYelp); +}; +const ForwardRef = forwardRef(SvgYelp); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Yen.tsx b/packages/iconoir-react-native/src/Yen.tsx index 015eed3b..9fde5b0a 100644 --- a/packages/iconoir-react-native/src/Yen.tsx +++ b/packages/iconoir-react-native/src/Yen.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYen( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgYen = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgYen( ); -} -const ForwardRef = React.forwardRef(SvgYen); +}; +const ForwardRef = forwardRef(SvgYen); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/YenSquare.tsx b/packages/iconoir-react-native/src/YenSquare.tsx index 9f355734..93230f5f 100644 --- a/packages/iconoir-react-native/src/YenSquare.tsx +++ b/packages/iconoir-react-native/src/YenSquare.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYenSquare( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgYenSquare = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,25 +13,25 @@ function SvgYenSquare( ); -} -const ForwardRef = React.forwardRef(SvgYenSquare); +}; +const ForwardRef = forwardRef(SvgYenSquare); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/Yoga.tsx b/packages/iconoir-react-native/src/Yoga.tsx index 09f9d1e5..deff1624 100644 --- a/packages/iconoir-react-native/src/Yoga.tsx +++ b/packages/iconoir-react-native/src/Yoga.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYoga( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgYoga = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,33 +13,33 @@ function SvgYoga( ); -} -const ForwardRef = React.forwardRef(SvgYoga); +}; +const ForwardRef = forwardRef(SvgYoga); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/YouTube.tsx b/packages/iconoir-react-native/src/YouTube.tsx index aed9ac3b..3765a1b4 100644 --- a/packages/iconoir-react-native/src/YouTube.tsx +++ b/packages/iconoir-react-native/src/YouTube.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYouTube( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgYouTube = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,26 +13,26 @@ function SvgYouTube( ); -} -const ForwardRef = React.forwardRef(SvgYouTube); +}; +const ForwardRef = forwardRef(SvgYouTube); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ZCoordinate.tsx b/packages/iconoir-react-native/src/ZCoordinate.tsx index 2005e5be..c7a3e564 100644 --- a/packages/iconoir-react-native/src/ZCoordinate.tsx +++ b/packages/iconoir-react-native/src/ZCoordinate.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgZCoordinate( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgZCoordinate = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,27 +13,27 @@ function SvgZCoordinate( ); -} -const ForwardRef = React.forwardRef(SvgZCoordinate); +}; +const ForwardRef = forwardRef(SvgZCoordinate); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ZoomIn.tsx b/packages/iconoir-react-native/src/ZoomIn.tsx index d03471e4..96e471ce 100644 --- a/packages/iconoir-react-native/src/ZoomIn.tsx +++ b/packages/iconoir-react-native/src/ZoomIn.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgZoomIn( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgZoomIn = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgZoomIn( ); -} -const ForwardRef = React.forwardRef(SvgZoomIn); +}; +const ForwardRef = forwardRef(SvgZoomIn); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/ZoomOut.tsx b/packages/iconoir-react-native/src/ZoomOut.tsx index b689ec1f..2432e332 100644 --- a/packages/iconoir-react-native/src/ZoomOut.tsx +++ b/packages/iconoir-react-native/src/ZoomOut.tsx @@ -1,10 +1,9 @@ import * as React from "react"; -import Svg, { SvgProps, Path } from "react-native-svg"; +import Svg, { Path } from "react-native-svg"; +import type { SvgProps } from "react-native-svg"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgZoomOut( - passedProps: SvgProps, - svgRef?: React.Ref> -) { +const SvgZoomOut = (passedProps: SvgProps, ref: Ref) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -14,21 +13,21 @@ function SvgZoomOut( ); -} -const ForwardRef = React.forwardRef(SvgZoomOut); +}; +const ForwardRef = forwardRef(SvgZoomOut); export default ForwardRef; diff --git a/packages/iconoir-react-native/src/index.ts b/packages/iconoir-react-native/src/index.ts new file mode 100644 index 00000000..efb2c8d5 --- /dev/null +++ b/packages/iconoir-react-native/src/index.ts @@ -0,0 +1,1376 @@ +export { default as Svg3DAddHole } from './3DAddHole'; +export { default as Svg3DArcCenterPt } from './3DArcCenterPt'; +export { default as Svg3DArc } from './3DArc'; +export { default as Svg3DBridge } from './3DBridge'; +export { default as Svg3DCenterBox } from './3DCenterBox'; +export { default as Svg3DDraftFace } from './3DDraftFace'; +export { default as Svg3DEllipseThreePts } from './3DEllipseThreePts'; +export { default as Svg3DEllipse } from './3DEllipse'; +export { default as Svg3DPtBox } from './3DPtBox'; +export { default as Svg3DRectCornerToCorner } from './3DRectCornerToCorner'; +export { default as Svg3DRectFromCenter } from './3DRectFromCenter'; +export { default as Svg3DRectThreePts } from './3DRectThreePts'; +export { default as Svg3DSelectEdge } from './3DSelectEdge'; +export { default as Svg3DSelectFace } from './3DSelectFace'; +export { default as Svg3DSelectPoint } from './3DSelectPoint'; +export { default as Svg3DSelectSolid } from './3DSelectSolid'; +export { default as Svg3DThreePtsBox } from './3DThreePtsBox'; +export { default as AccessibilitySign } from './AccessibilitySign'; +export { default as AccessibilityTech } from './AccessibilityTech'; +export { default as Accessibility } from './Accessibility'; +export { default as Activity } from './Activity'; +export { default as AddCircle } from './AddCircle'; +export { default as AddDatabaseScript } from './AddDatabaseScript'; +export { default as AddFolder } from './AddFolder'; +export { default as AddFrame } from './AddFrame'; +export { default as AddHexagon } from './AddHexagon'; +export { default as AddKeyframeAlt } from './AddKeyframeAlt'; +export { default as AddKeyframe } from './AddKeyframe'; +export { default as AddKeyframes } from './AddKeyframes'; +export { default as AddLens } from './AddLens'; +export { default as AddMediaImage } from './AddMediaImage'; +export { default as AddMediaVideo } from './AddMediaVideo'; +export { default as AddPageAlt } from './AddPageAlt'; +export { default as AddPage } from './AddPage'; +export { default as AddPinAlt } from './AddPinAlt'; +export { default as AddSelection } from './AddSelection'; +export { default as AddSquare } from './AddSquare'; +export { default as AddToCart } from './AddToCart'; +export { default as AddUser } from './AddUser'; +export { default as AdobeAfterEffects } from './AdobeAfterEffects'; +export { default as AdobeIllustrator } from './AdobeIllustrator'; +export { default as AdobeIndesign } from './AdobeIndesign'; +export { default as AdobeLightroom } from './AdobeLightroom'; +export { default as AdobePhotoshop } from './AdobePhotoshop'; +export { default as AdobeXd } from './AdobeXd'; +export { default as AfricanTree } from './AfricanTree'; +export { default as Agile } from './Agile'; +export { default as AirConditioner } from './AirConditioner'; +export { default as AirplaneHelix45Deg } from './AirplaneHelix45Deg'; +export { default as AirplaneHelix } from './AirplaneHelix'; +export { default as AirplaneOff } from './AirplaneOff'; +export { default as AirplaneRotation } from './AirplaneRotation'; +export { default as Airplane } from './Airplane'; +export { default as Airplay } from './Airplay'; +export { default as Alarm } from './Alarm'; +export { default as AlbumCarousel } from './AlbumCarousel'; +export { default as AlbumList } from './AlbumList'; +export { default as AlbumOpen } from './AlbumOpen'; +export { default as Album } from './Album'; +export { default as AlignBottomBox } from './AlignBottomBox'; +export { default as AlignCenter } from './AlignCenter'; +export { default as AlignHorizontalCenters } from './AlignHorizontalCenters'; +export { default as AlignHorizontalSpacing } from './AlignHorizontalSpacing'; +export { default as AlignJustify } from './AlignJustify'; +export { default as AlignLeftBox } from './AlignLeftBox'; +export { default as AlignLeft } from './AlignLeft'; +export { default as AlignRightBox } from './AlignRightBox'; +export { default as AlignRight } from './AlignRight'; +export { default as AlignTopBox } from './AlignTopBox'; +export { default as AlignVerticalCenters } from './AlignVerticalCenters'; +export { default as AlignVerticalSpacing } from './AlignVerticalSpacing'; +export { default as AngleTool } from './AngleTool'; +export { default as AntennaOff } from './AntennaOff'; +export { default as AntennaSignalTag } from './AntennaSignalTag'; +export { default as AntennaSignal } from './AntennaSignal'; +export { default as Antenna } from './Antenna'; +export { default as AppNotification } from './AppNotification'; +export { default as AppStore } from './AppStore'; +export { default as AppWindow } from './AppWindow'; +export { default as AppleHalfAlt } from './AppleHalfAlt'; +export { default as AppleHalf } from './AppleHalf'; +export { default as AppleImac2021Side } from './AppleImac2021Side'; +export { default as AppleImac2021 } from './AppleImac2021'; +export { default as AppleMac } from './AppleMac'; +export { default as AppleShortcuts } from './AppleShortcuts'; +export { default as AppleSwift } from './AppleSwift'; +export { default as AppleWallet } from './AppleWallet'; +export { default as Apple } from './Apple'; +export { default as ArSymbol } from './ArSymbol'; +export { default as Arcade } from './Arcade'; +export { default as ArcheryMatch } from './ArcheryMatch'; +export { default as Archery } from './Archery'; +export { default as Archive } from './Archive'; +export { default as AreaSearch } from './AreaSearch'; +export { default as ArrowArchery } from './ArrowArchery'; +export { default as ArrowBlCircle } from './ArrowBlCircle'; +export { default as ArrowBlSquare } from './ArrowBlSquare'; +export { default as ArrowBl } from './ArrowBl'; +export { default as ArrowBrCircle } from './ArrowBrCircle'; +export { default as ArrowBrSquare } from './ArrowBrSquare'; +export { default as ArrowBr } from './ArrowBr'; +export { default as ArrowDownCircle } from './ArrowDownCircle'; +export { default as ArrowDown } from './ArrowDown'; +export { default as ArrowEmailForward } from './ArrowEmailForward'; +export { default as ArrowLeftCircle } from './ArrowLeftCircle'; +export { default as ArrowLeft } from './ArrowLeft'; +export { default as ArrowRightCircle } from './ArrowRightCircle'; +export { default as ArrowRight } from './ArrowRight'; +export { default as ArrowSeparateVertical } from './ArrowSeparateVertical'; +export { default as ArrowSeparate } from './ArrowSeparate'; +export { default as ArrowTlCircle } from './ArrowTlCircle'; +export { default as ArrowTlSquare } from './ArrowTlSquare'; +export { default as ArrowTl } from './ArrowTl'; +export { default as ArrowTrCircle } from './ArrowTrCircle'; +export { default as ArrowTrSquare } from './ArrowTrSquare'; +export { default as ArrowTr } from './ArrowTr'; +export { default as ArrowUnionVertical } from './ArrowUnionVertical'; +export { default as ArrowUnion } from './ArrowUnion'; +export { default as ArrowUpCircle } from './ArrowUpCircle'; +export { default as ArrowUp } from './ArrowUp'; +export { default as ArrowsUpFromLine } from './ArrowsUpFromLine'; +export { default as Asana } from './Asana'; +export { default as AtSignCircle } from './AtSignCircle'; +export { default as AtSign } from './AtSign'; +export { default as Atom } from './Atom'; +export { default as Attachment } from './Attachment'; +export { default as AugmentedReality } from './AugmentedReality'; +export { default as AutoFlash } from './AutoFlash'; +export { default as AviFormat } from './AviFormat'; +export { default as Axes } from './Axes'; +export { default as Backward15Seconds } from './Backward15Seconds'; +export { default as Bag } from './Bag'; +export { default as Balcony } from './Balcony'; +export { default as Bank } from './Bank'; +export { default as Barcode } from './Barcode'; +export { default as BasketballAlt } from './BasketballAlt'; +export { default as BasketballField } from './BasketballField'; +export { default as Basketball } from './Basketball'; +export { default as Bathroom } from './Bathroom'; +export { default as Battery25 } from './Battery25'; +export { default as Battery50 } from './Battery50'; +export { default as Battery75 } from './Battery75'; +export { default as BatteryCharging } from './BatteryCharging'; +export { default as BatteryEmpty } from './BatteryEmpty'; +export { default as BatteryFull } from './BatteryFull'; +export { default as BatteryIndicator } from './BatteryIndicator'; +export { default as BatteryWarning } from './BatteryWarning'; +export { default as Bbq } from './Bbq'; +export { default as BeachBagBig } from './BeachBagBig'; +export { default as BeachBag } from './BeachBag'; +export { default as BedReady } from './BedReady'; +export { default as Bed } from './Bed'; +export { default as BehanceTag } from './BehanceTag'; +export { default as Behance } from './Behance'; +export { default as BellNotification } from './BellNotification'; +export { default as BellOff } from './BellOff'; +export { default as Bell } from './Bell'; +export { default as Bicycle } from './Bicycle'; +export { default as BinAdd } from './BinAdd'; +export { default as BinFull } from './BinFull'; +export { default as BinHalf } from './BinHalf'; +export { default as BinMinus } from './BinMinus'; +export { default as Bin } from './Bin'; +export { default as Binocular } from './Binocular'; +export { default as BirthdayCake } from './BirthdayCake'; +export { default as Bishop } from './Bishop'; +export { default as Bitbucket } from './Bitbucket'; +export { default as BitcoinCircle } from './BitcoinCircle'; +export { default as BitcoinRotateOut } from './BitcoinRotateOut'; +export { default as BluetoothTag } from './BluetoothTag'; +export { default as Bluetooth } from './Bluetooth'; +export { default as BoldSquare } from './BoldSquare'; +export { default as Bold } from './Bold'; +export { default as Bonfire } from './Bonfire'; +export { default as BookStack } from './BookStack'; +export { default as Book } from './Book'; +export { default as BookmarkBook } from './BookmarkBook'; +export { default as BookmarkCircle } from './BookmarkCircle'; +export { default as BookmarkEmpty } from './BookmarkEmpty'; +export { default as BorderBl } from './BorderBl'; +export { default as BorderBottom } from './BorderBottom'; +export { default as BorderBr } from './BorderBr'; +export { default as BorderInner } from './BorderInner'; +export { default as BorderLeft } from './BorderLeft'; +export { default as BorderOut } from './BorderOut'; +export { default as BorderRight } from './BorderRight'; +export { default as BorderTl } from './BorderTl'; +export { default as BorderTop } from './BorderTop'; +export { default as BorderTr } from './BorderTr'; +export { default as BounceLeft } from './BounceLeft'; +export { default as BounceRight } from './BounceRight'; +export { default as BowlingBall } from './BowlingBall'; +export { default as BoxIso } from './BoxIso'; +export { default as Box } from './Box'; +export { default as BoxingGlove } from './BoxingGlove'; +export { default as BrainElectricity } from './BrainElectricity'; +export { default as BrainResearch } from './BrainResearch'; +export { default as BrainWarning } from './BrainWarning'; +export { default as Brain } from './Brain'; +export { default as BreadSlice } from './BreadSlice'; +export { default as BridgeSurface } from './BridgeSurface'; +export { default as BrightCrown } from './BrightCrown'; +export { default as BrightStar } from './BrightStar'; +export { default as BrightnessWindow } from './BrightnessWindow'; +export { default as Brightness } from './Brightness'; +export { default as BubbleDownload } from './BubbleDownload'; +export { default as BubbleError } from './BubbleError'; +export { default as BubbleIncome } from './BubbleIncome'; +export { default as BubbleOutcome } from './BubbleOutcome'; +export { default as BubbleSearch } from './BubbleSearch'; +export { default as BubbleStar } from './BubbleStar'; +export { default as BubbleUpload } from './BubbleUpload'; +export { default as BubbleWarning } from './BubbleWarning'; +export { default as Building } from './Building'; +export { default as BusStop } from './BusStop'; +export { default as Bus } from './Bus'; +export { default as CableTag } from './CableTag'; +export { default as Calculator } from './Calculator'; +export { default as CalendarMinus } from './CalendarMinus'; +export { default as CalendarPlus } from './CalendarPlus'; +export { default as Calendar } from './Calendar'; +export { default as Camera } from './Camera'; +export { default as Cancel } from './Cancel'; +export { default as CandlestickChart } from './CandlestickChart'; +export { default as Car } from './Car'; +export { default as Carbon } from './Carbon'; +export { default as CardIssue } from './CardIssue'; +export { default as CardLocked } from './CardLocked'; +export { default as CardReader } from './CardReader'; +export { default as CardSecurity } from './CardSecurity'; +export { default as CardWallet } from './CardWallet'; +export { default as CartAlt } from './CartAlt'; +export { default as Cart } from './Cart'; +export { default as Cash } from './Cash'; +export { default as Cell2X2 } from './Cell2X2'; +export { default as Cellar } from './Cellar'; +export { default as CenterAlign } from './CenterAlign'; +export { default as ChatAdd } from './ChatAdd'; +export { default as ChatBubbleCheck1 } from './ChatBubbleCheck1'; +export { default as ChatBubbleCheck } from './ChatBubbleCheck'; +export { default as ChatBubbleEmpty } from './ChatBubbleEmpty'; +export { default as ChatBubbleError } from './ChatBubbleError'; +export { default as ChatBubbleQuestion } from './ChatBubbleQuestion'; +export { default as ChatBubbleTranslate } from './ChatBubbleTranslate'; +export { default as ChatBubbleWarning } from './ChatBubbleWarning'; +export { default as ChatBubble } from './ChatBubble'; +export { default as ChatLines } from './ChatLines'; +export { default as ChatRemove } from './ChatRemove'; +export { default as CheckCircle } from './CheckCircle'; +export { default as CheckWindow } from './CheckWindow'; +export { default as Check } from './Check'; +export { default as Chocolate } from './Chocolate'; +export { default as ChromecastActive } from './ChromecastActive'; +export { default as Chromecast } from './Chromecast'; +export { default as ChurchAlt } from './ChurchAlt'; +export { default as Church } from './Church'; +export { default as CinemaOld } from './CinemaOld'; +export { default as CircleSpark } from './CircleSpark'; +export { default as Circle } from './Circle'; +export { default as City } from './City'; +export { default as CleanWater } from './CleanWater'; +export { default as ClipboardCheck } from './ClipboardCheck'; +export { default as ClockRotateRight } from './ClockRotateRight'; +export { default as Clock } from './Clock'; +export { default as ClosedCaptions } from './ClosedCaptions'; +export { default as Closet } from './Closet'; +export { default as CloudBookAlt } from './CloudBookAlt'; +export { default as CloudCheck } from './CloudCheck'; +export { default as CloudDesync } from './CloudDesync'; +export { default as CloudDownload } from './CloudDownload'; +export { default as CloudError } from './CloudError'; +export { default as CloudSunny } from './CloudSunny'; +export { default as CloudSync } from './CloudSync'; +export { default as CloudUpload } from './CloudUpload'; +export { default as Cloud } from './Cloud'; +export { default as Clutery } from './Clutery'; +export { default as CodeBracketsSquare } from './CodeBracketsSquare'; +export { default as CodeBrackets } from './CodeBrackets'; +export { default as Code } from './Code'; +export { default as Codepen } from './Codepen'; +export { default as CoffeeCup } from './CoffeeCup'; +export { default as Coin } from './Coin'; +export { default as CoinsSwap } from './CoinsSwap'; +export { default as Coins } from './Coins'; +export { default as CollageFrame } from './CollageFrame'; +export { default as Collapse } from './Collapse'; +export { default as ColorFilter } from './ColorFilter'; +export { default as ColorPickerEmpty } from './ColorPickerEmpty'; +export { default as ColorPicker } from './ColorPicker'; +export { default as ColorWheel } from './ColorWheel'; +export { default as Combine } from './Combine'; +export { default as Commodity } from './Commodity'; +export { default as Community } from './Community'; +export { default as CompAlignBottom } from './CompAlignBottom'; +export { default as CompAlignLeft } from './CompAlignLeft'; +export { default as CompAlignRight } from './CompAlignRight'; +export { default as CompAlignTop } from './CompAlignTop'; +export { default as CompactDisc } from './CompactDisc'; +export { default as Compass } from './Compass'; +export { default as Component } from './Component'; +export { default as CompressLines } from './CompressLines'; +export { default as Compress } from './Compress'; +export { default as Computer } from './Computer'; +export { default as ConstrainedSurface } from './ConstrainedSurface'; +export { default as Consumable } from './Consumable'; +export { default as Contactless } from './Contactless'; +export { default as ControlSlider } from './ControlSlider'; +export { default as Cookie } from './Cookie'; +export { default as Cooling } from './Cooling'; +export { default as Copy } from './Copy'; +export { default as Copyright } from './Copyright'; +export { default as CornerBottomLeft } from './CornerBottomLeft'; +export { default as CornerBottomRight } from './CornerBottomRight'; +export { default as CornerTopLeft } from './CornerTopLeft'; +export { default as CornerTopRight } from './CornerTopRight'; +export { default as CpuWarning } from './CpuWarning'; +export { default as Cpu } from './Cpu'; +export { default as CrackedEgg } from './CrackedEgg'; +export { default as CreativeCommons } from './CreativeCommons'; +export { default as CreditCard } from './CreditCard'; +export { default as CreditCards } from './CreditCards'; +export { default as Crib } from './Crib'; +export { default as CropRotateBl } from './CropRotateBl'; +export { default as CropRotateBr } from './CropRotateBr'; +export { default as CropRotateTl } from './CropRotateTl'; +export { default as CropRotateTr } from './CropRotateTr'; +export { default as Crop } from './Crop'; +export { default as CrownCircle } from './CrownCircle'; +export { default as Crown } from './Crown'; +export { default as Css3 } from './Css3'; +export { default as CubeReplaceFace } from './CubeReplaceFace'; +export { default as CursorPointer } from './CursorPointer'; +export { default as CurveArray } from './CurveArray'; +export { default as CutAlt } from './CutAlt'; +export { default as CutSolidWithCurve } from './CutSolidWithCurve'; +export { default as Cut } from './Cut'; +export { default as Cycling } from './Cycling'; +export { default as Cylinder } from './Cylinder'; +export { default as DashFlag } from './DashFlag'; +export { default as DashboardDots } from './DashboardDots'; +export { default as DashboardSpeed } from './DashboardSpeed'; +export { default as Dashboard } from './Dashboard'; +export { default as DataTransferBoth } from './DataTransferBoth'; +export { default as DataTransferCheck } from './DataTransferCheck'; +export { default as DataTransferDown } from './DataTransferDown'; +export { default as DataTransferUp } from './DataTransferUp'; +export { default as DataTransferWarning } from './DataTransferWarning'; +export { default as DatabaseBackup } from './DatabaseBackup'; +export { default as DatabaseExport } from './DatabaseExport'; +export { default as DatabaseMonitor } from './DatabaseMonitor'; +export { default as DatabaseRestore } from './DatabaseRestore'; +export { default as DatabaseScript } from './DatabaseScript'; +export { default as DatabaseSettings } from './DatabaseSettings'; +export { default as DatabaseStar } from './DatabaseStar'; +export { default as DatabaseStats } from './DatabaseStats'; +export { default as DatabaseTag } from './DatabaseTag'; +export { default as DbCheck } from './DbCheck'; +export { default as DbError } from './DbError'; +export { default as DbSearch } from './DbSearch'; +export { default as DbStar } from './DbStar'; +export { default as DbWarning } from './DbWarning'; +export { default as Db } from './Db'; +export { default as DeCompress } from './DeCompress'; +export { default as DeleteCircle } from './DeleteCircle'; +export { default as DeliveryTruck } from './DeliveryTruck'; +export { default as Delivery } from './Delivery'; +export { default as Depth } from './Depth'; +export { default as DesignNib } from './DesignNib'; +export { default as DesignPencil } from './DesignPencil'; +export { default as Desk } from './Desk'; +export { default as DevModeLaptop } from './DevModeLaptop'; +export { default as DevModePhone } from './DevModePhone'; +export { default as Developer } from './Developer'; +export { default as DewPoint } from './DewPoint'; +export { default as Dialpad } from './Dialpad'; +export { default as Diameter } from './Diameter'; +export { default as DiceFive } from './DiceFive'; +export { default as DiceFour } from './DiceFour'; +export { default as DiceOne } from './DiceOne'; +export { default as DiceSix } from './DiceSix'; +export { default as DiceThree } from './DiceThree'; +export { default as DiceTwo } from './DiceTwo'; +export { default as DimmerSwitch } from './DimmerSwitch'; +export { default as DirectorChair } from './DirectorChair'; +export { default as Discord } from './Discord'; +export { default as Dishwasher } from './Dishwasher'; +export { default as Display4K } from './Display4K'; +export { default as DivideSelection1 } from './DivideSelection1'; +export { default as DivideSelection2 } from './DivideSelection2'; +export { default as DivideThree } from './DivideThree'; +export { default as Divide } from './Divide'; +export { default as Dna } from './Dna'; +export { default as DocSearchAlt } from './DocSearchAlt'; +export { default as DocSearch } from './DocSearch'; +export { default as DocStarAlt } from './DocStarAlt'; +export { default as DocStar } from './DocStar'; +export { default as DogecoinCircle } from './DogecoinCircle'; +export { default as DogecoinRotateOut } from './DogecoinRotateOut'; +export { default as Dollar } from './Dollar'; +export { default as DomoticIssue } from './DomoticIssue'; +export { default as Donate } from './Donate'; +export { default as DoubleCheck } from './DoubleCheck'; +export { default as DownRoundArrow } from './DownRoundArrow'; +export { default as DownloadCircle } from './DownloadCircle'; +export { default as DownloadDataWindow } from './DownloadDataWindow'; +export { default as DownloadSquare } from './DownloadSquare'; +export { default as Download } from './Download'; +export { default as DragHandGesture } from './DragHandGesture'; +export { default as Drag } from './Drag'; +export { default as Drawer } from './Drawer'; +export { default as Dribbble } from './Dribbble'; +export { default as DroneChargeFull } from './DroneChargeFull'; +export { default as DroneChargeHalf } from './DroneChargeHalf'; +export { default as DroneChargeLow } from './DroneChargeLow'; +export { default as DroneCheck } from './DroneCheck'; +export { default as DroneError } from './DroneError'; +export { default as DroneLanding } from './DroneLanding'; +export { default as DroneRefresh } from './DroneRefresh'; +export { default as DroneTakeOff } from './DroneTakeOff'; +export { default as Drone } from './Drone'; +export { default as DropletHalf } from './DropletHalf'; +export { default as Droplet } from './Droplet'; +export { default as EaseCurveControlPoints } from './EaseCurveControlPoints'; +export { default as EaseInControlPoint } from './EaseInControlPoint'; +export { default as EaseInOut } from './EaseInOut'; +export { default as EaseIn } from './EaseIn'; +export { default as EaseOutControlPoint } from './EaseOutControlPoint'; +export { default as EaseOut } from './EaseOut'; +export { default as EcologyBook } from './EcologyBook'; +export { default as EditPencil } from './EditPencil'; +export { default as Edit } from './Edit'; +export { default as Egg } from './Egg'; +export { default as Eject } from './Eject'; +export { default as ElectronicsChip } from './ElectronicsChip'; +export { default as ElectronicsTransistor } from './ElectronicsTransistor'; +export { default as Elevator } from './Elevator'; +export { default as EmojiBall } from './EmojiBall'; +export { default as EmojiBlinkLeft } from './EmojiBlinkLeft'; +export { default as EmojiBlinkRight } from './EmojiBlinkRight'; +export { default as EmojiLookDown } from './EmojiLookDown'; +export { default as EmojiLookLeft } from './EmojiLookLeft'; +export { default as EmojiLookRight } from './EmojiLookRight'; +export { default as EmojiLookUp } from './EmojiLookUp'; +export { default as EmojiPuzzled } from './EmojiPuzzled'; +export { default as EmojiQuite } from './EmojiQuite'; +export { default as EmojiReally } from './EmojiReally'; +export { default as EmojiSad } from './EmojiSad'; +export { default as EmojiSatisfied } from './EmojiSatisfied'; +export { default as EmojiSingLeftNote } from './EmojiSingLeftNote'; +export { default as EmojiSingLeft } from './EmojiSingLeft'; +export { default as EmojiSingRightNote } from './EmojiSingRightNote'; +export { default as EmojiSingRight } from './EmojiSingRight'; +export { default as EmojiSurpriseAlt } from './EmojiSurpriseAlt'; +export { default as EmojiSurprise } from './EmojiSurprise'; +export { default as EmojiTalkingAngry } from './EmojiTalkingAngry'; +export { default as EmojiTalkingHappy } from './EmojiTalkingHappy'; +export { default as EmojiThinkLeft } from './EmojiThinkLeft'; +export { default as EmojiThinkRight } from './EmojiThinkRight'; +export { default as Emoji } from './Emoji'; +export { default as EmptyPage } from './EmptyPage'; +export { default as EnergyUsageWindow } from './EnergyUsageWindow'; +export { default as EnlargeRoundArrow } from './EnlargeRoundArrow'; +export { default as Enlarge } from './Enlarge'; +export { default as Erase } from './Erase'; +export { default as ErrorWindow } from './ErrorWindow'; +export { default as EthereumCircle } from './EthereumCircle'; +export { default as EthereumRotateOut } from './EthereumRotateOut'; +export { default as EuroSquare } from './EuroSquare'; +export { default as Euro } from './Euro'; +export { default as EvChargeAlt } from './EvChargeAlt'; +export { default as EvCharge } from './EvCharge'; +export { default as EvPlugCharging } from './EvPlugCharging'; +export { default as EvPlugError } from './EvPlugError'; +export { default as EvPlug } from './EvPlug'; +export { default as EvStation } from './EvStation'; +export { default as EvTag } from './EvTag'; +export { default as Exclude } from './Exclude'; +export { default as ExpandLines } from './ExpandLines'; +export { default as Expand } from './Expand'; +export { default as Extrude } from './Extrude'; +export { default as EyeAlt } from './EyeAlt'; +export { default as EyeClose } from './EyeClose'; +export { default as EyeEmpty } from './EyeEmpty'; +export { default as EyeOff } from './EyeOff'; +export { default as FaceId } from './FaceId'; +export { default as FacebookTag } from './FacebookTag'; +export { default as Facebook } from './Facebook'; +export { default as Facetime } from './Facetime'; +export { default as Farm } from './Farm'; +export { default as FastArrowDownBox } from './FastArrowDownBox'; +export { default as FastArrowDown } from './FastArrowDown'; +export { default as FastArrowLeftBox } from './FastArrowLeftBox'; +export { default as FastArrowLeft } from './FastArrowLeft'; +export { default as FastArrowRightBox } from './FastArrowRightBox'; +export { default as FastArrowRight } from './FastArrowRight'; +export { default as FastArrowUpBox } from './FastArrowUpBox'; +export { default as FastArrowUp } from './FastArrowUp'; +export { default as FastDownCircle } from './FastDownCircle'; +export { default as FastLeftCircle } from './FastLeftCircle'; +export { default as FastRightCircle } from './FastRightCircle'; +export { default as FastUpCircle } from './FastUpCircle'; +export { default as FavouriteBook } from './FavouriteBook'; +export { default as FavouriteWindow } from './FavouriteWindow'; +export { default as Female } from './Female'; +export { default as Figma } from './Figma'; +export { default as FileNotFound } from './FileNotFound'; +export { default as FillColor } from './FillColor'; +export { default as Fillet3D } from './Fillet3D'; +export { default as FilterAlt } from './FilterAlt'; +export { default as FilterListCircle } from './FilterListCircle'; +export { default as FilterList } from './FilterList'; +export { default as Filter } from './Filter'; +export { default as Finder } from './Finder'; +export { default as FingerprintCheckCircle } from './FingerprintCheckCircle'; +export { default as FingerprintCircle } from './FingerprintCircle'; +export { default as FingerprintErrorCircle } from './FingerprintErrorCircle'; +export { default as FingerprintLockCircle } from './FingerprintLockCircle'; +export { default as FingerprintPhone } from './FingerprintPhone'; +export { default as FingerprintScan } from './FingerprintScan'; +export { default as FingerprintSquare } from './FingerprintSquare'; +export { default as FingerprintWindow } from './FingerprintWindow'; +export { default as Fingerprint } from './Fingerprint'; +export { default as FireFlame } from './FireFlame'; +export { default as Fish } from './Fish'; +export { default as Fishing } from './Fishing'; +export { default as Flare } from './Flare'; +export { default as FlashOff } from './FlashOff'; +export { default as Flash } from './Flash'; +export { default as Flask } from './Flask'; +export { default as FlipReverse } from './FlipReverse'; +export { default as Flip } from './Flip'; +export { default as Flower } from './Flower'; +export { default as Fluorine } from './Fluorine'; +export { default as Fog } from './Fog'; +export { default as FolderAlert } from './FolderAlert'; +export { default as FolderSettings } from './FolderSettings'; +export { default as Folder } from './Folder'; +export { default as FontSize } from './FontSize'; +export { default as FootballBall } from './FootballBall'; +export { default as Football } from './Football'; +export { default as Forward15Seconds } from './Forward15Seconds'; +export { default as ForwardMessage } from './ForwardMessage'; +export { default as Forward } from './Forward'; +export { default as FrameAltEmpty } from './FrameAltEmpty'; +export { default as FrameAlt } from './FrameAlt'; +export { default as FrameSelect } from './FrameSelect'; +export { default as FrameSimple } from './FrameSimple'; +export { default as FrameTool } from './FrameTool'; +export { default as Frame } from './Frame'; +export { default as Fridge } from './Fridge'; +export { default as FxTag } from './FxTag'; +export { default as Fx } from './Fx'; +export { default as Gamepad } from './Gamepad'; +export { default as Garage } from './Garage'; +export { default as GasTankDrop } from './GasTankDrop'; +export { default as GasTank } from './GasTank'; +export { default as Gas } from './Gas'; +export { default as GifFormat } from './GifFormat'; +export { default as Gift } from './Gift'; +export { default as GitBranch } from './GitBranch'; +export { default as GitCherryPickCommit } from './GitCherryPickCommit'; +export { default as GitCommand } from './GitCommand'; +export { default as GitCommit } from './GitCommit'; +export { default as GitCompare } from './GitCompare'; +export { default as GitFork } from './GitFork'; +export { default as GitMerge } from './GitMerge'; +export { default as GitPullRequestClosed } from './GitPullRequestClosed'; +export { default as GitPullRequest } from './GitPullRequest'; +export { default as GitHub } from './GitHub'; +export { default as GitLabFull } from './GitLabFull'; +export { default as GithubCircle } from './GithubCircle'; +export { default as GlassEmpty } from './GlassEmpty'; +export { default as GlassFragile } from './GlassFragile'; +export { default as GlassHalfAlt } from './GlassHalfAlt'; +export { default as GlassHalf } from './GlassHalf'; +export { default as Glasses } from './Glasses'; +export { default as Globe } from './Globe'; +export { default as Golf } from './Golf'; +export { default as GoogleCircle } from './GoogleCircle'; +export { default as GoogleDocs } from './GoogleDocs'; +export { default as GoogleDriveCheck } from './GoogleDriveCheck'; +export { default as GoogleDriveSync } from './GoogleDriveSync'; +export { default as GoogleDriveWarning } from './GoogleDriveWarning'; +export { default as GoogleDrive } from './GoogleDrive'; +export { default as GoogleHome } from './GoogleHome'; +export { default as GoogleOne } from './GoogleOne'; +export { default as Google } from './Google'; +export { default as Gps } from './Gps'; +export { default as GraduationCap } from './GraduationCap'; +export { default as GraphDown } from './GraphDown'; +export { default as GraphUp } from './GraphUp'; +export { default as GreenBus } from './GreenBus'; +export { default as GreenTruck } from './GreenTruck'; +export { default as GreenVehicle } from './GreenVehicle'; +export { default as GridAdd } from './GridAdd'; +export { default as GridMinus } from './GridMinus'; +export { default as GridRemove } from './GridRemove'; +export { default as Group } from './Group'; +export { default as Gym } from './Gym'; +export { default as HalfCookie } from './HalfCookie'; +export { default as HalfMoon } from './HalfMoon'; +export { default as Hammer } from './Hammer'; +export { default as HandBrake } from './HandBrake'; +export { default as HandCard } from './HandCard'; +export { default as HandCash } from './HandCash'; +export { default as HandContactless } from './HandContactless'; +export { default as Handbag } from './Handbag'; +export { default as HardDrive } from './HardDrive'; +export { default as Hat } from './Hat'; +export { default as HdDisplay } from './HdDisplay'; +export { default as Hd } from './Hd'; +export { default as Hdr } from './Hdr'; +export { default as HeadsetCharge } from './HeadsetCharge'; +export { default as HeadsetHelp } from './HeadsetHelp'; +export { default as HeadsetIssue } from './HeadsetIssue'; +export { default as Headset } from './Headset'; +export { default as HealthShield } from './HealthShield'; +export { default as Healthcare } from './Healthcare'; +export { default as HeartArrowDown } from './HeartArrowDown'; +export { default as Heart } from './Heart'; +export { default as Heating } from './Heating'; +export { default as HeavyRain } from './HeavyRain'; +export { default as HelpCircle } from './HelpCircle'; +export { default as HelpSquare } from './HelpSquare'; +export { default as Heptagon } from './Heptagon'; +export { default as HerSlips } from './HerSlips'; +export { default as HexagonAlt } from './HexagonAlt'; +export { default as HexagonDice } from './HexagonDice'; +export { default as Hexagon } from './Hexagon'; +export { default as HighPriority } from './HighPriority'; +export { default as HistoricShieldAlt } from './HistoricShieldAlt'; +export { default as HistoricShield } from './HistoricShield'; +export { default as HomeAltSlimHoriz } from './HomeAltSlimHoriz'; +export { default as HomeAltSlim } from './HomeAltSlim'; +export { default as HomeAlt } from './HomeAlt'; +export { default as HomeHospital } from './HomeHospital'; +export { default as HomeSale } from './HomeSale'; +export { default as HomeSecure } from './HomeSecure'; +export { default as HomeShield } from './HomeShield'; +export { default as HomeSimpleDoor } from './HomeSimpleDoor'; +export { default as HomeSimple } from './HomeSimple'; +export { default as HomeTable } from './HomeTable'; +export { default as HomeTemperatureIn } from './HomeTemperatureIn'; +export { default as HomeTemperatureOut } from './HomeTemperatureOut'; +export { default as HomeUser } from './HomeUser'; +export { default as Home } from './Home'; +export { default as HorizDistributionLeft } from './HorizDistributionLeft'; +export { default as HorizDistributionRight } from './HorizDistributionRight'; +export { default as HorizontalMerge } from './HorizontalMerge'; +export { default as HorizontalSplit } from './HorizontalSplit'; +export { default as HospitalSign } from './HospitalSign'; +export { default as Hospital } from './Hospital'; +export { default as HotAirBalloon } from './HotAirBalloon'; +export { default as Hourglass } from './Hourglass'; +export { default as HouseRooms } from './HouseRooms'; +export { default as Html5 } from './Html5'; +export { default as Hydrogen } from './Hydrogen'; +export { default as Iconoir } from './Iconoir'; +export { default as Import } from './Import'; +export { default as Inclination } from './Inclination'; +export { default as Industry } from './Industry'; +export { default as Infinite } from './Infinite'; +export { default as InfoEmpty } from './InfoEmpty'; +export { default as InputField } from './InputField'; +export { default as InputOutput } from './InputOutput'; +export { default as InputSearch } from './InputSearch'; +export { default as Instagram } from './Instagram'; +export { default as Internet } from './Internet'; +export { default as IntersectAlt } from './IntersectAlt'; +export { default as Intersect } from './Intersect'; +export { default as IosSettings } from './IosSettings'; +export { default as IpAddress } from './IpAddress'; +export { default as IrisScan } from './IrisScan'; +export { default as ItalicSquare } from './ItalicSquare'; +export { default as Italic } from './Italic'; +export { default as Jellyfish } from './Jellyfish'; +export { default as JournalPage } from './JournalPage'; +export { default as Journal } from './Journal'; +export { default as JpegFormat } from './JpegFormat'; +export { default as JpgFormat } from './JpgFormat'; +export { default as KanbanBoard } from './KanbanBoard'; +export { default as KeyAltBack } from './KeyAltBack'; +export { default as KeyAltMinus } from './KeyAltMinus'; +export { default as KeyAltPlus } from './KeyAltPlus'; +export { default as KeyAltRemove } from './KeyAltRemove'; +export { default as KeyAlt } from './KeyAlt'; +export { default as KeyCommand } from './KeyCommand'; +export { default as KeyframeAlignCenter } from './KeyframeAlignCenter'; +export { default as KeyframeAlignHorizontal } from './KeyframeAlignHorizontal'; +export { default as KeyframeAlignVertical } from './KeyframeAlignVertical'; +export { default as KeyframePosition } from './KeyframePosition'; +export { default as Keyframe } from './Keyframe'; +export { default as KeyframesCouple } from './KeyframesCouple'; +export { default as Keyframes } from './Keyframes'; +export { default as Label } from './Label'; +export { default as Lamp } from './Lamp'; +export { default as Language } from './Language'; +export { default as LaptopCharging } from './LaptopCharging'; +export { default as LaptopFix } from './LaptopFix'; +export { default as LaptopIssue } from './LaptopIssue'; +export { default as Laptop } from './Laptop'; +export { default as LargeSuitcase } from './LargeSuitcase'; +export { default as LayoutLeft } from './LayoutLeft'; +export { default as LayoutRight } from './LayoutRight'; +export { default as LeaderboardStar } from './LeaderboardStar'; +export { default as Leaderboard } from './Leaderboard'; +export { default as Leaf } from './Leaf'; +export { default as Learning } from './Learning'; +export { default as LeftRoundArrow } from './LeftRoundArrow'; +export { default as Lens } from './Lens'; +export { default as Lifebelt } from './Lifebelt'; +export { default as LightBulbOff } from './LightBulbOff'; +export { default as LightBulbOn } from './LightBulbOn'; +export { default as LightBulb } from './LightBulb'; +export { default as LineSpace } from './LineSpace'; +export { default as Linear } from './Linear'; +export { default as Link } from './Link'; +export { default as LinkedIn } from './LinkedIn'; +export { default as Linux } from './Linux'; +export { default as ListSelect } from './ListSelect'; +export { default as List } from './List'; +export { default as LitecoinCircle } from './LitecoinCircle'; +export { default as LitecoinRotateOut } from './LitecoinRotateOut'; +export { default as LoadActionFloppy } from './LoadActionFloppy'; +export { default as LockKey } from './LockKey'; +export { default as Lock } from './Lock'; +export { default as LockedBook } from './LockedBook'; +export { default as LockedWindow } from './LockedWindow'; +export { default as Loft3D } from './Loft3D'; +export { default as LogDenied } from './LogDenied'; +export { default as LogIn } from './LogIn'; +export { default as LogOut } from './LogOut'; +export { default as LongArrowDownLeft } from './LongArrowDownLeft'; +export { default as LongArrowDownRight } from './LongArrowDownRight'; +export { default as LongArrowLeftDown } from './LongArrowLeftDown'; +export { default as LongArrowLeftUp } from './LongArrowLeftUp'; +export { default as LongArrowRightDown } from './LongArrowRightDown'; +export { default as LongArrowRightUp1 } from './LongArrowRightUp1'; +export { default as LongArrowRightUp } from './LongArrowRightUp'; +export { default as LongArrowUpLeft } from './LongArrowUpLeft'; +export { default as LongArrowUpRight } from './LongArrowUpRight'; +export { default as LotOfCash } from './LotOfCash'; +export { default as Lullaby } from './Lullaby'; +export { default as MacControlKey } from './MacControlKey'; +export { default as MacDock } from './MacDock'; +export { default as MacOptionKey } from './MacOptionKey'; +export { default as MacOsWindow } from './MacOsWindow'; +export { default as MagicWand } from './MagicWand'; +export { default as MagnetEnergy } from './MagnetEnergy'; +export { default as Magnet } from './Magnet'; +export { default as MailIn } from './MailIn'; +export { default as MailOpened } from './MailOpened'; +export { default as MailOut } from './MailOut'; +export { default as Mail } from './Mail'; +export { default as Male } from './Male'; +export { default as MapIssue } from './MapIssue'; +export { default as Map } from './Map'; +export { default as MapsArrowDiagonal } from './MapsArrowDiagonal'; +export { default as MapsArrowIssue } from './MapsArrowIssue'; +export { default as MapsArrow } from './MapsArrow'; +export { default as MapsGoStraight } from './MapsGoStraight'; +export { default as MapsTurnBack } from './MapsTurnBack'; +export { default as MapsTurnLeft } from './MapsTurnLeft'; +export { default as MapsTurnRight } from './MapsTurnRight'; +export { default as MaskSquare } from './MaskSquare'; +export { default as MastercardCard } from './MastercardCard'; +export { default as MathBook } from './MathBook'; +export { default as Maximize } from './Maximize'; +export { default as Medal1St } from './Medal1St'; +export { default as Medal } from './Medal'; +export { default as MediaImageFolder } from './MediaImageFolder'; +export { default as MediaImageList } from './MediaImageList'; +export { default as MediaImage } from './MediaImage'; +export { default as MediaVideoFolder } from './MediaVideoFolder'; +export { default as MediaVideoList } from './MediaVideoList'; +export { default as MediaVideo } from './MediaVideo'; +export { default as MediumPriority } from './MediumPriority'; +export { default as Medium } from './Medium'; +export { default as Megaphone } from './Megaphone'; +export { default as MenuScale } from './MenuScale'; +export { default as Menu } from './Menu'; +export { default as MessageAlert } from './MessageAlert'; +export { default as MessageText } from './MessageText'; +export { default as Message } from './Message'; +export { default as Metro } from './Metro'; +export { default as MicAdd } from './MicAdd'; +export { default as MicCheck } from './MicCheck'; +export { default as MicMute } from './MicMute'; +export { default as MicRemove } from './MicRemove'; +export { default as MicSpeaking } from './MicSpeaking'; +export { default as MicWarning } from './MicWarning'; +export { default as Mic } from './Mic'; +export { default as Microscope } from './Microscope'; +export { default as Minus1 } from './Minus1'; +export { default as MinusCircle } from './MinusCircle'; +export { default as MinusHexagon } from './MinusHexagon'; +export { default as MinusPinAlt } from './MinusPinAlt'; +export { default as MinusSquare } from './MinusSquare'; +export { default as Minus } from './Minus'; +export { default as Mirror } from './Mirror'; +export { default as MissingFont } from './MissingFont'; +export { default as ModernTv4K } from './ModernTv4K'; +export { default as ModernTv } from './ModernTv'; +export { default as MoneySquare } from './MoneySquare'; +export { default as MoonSat } from './MoonSat'; +export { default as MoreHorizCircle } from './MoreHorizCircle'; +export { default as MoreHoriz } from './MoreHoriz'; +export { default as MoreVertCircle } from './MoreVertCircle'; +export { default as MoreVert } from './MoreVert'; +export { default as Motorcycle } from './Motorcycle'; +export { default as MouseButtonLeft } from './MouseButtonLeft'; +export { default as MouseButtonRight } from './MouseButtonRight'; +export { default as MouseScrollWheel } from './MouseScrollWheel'; +export { default as MoveDown } from './MoveDown'; +export { default as MoveLeft } from './MoveLeft'; +export { default as MoveRight } from './MoveRight'; +export { default as MoveRuler } from './MoveRuler'; +export { default as MoveUp } from './MoveUp'; +export { default as Movie } from './Movie'; +export { default as MpegFormat } from './MpegFormat'; +export { default as MultiBubble } from './MultiBubble'; +export { default as MultiMacOsWindow } from './MultiMacOsWindow'; +export { default as MultiWindow } from './MultiWindow'; +export { default as MultiplePagesAdd } from './MultiplePagesAdd'; +export { default as MultiplePagesDelete } from './MultiplePagesDelete'; +export { default as MultiplePagesEmpty } from './MultiplePagesEmpty'; +export { default as MultiplePagesRemove } from './MultiplePagesRemove'; +export { default as MultiplePages } from './MultiplePages'; +export { default as MusicDoubleNoteAdd } from './MusicDoubleNoteAdd'; +export { default as MusicDoubleNote } from './MusicDoubleNote'; +export { default as MusicNoteAdd } from './MusicNoteAdd'; +export { default as MusicNote } from './MusicNote'; +export { default as NavArrowDown } from './NavArrowDown'; +export { default as NavArrowLeft } from './NavArrowLeft'; +export { default as NavArrowRight } from './NavArrowRight'; +export { default as NavArrowUp } from './NavArrowUp'; +export { default as NavigatorAlt } from './NavigatorAlt'; +export { default as Navigator } from './Navigator'; +export { default as Neighbourhood } from './Neighbourhood'; +export { default as NetworkAlt } from './NetworkAlt'; +export { default as NetworkLeft } from './NetworkLeft'; +export { default as NetworkRight } from './NetworkRight'; +export { default as Network } from './Network'; +export { default as NewTab } from './NewTab'; +export { default as NintendoSwitch } from './NintendoSwitch'; +export { default as Nitrogen } from './Nitrogen'; +export { default as NoAccessWindow } from './NoAccessWindow'; +export { default as NoBattery } from './NoBattery'; +export { default as NoCoin } from './NoCoin'; +export { default as NoCreditCard } from './NoCreditCard'; +export { default as NoLink } from './NoLink'; +export { default as NoLock } from './NoLock'; +export { default as NoSmokingCircle } from './NoSmokingCircle'; +export { default as NoSmoking } from './NoSmoking'; +export { default as NonBinary } from './NonBinary'; +export { default as Notes } from './Notes'; +export { default as NpmSquare } from './NpmSquare'; +export { default as Npm } from './Npm'; +export { default as Number0Square } from './Number0Square'; +export { default as Number1Square } from './Number1Square'; +export { default as Number2Square } from './Number2Square'; +export { default as Number3Square } from './Number3Square'; +export { default as Number4Square } from './Number4Square'; +export { default as Number5Square } from './Number5Square'; +export { default as Number6Square } from './Number6Square'; +export { default as Number7Square } from './Number7Square'; +export { default as Number8Square } from './Number8Square'; +export { default as Number9Square } from './Number9Square'; +export { default as NumberedListLeft } from './NumberedListLeft'; +export { default as NumberedListRight } from './NumberedListRight'; +export { default as Octagon } from './Octagon'; +export { default as OffTag } from './OffTag'; +export { default as OilIndustry } from './OilIndustry'; +export { default as Okrs } from './Okrs'; +export { default as OnTag } from './OnTag'; +export { default as OneFingerSelectHandGesture } from './OneFingerSelectHandGesture'; +export { default as OnePointCircle } from './OnePointCircle'; +export { default as OpenBook } from './OpenBook'; +export { default as OpenInBrowser } from './OpenInBrowser'; +export { default as OpenInWindow } from './OpenInWindow'; +export { default as OpenNewWindow } from './OpenNewWindow'; +export { default as OpenSelectHandGesture } from './OpenSelectHandGesture'; +export { default as OpenVpn } from './OpenVpn'; +export { default as OrangeHalf } from './OrangeHalf'; +export { default as OrangeSliceAlt } from './OrangeSliceAlt'; +export { default as OrangeSlice } from './OrangeSlice'; +export { default as OrganicFoodSquare } from './OrganicFoodSquare'; +export { default as OrganicFood } from './OrganicFood'; +export { default as OrthogonalView } from './OrthogonalView'; +export { default as Oxygen } from './Oxygen'; +export { default as PackageLock } from './PackageLock'; +export { default as Package } from './Package'; +export { default as Packages } from './Packages'; +export { default as Pacman } from './Pacman'; +export { default as PageDown } from './PageDown'; +export { default as PageEdit } from './PageEdit'; +export { default as PageFlip } from './PageFlip'; +export { default as PageLeft } from './PageLeft'; +export { default as PageRight } from './PageRight'; +export { default as PageSearch } from './PageSearch'; +export { default as PageStar } from './PageStar'; +export { default as PageUp } from './PageUp'; +export { default as Page } from './Page'; +export { default as Palette } from './Palette'; +export { default as PanoramaEnlarge } from './PanoramaEnlarge'; +export { default as PanoramaReduce } from './PanoramaReduce'; +export { default as PantsAlt } from './PantsAlt'; +export { default as Pants } from './Pants'; +export { default as Parking } from './Parking'; +export { default as PasswordCursor } from './PasswordCursor'; +export { default as PasswordError } from './PasswordError'; +export { default as PasswordPass } from './PasswordPass'; +export { default as PasteClipboard } from './PasteClipboard'; +export { default as PatchHoles3D } from './PatchHoles3D'; +export { default as PathArrow } from './PathArrow'; +export { default as PauseWindow } from './PauseWindow'; +export { default as Pause } from './Pause'; +export { default as Paypal } from './Paypal'; +export { default as PcCheck } from './PcCheck'; +export { default as PcFirewall } from './PcFirewall'; +export { default as PcMouse } from './PcMouse'; +export { default as PcNoEntry } from './PcNoEntry'; +export { default as PcWarning } from './PcWarning'; +export { default as PeaceHand } from './PeaceHand'; +export { default as PenConnectBluetooth } from './PenConnectBluetooth'; +export { default as PenConnectWifi } from './PenConnectWifi'; +export { default as PenTabletConnectUsb } from './PenTabletConnectUsb'; +export { default as PenTabletConnectWifi } from './PenTabletConnectWifi'; +export { default as PenTablet } from './PenTablet'; +export { default as Pentagon } from './Pentagon'; +export { default as PeopleTag } from './PeopleTag'; +export { default as PercentRotateOut } from './PercentRotateOut'; +export { default as PercentageCircle } from './PercentageCircle'; +export { default as PercentageSquare } from './PercentageSquare'; +export { default as Percentage } from './Percentage'; +export { default as PerspectiveView } from './PerspectiveView'; +export { default as PharmacyCrossCircle } from './PharmacyCrossCircle'; +export { default as PharmacyCrossSquare } from './PharmacyCrossSquare'; +export { default as PhoneAdd } from './PhoneAdd'; +export { default as PhoneDelete } from './PhoneDelete'; +export { default as PhoneDisabled } from './PhoneDisabled'; +export { default as PhoneIncome } from './PhoneIncome'; +export { default as PhoneOutcome } from './PhoneOutcome'; +export { default as PhonePaused } from './PhonePaused'; +export { default as PhoneRemove } from './PhoneRemove'; +export { default as Phone } from './Phone'; +export { default as PiggyBank } from './PiggyBank'; +export { default as Pillow } from './Pillow'; +export { default as PinAlt } from './PinAlt'; +export { default as Pin } from './Pin'; +export { default as PineTree } from './PineTree'; +export { default as Pinterest } from './Pinterest'; +export { default as Pipe3D } from './Pipe3D'; +export { default as PizzaSlice } from './PizzaSlice'; +export { default as PlanetAlt } from './PlanetAlt'; +export { default as PlanetSat } from './PlanetSat'; +export { default as Planet } from './Planet'; +export { default as Planimetry } from './Planimetry'; +export { default as Play } from './Play'; +export { default as PlaylistAdd } from './PlaylistAdd'; +export { default as PlaylistPlay } from './PlaylistPlay'; +export { default as Playlist } from './Playlist'; +export { default as PlaystationGamepad } from './PlaystationGamepad'; +export { default as PlugTypeA } from './PlugTypeA'; +export { default as PlugTypeC } from './PlugTypeC'; +export { default as PlugTypeG } from './PlugTypeG'; +export { default as PlugTypeL } from './PlugTypeL'; +export { default as Plus } from './Plus'; +export { default as PngFormat } from './PngFormat'; +export { default as Pocket } from './Pocket'; +export { default as Podcast } from './Podcast'; +export { default as Pokeball } from './Pokeball'; +export { default as PositionAlign } from './PositionAlign'; +export { default as Position } from './Position'; +export { default as Post } from './Post'; +export { default as Potion } from './Potion'; +export { default as Pound } from './Pound'; +export { default as PrecisionTool } from './PrecisionTool'; +export { default as Presentation } from './Presentation'; +export { default as PrinterAlt } from './PrinterAlt'; +export { default as Printer } from './Printer'; +export { default as PrintingPage } from './PrintingPage'; +export { default as PriorityDown } from './PriorityDown'; +export { default as PriorityUp } from './PriorityUp'; +export { default as PrivacyPolicy } from './PrivacyPolicy'; +export { default as PrivateWifi } from './PrivateWifi'; +export { default as ProfileCircle } from './ProfileCircle'; +export { default as Prohibition } from './Prohibition'; +export { default as ProjectCurve3D } from './ProjectCurve3D'; +export { default as Puzzle } from './Puzzle'; +export { default as QrCode } from './QrCode'; +export { default as QuestionMark } from './QuestionMark'; +export { default as QuoteMessage } from './QuoteMessage'; +export { default as Quote } from './Quote'; +export { default as Radiation } from './Radiation'; +export { default as Radius } from './Radius'; +export { default as Rain } from './Rain'; +export { default as RawFormat } from './RawFormat'; +export { default as ReceiveDollars } from './ReceiveDollars'; +export { default as ReceiveEuros } from './ReceiveEuros'; +export { default as ReceivePounds } from './ReceivePounds'; +export { default as ReceiveYens } from './ReceiveYens'; +export { default as RedoAction } from './RedoAction'; +export { default as RedoCircle } from './RedoCircle'; +export { default as Redo } from './Redo'; +export { default as ReduceRoundArrow } from './ReduceRoundArrow'; +export { default as Reduce } from './Reduce'; +export { default as RefreshCircular } from './RefreshCircular'; +export { default as RefreshDouble } from './RefreshDouble'; +export { default as Refresh } from './Refresh'; +export { default as ReloadWindow } from './ReloadWindow'; +export { default as ReminderHandGesture } from './ReminderHandGesture'; +export { default as RemoveDatabaseScript } from './RemoveDatabaseScript'; +export { default as RemoveFolder } from './RemoveFolder'; +export { default as RemoveFrame } from './RemoveFrame'; +export { default as RemoveFromCart } from './RemoveFromCart'; +export { default as RemoveKeyframeAlt } from './RemoveKeyframeAlt'; +export { default as RemoveKeyframe } from './RemoveKeyframe'; +export { default as RemoveKeyframes } from './RemoveKeyframes'; +export { default as RemoveLink } from './RemoveLink'; +export { default as RemoveMediaImage } from './RemoveMediaImage'; +export { default as RemoveMediaVideo } from './RemoveMediaVideo'; +export { default as RemovePageAlt } from './RemovePageAlt'; +export { default as RemovePage } from './RemovePage'; +export { default as RemovePinAlt } from './RemovePinAlt'; +export { default as RemovePin } from './RemovePin'; +export { default as RemoveSelection } from './RemoveSelection'; +export { default as RemoveSquare } from './RemoveSquare'; +export { default as RemoveUser } from './RemoveUser'; +export { default as RepeatOnce } from './RepeatOnce'; +export { default as Repeat } from './Repeat'; +export { default as ReplyToMessage } from './ReplyToMessage'; +export { default as Reply } from './Reply'; +export { default as ReportColumns } from './ReportColumns'; +export { default as Reports } from './Reports'; +export { default as Repository } from './Repository'; +export { default as Restart } from './Restart'; +export { default as Rewind } from './Rewind'; +export { default as Rhombus } from './Rhombus'; +export { default as RightRoundArrow } from './RightRoundArrow'; +export { default as Rings } from './Rings'; +export { default as Rocket } from './Rocket'; +export { default as Rook } from './Rook'; +export { default as RotateCameraLeft } from './RotateCameraLeft'; +export { default as RotateCameraRight } from './RotateCameraRight'; +export { default as RoundFlask } from './RoundFlask'; +export { default as RoundedMirror } from './RoundedMirror'; +export { default as RssFeedTag } from './RssFeedTag'; +export { default as RssFeed } from './RssFeed'; +export { default as RubikCube } from './RubikCube'; +export { default as RulerAdd } from './RulerAdd'; +export { default as RulerCombine } from './RulerCombine'; +export { default as RulerRemove } from './RulerRemove'; +export { default as Ruler } from './Ruler'; +export { default as Running } from './Running'; +export { default as Safari } from './Safari'; +export { default as SafeArrowLeft } from './SafeArrowLeft'; +export { default as SafeArrowRight } from './SafeArrowRight'; +export { default as SafeOpen } from './SafeOpen'; +export { default as Safe } from './Safe'; +export { default as Sandals } from './Sandals'; +export { default as SaveActionFloppy } from './SaveActionFloppy'; +export { default as SaveFloppyDisk } from './SaveFloppyDisk'; +export { default as ScaleFrameEnlarge } from './ScaleFrameEnlarge'; +export { default as ScaleFrameReduce } from './ScaleFrameReduce'; +export { default as ScanBarcode } from './ScanBarcode'; +export { default as ScanQrCode } from './ScanQrCode'; +export { default as Scanning } from './Scanning'; +export { default as Scarf } from './Scarf'; +export { default as ScissorAlt } from './ScissorAlt'; +export { default as Scissor } from './Scissor'; +export { default as Screenshot } from './Screenshot'; +export { default as SeaAndSun } from './SeaAndSun'; +export { default as SeaWaves } from './SeaWaves'; +export { default as SearchEngine } from './SearchEngine'; +export { default as SearchFont } from './SearchFont'; +export { default as SearchWindow } from './SearchWindow'; +export { default as Search } from './Search'; +export { default as SecureWindow } from './SecureWindow'; +export { default as SecurityPass } from './SecurityPass'; +export { default as SelectWindow } from './SelectWindow'; +export { default as Selection } from './Selection'; +export { default as SelectiveTool } from './SelectiveTool'; +export { default as SendDiagonal } from './SendDiagonal'; +export { default as SendDollars } from './SendDollars'; +export { default as SendEuros } from './SendEuros'; +export { default as SendMail } from './SendMail'; +export { default as SendPounds } from './SendPounds'; +export { default as SendYens } from './SendYens'; +export { default as Send } from './Send'; +export { default as ServerConnection } from './ServerConnection'; +export { default as Server } from './Server'; +export { default as SettingsCloud } from './SettingsCloud'; +export { default as SettingsProfiles } from './SettingsProfiles'; +export { default as Settings } from './Settings'; +export { default as ShareAndroid } from './ShareAndroid'; +export { default as ShareIos } from './ShareIos'; +export { default as ShieldAdd } from './ShieldAdd'; +export { default as ShieldAlert } from './ShieldAlert'; +export { default as ShieldAlt } from './ShieldAlt'; +export { default as ShieldBroken } from './ShieldBroken'; +export { default as ShieldCheck } from './ShieldCheck'; +export { default as ShieldCross } from './ShieldCross'; +export { default as ShieldDownload } from './ShieldDownload'; +export { default as ShieldEye } from './ShieldEye'; +export { default as ShieldLoading } from './ShieldLoading'; +export { default as ShieldMinus } from './ShieldMinus'; +export { default as ShieldQuestion } from './ShieldQuestion'; +export { default as ShieldSearch } from './ShieldSearch'; +export { default as ShieldUpload } from './ShieldUpload'; +export { default as Shield } from './Shield'; +export { default as ShopAlt } from './ShopAlt'; +export { default as Shop } from './Shop'; +export { default as ShoppingBagAdd } from './ShoppingBagAdd'; +export { default as ShoppingBagAlt } from './ShoppingBagAlt'; +export { default as ShoppingBagArrowDown } from './ShoppingBagArrowDown'; +export { default as ShoppingBagArrowUp } from './ShoppingBagArrowUp'; +export { default as ShoppingBagCheck } from './ShoppingBagCheck'; +export { default as ShoppingBagIssue } from './ShoppingBagIssue'; +export { default as ShoppingBagRemove } from './ShoppingBagRemove'; +export { default as ShoppingBag } from './ShoppingBag'; +export { default as ShoppingCodeCheck } from './ShoppingCodeCheck'; +export { default as ShoppingCodeError } from './ShoppingCodeError'; +export { default as ShoppingCode } from './ShoppingCode'; +export { default as ShortPantsAlt } from './ShortPantsAlt'; +export { default as ShortPants } from './ShortPants'; +export { default as Shortcut } from './Shortcut'; +export { default as Shuffle } from './Shuffle'; +export { default as SidebarCollapse } from './SidebarCollapse'; +export { default as SidebarExpand } from './SidebarExpand'; +export { default as SigmaFunction } from './SigmaFunction'; +export { default as SimpleCart } from './SimpleCart'; +export { default as SineWave } from './SineWave'; +export { default as SingleTapGesture } from './SingleTapGesture'; +export { default as Skateboard } from './Skateboard'; +export { default as Skateboarding } from './Skateboarding'; +export { default as SkipNext } from './SkipNext'; +export { default as SkipPrev } from './SkipPrev'; +export { default as Slash } from './Slash'; +export { default as SleeperChair } from './SleeperChair'; +export { default as SmallLampAlt } from './SmallLampAlt'; +export { default as SmallLamp } from './SmallLamp'; +export { default as SmallShopAlt } from './SmallShopAlt'; +export { default as SmallShop } from './SmallShop'; +export { default as SmartphoneDevice } from './SmartphoneDevice'; +export { default as Smoking } from './Smoking'; +export { default as Snapchat } from './Snapchat'; +export { default as SnowFlake } from './SnowFlake'; +export { default as Snow } from './Snow'; +export { default as Soap } from './Soap'; +export { default as SoccerBall } from './SoccerBall'; +export { default as Sofa } from './Sofa'; +export { default as SoilAlt } from './SoilAlt'; +export { default as Soil } from './Soil'; +export { default as SortDown } from './SortDown'; +export { default as SortUp } from './SortUp'; +export { default as Sort } from './Sort'; +export { default as SoundHigh } from './SoundHigh'; +export { default as SoundLow } from './SoundLow'; +export { default as SoundMin } from './SoundMin'; +export { default as SoundOff } from './SoundOff'; +export { default as Spades } from './Spades'; +export { default as Spark } from './Spark'; +export { default as Sparks } from './Sparks'; +export { default as Sphere } from './Sphere'; +export { default as Spiral } from './Spiral'; +export { default as SpockHandGesture } from './SpockHandGesture'; +export { default as Spotify } from './Spotify'; +export { default as SquareCursor } from './SquareCursor'; +export { default as SquareWave } from './SquareWave'; +export { default as Square } from './Square'; +export { default as Stackoverflow } from './Stackoverflow'; +export { default as StarDashed } from './StarDashed'; +export { default as StarHalfDashed } from './StarHalfDashed'; +export { default as Star } from './Star'; +export { default as StatDown } from './StatDown'; +export { default as StatUp } from './StatUp'; +export { default as StatsDownSquare } from './StatsDownSquare'; +export { default as StatsReport } from './StatsReport'; +export { default as StatsUpSquare } from './StatsUpSquare'; +export { default as Strategy } from './Strategy'; +export { default as Stretching } from './Stretching'; +export { default as Strikethrough } from './Strikethrough'; +export { default as Stroller } from './Stroller'; +export { default as StyleBorder } from './StyleBorder'; +export { default as SubmitDocument } from './SubmitDocument'; +export { default as Substract } from './Substract'; +export { default as Suggestion } from './Suggestion'; +export { default as SunLight } from './SunLight'; +export { default as SvgFormat } from './SvgFormat'; +export { default as Sweep3D } from './Sweep3D'; +export { default as Swimming } from './Swimming'; +export { default as SwipeDownGesture } from './SwipeDownGesture'; +export { default as SwipeLeftGesture } from './SwipeLeftGesture'; +export { default as SwipeRightGesture } from './SwipeRightGesture'; +export { default as SwipeTwoFingersDownGesture } from './SwipeTwoFingersDownGesture'; +export { default as SwipeTwoFingersLeftGesture } from './SwipeTwoFingersLeftGesture'; +export { default as SwipeTwoFingersRightGesture } from './SwipeTwoFingersRightGesture'; +export { default as SwipeTwoFingersUpGesture } from './SwipeTwoFingersUpGesture'; +export { default as SwipeUpGesture } from './SwipeUpGesture'; +export { default as SwitchOff } from './SwitchOff'; +export { default as SwitchOn } from './SwitchOn'; +export { default as SystemRestart } from './SystemRestart'; +export { default as SystemShut } from './SystemShut'; +export { default as TShirt } from './TShirt'; +export { default as Table2Columns } from './Table2Columns'; +export { default as TableRows } from './TableRows'; +export { default as Table } from './Table'; +export { default as TaskList } from './TaskList'; +export { default as TelegramCircle } from './TelegramCircle'; +export { default as Telegram } from './Telegram'; +export { default as TemperatureDown } from './TemperatureDown'; +export { default as TemperatureHigh } from './TemperatureHigh'; +export { default as TemperatureLow } from './TemperatureLow'; +export { default as TemperatureUp } from './TemperatureUp'; +export { default as TennisBallAlt } from './TennisBallAlt'; +export { default as TennisBall } from './TennisBall'; +export { default as TerminalTag } from './TerminalTag'; +export { default as Terminal } from './Terminal'; +export { default as TestTube } from './TestTube'; +export { default as TextAlt } from './TextAlt'; +export { default as TextBox } from './TextBox'; +export { default as TextSize } from './TextSize'; +export { default as Text } from './Text'; +export { default as Threads } from './Threads'; +export { default as ThreePointsCircle } from './ThreePointsCircle'; +export { default as ThreeStars } from './ThreeStars'; +export { default as ThumbsDown } from './ThumbsDown'; +export { default as ThumbsUp } from './ThumbsUp'; +export { default as Thunderstorm } from './Thunderstorm'; +export { default as TifFormat } from './TifFormat'; +export { default as TiffFormat } from './TiffFormat'; +export { default as TikTok } from './TikTok'; +export { default as TimeZone } from './TimeZone'; +export { default as TimerOff } from './TimerOff'; +export { default as Timer } from './Timer'; +export { default as Tools } from './Tools'; +export { default as Tournament } from './Tournament'; +export { default as TowerCheck } from './TowerCheck'; +export { default as TowerNoAccess } from './TowerNoAccess'; +export { default as TowerWarning } from './TowerWarning'; +export { default as Tower } from './Tower'; +export { default as Trademark } from './Trademark'; +export { default as Train } from './Train'; +export { default as Tram } from './Tram'; +export { default as TransitionDown } from './TransitionDown'; +export { default as TransitionLeft } from './TransitionLeft'; +export { default as TransitionRight } from './TransitionRight'; +export { default as TransitionUp } from './TransitionUp'; +export { default as Translate } from './Translate'; +export { default as Trash } from './Trash'; +export { default as Treadmill } from './Treadmill'; +export { default as Tree } from './Tree'; +export { default as Trekking } from './Trekking'; +export { default as Trello } from './Trello'; +export { default as TriangleFlagCircle } from './TriangleFlagCircle'; +export { default as TriangleFlagTwoStripes } from './TriangleFlagTwoStripes'; +export { default as TriangleFlag } from './TriangleFlag'; +export { default as Triangle } from './Triangle'; +export { default as Trophy } from './Trophy'; +export { default as TruckLength } from './TruckLength'; +export { default as Truck } from './Truck'; +export { default as Tunnel } from './Tunnel'; +export { default as TvFix } from './TvFix'; +export { default as TvIssue } from './TvIssue'; +export { default as Tv } from './Tv'; +export { default as TwitterVerifiedBadge } from './TwitterVerifiedBadge'; +export { default as Twitter } from './Twitter'; +export { default as TwoPointsCircle } from './TwoPointsCircle'; +export { default as TwoSeaterSofa } from './TwoSeaterSofa'; +export { default as Type } from './Type'; +export { default as UmbrellaFull } from './UmbrellaFull'; +export { default as UnderlineSquare } from './UnderlineSquare'; +export { default as Underline } from './Underline'; +export { default as UndoAction } from './UndoAction'; +export { default as UndoCircle } from './UndoCircle'; +export { default as Undo } from './Undo'; +export { default as UnionAlt } from './UnionAlt'; +export { default as UnionHorizAlt } from './UnionHorizAlt'; +export { default as Union } from './Union'; +export { default as Unity5 } from './Unity5'; +export { default as Unity } from './Unity'; +export { default as Unjoin3D } from './Unjoin3D'; +export { default as UpRoundArrow } from './UpRoundArrow'; +export { default as UploadDataWindow } from './UploadDataWindow'; +export { default as UploadSquare } from './UploadSquare'; +export { default as Upload } from './Upload'; +export { default as Usb } from './Usb'; +export { default as UserBag } from './UserBag'; +export { default as UserCart } from './UserCart'; +export { default as UserCircle } from './UserCircle'; +export { default as UserCrown } from './UserCrown'; +export { default as UserLove } from './UserLove'; +export { default as UserScan } from './UserScan'; +export { default as UserSquare } from './UserSquare'; +export { default as UserStar } from './UserStar'; +export { default as User } from './User'; +export { default as VeganCircle } from './VeganCircle'; +export { default as VeganSquare } from './VeganSquare'; +export { default as Vegan } from './Vegan'; +export { default as VerifiedBadge } from './VerifiedBadge'; +export { default as VerifiedUser } from './VerifiedUser'; +export { default as VerticalMerge } from './VerticalMerge'; +export { default as VerticalSplit } from './VerticalSplit'; +export { default as Vials } from './Vials'; +export { default as VideoCameraOff } from './VideoCameraOff'; +export { default as VideoCamera } from './VideoCamera'; +export { default as VideoProjector } from './VideoProjector'; +export { default as ViewColumns2 } from './ViewColumns2'; +export { default as ViewColumns3 } from './ViewColumns3'; +export { default as ViewGrid } from './ViewGrid'; +export { default as ViewStructureDown } from './ViewStructureDown'; +export { default as ViewStructureUp } from './ViewStructureUp'; +export { default as View360 } from './View360'; +export { default as VoiceCircle } from './VoiceCircle'; +export { default as VoiceError } from './VoiceError'; +export { default as VoiceLockCircle } from './VoiceLockCircle'; +export { default as VoiceOk } from './VoiceOk'; +export { default as VoicePhone } from './VoicePhone'; +export { default as VoiceScan } from './VoiceScan'; +export { default as VoiceSquare } from './VoiceSquare'; +export { default as Voice } from './Voice'; +export { default as VrSymbol } from './VrSymbol'; +export { default as VueJs } from './VueJs'; +export { default as Waist } from './Waist'; +export { default as Walking } from './Walking'; +export { default as Wallet } from './Wallet'; +export { default as WarningCircle } from './WarningCircle'; +export { default as WarningHexagon } from './WarningHexagon'; +export { default as WarningSquare } from './WarningSquare'; +export { default as WarningTriangle } from './WarningTriangle'; +export { default as WarningWindow } from './WarningWindow'; +export { default as Wash } from './Wash'; +export { default as WashingMachine } from './WashingMachine'; +export { default as WateringSoil } from './WateringSoil'; +export { default as WebWindowClose } from './WebWindowClose'; +export { default as WebWindowEnergyConsumption } from './WebWindowEnergyConsumption'; +export { default as WebWindow } from './WebWindow'; +export { default as WebpFormat } from './WebpFormat'; +export { default as WeightAlt } from './WeightAlt'; +export { default as Weight } from './Weight'; +export { default as WhiteFlag } from './WhiteFlag'; +export { default as WifiError } from './WifiError'; +export { default as WifiIssue } from './WifiIssue'; +export { default as WifiOff } from './WifiOff'; +export { default as WifiSignalNone } from './WifiSignalNone'; +export { default as WifiTag } from './WifiTag'; +export { default as Wifi } from './Wifi'; +export { default as Wind } from './Wind'; +export { default as Windows } from './Windows'; +export { default as Wolf } from './Wolf'; +export { default as WomenTShirt } from './WomenTShirt'; +export { default as WrapText } from './WrapText'; +export { default as Wrench } from './Wrench'; +export { default as Wristwatch } from './Wristwatch'; +export { default as Www } from './Www'; +export { default as XCoordinate } from './XCoordinate'; +export { default as XboxA } from './XboxA'; +export { default as XboxB } from './XboxB'; +export { default as XboxX } from './XboxX'; +export { default as XboxY } from './XboxY'; +export { default as XrayView } from './XrayView'; +export { default as YCoordinate } from './YCoordinate'; +export { default as Yelp } from './Yelp'; +export { default as YenSquare } from './YenSquare'; +export { default as Yen } from './Yen'; +export { default as Yoga } from './Yoga'; +export { default as YouTube } from './YouTube'; +export { default as ZCoordinate } from './ZCoordinate'; +export { default as ZoomIn } from './ZoomIn'; +export { default as ZoomOut } from './ZoomOut'; +export { + IconoirProvider, + IconoirContext, + IconoirContextValue, +} from './IconoirContext'; diff --git a/packages/iconoir-react-native/src/index.tsx b/packages/iconoir-react-native/src/index.tsx deleted file mode 100644 index dc0b8f81..00000000 --- a/packages/iconoir-react-native/src/index.tsx +++ /dev/null @@ -1,1372 +0,0 @@ -export { default as Svg3DAddHole } from './3DAddHole' -export { default as Svg3DArcCenterPt } from './3DArcCenterPt' -export { default as Svg3DArc } from './3DArc' -export { default as Svg3DBridge } from './3DBridge' -export { default as Svg3DCenterBox } from './3DCenterBox' -export { default as Svg3DDraftFace } from './3DDraftFace' -export { default as Svg3DEllipseThreePts } from './3DEllipseThreePts' -export { default as Svg3DEllipse } from './3DEllipse' -export { default as Svg3DPtBox } from './3DPtBox' -export { default as Svg3DRectCornerToCorner } from './3DRectCornerToCorner' -export { default as Svg3DRectFromCenter } from './3DRectFromCenter' -export { default as Svg3DRectThreePts } from './3DRectThreePts' -export { default as Svg3DSelectEdge } from './3DSelectEdge' -export { default as Svg3DSelectFace } from './3DSelectFace' -export { default as Svg3DSelectPoint } from './3DSelectPoint' -export { default as Svg3DSelectSolid } from './3DSelectSolid' -export { default as Svg3DThreePtsBox } from './3DThreePtsBox' -export { default as AccessibilitySign } from './AccessibilitySign' -export { default as AccessibilityTech } from './AccessibilityTech' -export { default as Accessibility } from './Accessibility' -export { default as Activity } from './Activity' -export { default as AddCircle } from './AddCircle' -export { default as AddDatabaseScript } from './AddDatabaseScript' -export { default as AddFolder } from './AddFolder' -export { default as AddFrame } from './AddFrame' -export { default as AddHexagon } from './AddHexagon' -export { default as AddKeyframeAlt } from './AddKeyframeAlt' -export { default as AddKeyframe } from './AddKeyframe' -export { default as AddKeyframes } from './AddKeyframes' -export { default as AddLens } from './AddLens' -export { default as AddMediaImage } from './AddMediaImage' -export { default as AddMediaVideo } from './AddMediaVideo' -export { default as AddPageAlt } from './AddPageAlt' -export { default as AddPage } from './AddPage' -export { default as AddPinAlt } from './AddPinAlt' -export { default as AddSelection } from './AddSelection' -export { default as AddSquare } from './AddSquare' -export { default as AddToCart } from './AddToCart' -export { default as AddUser } from './AddUser' -export { default as AdobeAfterEffects } from './AdobeAfterEffects' -export { default as AdobeIllustrator } from './AdobeIllustrator' -export { default as AdobeIndesign } from './AdobeIndesign' -export { default as AdobeLightroom } from './AdobeLightroom' -export { default as AdobePhotoshop } from './AdobePhotoshop' -export { default as AdobeXd } from './AdobeXd' -export { default as AfricanTree } from './AfricanTree' -export { default as Agile } from './Agile' -export { default as AirConditioner } from './AirConditioner' -export { default as AirplaneHelix45Deg } from './AirplaneHelix45Deg' -export { default as AirplaneHelix } from './AirplaneHelix' -export { default as AirplaneOff } from './AirplaneOff' -export { default as AirplaneRotation } from './AirplaneRotation' -export { default as Airplane } from './Airplane' -export { default as Airplay } from './Airplay' -export { default as Alarm } from './Alarm' -export { default as AlbumCarousel } from './AlbumCarousel' -export { default as AlbumList } from './AlbumList' -export { default as AlbumOpen } from './AlbumOpen' -export { default as Album } from './Album' -export { default as AlignBottomBox } from './AlignBottomBox' -export { default as AlignCenter } from './AlignCenter' -export { default as AlignHorizontalCenters } from './AlignHorizontalCenters' -export { default as AlignHorizontalSpacing } from './AlignHorizontalSpacing' -export { default as AlignJustify } from './AlignJustify' -export { default as AlignLeftBox } from './AlignLeftBox' -export { default as AlignLeft } from './AlignLeft' -export { default as AlignRightBox } from './AlignRightBox' -export { default as AlignRight } from './AlignRight' -export { default as AlignTopBox } from './AlignTopBox' -export { default as AlignVerticalCenters } from './AlignVerticalCenters' -export { default as AlignVerticalSpacing } from './AlignVerticalSpacing' -export { default as AngleTool } from './AngleTool' -export { default as AntennaOff } from './AntennaOff' -export { default as AntennaSignalTag } from './AntennaSignalTag' -export { default as AntennaSignal } from './AntennaSignal' -export { default as Antenna } from './Antenna' -export { default as AppNotification } from './AppNotification' -export { default as AppStore } from './AppStore' -export { default as AppWindow } from './AppWindow' -export { default as AppleHalfAlt } from './AppleHalfAlt' -export { default as AppleHalf } from './AppleHalf' -export { default as AppleImac2021Side } from './AppleImac2021Side' -export { default as AppleImac2021 } from './AppleImac2021' -export { default as AppleMac } from './AppleMac' -export { default as AppleShortcuts } from './AppleShortcuts' -export { default as AppleSwift } from './AppleSwift' -export { default as AppleWallet } from './AppleWallet' -export { default as Apple } from './Apple' -export { default as ArSymbol } from './ArSymbol' -export { default as Arcade } from './Arcade' -export { default as ArcheryMatch } from './ArcheryMatch' -export { default as Archery } from './Archery' -export { default as Archive } from './Archive' -export { default as AreaSearch } from './AreaSearch' -export { default as ArrowArchery } from './ArrowArchery' -export { default as ArrowBlCircle } from './ArrowBlCircle' -export { default as ArrowBlSquare } from './ArrowBlSquare' -export { default as ArrowBl } from './ArrowBl' -export { default as ArrowBrCircle } from './ArrowBrCircle' -export { default as ArrowBrSquare } from './ArrowBrSquare' -export { default as ArrowBr } from './ArrowBr' -export { default as ArrowDownCircle } from './ArrowDownCircle' -export { default as ArrowDown } from './ArrowDown' -export { default as ArrowEmailForward } from './ArrowEmailForward' -export { default as ArrowLeftCircle } from './ArrowLeftCircle' -export { default as ArrowLeft } from './ArrowLeft' -export { default as ArrowRightCircle } from './ArrowRightCircle' -export { default as ArrowRight } from './ArrowRight' -export { default as ArrowSeparateVertical } from './ArrowSeparateVertical' -export { default as ArrowSeparate } from './ArrowSeparate' -export { default as ArrowTlCircle } from './ArrowTlCircle' -export { default as ArrowTlSquare } from './ArrowTlSquare' -export { default as ArrowTl } from './ArrowTl' -export { default as ArrowTrCircle } from './ArrowTrCircle' -export { default as ArrowTrSquare } from './ArrowTrSquare' -export { default as ArrowTr } from './ArrowTr' -export { default as ArrowUnionVertical } from './ArrowUnionVertical' -export { default as ArrowUnion } from './ArrowUnion' -export { default as ArrowUpCircle } from './ArrowUpCircle' -export { default as ArrowUp } from './ArrowUp' -export { default as ArrowsUpFromLine } from './ArrowsUpFromLine' -export { default as Asana } from './Asana' -export { default as AtSignCircle } from './AtSignCircle' -export { default as AtSign } from './AtSign' -export { default as Atom } from './Atom' -export { default as Attachment } from './Attachment' -export { default as AugmentedReality } from './AugmentedReality' -export { default as AutoFlash } from './AutoFlash' -export { default as AviFormat } from './AviFormat' -export { default as Axes } from './Axes' -export { default as Backward15Seconds } from './Backward15Seconds' -export { default as Bag } from './Bag' -export { default as Balcony } from './Balcony' -export { default as Bank } from './Bank' -export { default as Barcode } from './Barcode' -export { default as BasketballAlt } from './BasketballAlt' -export { default as BasketballField } from './BasketballField' -export { default as Basketball } from './Basketball' -export { default as Bathroom } from './Bathroom' -export { default as Battery25 } from './Battery25' -export { default as Battery50 } from './Battery50' -export { default as Battery75 } from './Battery75' -export { default as BatteryCharging } from './BatteryCharging' -export { default as BatteryEmpty } from './BatteryEmpty' -export { default as BatteryFull } from './BatteryFull' -export { default as BatteryIndicator } from './BatteryIndicator' -export { default as BatteryWarning } from './BatteryWarning' -export { default as Bbq } from './Bbq' -export { default as BeachBagBig } from './BeachBagBig' -export { default as BeachBag } from './BeachBag' -export { default as BedReady } from './BedReady' -export { default as Bed } from './Bed' -export { default as BehanceTag } from './BehanceTag' -export { default as Behance } from './Behance' -export { default as BellNotification } from './BellNotification' -export { default as BellOff } from './BellOff' -export { default as Bell } from './Bell' -export { default as Bicycle } from './Bicycle' -export { default as BinAdd } from './BinAdd' -export { default as BinFull } from './BinFull' -export { default as BinHalf } from './BinHalf' -export { default as BinMinus } from './BinMinus' -export { default as Bin } from './Bin' -export { default as Binocular } from './Binocular' -export { default as BirthdayCake } from './BirthdayCake' -export { default as Bishop } from './Bishop' -export { default as Bitbucket } from './Bitbucket' -export { default as BitcoinCircle } from './BitcoinCircle' -export { default as BitcoinRotateOut } from './BitcoinRotateOut' -export { default as BluetoothTag } from './BluetoothTag' -export { default as Bluetooth } from './Bluetooth' -export { default as BoldSquare } from './BoldSquare' -export { default as Bold } from './Bold' -export { default as Bonfire } from './Bonfire' -export { default as BookStack } from './BookStack' -export { default as Book } from './Book' -export { default as BookmarkBook } from './BookmarkBook' -export { default as BookmarkCircle } from './BookmarkCircle' -export { default as BookmarkEmpty } from './BookmarkEmpty' -export { default as BorderBl } from './BorderBl' -export { default as BorderBottom } from './BorderBottom' -export { default as BorderBr } from './BorderBr' -export { default as BorderInner } from './BorderInner' -export { default as BorderLeft } from './BorderLeft' -export { default as BorderOut } from './BorderOut' -export { default as BorderRight } from './BorderRight' -export { default as BorderTl } from './BorderTl' -export { default as BorderTop } from './BorderTop' -export { default as BorderTr } from './BorderTr' -export { default as BounceLeft } from './BounceLeft' -export { default as BounceRight } from './BounceRight' -export { default as BowlingBall } from './BowlingBall' -export { default as BoxIso } from './BoxIso' -export { default as Box } from './Box' -export { default as BoxingGlove } from './BoxingGlove' -export { default as BrainElectricity } from './BrainElectricity' -export { default as BrainResearch } from './BrainResearch' -export { default as BrainWarning } from './BrainWarning' -export { default as Brain } from './Brain' -export { default as BreadSlice } from './BreadSlice' -export { default as BridgeSurface } from './BridgeSurface' -export { default as BrightCrown } from './BrightCrown' -export { default as BrightStar } from './BrightStar' -export { default as BrightnessWindow } from './BrightnessWindow' -export { default as Brightness } from './Brightness' -export { default as BubbleDownload } from './BubbleDownload' -export { default as BubbleError } from './BubbleError' -export { default as BubbleIncome } from './BubbleIncome' -export { default as BubbleOutcome } from './BubbleOutcome' -export { default as BubbleSearch } from './BubbleSearch' -export { default as BubbleStar } from './BubbleStar' -export { default as BubbleUpload } from './BubbleUpload' -export { default as BubbleWarning } from './BubbleWarning' -export { default as Building } from './Building' -export { default as BusStop } from './BusStop' -export { default as Bus } from './Bus' -export { default as CableTag } from './CableTag' -export { default as Calculator } from './Calculator' -export { default as CalendarMinus } from './CalendarMinus' -export { default as CalendarPlus } from './CalendarPlus' -export { default as Calendar } from './Calendar' -export { default as Camera } from './Camera' -export { default as Cancel } from './Cancel' -export { default as CandlestickChart } from './CandlestickChart' -export { default as Car } from './Car' -export { default as Carbon } from './Carbon' -export { default as CardIssue } from './CardIssue' -export { default as CardLocked } from './CardLocked' -export { default as CardReader } from './CardReader' -export { default as CardSecurity } from './CardSecurity' -export { default as CardWallet } from './CardWallet' -export { default as CartAlt } from './CartAlt' -export { default as Cart } from './Cart' -export { default as Cash } from './Cash' -export { default as Cell2X2 } from './Cell2X2' -export { default as Cellar } from './Cellar' -export { default as CenterAlign } from './CenterAlign' -export { default as ChatAdd } from './ChatAdd' -export { default as ChatBubbleCheck1 } from './ChatBubbleCheck1' -export { default as ChatBubbleCheck } from './ChatBubbleCheck' -export { default as ChatBubbleEmpty } from './ChatBubbleEmpty' -export { default as ChatBubbleError } from './ChatBubbleError' -export { default as ChatBubbleQuestion } from './ChatBubbleQuestion' -export { default as ChatBubbleTranslate } from './ChatBubbleTranslate' -export { default as ChatBubbleWarning } from './ChatBubbleWarning' -export { default as ChatBubble } from './ChatBubble' -export { default as ChatLines } from './ChatLines' -export { default as ChatRemove } from './ChatRemove' -export { default as CheckCircle } from './CheckCircle' -export { default as CheckWindow } from './CheckWindow' -export { default as Check } from './Check' -export { default as Chocolate } from './Chocolate' -export { default as ChromecastActive } from './ChromecastActive' -export { default as Chromecast } from './Chromecast' -export { default as ChurchAlt } from './ChurchAlt' -export { default as Church } from './Church' -export { default as CinemaOld } from './CinemaOld' -export { default as CircleSpark } from './CircleSpark' -export { default as Circle } from './Circle' -export { default as City } from './City' -export { default as CleanWater } from './CleanWater' -export { default as ClipboardCheck } from './ClipboardCheck' -export { default as ClockRotateRight } from './ClockRotateRight' -export { default as Clock } from './Clock' -export { default as ClosedCaptions } from './ClosedCaptions' -export { default as Closet } from './Closet' -export { default as CloudBookAlt } from './CloudBookAlt' -export { default as CloudCheck } from './CloudCheck' -export { default as CloudDesync } from './CloudDesync' -export { default as CloudDownload } from './CloudDownload' -export { default as CloudError } from './CloudError' -export { default as CloudSunny } from './CloudSunny' -export { default as CloudSync } from './CloudSync' -export { default as CloudUpload } from './CloudUpload' -export { default as Cloud } from './Cloud' -export { default as Clutery } from './Clutery' -export { default as CodeBracketsSquare } from './CodeBracketsSquare' -export { default as CodeBrackets } from './CodeBrackets' -export { default as Code } from './Code' -export { default as Codepen } from './Codepen' -export { default as CoffeeCup } from './CoffeeCup' -export { default as Coin } from './Coin' -export { default as CoinsSwap } from './CoinsSwap' -export { default as Coins } from './Coins' -export { default as CollageFrame } from './CollageFrame' -export { default as Collapse } from './Collapse' -export { default as ColorFilter } from './ColorFilter' -export { default as ColorPickerEmpty } from './ColorPickerEmpty' -export { default as ColorPicker } from './ColorPicker' -export { default as ColorWheel } from './ColorWheel' -export { default as Combine } from './Combine' -export { default as Commodity } from './Commodity' -export { default as Community } from './Community' -export { default as CompAlignBottom } from './CompAlignBottom' -export { default as CompAlignLeft } from './CompAlignLeft' -export { default as CompAlignRight } from './CompAlignRight' -export { default as CompAlignTop } from './CompAlignTop' -export { default as CompactDisc } from './CompactDisc' -export { default as Compass } from './Compass' -export { default as Component } from './Component' -export { default as CompressLines } from './CompressLines' -export { default as Compress } from './Compress' -export { default as Computer } from './Computer' -export { default as ConstrainedSurface } from './ConstrainedSurface' -export { default as Consumable } from './Consumable' -export { default as Contactless } from './Contactless' -export { default as ControlSlider } from './ControlSlider' -export { default as Cookie } from './Cookie' -export { default as Cooling } from './Cooling' -export { default as Copy } from './Copy' -export { default as Copyright } from './Copyright' -export { default as CornerBottomLeft } from './CornerBottomLeft' -export { default as CornerBottomRight } from './CornerBottomRight' -export { default as CornerTopLeft } from './CornerTopLeft' -export { default as CornerTopRight } from './CornerTopRight' -export { default as CpuWarning } from './CpuWarning' -export { default as Cpu } from './Cpu' -export { default as CrackedEgg } from './CrackedEgg' -export { default as CreativeCommons } from './CreativeCommons' -export { default as CreditCard } from './CreditCard' -export { default as CreditCards } from './CreditCards' -export { default as Crib } from './Crib' -export { default as CropRotateBl } from './CropRotateBl' -export { default as CropRotateBr } from './CropRotateBr' -export { default as CropRotateTl } from './CropRotateTl' -export { default as CropRotateTr } from './CropRotateTr' -export { default as Crop } from './Crop' -export { default as CrownCircle } from './CrownCircle' -export { default as Crown } from './Crown' -export { default as Css3 } from './Css3' -export { default as CubeReplaceFace } from './CubeReplaceFace' -export { default as CursorPointer } from './CursorPointer' -export { default as CurveArray } from './CurveArray' -export { default as CutAlt } from './CutAlt' -export { default as CutSolidWithCurve } from './CutSolidWithCurve' -export { default as Cut } from './Cut' -export { default as Cycling } from './Cycling' -export { default as Cylinder } from './Cylinder' -export { default as DashFlag } from './DashFlag' -export { default as DashboardDots } from './DashboardDots' -export { default as DashboardSpeed } from './DashboardSpeed' -export { default as Dashboard } from './Dashboard' -export { default as DataTransferBoth } from './DataTransferBoth' -export { default as DataTransferCheck } from './DataTransferCheck' -export { default as DataTransferDown } from './DataTransferDown' -export { default as DataTransferUp } from './DataTransferUp' -export { default as DataTransferWarning } from './DataTransferWarning' -export { default as DatabaseBackup } from './DatabaseBackup' -export { default as DatabaseExport } from './DatabaseExport' -export { default as DatabaseMonitor } from './DatabaseMonitor' -export { default as DatabaseRestore } from './DatabaseRestore' -export { default as DatabaseScript } from './DatabaseScript' -export { default as DatabaseSettings } from './DatabaseSettings' -export { default as DatabaseStar } from './DatabaseStar' -export { default as DatabaseStats } from './DatabaseStats' -export { default as DatabaseTag } from './DatabaseTag' -export { default as DbCheck } from './DbCheck' -export { default as DbError } from './DbError' -export { default as DbSearch } from './DbSearch' -export { default as DbStar } from './DbStar' -export { default as DbWarning } from './DbWarning' -export { default as Db } from './Db' -export { default as DeCompress } from './DeCompress' -export { default as DeleteCircle } from './DeleteCircle' -export { default as DeliveryTruck } from './DeliveryTruck' -export { default as Delivery } from './Delivery' -export { default as Depth } from './Depth' -export { default as DesignNib } from './DesignNib' -export { default as DesignPencil } from './DesignPencil' -export { default as Desk } from './Desk' -export { default as DevModeLaptop } from './DevModeLaptop' -export { default as DevModePhone } from './DevModePhone' -export { default as Developer } from './Developer' -export { default as DewPoint } from './DewPoint' -export { default as Dialpad } from './Dialpad' -export { default as Diameter } from './Diameter' -export { default as DiceFive } from './DiceFive' -export { default as DiceFour } from './DiceFour' -export { default as DiceOne } from './DiceOne' -export { default as DiceSix } from './DiceSix' -export { default as DiceThree } from './DiceThree' -export { default as DiceTwo } from './DiceTwo' -export { default as DimmerSwitch } from './DimmerSwitch' -export { default as DirectorChair } from './DirectorChair' -export { default as Discord } from './Discord' -export { default as Dishwasher } from './Dishwasher' -export { default as Display4K } from './Display4K' -export { default as DivideSelection1 } from './DivideSelection1' -export { default as DivideSelection2 } from './DivideSelection2' -export { default as DivideThree } from './DivideThree' -export { default as Divide } from './Divide' -export { default as Dna } from './Dna' -export { default as DocSearchAlt } from './DocSearchAlt' -export { default as DocSearch } from './DocSearch' -export { default as DocStarAlt } from './DocStarAlt' -export { default as DocStar } from './DocStar' -export { default as DogecoinCircle } from './DogecoinCircle' -export { default as DogecoinRotateOut } from './DogecoinRotateOut' -export { default as Dollar } from './Dollar' -export { default as DomoticIssue } from './DomoticIssue' -export { default as Donate } from './Donate' -export { default as DoubleCheck } from './DoubleCheck' -export { default as DownRoundArrow } from './DownRoundArrow' -export { default as DownloadCircle } from './DownloadCircle' -export { default as DownloadDataWindow } from './DownloadDataWindow' -export { default as DownloadSquare } from './DownloadSquare' -export { default as Download } from './Download' -export { default as DragHandGesture } from './DragHandGesture' -export { default as Drag } from './Drag' -export { default as Drawer } from './Drawer' -export { default as Dribbble } from './Dribbble' -export { default as DroneChargeFull } from './DroneChargeFull' -export { default as DroneChargeHalf } from './DroneChargeHalf' -export { default as DroneChargeLow } from './DroneChargeLow' -export { default as DroneCheck } from './DroneCheck' -export { default as DroneError } from './DroneError' -export { default as DroneLanding } from './DroneLanding' -export { default as DroneRefresh } from './DroneRefresh' -export { default as DroneTakeOff } from './DroneTakeOff' -export { default as Drone } from './Drone' -export { default as DropletHalf } from './DropletHalf' -export { default as Droplet } from './Droplet' -export { default as EaseCurveControlPoints } from './EaseCurveControlPoints' -export { default as EaseInControlPoint } from './EaseInControlPoint' -export { default as EaseInOut } from './EaseInOut' -export { default as EaseIn } from './EaseIn' -export { default as EaseOutControlPoint } from './EaseOutControlPoint' -export { default as EaseOut } from './EaseOut' -export { default as EcologyBook } from './EcologyBook' -export { default as EditPencil } from './EditPencil' -export { default as Edit } from './Edit' -export { default as Egg } from './Egg' -export { default as Eject } from './Eject' -export { default as ElectronicsChip } from './ElectronicsChip' -export { default as ElectronicsTransistor } from './ElectronicsTransistor' -export { default as Elevator } from './Elevator' -export { default as EmojiBall } from './EmojiBall' -export { default as EmojiBlinkLeft } from './EmojiBlinkLeft' -export { default as EmojiBlinkRight } from './EmojiBlinkRight' -export { default as EmojiLookDown } from './EmojiLookDown' -export { default as EmojiLookLeft } from './EmojiLookLeft' -export { default as EmojiLookRight } from './EmojiLookRight' -export { default as EmojiLookUp } from './EmojiLookUp' -export { default as EmojiPuzzled } from './EmojiPuzzled' -export { default as EmojiQuite } from './EmojiQuite' -export { default as EmojiReally } from './EmojiReally' -export { default as EmojiSad } from './EmojiSad' -export { default as EmojiSatisfied } from './EmojiSatisfied' -export { default as EmojiSingLeftNote } from './EmojiSingLeftNote' -export { default as EmojiSingLeft } from './EmojiSingLeft' -export { default as EmojiSingRightNote } from './EmojiSingRightNote' -export { default as EmojiSingRight } from './EmojiSingRight' -export { default as EmojiSurpriseAlt } from './EmojiSurpriseAlt' -export { default as EmojiSurprise } from './EmojiSurprise' -export { default as EmojiTalkingAngry } from './EmojiTalkingAngry' -export { default as EmojiTalkingHappy } from './EmojiTalkingHappy' -export { default as EmojiThinkLeft } from './EmojiThinkLeft' -export { default as EmojiThinkRight } from './EmojiThinkRight' -export { default as Emoji } from './Emoji' -export { default as EmptyPage } from './EmptyPage' -export { default as EnergyUsageWindow } from './EnergyUsageWindow' -export { default as EnlargeRoundArrow } from './EnlargeRoundArrow' -export { default as Enlarge } from './Enlarge' -export { default as Erase } from './Erase' -export { default as ErrorWindow } from './ErrorWindow' -export { default as EthereumCircle } from './EthereumCircle' -export { default as EthereumRotateOut } from './EthereumRotateOut' -export { default as EuroSquare } from './EuroSquare' -export { default as Euro } from './Euro' -export { default as EvChargeAlt } from './EvChargeAlt' -export { default as EvCharge } from './EvCharge' -export { default as EvPlugCharging } from './EvPlugCharging' -export { default as EvPlugError } from './EvPlugError' -export { default as EvPlug } from './EvPlug' -export { default as EvStation } from './EvStation' -export { default as EvTag } from './EvTag' -export { default as Exclude } from './Exclude' -export { default as ExpandLines } from './ExpandLines' -export { default as Expand } from './Expand' -export { default as Extrude } from './Extrude' -export { default as EyeAlt } from './EyeAlt' -export { default as EyeClose } from './EyeClose' -export { default as EyeEmpty } from './EyeEmpty' -export { default as EyeOff } from './EyeOff' -export { default as FaceId } from './FaceId' -export { default as FacebookTag } from './FacebookTag' -export { default as Facebook } from './Facebook' -export { default as Facetime } from './Facetime' -export { default as Farm } from './Farm' -export { default as FastArrowDownBox } from './FastArrowDownBox' -export { default as FastArrowDown } from './FastArrowDown' -export { default as FastArrowLeftBox } from './FastArrowLeftBox' -export { default as FastArrowLeft } from './FastArrowLeft' -export { default as FastArrowRightBox } from './FastArrowRightBox' -export { default as FastArrowRight } from './FastArrowRight' -export { default as FastArrowUpBox } from './FastArrowUpBox' -export { default as FastArrowUp } from './FastArrowUp' -export { default as FastDownCircle } from './FastDownCircle' -export { default as FastLeftCircle } from './FastLeftCircle' -export { default as FastRightCircle } from './FastRightCircle' -export { default as FastUpCircle } from './FastUpCircle' -export { default as FavouriteBook } from './FavouriteBook' -export { default as FavouriteWindow } from './FavouriteWindow' -export { default as Female } from './Female' -export { default as Figma } from './Figma' -export { default as FileNotFound } from './FileNotFound' -export { default as FillColor } from './FillColor' -export { default as Fillet3D } from './Fillet3D' -export { default as FilterAlt } from './FilterAlt' -export { default as FilterListCircle } from './FilterListCircle' -export { default as FilterList } from './FilterList' -export { default as Filter } from './Filter' -export { default as Finder } from './Finder' -export { default as FingerprintCheckCircle } from './FingerprintCheckCircle' -export { default as FingerprintCircle } from './FingerprintCircle' -export { default as FingerprintErrorCircle } from './FingerprintErrorCircle' -export { default as FingerprintLockCircle } from './FingerprintLockCircle' -export { default as FingerprintPhone } from './FingerprintPhone' -export { default as FingerprintScan } from './FingerprintScan' -export { default as FingerprintSquare } from './FingerprintSquare' -export { default as FingerprintWindow } from './FingerprintWindow' -export { default as Fingerprint } from './Fingerprint' -export { default as FireFlame } from './FireFlame' -export { default as Fish } from './Fish' -export { default as Fishing } from './Fishing' -export { default as Flare } from './Flare' -export { default as FlashOff } from './FlashOff' -export { default as Flash } from './Flash' -export { default as Flask } from './Flask' -export { default as FlipReverse } from './FlipReverse' -export { default as Flip } from './Flip' -export { default as Flower } from './Flower' -export { default as Fluorine } from './Fluorine' -export { default as Fog } from './Fog' -export { default as FolderAlert } from './FolderAlert' -export { default as FolderSettings } from './FolderSettings' -export { default as Folder } from './Folder' -export { default as FontSize } from './FontSize' -export { default as FootballBall } from './FootballBall' -export { default as Football } from './Football' -export { default as Forward15Seconds } from './Forward15Seconds' -export { default as ForwardMessage } from './ForwardMessage' -export { default as Forward } from './Forward' -export { default as FrameAltEmpty } from './FrameAltEmpty' -export { default as FrameAlt } from './FrameAlt' -export { default as FrameSelect } from './FrameSelect' -export { default as FrameSimple } from './FrameSimple' -export { default as FrameTool } from './FrameTool' -export { default as Frame } from './Frame' -export { default as Fridge } from './Fridge' -export { default as FxTag } from './FxTag' -export { default as Fx } from './Fx' -export { default as Gamepad } from './Gamepad' -export { default as Garage } from './Garage' -export { default as GasTankDrop } from './GasTankDrop' -export { default as GasTank } from './GasTank' -export { default as Gas } from './Gas' -export { default as GifFormat } from './GifFormat' -export { default as Gift } from './Gift' -export { default as GitBranch } from './GitBranch' -export { default as GitCherryPickCommit } from './GitCherryPickCommit' -export { default as GitCommand } from './GitCommand' -export { default as GitCommit } from './GitCommit' -export { default as GitCompare } from './GitCompare' -export { default as GitFork } from './GitFork' -export { default as GitMerge } from './GitMerge' -export { default as GitPullRequestClosed } from './GitPullRequestClosed' -export { default as GitPullRequest } from './GitPullRequest' -export { default as GitHub } from './GitHub' -export { default as GitLabFull } from './GitLabFull' -export { default as GithubCircle } from './GithubCircle' -export { default as GlassEmpty } from './GlassEmpty' -export { default as GlassFragile } from './GlassFragile' -export { default as GlassHalfAlt } from './GlassHalfAlt' -export { default as GlassHalf } from './GlassHalf' -export { default as Glasses } from './Glasses' -export { default as Globe } from './Globe' -export { default as Golf } from './Golf' -export { default as GoogleCircle } from './GoogleCircle' -export { default as GoogleDocs } from './GoogleDocs' -export { default as GoogleDriveCheck } from './GoogleDriveCheck' -export { default as GoogleDriveSync } from './GoogleDriveSync' -export { default as GoogleDriveWarning } from './GoogleDriveWarning' -export { default as GoogleDrive } from './GoogleDrive' -export { default as GoogleHome } from './GoogleHome' -export { default as GoogleOne } from './GoogleOne' -export { default as Google } from './Google' -export { default as Gps } from './Gps' -export { default as GraduationCap } from './GraduationCap' -export { default as GraphDown } from './GraphDown' -export { default as GraphUp } from './GraphUp' -export { default as GreenBus } from './GreenBus' -export { default as GreenTruck } from './GreenTruck' -export { default as GreenVehicle } from './GreenVehicle' -export { default as GridAdd } from './GridAdd' -export { default as GridMinus } from './GridMinus' -export { default as GridRemove } from './GridRemove' -export { default as Group } from './Group' -export { default as Gym } from './Gym' -export { default as HalfCookie } from './HalfCookie' -export { default as HalfMoon } from './HalfMoon' -export { default as Hammer } from './Hammer' -export { default as HandBrake } from './HandBrake' -export { default as HandCard } from './HandCard' -export { default as HandCash } from './HandCash' -export { default as HandContactless } from './HandContactless' -export { default as Handbag } from './Handbag' -export { default as HardDrive } from './HardDrive' -export { default as Hat } from './Hat' -export { default as HdDisplay } from './HdDisplay' -export { default as Hd } from './Hd' -export { default as Hdr } from './Hdr' -export { default as HeadsetCharge } from './HeadsetCharge' -export { default as HeadsetHelp } from './HeadsetHelp' -export { default as HeadsetIssue } from './HeadsetIssue' -export { default as Headset } from './Headset' -export { default as HealthShield } from './HealthShield' -export { default as Healthcare } from './Healthcare' -export { default as HeartArrowDown } from './HeartArrowDown' -export { default as Heart } from './Heart' -export { default as Heating } from './Heating' -export { default as HeavyRain } from './HeavyRain' -export { default as HelpCircle } from './HelpCircle' -export { default as HelpSquare } from './HelpSquare' -export { default as Heptagon } from './Heptagon' -export { default as HerSlips } from './HerSlips' -export { default as HexagonAlt } from './HexagonAlt' -export { default as HexagonDice } from './HexagonDice' -export { default as Hexagon } from './Hexagon' -export { default as HighPriority } from './HighPriority' -export { default as HistoricShieldAlt } from './HistoricShieldAlt' -export { default as HistoricShield } from './HistoricShield' -export { default as HomeAltSlimHoriz } from './HomeAltSlimHoriz' -export { default as HomeAltSlim } from './HomeAltSlim' -export { default as HomeAlt } from './HomeAlt' -export { default as HomeHospital } from './HomeHospital' -export { default as HomeSale } from './HomeSale' -export { default as HomeSecure } from './HomeSecure' -export { default as HomeShield } from './HomeShield' -export { default as HomeSimpleDoor } from './HomeSimpleDoor' -export { default as HomeSimple } from './HomeSimple' -export { default as HomeTable } from './HomeTable' -export { default as HomeTemperatureIn } from './HomeTemperatureIn' -export { default as HomeTemperatureOut } from './HomeTemperatureOut' -export { default as HomeUser } from './HomeUser' -export { default as Home } from './Home' -export { default as HorizDistributionLeft } from './HorizDistributionLeft' -export { default as HorizDistributionRight } from './HorizDistributionRight' -export { default as HorizontalMerge } from './HorizontalMerge' -export { default as HorizontalSplit } from './HorizontalSplit' -export { default as HospitalSign } from './HospitalSign' -export { default as Hospital } from './Hospital' -export { default as HotAirBalloon } from './HotAirBalloon' -export { default as Hourglass } from './Hourglass' -export { default as HouseRooms } from './HouseRooms' -export { default as Html5 } from './Html5' -export { default as Hydrogen } from './Hydrogen' -export { default as Iconoir } from './Iconoir' -export { default as Import } from './Import' -export { default as Inclination } from './Inclination' -export { default as Industry } from './Industry' -export { default as Infinite } from './Infinite' -export { default as InfoEmpty } from './InfoEmpty' -export { default as InputField } from './InputField' -export { default as InputOutput } from './InputOutput' -export { default as InputSearch } from './InputSearch' -export { default as Instagram } from './Instagram' -export { default as Internet } from './Internet' -export { default as IntersectAlt } from './IntersectAlt' -export { default as Intersect } from './Intersect' -export { default as IosSettings } from './IosSettings' -export { default as IpAddress } from './IpAddress' -export { default as IrisScan } from './IrisScan' -export { default as ItalicSquare } from './ItalicSquare' -export { default as Italic } from './Italic' -export { default as Jellyfish } from './Jellyfish' -export { default as JournalPage } from './JournalPage' -export { default as Journal } from './Journal' -export { default as JpegFormat } from './JpegFormat' -export { default as JpgFormat } from './JpgFormat' -export { default as KanbanBoard } from './KanbanBoard' -export { default as KeyAltBack } from './KeyAltBack' -export { default as KeyAltMinus } from './KeyAltMinus' -export { default as KeyAltPlus } from './KeyAltPlus' -export { default as KeyAltRemove } from './KeyAltRemove' -export { default as KeyAlt } from './KeyAlt' -export { default as KeyCommand } from './KeyCommand' -export { default as KeyframeAlignCenter } from './KeyframeAlignCenter' -export { default as KeyframeAlignHorizontal } from './KeyframeAlignHorizontal' -export { default as KeyframeAlignVertical } from './KeyframeAlignVertical' -export { default as KeyframePosition } from './KeyframePosition' -export { default as Keyframe } from './Keyframe' -export { default as KeyframesCouple } from './KeyframesCouple' -export { default as Keyframes } from './Keyframes' -export { default as Label } from './Label' -export { default as Lamp } from './Lamp' -export { default as Language } from './Language' -export { default as LaptopCharging } from './LaptopCharging' -export { default as LaptopFix } from './LaptopFix' -export { default as LaptopIssue } from './LaptopIssue' -export { default as Laptop } from './Laptop' -export { default as LargeSuitcase } from './LargeSuitcase' -export { default as LayoutLeft } from './LayoutLeft' -export { default as LayoutRight } from './LayoutRight' -export { default as LeaderboardStar } from './LeaderboardStar' -export { default as Leaderboard } from './Leaderboard' -export { default as Leaf } from './Leaf' -export { default as Learning } from './Learning' -export { default as LeftRoundArrow } from './LeftRoundArrow' -export { default as Lens } from './Lens' -export { default as Lifebelt } from './Lifebelt' -export { default as LightBulbOff } from './LightBulbOff' -export { default as LightBulbOn } from './LightBulbOn' -export { default as LightBulb } from './LightBulb' -export { default as LineSpace } from './LineSpace' -export { default as Linear } from './Linear' -export { default as Link } from './Link' -export { default as LinkedIn } from './LinkedIn' -export { default as Linux } from './Linux' -export { default as ListSelect } from './ListSelect' -export { default as List } from './List' -export { default as LitecoinCircle } from './LitecoinCircle' -export { default as LitecoinRotateOut } from './LitecoinRotateOut' -export { default as LoadActionFloppy } from './LoadActionFloppy' -export { default as LockKey } from './LockKey' -export { default as Lock } from './Lock' -export { default as LockedBook } from './LockedBook' -export { default as LockedWindow } from './LockedWindow' -export { default as Loft3D } from './Loft3D' -export { default as LogDenied } from './LogDenied' -export { default as LogIn } from './LogIn' -export { default as LogOut } from './LogOut' -export { default as LongArrowDownLeft } from './LongArrowDownLeft' -export { default as LongArrowDownRight } from './LongArrowDownRight' -export { default as LongArrowLeftDown } from './LongArrowLeftDown' -export { default as LongArrowLeftUp } from './LongArrowLeftUp' -export { default as LongArrowRightDown } from './LongArrowRightDown' -export { default as LongArrowRightUp1 } from './LongArrowRightUp1' -export { default as LongArrowRightUp } from './LongArrowRightUp' -export { default as LongArrowUpLeft } from './LongArrowUpLeft' -export { default as LongArrowUpRight } from './LongArrowUpRight' -export { default as LotOfCash } from './LotOfCash' -export { default as Lullaby } from './Lullaby' -export { default as MacControlKey } from './MacControlKey' -export { default as MacDock } from './MacDock' -export { default as MacOptionKey } from './MacOptionKey' -export { default as MacOsWindow } from './MacOsWindow' -export { default as MagicWand } from './MagicWand' -export { default as MagnetEnergy } from './MagnetEnergy' -export { default as Magnet } from './Magnet' -export { default as MailIn } from './MailIn' -export { default as MailOpened } from './MailOpened' -export { default as MailOut } from './MailOut' -export { default as Mail } from './Mail' -export { default as Male } from './Male' -export { default as MapIssue } from './MapIssue' -export { default as Map } from './Map' -export { default as MapsArrowDiagonal } from './MapsArrowDiagonal' -export { default as MapsArrowIssue } from './MapsArrowIssue' -export { default as MapsArrow } from './MapsArrow' -export { default as MapsGoStraight } from './MapsGoStraight' -export { default as MapsTurnBack } from './MapsTurnBack' -export { default as MapsTurnLeft } from './MapsTurnLeft' -export { default as MapsTurnRight } from './MapsTurnRight' -export { default as MaskSquare } from './MaskSquare' -export { default as MastercardCard } from './MastercardCard' -export { default as MathBook } from './MathBook' -export { default as Maximize } from './Maximize' -export { default as Medal1St } from './Medal1St' -export { default as Medal } from './Medal' -export { default as MediaImageFolder } from './MediaImageFolder' -export { default as MediaImageList } from './MediaImageList' -export { default as MediaImage } from './MediaImage' -export { default as MediaVideoFolder } from './MediaVideoFolder' -export { default as MediaVideoList } from './MediaVideoList' -export { default as MediaVideo } from './MediaVideo' -export { default as MediumPriority } from './MediumPriority' -export { default as Medium } from './Medium' -export { default as Megaphone } from './Megaphone' -export { default as MenuScale } from './MenuScale' -export { default as Menu } from './Menu' -export { default as MessageAlert } from './MessageAlert' -export { default as MessageText } from './MessageText' -export { default as Message } from './Message' -export { default as Metro } from './Metro' -export { default as MicAdd } from './MicAdd' -export { default as MicCheck } from './MicCheck' -export { default as MicMute } from './MicMute' -export { default as MicRemove } from './MicRemove' -export { default as MicSpeaking } from './MicSpeaking' -export { default as MicWarning } from './MicWarning' -export { default as Mic } from './Mic' -export { default as Microscope } from './Microscope' -export { default as Minus1 } from './Minus1' -export { default as MinusCircle } from './MinusCircle' -export { default as MinusHexagon } from './MinusHexagon' -export { default as MinusPinAlt } from './MinusPinAlt' -export { default as MinusSquare } from './MinusSquare' -export { default as Minus } from './Minus' -export { default as Mirror } from './Mirror' -export { default as MissingFont } from './MissingFont' -export { default as ModernTv4K } from './ModernTv4K' -export { default as ModernTv } from './ModernTv' -export { default as MoneySquare } from './MoneySquare' -export { default as MoonSat } from './MoonSat' -export { default as MoreHorizCircle } from './MoreHorizCircle' -export { default as MoreHoriz } from './MoreHoriz' -export { default as MoreVertCircle } from './MoreVertCircle' -export { default as MoreVert } from './MoreVert' -export { default as Motorcycle } from './Motorcycle' -export { default as MouseButtonLeft } from './MouseButtonLeft' -export { default as MouseButtonRight } from './MouseButtonRight' -export { default as MouseScrollWheel } from './MouseScrollWheel' -export { default as MoveDown } from './MoveDown' -export { default as MoveLeft } from './MoveLeft' -export { default as MoveRight } from './MoveRight' -export { default as MoveRuler } from './MoveRuler' -export { default as MoveUp } from './MoveUp' -export { default as Movie } from './Movie' -export { default as MpegFormat } from './MpegFormat' -export { default as MultiBubble } from './MultiBubble' -export { default as MultiMacOsWindow } from './MultiMacOsWindow' -export { default as MultiWindow } from './MultiWindow' -export { default as MultiplePagesAdd } from './MultiplePagesAdd' -export { default as MultiplePagesDelete } from './MultiplePagesDelete' -export { default as MultiplePagesEmpty } from './MultiplePagesEmpty' -export { default as MultiplePagesRemove } from './MultiplePagesRemove' -export { default as MultiplePages } from './MultiplePages' -export { default as MusicDoubleNoteAdd } from './MusicDoubleNoteAdd' -export { default as MusicDoubleNote } from './MusicDoubleNote' -export { default as MusicNoteAdd } from './MusicNoteAdd' -export { default as MusicNote } from './MusicNote' -export { default as NavArrowDown } from './NavArrowDown' -export { default as NavArrowLeft } from './NavArrowLeft' -export { default as NavArrowRight } from './NavArrowRight' -export { default as NavArrowUp } from './NavArrowUp' -export { default as NavigatorAlt } from './NavigatorAlt' -export { default as Navigator } from './Navigator' -export { default as Neighbourhood } from './Neighbourhood' -export { default as NetworkAlt } from './NetworkAlt' -export { default as NetworkLeft } from './NetworkLeft' -export { default as NetworkRight } from './NetworkRight' -export { default as Network } from './Network' -export { default as NewTab } from './NewTab' -export { default as NintendoSwitch } from './NintendoSwitch' -export { default as Nitrogen } from './Nitrogen' -export { default as NoAccessWindow } from './NoAccessWindow' -export { default as NoBattery } from './NoBattery' -export { default as NoCoin } from './NoCoin' -export { default as NoCreditCard } from './NoCreditCard' -export { default as NoLink } from './NoLink' -export { default as NoLock } from './NoLock' -export { default as NoSmokingCircle } from './NoSmokingCircle' -export { default as NoSmoking } from './NoSmoking' -export { default as NonBinary } from './NonBinary' -export { default as Notes } from './Notes' -export { default as NpmSquare } from './NpmSquare' -export { default as Npm } from './Npm' -export { default as Number0Square } from './Number0Square' -export { default as Number1Square } from './Number1Square' -export { default as Number2Square } from './Number2Square' -export { default as Number3Square } from './Number3Square' -export { default as Number4Square } from './Number4Square' -export { default as Number5Square } from './Number5Square' -export { default as Number6Square } from './Number6Square' -export { default as Number7Square } from './Number7Square' -export { default as Number8Square } from './Number8Square' -export { default as Number9Square } from './Number9Square' -export { default as NumberedListLeft } from './NumberedListLeft' -export { default as NumberedListRight } from './NumberedListRight' -export { default as Octagon } from './Octagon' -export { default as OffTag } from './OffTag' -export { default as OilIndustry } from './OilIndustry' -export { default as Okrs } from './Okrs' -export { default as OnTag } from './OnTag' -export { default as OneFingerSelectHandGesture } from './OneFingerSelectHandGesture' -export { default as OnePointCircle } from './OnePointCircle' -export { default as OpenBook } from './OpenBook' -export { default as OpenInBrowser } from './OpenInBrowser' -export { default as OpenInWindow } from './OpenInWindow' -export { default as OpenNewWindow } from './OpenNewWindow' -export { default as OpenSelectHandGesture } from './OpenSelectHandGesture' -export { default as OpenVpn } from './OpenVpn' -export { default as OrangeHalf } from './OrangeHalf' -export { default as OrangeSliceAlt } from './OrangeSliceAlt' -export { default as OrangeSlice } from './OrangeSlice' -export { default as OrganicFoodSquare } from './OrganicFoodSquare' -export { default as OrganicFood } from './OrganicFood' -export { default as OrthogonalView } from './OrthogonalView' -export { default as Oxygen } from './Oxygen' -export { default as PackageLock } from './PackageLock' -export { default as Package } from './Package' -export { default as Packages } from './Packages' -export { default as Pacman } from './Pacman' -export { default as PageDown } from './PageDown' -export { default as PageEdit } from './PageEdit' -export { default as PageFlip } from './PageFlip' -export { default as PageLeft } from './PageLeft' -export { default as PageRight } from './PageRight' -export { default as PageSearch } from './PageSearch' -export { default as PageStar } from './PageStar' -export { default as PageUp } from './PageUp' -export { default as Page } from './Page' -export { default as Palette } from './Palette' -export { default as PanoramaEnlarge } from './PanoramaEnlarge' -export { default as PanoramaReduce } from './PanoramaReduce' -export { default as PantsAlt } from './PantsAlt' -export { default as Pants } from './Pants' -export { default as Parking } from './Parking' -export { default as PasswordCursor } from './PasswordCursor' -export { default as PasswordError } from './PasswordError' -export { default as PasswordPass } from './PasswordPass' -export { default as PasteClipboard } from './PasteClipboard' -export { default as PatchHoles3D } from './PatchHoles3D' -export { default as PathArrow } from './PathArrow' -export { default as PauseWindow } from './PauseWindow' -export { default as Pause } from './Pause' -export { default as Paypal } from './Paypal' -export { default as PcCheck } from './PcCheck' -export { default as PcFirewall } from './PcFirewall' -export { default as PcMouse } from './PcMouse' -export { default as PcNoEntry } from './PcNoEntry' -export { default as PcWarning } from './PcWarning' -export { default as PeaceHand } from './PeaceHand' -export { default as PenConnectBluetooth } from './PenConnectBluetooth' -export { default as PenConnectWifi } from './PenConnectWifi' -export { default as PenTabletConnectUsb } from './PenTabletConnectUsb' -export { default as PenTabletConnectWifi } from './PenTabletConnectWifi' -export { default as PenTablet } from './PenTablet' -export { default as Pentagon } from './Pentagon' -export { default as PeopleTag } from './PeopleTag' -export { default as PercentRotateOut } from './PercentRotateOut' -export { default as PercentageCircle } from './PercentageCircle' -export { default as PercentageSquare } from './PercentageSquare' -export { default as Percentage } from './Percentage' -export { default as PerspectiveView } from './PerspectiveView' -export { default as PharmacyCrossCircle } from './PharmacyCrossCircle' -export { default as PharmacyCrossSquare } from './PharmacyCrossSquare' -export { default as PhoneAdd } from './PhoneAdd' -export { default as PhoneDelete } from './PhoneDelete' -export { default as PhoneDisabled } from './PhoneDisabled' -export { default as PhoneIncome } from './PhoneIncome' -export { default as PhoneOutcome } from './PhoneOutcome' -export { default as PhonePaused } from './PhonePaused' -export { default as PhoneRemove } from './PhoneRemove' -export { default as Phone } from './Phone' -export { default as PiggyBank } from './PiggyBank' -export { default as Pillow } from './Pillow' -export { default as PinAlt } from './PinAlt' -export { default as Pin } from './Pin' -export { default as PineTree } from './PineTree' -export { default as Pinterest } from './Pinterest' -export { default as Pipe3D } from './Pipe3D' -export { default as PizzaSlice } from './PizzaSlice' -export { default as PlanetAlt } from './PlanetAlt' -export { default as PlanetSat } from './PlanetSat' -export { default as Planet } from './Planet' -export { default as Planimetry } from './Planimetry' -export { default as Play } from './Play' -export { default as PlaylistAdd } from './PlaylistAdd' -export { default as PlaylistPlay } from './PlaylistPlay' -export { default as Playlist } from './Playlist' -export { default as PlaystationGamepad } from './PlaystationGamepad' -export { default as PlugTypeA } from './PlugTypeA' -export { default as PlugTypeC } from './PlugTypeC' -export { default as PlugTypeG } from './PlugTypeG' -export { default as PlugTypeL } from './PlugTypeL' -export { default as Plus } from './Plus' -export { default as PngFormat } from './PngFormat' -export { default as Pocket } from './Pocket' -export { default as Podcast } from './Podcast' -export { default as Pokeball } from './Pokeball' -export { default as PositionAlign } from './PositionAlign' -export { default as Position } from './Position' -export { default as Post } from './Post' -export { default as Potion } from './Potion' -export { default as Pound } from './Pound' -export { default as PrecisionTool } from './PrecisionTool' -export { default as Presentation } from './Presentation' -export { default as PrinterAlt } from './PrinterAlt' -export { default as Printer } from './Printer' -export { default as PrintingPage } from './PrintingPage' -export { default as PriorityDown } from './PriorityDown' -export { default as PriorityUp } from './PriorityUp' -export { default as PrivacyPolicy } from './PrivacyPolicy' -export { default as PrivateWifi } from './PrivateWifi' -export { default as ProfileCircle } from './ProfileCircle' -export { default as Prohibition } from './Prohibition' -export { default as ProjectCurve3D } from './ProjectCurve3D' -export { default as Puzzle } from './Puzzle' -export { default as QrCode } from './QrCode' -export { default as QuestionMark } from './QuestionMark' -export { default as QuoteMessage } from './QuoteMessage' -export { default as Quote } from './Quote' -export { default as Radiation } from './Radiation' -export { default as Radius } from './Radius' -export { default as Rain } from './Rain' -export { default as RawFormat } from './RawFormat' -export { default as ReceiveDollars } from './ReceiveDollars' -export { default as ReceiveEuros } from './ReceiveEuros' -export { default as ReceivePounds } from './ReceivePounds' -export { default as ReceiveYens } from './ReceiveYens' -export { default as RedoAction } from './RedoAction' -export { default as RedoCircle } from './RedoCircle' -export { default as Redo } from './Redo' -export { default as ReduceRoundArrow } from './ReduceRoundArrow' -export { default as Reduce } from './Reduce' -export { default as RefreshCircular } from './RefreshCircular' -export { default as RefreshDouble } from './RefreshDouble' -export { default as Refresh } from './Refresh' -export { default as ReloadWindow } from './ReloadWindow' -export { default as ReminderHandGesture } from './ReminderHandGesture' -export { default as RemoveDatabaseScript } from './RemoveDatabaseScript' -export { default as RemoveFolder } from './RemoveFolder' -export { default as RemoveFrame } from './RemoveFrame' -export { default as RemoveFromCart } from './RemoveFromCart' -export { default as RemoveKeyframeAlt } from './RemoveKeyframeAlt' -export { default as RemoveKeyframe } from './RemoveKeyframe' -export { default as RemoveKeyframes } from './RemoveKeyframes' -export { default as RemoveLink } from './RemoveLink' -export { default as RemoveMediaImage } from './RemoveMediaImage' -export { default as RemoveMediaVideo } from './RemoveMediaVideo' -export { default as RemovePageAlt } from './RemovePageAlt' -export { default as RemovePage } from './RemovePage' -export { default as RemovePinAlt } from './RemovePinAlt' -export { default as RemovePin } from './RemovePin' -export { default as RemoveSelection } from './RemoveSelection' -export { default as RemoveSquare } from './RemoveSquare' -export { default as RemoveUser } from './RemoveUser' -export { default as RepeatOnce } from './RepeatOnce' -export { default as Repeat } from './Repeat' -export { default as ReplyToMessage } from './ReplyToMessage' -export { default as Reply } from './Reply' -export { default as ReportColumns } from './ReportColumns' -export { default as Reports } from './Reports' -export { default as Repository } from './Repository' -export { default as Restart } from './Restart' -export { default as Rewind } from './Rewind' -export { default as Rhombus } from './Rhombus' -export { default as RightRoundArrow } from './RightRoundArrow' -export { default as Rings } from './Rings' -export { default as Rocket } from './Rocket' -export { default as Rook } from './Rook' -export { default as RotateCameraLeft } from './RotateCameraLeft' -export { default as RotateCameraRight } from './RotateCameraRight' -export { default as RoundFlask } from './RoundFlask' -export { default as RoundedMirror } from './RoundedMirror' -export { default as RssFeedTag } from './RssFeedTag' -export { default as RssFeed } from './RssFeed' -export { default as RubikCube } from './RubikCube' -export { default as RulerAdd } from './RulerAdd' -export { default as RulerCombine } from './RulerCombine' -export { default as RulerRemove } from './RulerRemove' -export { default as Ruler } from './Ruler' -export { default as Running } from './Running' -export { default as Safari } from './Safari' -export { default as SafeArrowLeft } from './SafeArrowLeft' -export { default as SafeArrowRight } from './SafeArrowRight' -export { default as SafeOpen } from './SafeOpen' -export { default as Safe } from './Safe' -export { default as Sandals } from './Sandals' -export { default as SaveActionFloppy } from './SaveActionFloppy' -export { default as SaveFloppyDisk } from './SaveFloppyDisk' -export { default as ScaleFrameEnlarge } from './ScaleFrameEnlarge' -export { default as ScaleFrameReduce } from './ScaleFrameReduce' -export { default as ScanBarcode } from './ScanBarcode' -export { default as ScanQrCode } from './ScanQrCode' -export { default as Scanning } from './Scanning' -export { default as Scarf } from './Scarf' -export { default as ScissorAlt } from './ScissorAlt' -export { default as Scissor } from './Scissor' -export { default as Screenshot } from './Screenshot' -export { default as SeaAndSun } from './SeaAndSun' -export { default as SeaWaves } from './SeaWaves' -export { default as SearchEngine } from './SearchEngine' -export { default as SearchFont } from './SearchFont' -export { default as SearchWindow } from './SearchWindow' -export { default as Search } from './Search' -export { default as SecureWindow } from './SecureWindow' -export { default as SecurityPass } from './SecurityPass' -export { default as SelectWindow } from './SelectWindow' -export { default as Selection } from './Selection' -export { default as SelectiveTool } from './SelectiveTool' -export { default as SendDiagonal } from './SendDiagonal' -export { default as SendDollars } from './SendDollars' -export { default as SendEuros } from './SendEuros' -export { default as SendMail } from './SendMail' -export { default as SendPounds } from './SendPounds' -export { default as SendYens } from './SendYens' -export { default as Send } from './Send' -export { default as ServerConnection } from './ServerConnection' -export { default as Server } from './Server' -export { default as SettingsCloud } from './SettingsCloud' -export { default as SettingsProfiles } from './SettingsProfiles' -export { default as Settings } from './Settings' -export { default as ShareAndroid } from './ShareAndroid' -export { default as ShareIos } from './ShareIos' -export { default as ShieldAdd } from './ShieldAdd' -export { default as ShieldAlert } from './ShieldAlert' -export { default as ShieldAlt } from './ShieldAlt' -export { default as ShieldBroken } from './ShieldBroken' -export { default as ShieldCheck } from './ShieldCheck' -export { default as ShieldCross } from './ShieldCross' -export { default as ShieldDownload } from './ShieldDownload' -export { default as ShieldEye } from './ShieldEye' -export { default as ShieldLoading } from './ShieldLoading' -export { default as ShieldMinus } from './ShieldMinus' -export { default as ShieldQuestion } from './ShieldQuestion' -export { default as ShieldSearch } from './ShieldSearch' -export { default as ShieldUpload } from './ShieldUpload' -export { default as Shield } from './Shield' -export { default as ShopAlt } from './ShopAlt' -export { default as Shop } from './Shop' -export { default as ShoppingBagAdd } from './ShoppingBagAdd' -export { default as ShoppingBagAlt } from './ShoppingBagAlt' -export { default as ShoppingBagArrowDown } from './ShoppingBagArrowDown' -export { default as ShoppingBagArrowUp } from './ShoppingBagArrowUp' -export { default as ShoppingBagCheck } from './ShoppingBagCheck' -export { default as ShoppingBagIssue } from './ShoppingBagIssue' -export { default as ShoppingBagRemove } from './ShoppingBagRemove' -export { default as ShoppingBag } from './ShoppingBag' -export { default as ShoppingCodeCheck } from './ShoppingCodeCheck' -export { default as ShoppingCodeError } from './ShoppingCodeError' -export { default as ShoppingCode } from './ShoppingCode' -export { default as ShortPantsAlt } from './ShortPantsAlt' -export { default as ShortPants } from './ShortPants' -export { default as Shortcut } from './Shortcut' -export { default as Shuffle } from './Shuffle' -export { default as SidebarCollapse } from './SidebarCollapse' -export { default as SidebarExpand } from './SidebarExpand' -export { default as SigmaFunction } from './SigmaFunction' -export { default as SimpleCart } from './SimpleCart' -export { default as SineWave } from './SineWave' -export { default as SingleTapGesture } from './SingleTapGesture' -export { default as Skateboard } from './Skateboard' -export { default as Skateboarding } from './Skateboarding' -export { default as SkipNext } from './SkipNext' -export { default as SkipPrev } from './SkipPrev' -export { default as Slash } from './Slash' -export { default as SleeperChair } from './SleeperChair' -export { default as SmallLampAlt } from './SmallLampAlt' -export { default as SmallLamp } from './SmallLamp' -export { default as SmallShopAlt } from './SmallShopAlt' -export { default as SmallShop } from './SmallShop' -export { default as SmartphoneDevice } from './SmartphoneDevice' -export { default as Smoking } from './Smoking' -export { default as Snapchat } from './Snapchat' -export { default as SnowFlake } from './SnowFlake' -export { default as Snow } from './Snow' -export { default as Soap } from './Soap' -export { default as SoccerBall } from './SoccerBall' -export { default as Sofa } from './Sofa' -export { default as SoilAlt } from './SoilAlt' -export { default as Soil } from './Soil' -export { default as SortDown } from './SortDown' -export { default as SortUp } from './SortUp' -export { default as Sort } from './Sort' -export { default as SoundHigh } from './SoundHigh' -export { default as SoundLow } from './SoundLow' -export { default as SoundMin } from './SoundMin' -export { default as SoundOff } from './SoundOff' -export { default as Spades } from './Spades' -export { default as Spark } from './Spark' -export { default as Sparks } from './Sparks' -export { default as Sphere } from './Sphere' -export { default as Spiral } from './Spiral' -export { default as SpockHandGesture } from './SpockHandGesture' -export { default as Spotify } from './Spotify' -export { default as SquareCursor } from './SquareCursor' -export { default as SquareWave } from './SquareWave' -export { default as Square } from './Square' -export { default as Stackoverflow } from './Stackoverflow' -export { default as StarDashed } from './StarDashed' -export { default as StarHalfDashed } from './StarHalfDashed' -export { default as Star } from './Star' -export { default as StatDown } from './StatDown' -export { default as StatUp } from './StatUp' -export { default as StatsDownSquare } from './StatsDownSquare' -export { default as StatsReport } from './StatsReport' -export { default as StatsUpSquare } from './StatsUpSquare' -export { default as Strategy } from './Strategy' -export { default as Stretching } from './Stretching' -export { default as Strikethrough } from './Strikethrough' -export { default as Stroller } from './Stroller' -export { default as StyleBorder } from './StyleBorder' -export { default as SubmitDocument } from './SubmitDocument' -export { default as Substract } from './Substract' -export { default as Suggestion } from './Suggestion' -export { default as SunLight } from './SunLight' -export { default as SvgFormat } from './SvgFormat' -export { default as Sweep3D } from './Sweep3D' -export { default as Swimming } from './Swimming' -export { default as SwipeDownGesture } from './SwipeDownGesture' -export { default as SwipeLeftGesture } from './SwipeLeftGesture' -export { default as SwipeRightGesture } from './SwipeRightGesture' -export { default as SwipeTwoFingersDownGesture } from './SwipeTwoFingersDownGesture' -export { default as SwipeTwoFingersLeftGesture } from './SwipeTwoFingersLeftGesture' -export { default as SwipeTwoFingersRightGesture } from './SwipeTwoFingersRightGesture' -export { default as SwipeTwoFingersUpGesture } from './SwipeTwoFingersUpGesture' -export { default as SwipeUpGesture } from './SwipeUpGesture' -export { default as SwitchOff } from './SwitchOff' -export { default as SwitchOn } from './SwitchOn' -export { default as SystemRestart } from './SystemRestart' -export { default as SystemShut } from './SystemShut' -export { default as TShirt } from './TShirt' -export { default as Table2Columns } from './Table2Columns' -export { default as TableRows } from './TableRows' -export { default as Table } from './Table' -export { default as TaskList } from './TaskList' -export { default as TelegramCircle } from './TelegramCircle' -export { default as Telegram } from './Telegram' -export { default as TemperatureDown } from './TemperatureDown' -export { default as TemperatureHigh } from './TemperatureHigh' -export { default as TemperatureLow } from './TemperatureLow' -export { default as TemperatureUp } from './TemperatureUp' -export { default as TennisBallAlt } from './TennisBallAlt' -export { default as TennisBall } from './TennisBall' -export { default as TerminalTag } from './TerminalTag' -export { default as Terminal } from './Terminal' -export { default as TestTube } from './TestTube' -export { default as TextAlt } from './TextAlt' -export { default as TextBox } from './TextBox' -export { default as TextSize } from './TextSize' -export { default as Text } from './Text' -export { default as Threads } from './Threads' -export { default as ThreePointsCircle } from './ThreePointsCircle' -export { default as ThreeStars } from './ThreeStars' -export { default as ThumbsDown } from './ThumbsDown' -export { default as ThumbsUp } from './ThumbsUp' -export { default as Thunderstorm } from './Thunderstorm' -export { default as TifFormat } from './TifFormat' -export { default as TiffFormat } from './TiffFormat' -export { default as TikTok } from './TikTok' -export { default as TimeZone } from './TimeZone' -export { default as TimerOff } from './TimerOff' -export { default as Timer } from './Timer' -export { default as Tools } from './Tools' -export { default as Tournament } from './Tournament' -export { default as TowerCheck } from './TowerCheck' -export { default as TowerNoAccess } from './TowerNoAccess' -export { default as TowerWarning } from './TowerWarning' -export { default as Tower } from './Tower' -export { default as Trademark } from './Trademark' -export { default as Train } from './Train' -export { default as Tram } from './Tram' -export { default as TransitionDown } from './TransitionDown' -export { default as TransitionLeft } from './TransitionLeft' -export { default as TransitionRight } from './TransitionRight' -export { default as TransitionUp } from './TransitionUp' -export { default as Translate } from './Translate' -export { default as Trash } from './Trash' -export { default as Treadmill } from './Treadmill' -export { default as Tree } from './Tree' -export { default as Trekking } from './Trekking' -export { default as Trello } from './Trello' -export { default as TriangleFlagCircle } from './TriangleFlagCircle' -export { default as TriangleFlagTwoStripes } from './TriangleFlagTwoStripes' -export { default as TriangleFlag } from './TriangleFlag' -export { default as Triangle } from './Triangle' -export { default as Trophy } from './Trophy' -export { default as TruckLength } from './TruckLength' -export { default as Truck } from './Truck' -export { default as Tunnel } from './Tunnel' -export { default as TvFix } from './TvFix' -export { default as TvIssue } from './TvIssue' -export { default as Tv } from './Tv' -export { default as TwitterVerifiedBadge } from './TwitterVerifiedBadge' -export { default as Twitter } from './Twitter' -export { default as TwoPointsCircle } from './TwoPointsCircle' -export { default as TwoSeaterSofa } from './TwoSeaterSofa' -export { default as Type } from './Type' -export { default as UmbrellaFull } from './UmbrellaFull' -export { default as UnderlineSquare } from './UnderlineSquare' -export { default as Underline } from './Underline' -export { default as UndoAction } from './UndoAction' -export { default as UndoCircle } from './UndoCircle' -export { default as Undo } from './Undo' -export { default as UnionAlt } from './UnionAlt' -export { default as UnionHorizAlt } from './UnionHorizAlt' -export { default as Union } from './Union' -export { default as Unity5 } from './Unity5' -export { default as Unity } from './Unity' -export { default as Unjoin3D } from './Unjoin3D' -export { default as UpRoundArrow } from './UpRoundArrow' -export { default as UploadDataWindow } from './UploadDataWindow' -export { default as UploadSquare } from './UploadSquare' -export { default as Upload } from './Upload' -export { default as Usb } from './Usb' -export { default as UserBag } from './UserBag' -export { default as UserCart } from './UserCart' -export { default as UserCircle } from './UserCircle' -export { default as UserCrown } from './UserCrown' -export { default as UserLove } from './UserLove' -export { default as UserScan } from './UserScan' -export { default as UserSquare } from './UserSquare' -export { default as UserStar } from './UserStar' -export { default as User } from './User' -export { default as VeganCircle } from './VeganCircle' -export { default as VeganSquare } from './VeganSquare' -export { default as Vegan } from './Vegan' -export { default as VerifiedBadge } from './VerifiedBadge' -export { default as VerifiedUser } from './VerifiedUser' -export { default as VerticalMerge } from './VerticalMerge' -export { default as VerticalSplit } from './VerticalSplit' -export { default as Vials } from './Vials' -export { default as VideoCameraOff } from './VideoCameraOff' -export { default as VideoCamera } from './VideoCamera' -export { default as VideoProjector } from './VideoProjector' -export { default as ViewColumns2 } from './ViewColumns2' -export { default as ViewColumns3 } from './ViewColumns3' -export { default as ViewGrid } from './ViewGrid' -export { default as ViewStructureDown } from './ViewStructureDown' -export { default as ViewStructureUp } from './ViewStructureUp' -export { default as View360 } from './View360' -export { default as VoiceCircle } from './VoiceCircle' -export { default as VoiceError } from './VoiceError' -export { default as VoiceLockCircle } from './VoiceLockCircle' -export { default as VoiceOk } from './VoiceOk' -export { default as VoicePhone } from './VoicePhone' -export { default as VoiceScan } from './VoiceScan' -export { default as VoiceSquare } from './VoiceSquare' -export { default as Voice } from './Voice' -export { default as VrSymbol } from './VrSymbol' -export { default as VueJs } from './VueJs' -export { default as Waist } from './Waist' -export { default as Walking } from './Walking' -export { default as Wallet } from './Wallet' -export { default as WarningCircle } from './WarningCircle' -export { default as WarningHexagon } from './WarningHexagon' -export { default as WarningSquare } from './WarningSquare' -export { default as WarningTriangle } from './WarningTriangle' -export { default as WarningWindow } from './WarningWindow' -export { default as Wash } from './Wash' -export { default as WashingMachine } from './WashingMachine' -export { default as WateringSoil } from './WateringSoil' -export { default as WebWindowClose } from './WebWindowClose' -export { default as WebWindowEnergyConsumption } from './WebWindowEnergyConsumption' -export { default as WebWindow } from './WebWindow' -export { default as WebpFormat } from './WebpFormat' -export { default as WeightAlt } from './WeightAlt' -export { default as Weight } from './Weight' -export { default as WhiteFlag } from './WhiteFlag' -export { default as WifiError } from './WifiError' -export { default as WifiIssue } from './WifiIssue' -export { default as WifiOff } from './WifiOff' -export { default as WifiSignalNone } from './WifiSignalNone' -export { default as WifiTag } from './WifiTag' -export { default as Wifi } from './Wifi' -export { default as Wind } from './Wind' -export { default as Windows } from './Windows' -export { default as Wolf } from './Wolf' -export { default as WomenTShirt } from './WomenTShirt' -export { default as WrapText } from './WrapText' -export { default as Wrench } from './Wrench' -export { default as Wristwatch } from './Wristwatch' -export { default as Www } from './Www' -export { default as XCoordinate } from './XCoordinate' -export { default as XboxA } from './XboxA' -export { default as XboxB } from './XboxB' -export { default as XboxX } from './XboxX' -export { default as XboxY } from './XboxY' -export { default as XrayView } from './XrayView' -export { default as YCoordinate } from './YCoordinate' -export { default as Yelp } from './Yelp' -export { default as YenSquare } from './YenSquare' -export { default as Yen } from './Yen' -export { default as Yoga } from './Yoga' -export { default as YouTube } from './YouTube' -export { default as ZCoordinate } from './ZCoordinate' -export { default as ZoomIn } from './ZoomIn' -export { default as ZoomOut } from './ZoomOut' -export { IconoirProvider, IconoirContext, IconoirContextValue } from './IconoirContext' \ No newline at end of file diff --git a/packages/iconoir-react/src/3DAddHole.tsx b/packages/iconoir-react/src/3DAddHole.tsx index 839fd1dd..54a291d5 100644 --- a/packages/iconoir-react/src/3DAddHole.tsx +++ b/packages/iconoir-react/src/3DAddHole.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DAddHole( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DAddHole = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function Svg3DAddHole( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DAddHole); +}; +const ForwardRef = forwardRef(Svg3DAddHole); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DArc.tsx b/packages/iconoir-react/src/3DArc.tsx index eea59457..096c337a 100644 --- a/packages/iconoir-react/src/3DArc.tsx +++ b/packages/iconoir-react/src/3DArc.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DArc( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DArc = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function Svg3DArc( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DArc); +}; +const ForwardRef = forwardRef(Svg3DArc); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DArcCenterPt.tsx b/packages/iconoir-react/src/3DArcCenterPt.tsx index b8748421..f8726136 100644 --- a/packages/iconoir-react/src/3DArcCenterPt.tsx +++ b/packages/iconoir-react/src/3DArcCenterPt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DArcCenterPt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DArcCenterPt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,45 +13,45 @@ function Svg3DArcCenterPt( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DArcCenterPt); +}; +const ForwardRef = forwardRef(Svg3DArcCenterPt); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DBridge.tsx b/packages/iconoir-react/src/3DBridge.tsx index 4133fdf8..2ac7c10a 100644 --- a/packages/iconoir-react/src/3DBridge.tsx +++ b/packages/iconoir-react/src/3DBridge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DBridge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DBridge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function Svg3DBridge( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DBridge); +}; +const ForwardRef = forwardRef(Svg3DBridge); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DCenterBox.tsx b/packages/iconoir-react/src/3DCenterBox.tsx index 40448db8..945a6f73 100644 --- a/packages/iconoir-react/src/3DCenterBox.tsx +++ b/packages/iconoir-react/src/3DCenterBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DCenterBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DCenterBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function Svg3DCenterBox( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DCenterBox); +}; +const ForwardRef = forwardRef(Svg3DCenterBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DDraftFace.tsx b/packages/iconoir-react/src/3DDraftFace.tsx index be301a16..1c6259b1 100644 --- a/packages/iconoir-react/src/3DDraftFace.tsx +++ b/packages/iconoir-react/src/3DDraftFace.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DDraftFace( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DDraftFace = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function Svg3DDraftFace( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DDraftFace); +}; +const ForwardRef = forwardRef(Svg3DDraftFace); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DEllipse.tsx b/packages/iconoir-react/src/3DEllipse.tsx index 93d2e088..d32b0e09 100644 --- a/packages/iconoir-react/src/3DEllipse.tsx +++ b/packages/iconoir-react/src/3DEllipse.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DEllipse( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DEllipse = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,38 +13,38 @@ function Svg3DEllipse( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DEllipse); +}; +const ForwardRef = forwardRef(Svg3DEllipse); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DEllipseThreePts.tsx b/packages/iconoir-react/src/3DEllipseThreePts.tsx index 45abace4..52331a8d 100644 --- a/packages/iconoir-react/src/3DEllipseThreePts.tsx +++ b/packages/iconoir-react/src/3DEllipseThreePts.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DEllipseThreePts( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DEllipseThreePts = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,58 +13,58 @@ function Svg3DEllipseThreePts( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DEllipseThreePts); +}; +const ForwardRef = forwardRef(Svg3DEllipseThreePts); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DPtBox.tsx b/packages/iconoir-react/src/3DPtBox.tsx index 33197078..a9a190d5 100644 --- a/packages/iconoir-react/src/3DPtBox.tsx +++ b/packages/iconoir-react/src/3DPtBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DPtBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DPtBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function Svg3DPtBox( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DPtBox); +}; +const ForwardRef = forwardRef(Svg3DPtBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DRectCornerToCorner.tsx b/packages/iconoir-react/src/3DRectCornerToCorner.tsx index 96a4cd0d..a9b2cd9e 100644 --- a/packages/iconoir-react/src/3DRectCornerToCorner.tsx +++ b/packages/iconoir-react/src/3DRectCornerToCorner.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DRectCornerToCorner( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DRectCornerToCorner = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function Svg3DRectCornerToCorner( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DRectCornerToCorner); +}; +const ForwardRef = forwardRef(Svg3DRectCornerToCorner); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DRectFromCenter.tsx b/packages/iconoir-react/src/3DRectFromCenter.tsx index cff152c4..fbf12409 100644 --- a/packages/iconoir-react/src/3DRectFromCenter.tsx +++ b/packages/iconoir-react/src/3DRectFromCenter.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DRectFromCenter( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DRectFromCenter = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function Svg3DRectFromCenter( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DRectFromCenter); +}; +const ForwardRef = forwardRef(Svg3DRectFromCenter); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DRectThreePts.tsx b/packages/iconoir-react/src/3DRectThreePts.tsx index 0d3d50c1..1b53e5a3 100644 --- a/packages/iconoir-react/src/3DRectThreePts.tsx +++ b/packages/iconoir-react/src/3DRectThreePts.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DRectThreePts( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DRectThreePts = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function Svg3DRectThreePts( }; return ( - + ); -} -const ForwardRef = React.forwardRef(Svg3DRectThreePts); +}; +const ForwardRef = forwardRef(Svg3DRectThreePts); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DSelectEdge.tsx b/packages/iconoir-react/src/3DSelectEdge.tsx index 87ec1b99..3a0c70c7 100644 --- a/packages/iconoir-react/src/3DSelectEdge.tsx +++ b/packages/iconoir-react/src/3DSelectEdge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DSelectEdge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DSelectEdge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function Svg3DSelectEdge( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DSelectEdge); +}; +const ForwardRef = forwardRef(Svg3DSelectEdge); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DSelectFace.tsx b/packages/iconoir-react/src/3DSelectFace.tsx index 7511e5a1..aa71a049 100644 --- a/packages/iconoir-react/src/3DSelectFace.tsx +++ b/packages/iconoir-react/src/3DSelectFace.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DSelectFace( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DSelectFace = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function Svg3DSelectFace( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DSelectFace); +}; +const ForwardRef = forwardRef(Svg3DSelectFace); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DSelectPoint.tsx b/packages/iconoir-react/src/3DSelectPoint.tsx index 814fb020..24fc95fd 100644 --- a/packages/iconoir-react/src/3DSelectPoint.tsx +++ b/packages/iconoir-react/src/3DSelectPoint.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DSelectPoint( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DSelectPoint = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function Svg3DSelectPoint( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DSelectPoint); +}; +const ForwardRef = forwardRef(Svg3DSelectPoint); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DSelectSolid.tsx b/packages/iconoir-react/src/3DSelectSolid.tsx index bbccb4e4..893326e1 100644 --- a/packages/iconoir-react/src/3DSelectSolid.tsx +++ b/packages/iconoir-react/src/3DSelectSolid.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DSelectSolid( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DSelectSolid = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function Svg3DSelectSolid( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DSelectSolid); +}; +const ForwardRef = forwardRef(Svg3DSelectSolid); export default ForwardRef; diff --git a/packages/iconoir-react/src/3DThreePtsBox.tsx b/packages/iconoir-react/src/3DThreePtsBox.tsx index 400275ea..4e3d2933 100644 --- a/packages/iconoir-react/src/3DThreePtsBox.tsx +++ b/packages/iconoir-react/src/3DThreePtsBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function Svg3DThreePtsBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const Svg3DThreePtsBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function Svg3DThreePtsBox( }; return ( ); -} -const ForwardRef = React.forwardRef(Svg3DThreePtsBox); +}; +const ForwardRef = forwardRef(Svg3DThreePtsBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/Accessibility.tsx b/packages/iconoir-react/src/Accessibility.tsx index e9cc76d1..98be0602 100644 --- a/packages/iconoir-react/src/Accessibility.tsx +++ b/packages/iconoir-react/src/Accessibility.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAccessibility( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAccessibility = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgAccessibility( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAccessibility); +}; +const ForwardRef = forwardRef(SvgAccessibility); export default ForwardRef; diff --git a/packages/iconoir-react/src/AccessibilitySign.tsx b/packages/iconoir-react/src/AccessibilitySign.tsx index 0aec70b6..b498ea02 100644 --- a/packages/iconoir-react/src/AccessibilitySign.tsx +++ b/packages/iconoir-react/src/AccessibilitySign.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAccessibilitySign( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAccessibilitySign = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAccessibilitySign( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAccessibilitySign); +}; +const ForwardRef = forwardRef(SvgAccessibilitySign); export default ForwardRef; diff --git a/packages/iconoir-react/src/AccessibilityTech.tsx b/packages/iconoir-react/src/AccessibilityTech.tsx index 1301d1c7..eca7083c 100644 --- a/packages/iconoir-react/src/AccessibilityTech.tsx +++ b/packages/iconoir-react/src/AccessibilityTech.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAccessibilityTech( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAccessibilityTech = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,41 +13,41 @@ function SvgAccessibilityTech( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAccessibilityTech); +}; +const ForwardRef = forwardRef(SvgAccessibilityTech); export default ForwardRef; diff --git a/packages/iconoir-react/src/Activity.tsx b/packages/iconoir-react/src/Activity.tsx index d13cda5a..10d3a4f8 100644 --- a/packages/iconoir-react/src/Activity.tsx +++ b/packages/iconoir-react/src/Activity.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgActivity( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgActivity = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgActivity( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgActivity); +}; +const ForwardRef = forwardRef(SvgActivity); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddCircle.tsx b/packages/iconoir-react/src/AddCircle.tsx index e40af05f..59d9aa92 100644 --- a/packages/iconoir-react/src/AddCircle.tsx +++ b/packages/iconoir-react/src/AddCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAddCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddCircle); +}; +const ForwardRef = forwardRef(SvgAddCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddDatabaseScript.tsx b/packages/iconoir-react/src/AddDatabaseScript.tsx index db7eee1d..0920410d 100644 --- a/packages/iconoir-react/src/AddDatabaseScript.tsx +++ b/packages/iconoir-react/src/AddDatabaseScript.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddDatabaseScript( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddDatabaseScript = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAddDatabaseScript( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddDatabaseScript); +}; +const ForwardRef = forwardRef(SvgAddDatabaseScript); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddFolder.tsx b/packages/iconoir-react/src/AddFolder.tsx index 7c91b958..6bad23c4 100644 --- a/packages/iconoir-react/src/AddFolder.tsx +++ b/packages/iconoir-react/src/AddFolder.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddFolder( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddFolder = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAddFolder( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddFolder); +}; +const ForwardRef = forwardRef(SvgAddFolder); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddFrame.tsx b/packages/iconoir-react/src/AddFrame.tsx index b1a720a5..7480af8b 100644 --- a/packages/iconoir-react/src/AddFrame.tsx +++ b/packages/iconoir-react/src/AddFrame.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddFrame( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddFrame = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgAddFrame( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddFrame); +}; +const ForwardRef = forwardRef(SvgAddFrame); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddHexagon.tsx b/packages/iconoir-react/src/AddHexagon.tsx index 2e5d2d79..9b4c678d 100644 --- a/packages/iconoir-react/src/AddHexagon.tsx +++ b/packages/iconoir-react/src/AddHexagon.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddHexagon( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddHexagon = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAddHexagon( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddHexagon); +}; +const ForwardRef = forwardRef(SvgAddHexagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddKeyframe.tsx b/packages/iconoir-react/src/AddKeyframe.tsx index ed4887d6..a14875d1 100644 --- a/packages/iconoir-react/src/AddKeyframe.tsx +++ b/packages/iconoir-react/src/AddKeyframe.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddKeyframe( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddKeyframe = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAddKeyframe( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddKeyframe); +}; +const ForwardRef = forwardRef(SvgAddKeyframe); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddKeyframeAlt.tsx b/packages/iconoir-react/src/AddKeyframeAlt.tsx index 2002ac39..8ecbe00a 100644 --- a/packages/iconoir-react/src/AddKeyframeAlt.tsx +++ b/packages/iconoir-react/src/AddKeyframeAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddKeyframeAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddKeyframeAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAddKeyframeAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddKeyframeAlt); +}; +const ForwardRef = forwardRef(SvgAddKeyframeAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddKeyframes.tsx b/packages/iconoir-react/src/AddKeyframes.tsx index d7bba6d5..a3ffda11 100644 --- a/packages/iconoir-react/src/AddKeyframes.tsx +++ b/packages/iconoir-react/src/AddKeyframes.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddKeyframes( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddKeyframes = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgAddKeyframes( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddKeyframes); +}; +const ForwardRef = forwardRef(SvgAddKeyframes); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddLens.tsx b/packages/iconoir-react/src/AddLens.tsx index f4b68bb6..5dc6c9ca 100644 --- a/packages/iconoir-react/src/AddLens.tsx +++ b/packages/iconoir-react/src/AddLens.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddLens( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddLens = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgAddLens( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgAddLens); +}; +const ForwardRef = forwardRef(SvgAddLens); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddMediaImage.tsx b/packages/iconoir-react/src/AddMediaImage.tsx index 5956cd96..3dbd5d70 100644 --- a/packages/iconoir-react/src/AddMediaImage.tsx +++ b/packages/iconoir-react/src/AddMediaImage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddMediaImage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddMediaImage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAddMediaImage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddMediaImage); +}; +const ForwardRef = forwardRef(SvgAddMediaImage); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddMediaVideo.tsx b/packages/iconoir-react/src/AddMediaVideo.tsx index 456358ff..b1dc6672 100644 --- a/packages/iconoir-react/src/AddMediaVideo.tsx +++ b/packages/iconoir-react/src/AddMediaVideo.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddMediaVideo( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddMediaVideo = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAddMediaVideo( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddMediaVideo); +}; +const ForwardRef = forwardRef(SvgAddMediaVideo); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddPage.tsx b/packages/iconoir-react/src/AddPage.tsx index f63dc41f..2a6c23d8 100644 --- a/packages/iconoir-react/src/AddPage.tsx +++ b/packages/iconoir-react/src/AddPage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddPage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddPage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAddPage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddPage); +}; +const ForwardRef = forwardRef(SvgAddPage); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddPageAlt.tsx b/packages/iconoir-react/src/AddPageAlt.tsx index b78a8c44..7839c875 100644 --- a/packages/iconoir-react/src/AddPageAlt.tsx +++ b/packages/iconoir-react/src/AddPageAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddPageAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddPageAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAddPageAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddPageAlt); +}; +const ForwardRef = forwardRef(SvgAddPageAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddPinAlt.tsx b/packages/iconoir-react/src/AddPinAlt.tsx index a5bb9433..066abcfa 100644 --- a/packages/iconoir-react/src/AddPinAlt.tsx +++ b/packages/iconoir-react/src/AddPinAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddPinAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddPinAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgAddPinAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddPinAlt); +}; +const ForwardRef = forwardRef(SvgAddPinAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddSelection.tsx b/packages/iconoir-react/src/AddSelection.tsx index ef75e6fb..f2279851 100644 --- a/packages/iconoir-react/src/AddSelection.tsx +++ b/packages/iconoir-react/src/AddSelection.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddSelection( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddSelection = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAddSelection( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddSelection); +}; +const ForwardRef = forwardRef(SvgAddSelection); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddSquare.tsx b/packages/iconoir-react/src/AddSquare.tsx index e8075578..9b6bdb35 100644 --- a/packages/iconoir-react/src/AddSquare.tsx +++ b/packages/iconoir-react/src/AddSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAddSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddSquare); +}; +const ForwardRef = forwardRef(SvgAddSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddToCart.tsx b/packages/iconoir-react/src/AddToCart.tsx index 4cab17b8..442cc5f5 100644 --- a/packages/iconoir-react/src/AddToCart.tsx +++ b/packages/iconoir-react/src/AddToCart.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddToCart( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddToCart = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAddToCart( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddToCart); +}; +const ForwardRef = forwardRef(SvgAddToCart); export default ForwardRef; diff --git a/packages/iconoir-react/src/AddUser.tsx b/packages/iconoir-react/src/AddUser.tsx index 7541863c..f9cbc049 100644 --- a/packages/iconoir-react/src/AddUser.tsx +++ b/packages/iconoir-react/src/AddUser.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAddUser( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAddUser = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAddUser( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAddUser); +}; +const ForwardRef = forwardRef(SvgAddUser); export default ForwardRef; diff --git a/packages/iconoir-react/src/AdobeAfterEffects.tsx b/packages/iconoir-react/src/AdobeAfterEffects.tsx index ae98edac..2ee50ac4 100644 --- a/packages/iconoir-react/src/AdobeAfterEffects.tsx +++ b/packages/iconoir-react/src/AdobeAfterEffects.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobeAfterEffects( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAdobeAfterEffects = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAdobeAfterEffects( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAdobeAfterEffects); +}; +const ForwardRef = forwardRef(SvgAdobeAfterEffects); export default ForwardRef; diff --git a/packages/iconoir-react/src/AdobeIllustrator.tsx b/packages/iconoir-react/src/AdobeIllustrator.tsx index 5f38f833..ac3950ec 100644 --- a/packages/iconoir-react/src/AdobeIllustrator.tsx +++ b/packages/iconoir-react/src/AdobeIllustrator.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobeIllustrator( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAdobeIllustrator = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAdobeIllustrator( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAdobeIllustrator); +}; +const ForwardRef = forwardRef(SvgAdobeIllustrator); export default ForwardRef; diff --git a/packages/iconoir-react/src/AdobeIndesign.tsx b/packages/iconoir-react/src/AdobeIndesign.tsx index a17ed3df..23d6cb4f 100644 --- a/packages/iconoir-react/src/AdobeIndesign.tsx +++ b/packages/iconoir-react/src/AdobeIndesign.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobeIndesign( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAdobeIndesign = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAdobeIndesign( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAdobeIndesign); +}; +const ForwardRef = forwardRef(SvgAdobeIndesign); export default ForwardRef; diff --git a/packages/iconoir-react/src/AdobeLightroom.tsx b/packages/iconoir-react/src/AdobeLightroom.tsx index 835ab993..a78f25a4 100644 --- a/packages/iconoir-react/src/AdobeLightroom.tsx +++ b/packages/iconoir-react/src/AdobeLightroom.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobeLightroom( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAdobeLightroom = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAdobeLightroom( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAdobeLightroom); +}; +const ForwardRef = forwardRef(SvgAdobeLightroom); export default ForwardRef; diff --git a/packages/iconoir-react/src/AdobePhotoshop.tsx b/packages/iconoir-react/src/AdobePhotoshop.tsx index 574f64b0..3a754d75 100644 --- a/packages/iconoir-react/src/AdobePhotoshop.tsx +++ b/packages/iconoir-react/src/AdobePhotoshop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobePhotoshop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAdobePhotoshop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAdobePhotoshop( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAdobePhotoshop); +}; +const ForwardRef = forwardRef(SvgAdobePhotoshop); export default ForwardRef; diff --git a/packages/iconoir-react/src/AdobeXd.tsx b/packages/iconoir-react/src/AdobeXd.tsx index 549ea445..7ac4b862 100644 --- a/packages/iconoir-react/src/AdobeXd.tsx +++ b/packages/iconoir-react/src/AdobeXd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAdobeXd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAdobeXd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAdobeXd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAdobeXd); +}; +const ForwardRef = forwardRef(SvgAdobeXd); export default ForwardRef; diff --git a/packages/iconoir-react/src/AfricanTree.tsx b/packages/iconoir-react/src/AfricanTree.tsx index 58d9fd22..1d54157c 100644 --- a/packages/iconoir-react/src/AfricanTree.tsx +++ b/packages/iconoir-react/src/AfricanTree.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAfricanTree( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAfricanTree = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgAfricanTree( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgAfricanTree); +}; +const ForwardRef = forwardRef(SvgAfricanTree); export default ForwardRef; diff --git a/packages/iconoir-react/src/Agile.tsx b/packages/iconoir-react/src/Agile.tsx index 1d227f35..3c9a50a7 100644 --- a/packages/iconoir-react/src/Agile.tsx +++ b/packages/iconoir-react/src/Agile.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAgile( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAgile = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgAgile( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAgile); +}; +const ForwardRef = forwardRef(SvgAgile); export default ForwardRef; diff --git a/packages/iconoir-react/src/AirConditioner.tsx b/packages/iconoir-react/src/AirConditioner.tsx index b12eab7c..b517e98a 100644 --- a/packages/iconoir-react/src/AirConditioner.tsx +++ b/packages/iconoir-react/src/AirConditioner.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirConditioner( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAirConditioner = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAirConditioner( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAirConditioner); +}; +const ForwardRef = forwardRef(SvgAirConditioner); export default ForwardRef; diff --git a/packages/iconoir-react/src/Airplane.tsx b/packages/iconoir-react/src/Airplane.tsx index ba2cdcee..03fcd7e2 100644 --- a/packages/iconoir-react/src/Airplane.tsx +++ b/packages/iconoir-react/src/Airplane.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplane( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAirplane = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAirplane( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAirplane); +}; +const ForwardRef = forwardRef(SvgAirplane); export default ForwardRef; diff --git a/packages/iconoir-react/src/AirplaneHelix.tsx b/packages/iconoir-react/src/AirplaneHelix.tsx index 38ea045f..889d3f3e 100644 --- a/packages/iconoir-react/src/AirplaneHelix.tsx +++ b/packages/iconoir-react/src/AirplaneHelix.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplaneHelix( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAirplaneHelix = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,33 +13,33 @@ function SvgAirplaneHelix( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAirplaneHelix); +}; +const ForwardRef = forwardRef(SvgAirplaneHelix); export default ForwardRef; diff --git a/packages/iconoir-react/src/AirplaneHelix45Deg.tsx b/packages/iconoir-react/src/AirplaneHelix45Deg.tsx index 34204e10..130991a6 100644 --- a/packages/iconoir-react/src/AirplaneHelix45Deg.tsx +++ b/packages/iconoir-react/src/AirplaneHelix45Deg.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplaneHelix45Deg( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAirplaneHelix45Deg = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,33 +13,33 @@ function SvgAirplaneHelix45Deg( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAirplaneHelix45Deg); +}; +const ForwardRef = forwardRef(SvgAirplaneHelix45Deg); export default ForwardRef; diff --git a/packages/iconoir-react/src/AirplaneOff.tsx b/packages/iconoir-react/src/AirplaneOff.tsx index 87904bbe..3b38367b 100644 --- a/packages/iconoir-react/src/AirplaneOff.tsx +++ b/packages/iconoir-react/src/AirplaneOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplaneOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAirplaneOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAirplaneOff( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAirplaneOff); +}; +const ForwardRef = forwardRef(SvgAirplaneOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/AirplaneRotation.tsx b/packages/iconoir-react/src/AirplaneRotation.tsx index 313b0815..a773ebb4 100644 --- a/packages/iconoir-react/src/AirplaneRotation.tsx +++ b/packages/iconoir-react/src/AirplaneRotation.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplaneRotation( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAirplaneRotation = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,40 +13,40 @@ function SvgAirplaneRotation( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAirplaneRotation); +}; +const ForwardRef = forwardRef(SvgAirplaneRotation); export default ForwardRef; diff --git a/packages/iconoir-react/src/Airplay.tsx b/packages/iconoir-react/src/Airplay.tsx index dfcf041d..11f67aa7 100644 --- a/packages/iconoir-react/src/Airplay.tsx +++ b/packages/iconoir-react/src/Airplay.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAirplay( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAirplay = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgAirplay( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAirplay); +}; +const ForwardRef = forwardRef(SvgAirplay); export default ForwardRef; diff --git a/packages/iconoir-react/src/Alarm.tsx b/packages/iconoir-react/src/Alarm.tsx index 742b7dc7..c7222542 100644 --- a/packages/iconoir-react/src/Alarm.tsx +++ b/packages/iconoir-react/src/Alarm.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlarm( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlarm = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAlarm( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlarm); +}; +const ForwardRef = forwardRef(SvgAlarm); export default ForwardRef; diff --git a/packages/iconoir-react/src/Album.tsx b/packages/iconoir-react/src/Album.tsx index 2618ca94..aaacbe6d 100644 --- a/packages/iconoir-react/src/Album.tsx +++ b/packages/iconoir-react/src/Album.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlbum( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlbum = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,27 +13,27 @@ function SvgAlbum( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlbum); +}; +const ForwardRef = forwardRef(SvgAlbum); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlbumCarousel.tsx b/packages/iconoir-react/src/AlbumCarousel.tsx index ceadecfb..bc5e61eb 100644 --- a/packages/iconoir-react/src/AlbumCarousel.tsx +++ b/packages/iconoir-react/src/AlbumCarousel.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlbumCarousel( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlbumCarousel = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,27 +13,27 @@ function SvgAlbumCarousel( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlbumCarousel); +}; +const ForwardRef = forwardRef(SvgAlbumCarousel); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlbumList.tsx b/packages/iconoir-react/src/AlbumList.tsx index 1aa133b0..152ae04c 100644 --- a/packages/iconoir-react/src/AlbumList.tsx +++ b/packages/iconoir-react/src/AlbumList.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlbumList( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlbumList = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,27 +13,27 @@ function SvgAlbumList( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlbumList); +}; +const ForwardRef = forwardRef(SvgAlbumList); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlbumOpen.tsx b/packages/iconoir-react/src/AlbumOpen.tsx index 95dd5069..00aaa545 100644 --- a/packages/iconoir-react/src/AlbumOpen.tsx +++ b/packages/iconoir-react/src/AlbumOpen.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlbumOpen( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlbumOpen = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgAlbumOpen( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgAlbumOpen); +}; +const ForwardRef = forwardRef(SvgAlbumOpen); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignBottomBox.tsx b/packages/iconoir-react/src/AlignBottomBox.tsx index 3a92f5bc..fc71e0ad 100644 --- a/packages/iconoir-react/src/AlignBottomBox.tsx +++ b/packages/iconoir-react/src/AlignBottomBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignBottomBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignBottomBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAlignBottomBox( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignBottomBox); +}; +const ForwardRef = forwardRef(SvgAlignBottomBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignCenter.tsx b/packages/iconoir-react/src/AlignCenter.tsx index 4cf2a358..4b9a72a8 100644 --- a/packages/iconoir-react/src/AlignCenter.tsx +++ b/packages/iconoir-react/src/AlignCenter.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignCenter( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignCenter = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAlignCenter( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignCenter); +}; +const ForwardRef = forwardRef(SvgAlignCenter); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignHorizontalCenters.tsx b/packages/iconoir-react/src/AlignHorizontalCenters.tsx index ec20058e..44a3617a 100644 --- a/packages/iconoir-react/src/AlignHorizontalCenters.tsx +++ b/packages/iconoir-react/src/AlignHorizontalCenters.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignHorizontalCenters( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignHorizontalCenters = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgAlignHorizontalCenters( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignHorizontalCenters); +}; +const ForwardRef = forwardRef(SvgAlignHorizontalCenters); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignHorizontalSpacing.tsx b/packages/iconoir-react/src/AlignHorizontalSpacing.tsx index 3895a226..d15eac5c 100644 --- a/packages/iconoir-react/src/AlignHorizontalSpacing.tsx +++ b/packages/iconoir-react/src/AlignHorizontalSpacing.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignHorizontalSpacing( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignHorizontalSpacing = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgAlignHorizontalSpacing( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignHorizontalSpacing); +}; +const ForwardRef = forwardRef(SvgAlignHorizontalSpacing); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignJustify.tsx b/packages/iconoir-react/src/AlignJustify.tsx index e3578207..f63ba836 100644 --- a/packages/iconoir-react/src/AlignJustify.tsx +++ b/packages/iconoir-react/src/AlignJustify.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignJustify( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignJustify = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAlignJustify( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignJustify); +}; +const ForwardRef = forwardRef(SvgAlignJustify); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignLeft.tsx b/packages/iconoir-react/src/AlignLeft.tsx index ae4c6758..f955cc65 100644 --- a/packages/iconoir-react/src/AlignLeft.tsx +++ b/packages/iconoir-react/src/AlignLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAlignLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignLeft); +}; +const ForwardRef = forwardRef(SvgAlignLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignLeftBox.tsx b/packages/iconoir-react/src/AlignLeftBox.tsx index a4042005..3a4097d7 100644 --- a/packages/iconoir-react/src/AlignLeftBox.tsx +++ b/packages/iconoir-react/src/AlignLeftBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignLeftBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignLeftBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAlignLeftBox( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignLeftBox); +}; +const ForwardRef = forwardRef(SvgAlignLeftBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignRight.tsx b/packages/iconoir-react/src/AlignRight.tsx index 164b7778..5ba528cd 100644 --- a/packages/iconoir-react/src/AlignRight.tsx +++ b/packages/iconoir-react/src/AlignRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAlignRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignRight); +}; +const ForwardRef = forwardRef(SvgAlignRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignRightBox.tsx b/packages/iconoir-react/src/AlignRightBox.tsx index 2ddcc047..ebe8e58b 100644 --- a/packages/iconoir-react/src/AlignRightBox.tsx +++ b/packages/iconoir-react/src/AlignRightBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignRightBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignRightBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAlignRightBox( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignRightBox); +}; +const ForwardRef = forwardRef(SvgAlignRightBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignTopBox.tsx b/packages/iconoir-react/src/AlignTopBox.tsx index 57de33aa..0f8b778d 100644 --- a/packages/iconoir-react/src/AlignTopBox.tsx +++ b/packages/iconoir-react/src/AlignTopBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignTopBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignTopBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAlignTopBox( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignTopBox); +}; +const ForwardRef = forwardRef(SvgAlignTopBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignVerticalCenters.tsx b/packages/iconoir-react/src/AlignVerticalCenters.tsx index 498c8a95..c0ae4239 100644 --- a/packages/iconoir-react/src/AlignVerticalCenters.tsx +++ b/packages/iconoir-react/src/AlignVerticalCenters.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignVerticalCenters( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignVerticalCenters = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgAlignVerticalCenters( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignVerticalCenters); +}; +const ForwardRef = forwardRef(SvgAlignVerticalCenters); export default ForwardRef; diff --git a/packages/iconoir-react/src/AlignVerticalSpacing.tsx b/packages/iconoir-react/src/AlignVerticalSpacing.tsx index c5fd8f2f..05c4d5f1 100644 --- a/packages/iconoir-react/src/AlignVerticalSpacing.tsx +++ b/packages/iconoir-react/src/AlignVerticalSpacing.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAlignVerticalSpacing( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAlignVerticalSpacing = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgAlignVerticalSpacing( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAlignVerticalSpacing); +}; +const ForwardRef = forwardRef(SvgAlignVerticalSpacing); export default ForwardRef; diff --git a/packages/iconoir-react/src/AngleTool.tsx b/packages/iconoir-react/src/AngleTool.tsx index 9a32c736..59069ab5 100644 --- a/packages/iconoir-react/src/AngleTool.tsx +++ b/packages/iconoir-react/src/AngleTool.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAngleTool( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAngleTool = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgAngleTool( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAngleTool); +}; +const ForwardRef = forwardRef(SvgAngleTool); export default ForwardRef; diff --git a/packages/iconoir-react/src/Antenna.tsx b/packages/iconoir-react/src/Antenna.tsx index bbde54e4..71ae47fe 100644 --- a/packages/iconoir-react/src/Antenna.tsx +++ b/packages/iconoir-react/src/Antenna.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAntenna( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAntenna = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgAntenna( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAntenna); +}; +const ForwardRef = forwardRef(SvgAntenna); export default ForwardRef; diff --git a/packages/iconoir-react/src/AntennaOff.tsx b/packages/iconoir-react/src/AntennaOff.tsx index 98d319b1..5b4d8623 100644 --- a/packages/iconoir-react/src/AntennaOff.tsx +++ b/packages/iconoir-react/src/AntennaOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAntennaOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAntennaOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgAntennaOff( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAntennaOff); +}; +const ForwardRef = forwardRef(SvgAntennaOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/AntennaSignal.tsx b/packages/iconoir-react/src/AntennaSignal.tsx index 8e300676..2bd70a85 100644 --- a/packages/iconoir-react/src/AntennaSignal.tsx +++ b/packages/iconoir-react/src/AntennaSignal.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAntennaSignal( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAntennaSignal = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgAntennaSignal( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAntennaSignal); +}; +const ForwardRef = forwardRef(SvgAntennaSignal); export default ForwardRef; diff --git a/packages/iconoir-react/src/AntennaSignalTag.tsx b/packages/iconoir-react/src/AntennaSignalTag.tsx index 9723ad94..4c6e7a5b 100644 --- a/packages/iconoir-react/src/AntennaSignalTag.tsx +++ b/packages/iconoir-react/src/AntennaSignalTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAntennaSignalTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAntennaSignalTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgAntennaSignalTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAntennaSignalTag); +}; +const ForwardRef = forwardRef(SvgAntennaSignalTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppNotification.tsx b/packages/iconoir-react/src/AppNotification.tsx index feda5e0b..16813cf3 100644 --- a/packages/iconoir-react/src/AppNotification.tsx +++ b/packages/iconoir-react/src/AppNotification.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppNotification( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppNotification = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAppNotification( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAppNotification); +}; +const ForwardRef = forwardRef(SvgAppNotification); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppStore.tsx b/packages/iconoir-react/src/AppStore.tsx index a14cb7cb..a3f82b8a 100644 --- a/packages/iconoir-react/src/AppStore.tsx +++ b/packages/iconoir-react/src/AppStore.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppStore( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppStore = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAppStore( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAppStore); +}; +const ForwardRef = forwardRef(SvgAppStore); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppWindow.tsx b/packages/iconoir-react/src/AppWindow.tsx index f1904554..dbf49cbe 100644 --- a/packages/iconoir-react/src/AppWindow.tsx +++ b/packages/iconoir-react/src/AppWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgAppWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAppWindow); +}; +const ForwardRef = forwardRef(SvgAppWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Apple.tsx b/packages/iconoir-react/src/Apple.tsx index 1e243500..97b1f029 100644 --- a/packages/iconoir-react/src/Apple.tsx +++ b/packages/iconoir-react/src/Apple.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgApple( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgApple = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgApple( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgApple); +}; +const ForwardRef = forwardRef(SvgApple); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppleHalf.tsx b/packages/iconoir-react/src/AppleHalf.tsx index 32cccb88..42174144 100644 --- a/packages/iconoir-react/src/AppleHalf.tsx +++ b/packages/iconoir-react/src/AppleHalf.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleHalf( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppleHalf = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgAppleHalf( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgAppleHalf); +}; +const ForwardRef = forwardRef(SvgAppleHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppleHalfAlt.tsx b/packages/iconoir-react/src/AppleHalfAlt.tsx index d1d3df2f..d1a68a84 100644 --- a/packages/iconoir-react/src/AppleHalfAlt.tsx +++ b/packages/iconoir-react/src/AppleHalfAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleHalfAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppleHalfAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgAppleHalfAlt( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgAppleHalfAlt); +}; +const ForwardRef = forwardRef(SvgAppleHalfAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppleImac2021.tsx b/packages/iconoir-react/src/AppleImac2021.tsx index 62ef2b5c..e43cd6aa 100644 --- a/packages/iconoir-react/src/AppleImac2021.tsx +++ b/packages/iconoir-react/src/AppleImac2021.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleImac2021( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppleImac2021 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAppleImac2021( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAppleImac2021); +}; +const ForwardRef = forwardRef(SvgAppleImac2021); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppleImac2021Side.tsx b/packages/iconoir-react/src/AppleImac2021Side.tsx index 340b7d92..295b2de3 100644 --- a/packages/iconoir-react/src/AppleImac2021Side.tsx +++ b/packages/iconoir-react/src/AppleImac2021Side.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleImac2021Side( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppleImac2021Side = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAppleImac2021Side( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAppleImac2021Side); +}; +const ForwardRef = forwardRef(SvgAppleImac2021Side); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppleMac.tsx b/packages/iconoir-react/src/AppleMac.tsx index c80ac014..29bce7aa 100644 --- a/packages/iconoir-react/src/AppleMac.tsx +++ b/packages/iconoir-react/src/AppleMac.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleMac( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppleMac = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,26 @@ function SvgAppleMac( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAppleMac); +}; +const ForwardRef = forwardRef(SvgAppleMac); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppleShortcuts.tsx b/packages/iconoir-react/src/AppleShortcuts.tsx index 36f89df5..f3c08cff 100644 --- a/packages/iconoir-react/src/AppleShortcuts.tsx +++ b/packages/iconoir-react/src/AppleShortcuts.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleShortcuts( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppleShortcuts = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,27 @@ function SvgAppleShortcuts( }; return ( - - - + + + - + ); -} -const ForwardRef = React.forwardRef(SvgAppleShortcuts); +}; +const ForwardRef = forwardRef(SvgAppleShortcuts); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppleSwift.tsx b/packages/iconoir-react/src/AppleSwift.tsx index afd883d5..c28a7eaf 100644 --- a/packages/iconoir-react/src/AppleSwift.tsx +++ b/packages/iconoir-react/src/AppleSwift.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleSwift( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppleSwift = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAppleSwift( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAppleSwift); +}; +const ForwardRef = forwardRef(SvgAppleSwift); export default ForwardRef; diff --git a/packages/iconoir-react/src/AppleWallet.tsx b/packages/iconoir-react/src/AppleWallet.tsx index 96630605..0016e3d9 100644 --- a/packages/iconoir-react/src/AppleWallet.tsx +++ b/packages/iconoir-react/src/AppleWallet.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAppleWallet( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAppleWallet = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,26 @@ function SvgAppleWallet( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAppleWallet); +}; +const ForwardRef = forwardRef(SvgAppleWallet); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArSymbol.tsx b/packages/iconoir-react/src/ArSymbol.tsx index 697ef391..846cd951 100644 --- a/packages/iconoir-react/src/ArSymbol.tsx +++ b/packages/iconoir-react/src/ArSymbol.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArSymbol( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArSymbol = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgArSymbol( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArSymbol); +}; +const ForwardRef = forwardRef(SvgArSymbol); export default ForwardRef; diff --git a/packages/iconoir-react/src/Arcade.tsx b/packages/iconoir-react/src/Arcade.tsx index b3529c4d..00663ebc 100644 --- a/packages/iconoir-react/src/Arcade.tsx +++ b/packages/iconoir-react/src/Arcade.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArcade( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArcade = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,39 +13,39 @@ function SvgArcade( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgArcade); +}; +const ForwardRef = forwardRef(SvgArcade); export default ForwardRef; diff --git a/packages/iconoir-react/src/Archery.tsx b/packages/iconoir-react/src/Archery.tsx index 4dd9715c..75bb487f 100644 --- a/packages/iconoir-react/src/Archery.tsx +++ b/packages/iconoir-react/src/Archery.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArchery( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArchery = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArchery( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArchery); +}; +const ForwardRef = forwardRef(SvgArchery); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArcheryMatch.tsx b/packages/iconoir-react/src/ArcheryMatch.tsx index 5a194cee..a530d4ae 100644 --- a/packages/iconoir-react/src/ArcheryMatch.tsx +++ b/packages/iconoir-react/src/ArcheryMatch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArcheryMatch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArcheryMatch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArcheryMatch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArcheryMatch); +}; +const ForwardRef = forwardRef(SvgArcheryMatch); export default ForwardRef; diff --git a/packages/iconoir-react/src/Archive.tsx b/packages/iconoir-react/src/Archive.tsx index d6591ea5..112abd21 100644 --- a/packages/iconoir-react/src/Archive.tsx +++ b/packages/iconoir-react/src/Archive.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArchive( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArchive = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgArchive( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArchive); +}; +const ForwardRef = forwardRef(SvgArchive); export default ForwardRef; diff --git a/packages/iconoir-react/src/AreaSearch.tsx b/packages/iconoir-react/src/AreaSearch.tsx index 6818f320..f28ba154 100644 --- a/packages/iconoir-react/src/AreaSearch.tsx +++ b/packages/iconoir-react/src/AreaSearch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAreaSearch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAreaSearch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAreaSearch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAreaSearch); +}; +const ForwardRef = forwardRef(SvgAreaSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowArchery.tsx b/packages/iconoir-react/src/ArrowArchery.tsx index f1f2fd7b..fda2cb3e 100644 --- a/packages/iconoir-react/src/ArrowArchery.tsx +++ b/packages/iconoir-react/src/ArrowArchery.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowArchery( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowArchery = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowArchery( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowArchery); +}; +const ForwardRef = forwardRef(SvgArrowArchery); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowBl.tsx b/packages/iconoir-react/src/ArrowBl.tsx index dfe98f3f..43c13ecc 100644 --- a/packages/iconoir-react/src/ArrowBl.tsx +++ b/packages/iconoir-react/src/ArrowBl.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBl( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowBl = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowBl( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowBl); +}; +const ForwardRef = forwardRef(SvgArrowBl); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowBlCircle.tsx b/packages/iconoir-react/src/ArrowBlCircle.tsx index e1527648..bbc775c3 100644 --- a/packages/iconoir-react/src/ArrowBlCircle.tsx +++ b/packages/iconoir-react/src/ArrowBlCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBlCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowBlCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowBlCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowBlCircle); +}; +const ForwardRef = forwardRef(SvgArrowBlCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowBlSquare.tsx b/packages/iconoir-react/src/ArrowBlSquare.tsx index 553cb30e..0ba4f874 100644 --- a/packages/iconoir-react/src/ArrowBlSquare.tsx +++ b/packages/iconoir-react/src/ArrowBlSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBlSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowBlSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowBlSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowBlSquare); +}; +const ForwardRef = forwardRef(SvgArrowBlSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowBr.tsx b/packages/iconoir-react/src/ArrowBr.tsx index 744d505e..4d5b0856 100644 --- a/packages/iconoir-react/src/ArrowBr.tsx +++ b/packages/iconoir-react/src/ArrowBr.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBr( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowBr = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowBr( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowBr); +}; +const ForwardRef = forwardRef(SvgArrowBr); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowBrCircle.tsx b/packages/iconoir-react/src/ArrowBrCircle.tsx index 3131d5b2..32674f6b 100644 --- a/packages/iconoir-react/src/ArrowBrCircle.tsx +++ b/packages/iconoir-react/src/ArrowBrCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBrCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowBrCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowBrCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowBrCircle); +}; +const ForwardRef = forwardRef(SvgArrowBrCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowBrSquare.tsx b/packages/iconoir-react/src/ArrowBrSquare.tsx index 243dcaac..d41ad743 100644 --- a/packages/iconoir-react/src/ArrowBrSquare.tsx +++ b/packages/iconoir-react/src/ArrowBrSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowBrSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowBrSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowBrSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowBrSquare); +}; +const ForwardRef = forwardRef(SvgArrowBrSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowDown.tsx b/packages/iconoir-react/src/ArrowDown.tsx index e65002e8..6f0346a6 100644 --- a/packages/iconoir-react/src/ArrowDown.tsx +++ b/packages/iconoir-react/src/ArrowDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowDown); +}; +const ForwardRef = forwardRef(SvgArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowDownCircle.tsx b/packages/iconoir-react/src/ArrowDownCircle.tsx index 2e3f26c0..fc138aaf 100644 --- a/packages/iconoir-react/src/ArrowDownCircle.tsx +++ b/packages/iconoir-react/src/ArrowDownCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowDownCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowDownCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowDownCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowDownCircle); +}; +const ForwardRef = forwardRef(SvgArrowDownCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowEmailForward.tsx b/packages/iconoir-react/src/ArrowEmailForward.tsx index 375a6998..f44e31cb 100644 --- a/packages/iconoir-react/src/ArrowEmailForward.tsx +++ b/packages/iconoir-react/src/ArrowEmailForward.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowEmailForward( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowEmailForward = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowEmailForward( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowEmailForward); +}; +const ForwardRef = forwardRef(SvgArrowEmailForward); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowLeft.tsx b/packages/iconoir-react/src/ArrowLeft.tsx index 17ea260e..46ed8e3a 100644 --- a/packages/iconoir-react/src/ArrowLeft.tsx +++ b/packages/iconoir-react/src/ArrowLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowLeft); +}; +const ForwardRef = forwardRef(SvgArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowLeftCircle.tsx b/packages/iconoir-react/src/ArrowLeftCircle.tsx index 32480c97..c8ee6aec 100644 --- a/packages/iconoir-react/src/ArrowLeftCircle.tsx +++ b/packages/iconoir-react/src/ArrowLeftCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowLeftCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowLeftCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowLeftCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowLeftCircle); +}; +const ForwardRef = forwardRef(SvgArrowLeftCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowRight.tsx b/packages/iconoir-react/src/ArrowRight.tsx index 2add7b7b..3d5decb2 100644 --- a/packages/iconoir-react/src/ArrowRight.tsx +++ b/packages/iconoir-react/src/ArrowRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowRight); +}; +const ForwardRef = forwardRef(SvgArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowRightCircle.tsx b/packages/iconoir-react/src/ArrowRightCircle.tsx index c5efaa17..31e7d5a4 100644 --- a/packages/iconoir-react/src/ArrowRightCircle.tsx +++ b/packages/iconoir-react/src/ArrowRightCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowRightCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowRightCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowRightCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowRightCircle); +}; +const ForwardRef = forwardRef(SvgArrowRightCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowSeparate.tsx b/packages/iconoir-react/src/ArrowSeparate.tsx index 41186eda..137a4e10 100644 --- a/packages/iconoir-react/src/ArrowSeparate.tsx +++ b/packages/iconoir-react/src/ArrowSeparate.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowSeparate( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowSeparate = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowSeparate( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowSeparate); +}; +const ForwardRef = forwardRef(SvgArrowSeparate); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowSeparateVertical.tsx b/packages/iconoir-react/src/ArrowSeparateVertical.tsx index 79f8e6de..8623d4b4 100644 --- a/packages/iconoir-react/src/ArrowSeparateVertical.tsx +++ b/packages/iconoir-react/src/ArrowSeparateVertical.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowSeparateVertical( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowSeparateVertical = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowSeparateVertical( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowSeparateVertical); +}; +const ForwardRef = forwardRef(SvgArrowSeparateVertical); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowTl.tsx b/packages/iconoir-react/src/ArrowTl.tsx index 07b12a69..43d41454 100644 --- a/packages/iconoir-react/src/ArrowTl.tsx +++ b/packages/iconoir-react/src/ArrowTl.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTl( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowTl = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowTl( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowTl); +}; +const ForwardRef = forwardRef(SvgArrowTl); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowTlCircle.tsx b/packages/iconoir-react/src/ArrowTlCircle.tsx index 002a2dce..877475d6 100644 --- a/packages/iconoir-react/src/ArrowTlCircle.tsx +++ b/packages/iconoir-react/src/ArrowTlCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTlCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowTlCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowTlCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowTlCircle); +}; +const ForwardRef = forwardRef(SvgArrowTlCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowTlSquare.tsx b/packages/iconoir-react/src/ArrowTlSquare.tsx index 2db34cd8..310efbb1 100644 --- a/packages/iconoir-react/src/ArrowTlSquare.tsx +++ b/packages/iconoir-react/src/ArrowTlSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTlSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowTlSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowTlSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowTlSquare); +}; +const ForwardRef = forwardRef(SvgArrowTlSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowTr.tsx b/packages/iconoir-react/src/ArrowTr.tsx index 684850d8..0cb083a7 100644 --- a/packages/iconoir-react/src/ArrowTr.tsx +++ b/packages/iconoir-react/src/ArrowTr.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTr( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowTr = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowTr( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowTr); +}; +const ForwardRef = forwardRef(SvgArrowTr); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowTrCircle.tsx b/packages/iconoir-react/src/ArrowTrCircle.tsx index 336e724d..c288d339 100644 --- a/packages/iconoir-react/src/ArrowTrCircle.tsx +++ b/packages/iconoir-react/src/ArrowTrCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTrCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowTrCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowTrCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowTrCircle); +}; +const ForwardRef = forwardRef(SvgArrowTrCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowTrSquare.tsx b/packages/iconoir-react/src/ArrowTrSquare.tsx index 256b3a6d..6cf73304 100644 --- a/packages/iconoir-react/src/ArrowTrSquare.tsx +++ b/packages/iconoir-react/src/ArrowTrSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowTrSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowTrSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowTrSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowTrSquare); +}; +const ForwardRef = forwardRef(SvgArrowTrSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowUnion.tsx b/packages/iconoir-react/src/ArrowUnion.tsx index 83ab9cf9..5276abba 100644 --- a/packages/iconoir-react/src/ArrowUnion.tsx +++ b/packages/iconoir-react/src/ArrowUnion.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowUnion( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowUnion = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowUnion( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowUnion); +}; +const ForwardRef = forwardRef(SvgArrowUnion); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowUnionVertical.tsx b/packages/iconoir-react/src/ArrowUnionVertical.tsx index bc3ae8bf..18daa477 100644 --- a/packages/iconoir-react/src/ArrowUnionVertical.tsx +++ b/packages/iconoir-react/src/ArrowUnionVertical.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowUnionVertical( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowUnionVertical = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowUnionVertical( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowUnionVertical); +}; +const ForwardRef = forwardRef(SvgArrowUnionVertical); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowUp.tsx b/packages/iconoir-react/src/ArrowUp.tsx index bac89cbf..d1d04438 100644 --- a/packages/iconoir-react/src/ArrowUp.tsx +++ b/packages/iconoir-react/src/ArrowUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowUp); +}; +const ForwardRef = forwardRef(SvgArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowUpCircle.tsx b/packages/iconoir-react/src/ArrowUpCircle.tsx index 9d2887ab..70c01c51 100644 --- a/packages/iconoir-react/src/ArrowUpCircle.tsx +++ b/packages/iconoir-react/src/ArrowUpCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowUpCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowUpCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowUpCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowUpCircle); +}; +const ForwardRef = forwardRef(SvgArrowUpCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/ArrowsUpFromLine.tsx b/packages/iconoir-react/src/ArrowsUpFromLine.tsx index 3ef93f60..3191fd2e 100644 --- a/packages/iconoir-react/src/ArrowsUpFromLine.tsx +++ b/packages/iconoir-react/src/ArrowsUpFromLine.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgArrowsUpFromLine( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgArrowsUpFromLine = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgArrowsUpFromLine( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgArrowsUpFromLine); +}; +const ForwardRef = forwardRef(SvgArrowsUpFromLine); export default ForwardRef; diff --git a/packages/iconoir-react/src/Asana.tsx b/packages/iconoir-react/src/Asana.tsx index 80cca66f..586eb307 100644 --- a/packages/iconoir-react/src/Asana.tsx +++ b/packages/iconoir-react/src/Asana.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAsana( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAsana = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAsana( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAsana); +}; +const ForwardRef = forwardRef(SvgAsana); export default ForwardRef; diff --git a/packages/iconoir-react/src/AtSign.tsx b/packages/iconoir-react/src/AtSign.tsx index b932288f..8417b04c 100644 --- a/packages/iconoir-react/src/AtSign.tsx +++ b/packages/iconoir-react/src/AtSign.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAtSign( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAtSign = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgAtSign( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAtSign); +}; +const ForwardRef = forwardRef(SvgAtSign); export default ForwardRef; diff --git a/packages/iconoir-react/src/AtSignCircle.tsx b/packages/iconoir-react/src/AtSignCircle.tsx index e1844d7b..3c3c07d1 100644 --- a/packages/iconoir-react/src/AtSignCircle.tsx +++ b/packages/iconoir-react/src/AtSignCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAtSignCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAtSignCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgAtSignCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAtSignCircle); +}; +const ForwardRef = forwardRef(SvgAtSignCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/Atom.tsx b/packages/iconoir-react/src/Atom.tsx index bb1587ab..0f5cbc8f 100644 --- a/packages/iconoir-react/src/Atom.tsx +++ b/packages/iconoir-react/src/Atom.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAtom( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAtom = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgAtom( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgAtom); +}; +const ForwardRef = forwardRef(SvgAtom); export default ForwardRef; diff --git a/packages/iconoir-react/src/Attachment.tsx b/packages/iconoir-react/src/Attachment.tsx index ad43cee2..4a9c2fa3 100644 --- a/packages/iconoir-react/src/Attachment.tsx +++ b/packages/iconoir-react/src/Attachment.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAttachment( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAttachment = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAttachment( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAttachment); +}; +const ForwardRef = forwardRef(SvgAttachment); export default ForwardRef; diff --git a/packages/iconoir-react/src/AugmentedReality.tsx b/packages/iconoir-react/src/AugmentedReality.tsx index e5a80910..a51c8d06 100644 --- a/packages/iconoir-react/src/AugmentedReality.tsx +++ b/packages/iconoir-react/src/AugmentedReality.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAugmentedReality( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAugmentedReality = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgAugmentedReality( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAugmentedReality); +}; +const ForwardRef = forwardRef(SvgAugmentedReality); export default ForwardRef; diff --git a/packages/iconoir-react/src/AutoFlash.tsx b/packages/iconoir-react/src/AutoFlash.tsx index 3338bf63..297f2321 100644 --- a/packages/iconoir-react/src/AutoFlash.tsx +++ b/packages/iconoir-react/src/AutoFlash.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAutoFlash( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAutoFlash = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAutoFlash( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAutoFlash); +}; +const ForwardRef = forwardRef(SvgAutoFlash); export default ForwardRef; diff --git a/packages/iconoir-react/src/AviFormat.tsx b/packages/iconoir-react/src/AviFormat.tsx index a4f5eda8..843714d5 100644 --- a/packages/iconoir-react/src/AviFormat.tsx +++ b/packages/iconoir-react/src/AviFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAviFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAviFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgAviFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAviFormat); +}; +const ForwardRef = forwardRef(SvgAviFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/Axes.tsx b/packages/iconoir-react/src/Axes.tsx index 94f11e46..68739845 100644 --- a/packages/iconoir-react/src/Axes.tsx +++ b/packages/iconoir-react/src/Axes.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgAxes( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgAxes = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgAxes( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgAxes); +}; +const ForwardRef = forwardRef(SvgAxes); export default ForwardRef; diff --git a/packages/iconoir-react/src/Backward15Seconds.tsx b/packages/iconoir-react/src/Backward15Seconds.tsx index 5558fd33..3c0b42a7 100644 --- a/packages/iconoir-react/src/Backward15Seconds.tsx +++ b/packages/iconoir-react/src/Backward15Seconds.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBackward15Seconds( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBackward15Seconds = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBackward15Seconds( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBackward15Seconds); +}; +const ForwardRef = forwardRef(SvgBackward15Seconds); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bag.tsx b/packages/iconoir-react/src/Bag.tsx index 531a3fa7..e6075367 100644 --- a/packages/iconoir-react/src/Bag.tsx +++ b/packages/iconoir-react/src/Bag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgBag( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgBag); +}; +const ForwardRef = forwardRef(SvgBag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Balcony.tsx b/packages/iconoir-react/src/Balcony.tsx index 7de63ad9..f30661ee 100644 --- a/packages/iconoir-react/src/Balcony.tsx +++ b/packages/iconoir-react/src/Balcony.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBalcony( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBalcony = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBalcony( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBalcony); +}; +const ForwardRef = forwardRef(SvgBalcony); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bank.tsx b/packages/iconoir-react/src/Bank.tsx index a7e60f00..dc9d85b6 100644 --- a/packages/iconoir-react/src/Bank.tsx +++ b/packages/iconoir-react/src/Bank.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBank( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBank = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBank( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBank); +}; +const ForwardRef = forwardRef(SvgBank); export default ForwardRef; diff --git a/packages/iconoir-react/src/Barcode.tsx b/packages/iconoir-react/src/Barcode.tsx index aa5abf95..c31579ed 100644 --- a/packages/iconoir-react/src/Barcode.tsx +++ b/packages/iconoir-react/src/Barcode.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBarcode( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBarcode = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBarcode( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBarcode); +}; +const ForwardRef = forwardRef(SvgBarcode); export default ForwardRef; diff --git a/packages/iconoir-react/src/Basketball.tsx b/packages/iconoir-react/src/Basketball.tsx index 07e2e4e3..c32d8f22 100644 --- a/packages/iconoir-react/src/Basketball.tsx +++ b/packages/iconoir-react/src/Basketball.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBasketball( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBasketball = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,36 @@ function SvgBasketball( }; return ( + + ); -} -const ForwardRef = React.forwardRef(SvgBasketball); +}; +const ForwardRef = forwardRef(SvgBasketball); export default ForwardRef; diff --git a/packages/iconoir-react/src/BasketballAlt.tsx b/packages/iconoir-react/src/BasketballAlt.tsx index c8d0a23f..4899ed00 100644 --- a/packages/iconoir-react/src/BasketballAlt.tsx +++ b/packages/iconoir-react/src/BasketballAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBasketballAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBasketballAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,33 @@ function SvgBasketballAlt( }; return ( - + + + - + ); -} -const ForwardRef = React.forwardRef(SvgBasketballAlt); +}; +const ForwardRef = forwardRef(SvgBasketballAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/BasketballField.tsx b/packages/iconoir-react/src/BasketballField.tsx index 4240f35e..e272e67b 100644 --- a/packages/iconoir-react/src/BasketballField.tsx +++ b/packages/iconoir-react/src/BasketballField.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBasketballField( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBasketballField = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgBasketballField( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBasketballField); +}; +const ForwardRef = forwardRef(SvgBasketballField); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bathroom.tsx b/packages/iconoir-react/src/Bathroom.tsx index e0ff9c28..3bfe8703 100644 --- a/packages/iconoir-react/src/Bathroom.tsx +++ b/packages/iconoir-react/src/Bathroom.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBathroom( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBathroom = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBathroom( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBathroom); +}; +const ForwardRef = forwardRef(SvgBathroom); export default ForwardRef; diff --git a/packages/iconoir-react/src/Battery25.tsx b/packages/iconoir-react/src/Battery25.tsx index b6816b4d..76d0fb7b 100644 --- a/packages/iconoir-react/src/Battery25.tsx +++ b/packages/iconoir-react/src/Battery25.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBattery25( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBattery25 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgBattery25( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBattery25); +}; +const ForwardRef = forwardRef(SvgBattery25); export default ForwardRef; diff --git a/packages/iconoir-react/src/Battery50.tsx b/packages/iconoir-react/src/Battery50.tsx index fb98c817..fa5b54cf 100644 --- a/packages/iconoir-react/src/Battery50.tsx +++ b/packages/iconoir-react/src/Battery50.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBattery50( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBattery50 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgBattery50( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBattery50); +}; +const ForwardRef = forwardRef(SvgBattery50); export default ForwardRef; diff --git a/packages/iconoir-react/src/Battery75.tsx b/packages/iconoir-react/src/Battery75.tsx index 882a147c..f46fcdc6 100644 --- a/packages/iconoir-react/src/Battery75.tsx +++ b/packages/iconoir-react/src/Battery75.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBattery75( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBattery75 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgBattery75( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBattery75); +}; +const ForwardRef = forwardRef(SvgBattery75); export default ForwardRef; diff --git a/packages/iconoir-react/src/BatteryCharging.tsx b/packages/iconoir-react/src/BatteryCharging.tsx index 47d29143..ce1836e8 100644 --- a/packages/iconoir-react/src/BatteryCharging.tsx +++ b/packages/iconoir-react/src/BatteryCharging.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBatteryCharging( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBatteryCharging = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgBatteryCharging( }; return ( + + - - ); -} -const ForwardRef = React.forwardRef(SvgBatteryCharging); +}; +const ForwardRef = forwardRef(SvgBatteryCharging); export default ForwardRef; diff --git a/packages/iconoir-react/src/BatteryEmpty.tsx b/packages/iconoir-react/src/BatteryEmpty.tsx index 54aea8ce..bca639b0 100644 --- a/packages/iconoir-react/src/BatteryEmpty.tsx +++ b/packages/iconoir-react/src/BatteryEmpty.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBatteryEmpty( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBatteryEmpty = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgBatteryEmpty( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBatteryEmpty); +}; +const ForwardRef = forwardRef(SvgBatteryEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/BatteryFull.tsx b/packages/iconoir-react/src/BatteryFull.tsx index 4851aef4..4bc88848 100644 --- a/packages/iconoir-react/src/BatteryFull.tsx +++ b/packages/iconoir-react/src/BatteryFull.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBatteryFull( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBatteryFull = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgBatteryFull( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBatteryFull); +}; +const ForwardRef = forwardRef(SvgBatteryFull); export default ForwardRef; diff --git a/packages/iconoir-react/src/BatteryIndicator.tsx b/packages/iconoir-react/src/BatteryIndicator.tsx index d6227cd8..1419d2af 100644 --- a/packages/iconoir-react/src/BatteryIndicator.tsx +++ b/packages/iconoir-react/src/BatteryIndicator.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBatteryIndicator( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBatteryIndicator = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBatteryIndicator( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBatteryIndicator); +}; +const ForwardRef = forwardRef(SvgBatteryIndicator); export default ForwardRef; diff --git a/packages/iconoir-react/src/BatteryWarning.tsx b/packages/iconoir-react/src/BatteryWarning.tsx index 24b01558..668de50f 100644 --- a/packages/iconoir-react/src/BatteryWarning.tsx +++ b/packages/iconoir-react/src/BatteryWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBatteryWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBatteryWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgBatteryWarning( }; return ( + + - - ); -} -const ForwardRef = React.forwardRef(SvgBatteryWarning); +}; +const ForwardRef = forwardRef(SvgBatteryWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bbq.tsx b/packages/iconoir-react/src/Bbq.tsx index 49e290bf..f8f968b1 100644 --- a/packages/iconoir-react/src/Bbq.tsx +++ b/packages/iconoir-react/src/Bbq.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBbq( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBbq = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgBbq( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgBbq); +}; +const ForwardRef = forwardRef(SvgBbq); export default ForwardRef; diff --git a/packages/iconoir-react/src/BeachBag.tsx b/packages/iconoir-react/src/BeachBag.tsx index 35593d8b..fcc240ee 100644 --- a/packages/iconoir-react/src/BeachBag.tsx +++ b/packages/iconoir-react/src/BeachBag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBeachBag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBeachBag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgBeachBag( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgBeachBag); +}; +const ForwardRef = forwardRef(SvgBeachBag); export default ForwardRef; diff --git a/packages/iconoir-react/src/BeachBagBig.tsx b/packages/iconoir-react/src/BeachBagBig.tsx index 7db48c4b..7894c59d 100644 --- a/packages/iconoir-react/src/BeachBagBig.tsx +++ b/packages/iconoir-react/src/BeachBagBig.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBeachBagBig( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBeachBagBig = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgBeachBagBig( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBeachBagBig); +}; +const ForwardRef = forwardRef(SvgBeachBagBig); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bed.tsx b/packages/iconoir-react/src/Bed.tsx index 6ffe02a3..dd405ff2 100644 --- a/packages/iconoir-react/src/Bed.tsx +++ b/packages/iconoir-react/src/Bed.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBed( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBed = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBed( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBed); +}; +const ForwardRef = forwardRef(SvgBed); export default ForwardRef; diff --git a/packages/iconoir-react/src/BedReady.tsx b/packages/iconoir-react/src/BedReady.tsx index 54494813..c1577934 100644 --- a/packages/iconoir-react/src/BedReady.tsx +++ b/packages/iconoir-react/src/BedReady.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBedReady( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBedReady = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBedReady( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBedReady); +}; +const ForwardRef = forwardRef(SvgBedReady); export default ForwardRef; diff --git a/packages/iconoir-react/src/Behance.tsx b/packages/iconoir-react/src/Behance.tsx index 47260d44..3d2e9526 100644 --- a/packages/iconoir-react/src/Behance.tsx +++ b/packages/iconoir-react/src/Behance.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBehance( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBehance = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBehance( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBehance); +}; +const ForwardRef = forwardRef(SvgBehance); export default ForwardRef; diff --git a/packages/iconoir-react/src/BehanceTag.tsx b/packages/iconoir-react/src/BehanceTag.tsx index 1588083c..80d32d77 100644 --- a/packages/iconoir-react/src/BehanceTag.tsx +++ b/packages/iconoir-react/src/BehanceTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBehanceTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBehanceTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBehanceTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBehanceTag); +}; +const ForwardRef = forwardRef(SvgBehanceTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bell.tsx b/packages/iconoir-react/src/Bell.tsx index f1d3206f..666803a5 100644 --- a/packages/iconoir-react/src/Bell.tsx +++ b/packages/iconoir-react/src/Bell.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBell( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBell = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBell( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBell); +}; +const ForwardRef = forwardRef(SvgBell); export default ForwardRef; diff --git a/packages/iconoir-react/src/BellNotification.tsx b/packages/iconoir-react/src/BellNotification.tsx index 3a176ab7..82c67d86 100644 --- a/packages/iconoir-react/src/BellNotification.tsx +++ b/packages/iconoir-react/src/BellNotification.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBellNotification( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBellNotification = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBellNotification( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBellNotification); +}; +const ForwardRef = forwardRef(SvgBellNotification); export default ForwardRef; diff --git a/packages/iconoir-react/src/BellOff.tsx b/packages/iconoir-react/src/BellOff.tsx index f245647c..a4e151c5 100644 --- a/packages/iconoir-react/src/BellOff.tsx +++ b/packages/iconoir-react/src/BellOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBellOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBellOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBellOff( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBellOff); +}; +const ForwardRef = forwardRef(SvgBellOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bicycle.tsx b/packages/iconoir-react/src/Bicycle.tsx index c5bce5a7..5d36f90e 100644 --- a/packages/iconoir-react/src/Bicycle.tsx +++ b/packages/iconoir-react/src/Bicycle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBicycle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBicycle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgBicycle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBicycle); +}; +const ForwardRef = forwardRef(SvgBicycle); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bin.tsx b/packages/iconoir-react/src/Bin.tsx index e357d17a..59f6b849 100644 --- a/packages/iconoir-react/src/Bin.tsx +++ b/packages/iconoir-react/src/Bin.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBin( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBin = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,23 @@ function SvgBin( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgBin); +}; +const ForwardRef = forwardRef(SvgBin); export default ForwardRef; diff --git a/packages/iconoir-react/src/BinAdd.tsx b/packages/iconoir-react/src/BinAdd.tsx index f4c7c9c7..1edaf19a 100644 --- a/packages/iconoir-react/src/BinAdd.tsx +++ b/packages/iconoir-react/src/BinAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBinAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBinAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,29 @@ function SvgBinAdd( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgBinAdd); +}; +const ForwardRef = forwardRef(SvgBinAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/BinFull.tsx b/packages/iconoir-react/src/BinFull.tsx index ebca0805..2e55f1a7 100644 --- a/packages/iconoir-react/src/BinFull.tsx +++ b/packages/iconoir-react/src/BinFull.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBinFull( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBinFull = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,23 @@ function SvgBinFull( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgBinFull); +}; +const ForwardRef = forwardRef(SvgBinFull); export default ForwardRef; diff --git a/packages/iconoir-react/src/BinHalf.tsx b/packages/iconoir-react/src/BinHalf.tsx index 0ced1f7d..675f5cec 100644 --- a/packages/iconoir-react/src/BinHalf.tsx +++ b/packages/iconoir-react/src/BinHalf.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBinHalf( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBinHalf = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,26 @@ function SvgBinHalf( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBinHalf); +}; +const ForwardRef = forwardRef(SvgBinHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/BinMinus.tsx b/packages/iconoir-react/src/BinMinus.tsx index 711eb476..e4f4c1ba 100644 --- a/packages/iconoir-react/src/BinMinus.tsx +++ b/packages/iconoir-react/src/BinMinus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBinMinus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBinMinus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,29 @@ function SvgBinMinus( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgBinMinus); +}; +const ForwardRef = forwardRef(SvgBinMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/Binocular.tsx b/packages/iconoir-react/src/Binocular.tsx index 62d3dd8e..7c4005d1 100644 --- a/packages/iconoir-react/src/Binocular.tsx +++ b/packages/iconoir-react/src/Binocular.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBinocular( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBinocular = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgBinocular( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBinocular); +}; +const ForwardRef = forwardRef(SvgBinocular); export default ForwardRef; diff --git a/packages/iconoir-react/src/BirthdayCake.tsx b/packages/iconoir-react/src/BirthdayCake.tsx index 7906af8c..7abb5df0 100644 --- a/packages/iconoir-react/src/BirthdayCake.tsx +++ b/packages/iconoir-react/src/BirthdayCake.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBirthdayCake( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBirthdayCake = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgBirthdayCake( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgBirthdayCake); +}; +const ForwardRef = forwardRef(SvgBirthdayCake); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bishop.tsx b/packages/iconoir-react/src/Bishop.tsx index 6404d569..26d8e0c8 100644 --- a/packages/iconoir-react/src/Bishop.tsx +++ b/packages/iconoir-react/src/Bishop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBishop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBishop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgBishop( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBishop); +}; +const ForwardRef = forwardRef(SvgBishop); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bitbucket.tsx b/packages/iconoir-react/src/Bitbucket.tsx index 86d2e006..e56c0853 100644 --- a/packages/iconoir-react/src/Bitbucket.tsx +++ b/packages/iconoir-react/src/Bitbucket.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBitbucket( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBitbucket = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBitbucket( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBitbucket); +}; +const ForwardRef = forwardRef(SvgBitbucket); export default ForwardRef; diff --git a/packages/iconoir-react/src/BitcoinCircle.tsx b/packages/iconoir-react/src/BitcoinCircle.tsx index 949f5ff6..d7fa7137 100644 --- a/packages/iconoir-react/src/BitcoinCircle.tsx +++ b/packages/iconoir-react/src/BitcoinCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBitcoinCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBitcoinCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgBitcoinCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBitcoinCircle); +}; +const ForwardRef = forwardRef(SvgBitcoinCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/BitcoinRotateOut.tsx b/packages/iconoir-react/src/BitcoinRotateOut.tsx index 503718e2..59c03b8b 100644 --- a/packages/iconoir-react/src/BitcoinRotateOut.tsx +++ b/packages/iconoir-react/src/BitcoinRotateOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBitcoinRotateOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBitcoinRotateOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,46 +13,46 @@ function SvgBitcoinRotateOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBitcoinRotateOut); +}; +const ForwardRef = forwardRef(SvgBitcoinRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bluetooth.tsx b/packages/iconoir-react/src/Bluetooth.tsx index 3f79494c..1284bc7c 100644 --- a/packages/iconoir-react/src/Bluetooth.tsx +++ b/packages/iconoir-react/src/Bluetooth.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBluetooth( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBluetooth = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBluetooth( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBluetooth); +}; +const ForwardRef = forwardRef(SvgBluetooth); export default ForwardRef; diff --git a/packages/iconoir-react/src/BluetoothTag.tsx b/packages/iconoir-react/src/BluetoothTag.tsx index 693ded1a..7723f9e4 100644 --- a/packages/iconoir-react/src/BluetoothTag.tsx +++ b/packages/iconoir-react/src/BluetoothTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBluetoothTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBluetoothTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgBluetoothTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBluetoothTag); +}; +const ForwardRef = forwardRef(SvgBluetoothTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bold.tsx b/packages/iconoir-react/src/Bold.tsx index 04ad9642..9d9064ef 100644 --- a/packages/iconoir-react/src/Bold.tsx +++ b/packages/iconoir-react/src/Bold.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBold( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBold = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgBold( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBold); +}; +const ForwardRef = forwardRef(SvgBold); export default ForwardRef; diff --git a/packages/iconoir-react/src/BoldSquare.tsx b/packages/iconoir-react/src/BoldSquare.tsx index ad8eb7bc..02e74379 100644 --- a/packages/iconoir-react/src/BoldSquare.tsx +++ b/packages/iconoir-react/src/BoldSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBoldSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBoldSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,26 @@ function SvgBoldSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBoldSquare); +}; +const ForwardRef = forwardRef(SvgBoldSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bonfire.tsx b/packages/iconoir-react/src/Bonfire.tsx index e9ca7576..c2d8303f 100644 --- a/packages/iconoir-react/src/Bonfire.tsx +++ b/packages/iconoir-react/src/Bonfire.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBonfire( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBonfire = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgBonfire( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBonfire); +}; +const ForwardRef = forwardRef(SvgBonfire); export default ForwardRef; diff --git a/packages/iconoir-react/src/Book.tsx b/packages/iconoir-react/src/Book.tsx index 42834831..4a115705 100644 --- a/packages/iconoir-react/src/Book.tsx +++ b/packages/iconoir-react/src/Book.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBook( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBook = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBook( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgBook); +}; +const ForwardRef = forwardRef(SvgBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/BookStack.tsx b/packages/iconoir-react/src/BookStack.tsx index b251c2ed..ed5280b5 100644 --- a/packages/iconoir-react/src/BookStack.tsx +++ b/packages/iconoir-react/src/BookStack.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBookStack( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBookStack = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgBookStack( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBookStack); +}; +const ForwardRef = forwardRef(SvgBookStack); export default ForwardRef; diff --git a/packages/iconoir-react/src/BookmarkBook.tsx b/packages/iconoir-react/src/BookmarkBook.tsx index d7b3f62c..fc97e5a6 100644 --- a/packages/iconoir-react/src/BookmarkBook.tsx +++ b/packages/iconoir-react/src/BookmarkBook.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBookmarkBook( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBookmarkBook = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgBookmarkBook( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgBookmarkBook); +}; +const ForwardRef = forwardRef(SvgBookmarkBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/BookmarkCircle.tsx b/packages/iconoir-react/src/BookmarkCircle.tsx index 69b9604d..cedf6dc7 100644 --- a/packages/iconoir-react/src/BookmarkCircle.tsx +++ b/packages/iconoir-react/src/BookmarkCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBookmarkCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBookmarkCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBookmarkCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBookmarkCircle); +}; +const ForwardRef = forwardRef(SvgBookmarkCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/BookmarkEmpty.tsx b/packages/iconoir-react/src/BookmarkEmpty.tsx index 916c8b54..ea224af3 100644 --- a/packages/iconoir-react/src/BookmarkEmpty.tsx +++ b/packages/iconoir-react/src/BookmarkEmpty.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBookmarkEmpty( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBookmarkEmpty = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBookmarkEmpty( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBookmarkEmpty); +}; +const ForwardRef = forwardRef(SvgBookmarkEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/BorderBl.tsx b/packages/iconoir-react/src/BorderBl.tsx index 1fa64b5e..79e61b9f 100644 --- a/packages/iconoir-react/src/BorderBl.tsx +++ b/packages/iconoir-react/src/BorderBl.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderBl( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBorderBl = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBorderBl( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBorderBl); +}; +const ForwardRef = forwardRef(SvgBorderBl); export default ForwardRef; diff --git a/packages/iconoir-react/src/BorderBottom.tsx b/packages/iconoir-react/src/BorderBottom.tsx index 814cba0b..ee9f10f7 100644 --- a/packages/iconoir-react/src/BorderBottom.tsx +++ b/packages/iconoir-react/src/BorderBottom.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderBottom( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBorderBottom = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBorderBottom( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBorderBottom); +}; +const ForwardRef = forwardRef(SvgBorderBottom); export default ForwardRef; diff --git a/packages/iconoir-react/src/BorderBr.tsx b/packages/iconoir-react/src/BorderBr.tsx index 6aaa5846..cd8f6865 100644 --- a/packages/iconoir-react/src/BorderBr.tsx +++ b/packages/iconoir-react/src/BorderBr.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderBr( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBorderBr = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBorderBr( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBorderBr); +}; +const ForwardRef = forwardRef(SvgBorderBr); export default ForwardRef; diff --git a/packages/iconoir-react/src/BorderInner.tsx b/packages/iconoir-react/src/BorderInner.tsx index 5158b5c8..fa15873b 100644 --- a/packages/iconoir-react/src/BorderInner.tsx +++ b/packages/iconoir-react/src/BorderInner.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderInner( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBorderInner = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBorderInner( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBorderInner); +}; +const ForwardRef = forwardRef(SvgBorderInner); export default ForwardRef; diff --git a/packages/iconoir-react/src/BorderLeft.tsx b/packages/iconoir-react/src/BorderLeft.tsx index 25c2da8a..eb1e9a2f 100644 --- a/packages/iconoir-react/src/BorderLeft.tsx +++ b/packages/iconoir-react/src/BorderLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBorderLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBorderLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBorderLeft); +}; +const ForwardRef = forwardRef(SvgBorderLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/BorderOut.tsx b/packages/iconoir-react/src/BorderOut.tsx index 2632f803..596250d5 100644 --- a/packages/iconoir-react/src/BorderOut.tsx +++ b/packages/iconoir-react/src/BorderOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBorderOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBorderOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBorderOut); +}; +const ForwardRef = forwardRef(SvgBorderOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/BorderRight.tsx b/packages/iconoir-react/src/BorderRight.tsx index 012afa6d..8bcff705 100644 --- a/packages/iconoir-react/src/BorderRight.tsx +++ b/packages/iconoir-react/src/BorderRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBorderRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBorderRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBorderRight); +}; +const ForwardRef = forwardRef(SvgBorderRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/BorderTl.tsx b/packages/iconoir-react/src/BorderTl.tsx index abd95d6a..db7e0454 100644 --- a/packages/iconoir-react/src/BorderTl.tsx +++ b/packages/iconoir-react/src/BorderTl.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderTl( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBorderTl = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBorderTl( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBorderTl); +}; +const ForwardRef = forwardRef(SvgBorderTl); export default ForwardRef; diff --git a/packages/iconoir-react/src/BorderTop.tsx b/packages/iconoir-react/src/BorderTop.tsx index 30f07a4d..75dd10f3 100644 --- a/packages/iconoir-react/src/BorderTop.tsx +++ b/packages/iconoir-react/src/BorderTop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderTop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBorderTop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBorderTop( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBorderTop); +}; +const ForwardRef = forwardRef(SvgBorderTop); export default ForwardRef; diff --git a/packages/iconoir-react/src/BorderTr.tsx b/packages/iconoir-react/src/BorderTr.tsx index c12b0fbc..6d5e9a1b 100644 --- a/packages/iconoir-react/src/BorderTr.tsx +++ b/packages/iconoir-react/src/BorderTr.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBorderTr( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBorderTr = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBorderTr( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBorderTr); +}; +const ForwardRef = forwardRef(SvgBorderTr); export default ForwardRef; diff --git a/packages/iconoir-react/src/BounceLeft.tsx b/packages/iconoir-react/src/BounceLeft.tsx index 33dc3096..1f157f35 100644 --- a/packages/iconoir-react/src/BounceLeft.tsx +++ b/packages/iconoir-react/src/BounceLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBounceLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBounceLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBounceLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBounceLeft); +}; +const ForwardRef = forwardRef(SvgBounceLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/BounceRight.tsx b/packages/iconoir-react/src/BounceRight.tsx index 368f638f..0426d482 100644 --- a/packages/iconoir-react/src/BounceRight.tsx +++ b/packages/iconoir-react/src/BounceRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBounceRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBounceRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBounceRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBounceRight); +}; +const ForwardRef = forwardRef(SvgBounceRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/BowlingBall.tsx b/packages/iconoir-react/src/BowlingBall.tsx index bc3f1e0f..9cbd5ce6 100644 --- a/packages/iconoir-react/src/BowlingBall.tsx +++ b/packages/iconoir-react/src/BowlingBall.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBowlingBall( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBowlingBall = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgBowlingBall( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBowlingBall); +}; +const ForwardRef = forwardRef(SvgBowlingBall); export default ForwardRef; diff --git a/packages/iconoir-react/src/Box.tsx b/packages/iconoir-react/src/Box.tsx index 385924f5..52d12044 100644 --- a/packages/iconoir-react/src/Box.tsx +++ b/packages/iconoir-react/src/Box.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBox( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBox); +}; +const ForwardRef = forwardRef(SvgBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/BoxIso.tsx b/packages/iconoir-react/src/BoxIso.tsx index 63761a9b..32014ce8 100644 --- a/packages/iconoir-react/src/BoxIso.tsx +++ b/packages/iconoir-react/src/BoxIso.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBoxIso( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBoxIso = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgBoxIso( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBoxIso); +}; +const ForwardRef = forwardRef(SvgBoxIso); export default ForwardRef; diff --git a/packages/iconoir-react/src/BoxingGlove.tsx b/packages/iconoir-react/src/BoxingGlove.tsx index c61969e2..12058978 100644 --- a/packages/iconoir-react/src/BoxingGlove.tsx +++ b/packages/iconoir-react/src/BoxingGlove.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBoxingGlove( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBoxingGlove = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBoxingGlove( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBoxingGlove); +}; +const ForwardRef = forwardRef(SvgBoxingGlove); export default ForwardRef; diff --git a/packages/iconoir-react/src/Brain.tsx b/packages/iconoir-react/src/Brain.tsx index 91476069..26cb56ab 100644 --- a/packages/iconoir-react/src/Brain.tsx +++ b/packages/iconoir-react/src/Brain.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrain( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBrain = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,36 @@ function SvgBrain( }; return ( + + ); -} -const ForwardRef = React.forwardRef(SvgBrain); +}; +const ForwardRef = forwardRef(SvgBrain); export default ForwardRef; diff --git a/packages/iconoir-react/src/BrainElectricity.tsx b/packages/iconoir-react/src/BrainElectricity.tsx index cec08741..f28eabab 100644 --- a/packages/iconoir-react/src/BrainElectricity.tsx +++ b/packages/iconoir-react/src/BrainElectricity.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrainElectricity( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBrainElectricity = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgBrainElectricity( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgBrainElectricity); +}; +const ForwardRef = forwardRef(SvgBrainElectricity); export default ForwardRef; diff --git a/packages/iconoir-react/src/BrainResearch.tsx b/packages/iconoir-react/src/BrainResearch.tsx index ba53a68c..f5573c97 100644 --- a/packages/iconoir-react/src/BrainResearch.tsx +++ b/packages/iconoir-react/src/BrainResearch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrainResearch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBrainResearch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgBrainResearch( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgBrainResearch); +}; +const ForwardRef = forwardRef(SvgBrainResearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/BrainWarning.tsx b/packages/iconoir-react/src/BrainWarning.tsx index 5fa4094b..4b174d6f 100644 --- a/packages/iconoir-react/src/BrainWarning.tsx +++ b/packages/iconoir-react/src/BrainWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrainWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBrainWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,36 @@ function SvgBrainWarning( }; return ( + + ); -} -const ForwardRef = React.forwardRef(SvgBrainWarning); +}; +const ForwardRef = forwardRef(SvgBrainWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/BreadSlice.tsx b/packages/iconoir-react/src/BreadSlice.tsx index 0aff63c4..2a76db3d 100644 --- a/packages/iconoir-react/src/BreadSlice.tsx +++ b/packages/iconoir-react/src/BreadSlice.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBreadSlice( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBreadSlice = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBreadSlice( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBreadSlice); +}; +const ForwardRef = forwardRef(SvgBreadSlice); export default ForwardRef; diff --git a/packages/iconoir-react/src/BridgeSurface.tsx b/packages/iconoir-react/src/BridgeSurface.tsx index 8a3a9594..62989ac9 100644 --- a/packages/iconoir-react/src/BridgeSurface.tsx +++ b/packages/iconoir-react/src/BridgeSurface.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBridgeSurface( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBridgeSurface = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBridgeSurface( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBridgeSurface); +}; +const ForwardRef = forwardRef(SvgBridgeSurface); export default ForwardRef; diff --git a/packages/iconoir-react/src/BrightCrown.tsx b/packages/iconoir-react/src/BrightCrown.tsx index bfcc884f..70d9e91f 100644 --- a/packages/iconoir-react/src/BrightCrown.tsx +++ b/packages/iconoir-react/src/BrightCrown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrightCrown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBrightCrown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgBrightCrown( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgBrightCrown); +}; +const ForwardRef = forwardRef(SvgBrightCrown); export default ForwardRef; diff --git a/packages/iconoir-react/src/BrightStar.tsx b/packages/iconoir-react/src/BrightStar.tsx index 6572495e..fa1acfba 100644 --- a/packages/iconoir-react/src/BrightStar.tsx +++ b/packages/iconoir-react/src/BrightStar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrightStar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBrightStar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgBrightStar( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgBrightStar); +}; +const ForwardRef = forwardRef(SvgBrightStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/Brightness.tsx b/packages/iconoir-react/src/Brightness.tsx index 0b9a2eb6..dc8c27b9 100644 --- a/packages/iconoir-react/src/Brightness.tsx +++ b/packages/iconoir-react/src/Brightness.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrightness( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBrightness = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgBrightness( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBrightness); +}; +const ForwardRef = forwardRef(SvgBrightness); export default ForwardRef; diff --git a/packages/iconoir-react/src/BrightnessWindow.tsx b/packages/iconoir-react/src/BrightnessWindow.tsx index 36cbcc63..4dc4fbec 100644 --- a/packages/iconoir-react/src/BrightnessWindow.tsx +++ b/packages/iconoir-react/src/BrightnessWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBrightnessWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBrightnessWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgBrightnessWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBrightnessWindow); +}; +const ForwardRef = forwardRef(SvgBrightnessWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/BubbleDownload.tsx b/packages/iconoir-react/src/BubbleDownload.tsx index 912e8311..e9502ccf 100644 --- a/packages/iconoir-react/src/BubbleDownload.tsx +++ b/packages/iconoir-react/src/BubbleDownload.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleDownload( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBubbleDownload = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBubbleDownload( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBubbleDownload); +}; +const ForwardRef = forwardRef(SvgBubbleDownload); export default ForwardRef; diff --git a/packages/iconoir-react/src/BubbleError.tsx b/packages/iconoir-react/src/BubbleError.tsx index 95a081a6..9eb172d3 100644 --- a/packages/iconoir-react/src/BubbleError.tsx +++ b/packages/iconoir-react/src/BubbleError.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleError( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBubbleError = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBubbleError( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBubbleError); +}; +const ForwardRef = forwardRef(SvgBubbleError); export default ForwardRef; diff --git a/packages/iconoir-react/src/BubbleIncome.tsx b/packages/iconoir-react/src/BubbleIncome.tsx index 3090c3f8..b90ce290 100644 --- a/packages/iconoir-react/src/BubbleIncome.tsx +++ b/packages/iconoir-react/src/BubbleIncome.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleIncome( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBubbleIncome = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBubbleIncome( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBubbleIncome); +}; +const ForwardRef = forwardRef(SvgBubbleIncome); export default ForwardRef; diff --git a/packages/iconoir-react/src/BubbleOutcome.tsx b/packages/iconoir-react/src/BubbleOutcome.tsx index 6f7109aa..2cb74dfb 100644 --- a/packages/iconoir-react/src/BubbleOutcome.tsx +++ b/packages/iconoir-react/src/BubbleOutcome.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleOutcome( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBubbleOutcome = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBubbleOutcome( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBubbleOutcome); +}; +const ForwardRef = forwardRef(SvgBubbleOutcome); export default ForwardRef; diff --git a/packages/iconoir-react/src/BubbleSearch.tsx b/packages/iconoir-react/src/BubbleSearch.tsx index 617cc0cf..dce8d3a4 100644 --- a/packages/iconoir-react/src/BubbleSearch.tsx +++ b/packages/iconoir-react/src/BubbleSearch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleSearch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBubbleSearch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBubbleSearch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBubbleSearch); +}; +const ForwardRef = forwardRef(SvgBubbleSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/BubbleStar.tsx b/packages/iconoir-react/src/BubbleStar.tsx index 72e3300c..cecf812c 100644 --- a/packages/iconoir-react/src/BubbleStar.tsx +++ b/packages/iconoir-react/src/BubbleStar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleStar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBubbleStar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgBubbleStar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBubbleStar); +}; +const ForwardRef = forwardRef(SvgBubbleStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/BubbleUpload.tsx b/packages/iconoir-react/src/BubbleUpload.tsx index 551d9fe6..228251b9 100644 --- a/packages/iconoir-react/src/BubbleUpload.tsx +++ b/packages/iconoir-react/src/BubbleUpload.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleUpload( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBubbleUpload = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBubbleUpload( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBubbleUpload); +}; +const ForwardRef = forwardRef(SvgBubbleUpload); export default ForwardRef; diff --git a/packages/iconoir-react/src/BubbleWarning.tsx b/packages/iconoir-react/src/BubbleWarning.tsx index bf4e3410..f38ea378 100644 --- a/packages/iconoir-react/src/BubbleWarning.tsx +++ b/packages/iconoir-react/src/BubbleWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBubbleWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBubbleWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBubbleWarning( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBubbleWarning); +}; +const ForwardRef = forwardRef(SvgBubbleWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/Building.tsx b/packages/iconoir-react/src/Building.tsx index e9141e6b..7f1330ef 100644 --- a/packages/iconoir-react/src/Building.tsx +++ b/packages/iconoir-react/src/Building.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBuilding( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBuilding = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgBuilding( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBuilding); +}; +const ForwardRef = forwardRef(SvgBuilding); export default ForwardRef; diff --git a/packages/iconoir-react/src/Bus.tsx b/packages/iconoir-react/src/Bus.tsx index e1ae08a2..b633e4fb 100644 --- a/packages/iconoir-react/src/Bus.tsx +++ b/packages/iconoir-react/src/Bus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgBus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBus); +}; +const ForwardRef = forwardRef(SvgBus); export default ForwardRef; diff --git a/packages/iconoir-react/src/BusStop.tsx b/packages/iconoir-react/src/BusStop.tsx index 73ddb906..5665cc78 100644 --- a/packages/iconoir-react/src/BusStop.tsx +++ b/packages/iconoir-react/src/BusStop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgBusStop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgBusStop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgBusStop( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgBusStop); +}; +const ForwardRef = forwardRef(SvgBusStop); export default ForwardRef; diff --git a/packages/iconoir-react/src/CableTag.tsx b/packages/iconoir-react/src/CableTag.tsx index 69e79d16..694ec37a 100644 --- a/packages/iconoir-react/src/CableTag.tsx +++ b/packages/iconoir-react/src/CableTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCableTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCableTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgCableTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCableTag); +}; +const ForwardRef = forwardRef(SvgCableTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Calculator.tsx b/packages/iconoir-react/src/Calculator.tsx index 461edbe3..fcd5d9a1 100644 --- a/packages/iconoir-react/src/Calculator.tsx +++ b/packages/iconoir-react/src/Calculator.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCalculator( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCalculator = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgCalculator( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCalculator); +}; +const ForwardRef = forwardRef(SvgCalculator); export default ForwardRef; diff --git a/packages/iconoir-react/src/Calendar.tsx b/packages/iconoir-react/src/Calendar.tsx index fe01a474..42ff49db 100644 --- a/packages/iconoir-react/src/Calendar.tsx +++ b/packages/iconoir-react/src/Calendar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCalendar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCalendar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCalendar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCalendar); +}; +const ForwardRef = forwardRef(SvgCalendar); export default ForwardRef; diff --git a/packages/iconoir-react/src/CalendarMinus.tsx b/packages/iconoir-react/src/CalendarMinus.tsx index ea15ad4b..08da9fa7 100644 --- a/packages/iconoir-react/src/CalendarMinus.tsx +++ b/packages/iconoir-react/src/CalendarMinus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCalendarMinus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCalendarMinus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCalendarMinus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCalendarMinus); +}; +const ForwardRef = forwardRef(SvgCalendarMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/CalendarPlus.tsx b/packages/iconoir-react/src/CalendarPlus.tsx index b81a9c36..752e5577 100644 --- a/packages/iconoir-react/src/CalendarPlus.tsx +++ b/packages/iconoir-react/src/CalendarPlus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCalendarPlus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCalendarPlus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCalendarPlus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCalendarPlus); +}; +const ForwardRef = forwardRef(SvgCalendarPlus); export default ForwardRef; diff --git a/packages/iconoir-react/src/Camera.tsx b/packages/iconoir-react/src/Camera.tsx index 69cf2eca..9cf2a910 100644 --- a/packages/iconoir-react/src/Camera.tsx +++ b/packages/iconoir-react/src/Camera.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCamera( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCamera = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCamera( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCamera); +}; +const ForwardRef = forwardRef(SvgCamera); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cancel.tsx b/packages/iconoir-react/src/Cancel.tsx index 990ebf13..1a061567 100644 --- a/packages/iconoir-react/src/Cancel.tsx +++ b/packages/iconoir-react/src/Cancel.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCancel( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCancel = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCancel( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCancel); +}; +const ForwardRef = forwardRef(SvgCancel); export default ForwardRef; diff --git a/packages/iconoir-react/src/CandlestickChart.tsx b/packages/iconoir-react/src/CandlestickChart.tsx index dc0b860c..d68fcb42 100644 --- a/packages/iconoir-react/src/CandlestickChart.tsx +++ b/packages/iconoir-react/src/CandlestickChart.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCandlestickChart( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCandlestickChart = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCandlestickChart( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCandlestickChart); +}; +const ForwardRef = forwardRef(SvgCandlestickChart); export default ForwardRef; diff --git a/packages/iconoir-react/src/Car.tsx b/packages/iconoir-react/src/Car.tsx index 7f26e8f6..724a3111 100644 --- a/packages/iconoir-react/src/Car.tsx +++ b/packages/iconoir-react/src/Car.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgCar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCar); +}; +const ForwardRef = forwardRef(SvgCar); export default ForwardRef; diff --git a/packages/iconoir-react/src/Carbon.tsx b/packages/iconoir-react/src/Carbon.tsx index c9140dbb..63a847d6 100644 --- a/packages/iconoir-react/src/Carbon.tsx +++ b/packages/iconoir-react/src/Carbon.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCarbon( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCarbon = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCarbon( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCarbon); +}; +const ForwardRef = forwardRef(SvgCarbon); export default ForwardRef; diff --git a/packages/iconoir-react/src/CardIssue.tsx b/packages/iconoir-react/src/CardIssue.tsx index 24f9137b..3ea8de4e 100644 --- a/packages/iconoir-react/src/CardIssue.tsx +++ b/packages/iconoir-react/src/CardIssue.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCardIssue( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCardIssue = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCardIssue( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCardIssue); +}; +const ForwardRef = forwardRef(SvgCardIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/CardLocked.tsx b/packages/iconoir-react/src/CardLocked.tsx index a9a88f22..5f821061 100644 --- a/packages/iconoir-react/src/CardLocked.tsx +++ b/packages/iconoir-react/src/CardLocked.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCardLocked( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCardLocked = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCardLocked( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCardLocked); +}; +const ForwardRef = forwardRef(SvgCardLocked); export default ForwardRef; diff --git a/packages/iconoir-react/src/CardReader.tsx b/packages/iconoir-react/src/CardReader.tsx index 96d48c9a..c2142e7e 100644 --- a/packages/iconoir-react/src/CardReader.tsx +++ b/packages/iconoir-react/src/CardReader.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCardReader( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCardReader = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgCardReader( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCardReader); +}; +const ForwardRef = forwardRef(SvgCardReader); export default ForwardRef; diff --git a/packages/iconoir-react/src/CardSecurity.tsx b/packages/iconoir-react/src/CardSecurity.tsx index fcb8ddf0..83f8d21e 100644 --- a/packages/iconoir-react/src/CardSecurity.tsx +++ b/packages/iconoir-react/src/CardSecurity.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCardSecurity( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCardSecurity = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCardSecurity( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCardSecurity); +}; +const ForwardRef = forwardRef(SvgCardSecurity); export default ForwardRef; diff --git a/packages/iconoir-react/src/CardWallet.tsx b/packages/iconoir-react/src/CardWallet.tsx index adaea3a0..d118cb56 100644 --- a/packages/iconoir-react/src/CardWallet.tsx +++ b/packages/iconoir-react/src/CardWallet.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCardWallet( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCardWallet = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgCardWallet( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCardWallet); +}; +const ForwardRef = forwardRef(SvgCardWallet); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cart.tsx b/packages/iconoir-react/src/Cart.tsx index d1d66845..faf9ed8c 100644 --- a/packages/iconoir-react/src/Cart.tsx +++ b/packages/iconoir-react/src/Cart.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCart( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCart = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgCart( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCart); +}; +const ForwardRef = forwardRef(SvgCart); export default ForwardRef; diff --git a/packages/iconoir-react/src/CartAlt.tsx b/packages/iconoir-react/src/CartAlt.tsx index ca70667b..bfc64ad2 100644 --- a/packages/iconoir-react/src/CartAlt.tsx +++ b/packages/iconoir-react/src/CartAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCartAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCartAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgCartAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCartAlt); +}; +const ForwardRef = forwardRef(SvgCartAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cash.tsx b/packages/iconoir-react/src/Cash.tsx index 477a049f..eb229902 100644 --- a/packages/iconoir-react/src/Cash.tsx +++ b/packages/iconoir-react/src/Cash.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCash( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCash = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCash( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCash); +}; +const ForwardRef = forwardRef(SvgCash); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cell2X2.tsx b/packages/iconoir-react/src/Cell2X2.tsx index 270f4c6d..6db2dde9 100644 --- a/packages/iconoir-react/src/Cell2X2.tsx +++ b/packages/iconoir-react/src/Cell2X2.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCell2X2( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCell2X2 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgCell2X2( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCell2X2); +}; +const ForwardRef = forwardRef(SvgCell2X2); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cellar.tsx b/packages/iconoir-react/src/Cellar.tsx index 7420dd23..73ee78e3 100644 --- a/packages/iconoir-react/src/Cellar.tsx +++ b/packages/iconoir-react/src/Cellar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCellar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCellar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCellar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCellar); +}; +const ForwardRef = forwardRef(SvgCellar); export default ForwardRef; diff --git a/packages/iconoir-react/src/CenterAlign.tsx b/packages/iconoir-react/src/CenterAlign.tsx index 44a40b06..7c1862b8 100644 --- a/packages/iconoir-react/src/CenterAlign.tsx +++ b/packages/iconoir-react/src/CenterAlign.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCenterAlign( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCenterAlign = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCenterAlign( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCenterAlign); +}; +const ForwardRef = forwardRef(SvgCenterAlign); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatAdd.tsx b/packages/iconoir-react/src/ChatAdd.tsx index fa7d3aca..f8911bf4 100644 --- a/packages/iconoir-react/src/ChatAdd.tsx +++ b/packages/iconoir-react/src/ChatAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgChatAdd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatAdd); +}; +const ForwardRef = forwardRef(SvgChatAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatBubble.tsx b/packages/iconoir-react/src/ChatBubble.tsx index 84c148b6..b26d8c75 100644 --- a/packages/iconoir-react/src/ChatBubble.tsx +++ b/packages/iconoir-react/src/ChatBubble.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubble( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatBubble = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgChatBubble( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatBubble); +}; +const ForwardRef = forwardRef(SvgChatBubble); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatBubbleCheck.tsx b/packages/iconoir-react/src/ChatBubbleCheck.tsx index 11994465..1acca959 100644 --- a/packages/iconoir-react/src/ChatBubbleCheck.tsx +++ b/packages/iconoir-react/src/ChatBubbleCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatBubbleCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgChatBubbleCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleCheck); +}; +const ForwardRef = forwardRef(SvgChatBubbleCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatBubbleCheck1.tsx b/packages/iconoir-react/src/ChatBubbleCheck1.tsx index 4b2c4afe..d6f8f511 100644 --- a/packages/iconoir-react/src/ChatBubbleCheck1.tsx +++ b/packages/iconoir-react/src/ChatBubbleCheck1.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleCheck1( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatBubbleCheck1 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgChatBubbleCheck1( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleCheck1); +}; +const ForwardRef = forwardRef(SvgChatBubbleCheck1); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatBubbleEmpty.tsx b/packages/iconoir-react/src/ChatBubbleEmpty.tsx index 57596188..c0b0a25d 100644 --- a/packages/iconoir-react/src/ChatBubbleEmpty.tsx +++ b/packages/iconoir-react/src/ChatBubbleEmpty.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleEmpty( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatBubbleEmpty = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgChatBubbleEmpty( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleEmpty); +}; +const ForwardRef = forwardRef(SvgChatBubbleEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatBubbleError.tsx b/packages/iconoir-react/src/ChatBubbleError.tsx index 6437612c..bf1058be 100644 --- a/packages/iconoir-react/src/ChatBubbleError.tsx +++ b/packages/iconoir-react/src/ChatBubbleError.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleError( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatBubbleError = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgChatBubbleError( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleError); +}; +const ForwardRef = forwardRef(SvgChatBubbleError); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatBubbleQuestion.tsx b/packages/iconoir-react/src/ChatBubbleQuestion.tsx index ed0df92a..e0f2df05 100644 --- a/packages/iconoir-react/src/ChatBubbleQuestion.tsx +++ b/packages/iconoir-react/src/ChatBubbleQuestion.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleQuestion( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatBubbleQuestion = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgChatBubbleQuestion( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleQuestion); +}; +const ForwardRef = forwardRef(SvgChatBubbleQuestion); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatBubbleTranslate.tsx b/packages/iconoir-react/src/ChatBubbleTranslate.tsx index 56132558..d0f8fdb1 100644 --- a/packages/iconoir-react/src/ChatBubbleTranslate.tsx +++ b/packages/iconoir-react/src/ChatBubbleTranslate.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleTranslate( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatBubbleTranslate = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgChatBubbleTranslate( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleTranslate); +}; +const ForwardRef = forwardRef(SvgChatBubbleTranslate); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatBubbleWarning.tsx b/packages/iconoir-react/src/ChatBubbleWarning.tsx index 33ed79c1..368ba8a7 100644 --- a/packages/iconoir-react/src/ChatBubbleWarning.tsx +++ b/packages/iconoir-react/src/ChatBubbleWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatBubbleWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatBubbleWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgChatBubbleWarning( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleWarning); +}; +const ForwardRef = forwardRef(SvgChatBubbleWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatLines.tsx b/packages/iconoir-react/src/ChatLines.tsx index 31996f11..0a9ce9d8 100644 --- a/packages/iconoir-react/src/ChatLines.tsx +++ b/packages/iconoir-react/src/ChatLines.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatLines( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatLines = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgChatLines( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatLines); +}; +const ForwardRef = forwardRef(SvgChatLines); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChatRemove.tsx b/packages/iconoir-react/src/ChatRemove.tsx index 46bb7165..95784a8d 100644 --- a/packages/iconoir-react/src/ChatRemove.tsx +++ b/packages/iconoir-react/src/ChatRemove.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChatRemove( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChatRemove = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgChatRemove( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChatRemove); +}; +const ForwardRef = forwardRef(SvgChatRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/Check.tsx b/packages/iconoir-react/src/Check.tsx index cb8aa8db..cb7edd61 100644 --- a/packages/iconoir-react/src/Check.tsx +++ b/packages/iconoir-react/src/Check.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCheck); +}; +const ForwardRef = forwardRef(SvgCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/CheckCircle.tsx b/packages/iconoir-react/src/CheckCircle.tsx index f58b41e0..f1229f7c 100644 --- a/packages/iconoir-react/src/CheckCircle.tsx +++ b/packages/iconoir-react/src/CheckCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCheckCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCheckCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCheckCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCheckCircle); +}; +const ForwardRef = forwardRef(SvgCheckCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/CheckWindow.tsx b/packages/iconoir-react/src/CheckWindow.tsx index 0dc1f5d1..03774ce5 100644 --- a/packages/iconoir-react/src/CheckWindow.tsx +++ b/packages/iconoir-react/src/CheckWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCheckWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCheckWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgCheckWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCheckWindow); +}; +const ForwardRef = forwardRef(SvgCheckWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Chocolate.tsx b/packages/iconoir-react/src/Chocolate.tsx index 210e00f0..550b903d 100644 --- a/packages/iconoir-react/src/Chocolate.tsx +++ b/packages/iconoir-react/src/Chocolate.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChocolate( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChocolate = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgChocolate( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChocolate); +}; +const ForwardRef = forwardRef(SvgChocolate); export default ForwardRef; diff --git a/packages/iconoir-react/src/Chromecast.tsx b/packages/iconoir-react/src/Chromecast.tsx index e717acfa..94ab826d 100644 --- a/packages/iconoir-react/src/Chromecast.tsx +++ b/packages/iconoir-react/src/Chromecast.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChromecast( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChromecast = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgChromecast( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChromecast); +}; +const ForwardRef = forwardRef(SvgChromecast); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChromecastActive.tsx b/packages/iconoir-react/src/ChromecastActive.tsx index 6db31006..11b09e0a 100644 --- a/packages/iconoir-react/src/ChromecastActive.tsx +++ b/packages/iconoir-react/src/ChromecastActive.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChromecastActive( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChromecastActive = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgChromecastActive( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChromecastActive); +}; +const ForwardRef = forwardRef(SvgChromecastActive); export default ForwardRef; diff --git a/packages/iconoir-react/src/Church.tsx b/packages/iconoir-react/src/Church.tsx index 7debce3f..2987bf44 100644 --- a/packages/iconoir-react/src/Church.tsx +++ b/packages/iconoir-react/src/Church.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChurch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChurch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgChurch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChurch); +}; +const ForwardRef = forwardRef(SvgChurch); export default ForwardRef; diff --git a/packages/iconoir-react/src/ChurchAlt.tsx b/packages/iconoir-react/src/ChurchAlt.tsx index 049bb250..51f1701d 100644 --- a/packages/iconoir-react/src/ChurchAlt.tsx +++ b/packages/iconoir-react/src/ChurchAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgChurchAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgChurchAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgChurchAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgChurchAlt); +}; +const ForwardRef = forwardRef(SvgChurchAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/CinemaOld.tsx b/packages/iconoir-react/src/CinemaOld.tsx index e622f575..5d295307 100644 --- a/packages/iconoir-react/src/CinemaOld.tsx +++ b/packages/iconoir-react/src/CinemaOld.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCinemaOld( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCinemaOld = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCinemaOld( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCinemaOld); +}; +const ForwardRef = forwardRef(SvgCinemaOld); export default ForwardRef; diff --git a/packages/iconoir-react/src/Circle.tsx b/packages/iconoir-react/src/Circle.tsx index d5ac0221..ea2c1d72 100644 --- a/packages/iconoir-react/src/Circle.tsx +++ b/packages/iconoir-react/src/Circle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCircle); +}; +const ForwardRef = forwardRef(SvgCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/CircleSpark.tsx b/packages/iconoir-react/src/CircleSpark.tsx index 141bb982..2ff2213a 100644 --- a/packages/iconoir-react/src/CircleSpark.tsx +++ b/packages/iconoir-react/src/CircleSpark.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCircleSpark( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCircleSpark = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgCircleSpark( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCircleSpark); +}; +const ForwardRef = forwardRef(SvgCircleSpark); export default ForwardRef; diff --git a/packages/iconoir-react/src/City.tsx b/packages/iconoir-react/src/City.tsx index 0da0e45b..13e561bb 100644 --- a/packages/iconoir-react/src/City.tsx +++ b/packages/iconoir-react/src/City.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCity( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCity = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCity( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCity); +}; +const ForwardRef = forwardRef(SvgCity); export default ForwardRef; diff --git a/packages/iconoir-react/src/CleanWater.tsx b/packages/iconoir-react/src/CleanWater.tsx index 2b1742a9..8b7c9ffa 100644 --- a/packages/iconoir-react/src/CleanWater.tsx +++ b/packages/iconoir-react/src/CleanWater.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCleanWater( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCleanWater = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgCleanWater( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgCleanWater); +}; +const ForwardRef = forwardRef(SvgCleanWater); export default ForwardRef; diff --git a/packages/iconoir-react/src/ClipboardCheck.tsx b/packages/iconoir-react/src/ClipboardCheck.tsx index 194147cc..5ed314e3 100644 --- a/packages/iconoir-react/src/ClipboardCheck.tsx +++ b/packages/iconoir-react/src/ClipboardCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgClipboardCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgClipboardCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgClipboardCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgClipboardCheck); +}; +const ForwardRef = forwardRef(SvgClipboardCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/Clock.tsx b/packages/iconoir-react/src/Clock.tsx index 974f7f34..2eeed252 100644 --- a/packages/iconoir-react/src/Clock.tsx +++ b/packages/iconoir-react/src/Clock.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgClock( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgClock = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgClock( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgClock); +}; +const ForwardRef = forwardRef(SvgClock); export default ForwardRef; diff --git a/packages/iconoir-react/src/ClockRotateRight.tsx b/packages/iconoir-react/src/ClockRotateRight.tsx index 70c0374a..46509991 100644 --- a/packages/iconoir-react/src/ClockRotateRight.tsx +++ b/packages/iconoir-react/src/ClockRotateRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgClockRotateRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgClockRotateRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgClockRotateRight( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgClockRotateRight); +}; +const ForwardRef = forwardRef(SvgClockRotateRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/ClosedCaptions.tsx b/packages/iconoir-react/src/ClosedCaptions.tsx index e66a699e..98c48d2d 100644 --- a/packages/iconoir-react/src/ClosedCaptions.tsx +++ b/packages/iconoir-react/src/ClosedCaptions.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgClosedCaptions( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgClosedCaptions = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,27 +13,27 @@ function SvgClosedCaptions( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgClosedCaptions); +}; +const ForwardRef = forwardRef(SvgClosedCaptions); export default ForwardRef; diff --git a/packages/iconoir-react/src/Closet.tsx b/packages/iconoir-react/src/Closet.tsx index 6a0c1ccc..a2810aab 100644 --- a/packages/iconoir-react/src/Closet.tsx +++ b/packages/iconoir-react/src/Closet.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloset( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCloset = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgCloset( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCloset); +}; +const ForwardRef = forwardRef(SvgCloset); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cloud.tsx b/packages/iconoir-react/src/Cloud.tsx index e52441c2..fcf23675 100644 --- a/packages/iconoir-react/src/Cloud.tsx +++ b/packages/iconoir-react/src/Cloud.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloud( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCloud = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgCloud( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCloud); +}; +const ForwardRef = forwardRef(SvgCloud); export default ForwardRef; diff --git a/packages/iconoir-react/src/CloudBookAlt.tsx b/packages/iconoir-react/src/CloudBookAlt.tsx index 3624fd30..94aaee75 100644 --- a/packages/iconoir-react/src/CloudBookAlt.tsx +++ b/packages/iconoir-react/src/CloudBookAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudBookAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCloudBookAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCloudBookAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCloudBookAlt); +}; +const ForwardRef = forwardRef(SvgCloudBookAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/CloudCheck.tsx b/packages/iconoir-react/src/CloudCheck.tsx index 1f850343..571de4c3 100644 --- a/packages/iconoir-react/src/CloudCheck.tsx +++ b/packages/iconoir-react/src/CloudCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCloudCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCloudCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCloudCheck); +}; +const ForwardRef = forwardRef(SvgCloudCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/CloudDesync.tsx b/packages/iconoir-react/src/CloudDesync.tsx index 8f21bdfa..6e4c34a7 100644 --- a/packages/iconoir-react/src/CloudDesync.tsx +++ b/packages/iconoir-react/src/CloudDesync.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudDesync( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCloudDesync = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgCloudDesync( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCloudDesync); +}; +const ForwardRef = forwardRef(SvgCloudDesync); export default ForwardRef; diff --git a/packages/iconoir-react/src/CloudDownload.tsx b/packages/iconoir-react/src/CloudDownload.tsx index dddc40ac..56ea2bcb 100644 --- a/packages/iconoir-react/src/CloudDownload.tsx +++ b/packages/iconoir-react/src/CloudDownload.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudDownload( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCloudDownload = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCloudDownload( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCloudDownload); +}; +const ForwardRef = forwardRef(SvgCloudDownload); export default ForwardRef; diff --git a/packages/iconoir-react/src/CloudError.tsx b/packages/iconoir-react/src/CloudError.tsx index 13ad6815..43b868a0 100644 --- a/packages/iconoir-react/src/CloudError.tsx +++ b/packages/iconoir-react/src/CloudError.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudError( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCloudError = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCloudError( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCloudError); +}; +const ForwardRef = forwardRef(SvgCloudError); export default ForwardRef; diff --git a/packages/iconoir-react/src/CloudSunny.tsx b/packages/iconoir-react/src/CloudSunny.tsx index 5e8a667f..f69bbb78 100644 --- a/packages/iconoir-react/src/CloudSunny.tsx +++ b/packages/iconoir-react/src/CloudSunny.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudSunny( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCloudSunny = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCloudSunny( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCloudSunny); +}; +const ForwardRef = forwardRef(SvgCloudSunny); export default ForwardRef; diff --git a/packages/iconoir-react/src/CloudSync.tsx b/packages/iconoir-react/src/CloudSync.tsx index ff9d57b2..a5c7ebe6 100644 --- a/packages/iconoir-react/src/CloudSync.tsx +++ b/packages/iconoir-react/src/CloudSync.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudSync( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCloudSync = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgCloudSync( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCloudSync); +}; +const ForwardRef = forwardRef(SvgCloudSync); export default ForwardRef; diff --git a/packages/iconoir-react/src/CloudUpload.tsx b/packages/iconoir-react/src/CloudUpload.tsx index 134e309d..c3d6b8e1 100644 --- a/packages/iconoir-react/src/CloudUpload.tsx +++ b/packages/iconoir-react/src/CloudUpload.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCloudUpload( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCloudUpload = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCloudUpload( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCloudUpload); +}; +const ForwardRef = forwardRef(SvgCloudUpload); export default ForwardRef; diff --git a/packages/iconoir-react/src/Clutery.tsx b/packages/iconoir-react/src/Clutery.tsx index 07c98627..9b7bc170 100644 --- a/packages/iconoir-react/src/Clutery.tsx +++ b/packages/iconoir-react/src/Clutery.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgClutery( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgClutery = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgClutery( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgClutery); +}; +const ForwardRef = forwardRef(SvgClutery); export default ForwardRef; diff --git a/packages/iconoir-react/src/Code.tsx b/packages/iconoir-react/src/Code.tsx index 156d0965..db186640 100644 --- a/packages/iconoir-react/src/Code.tsx +++ b/packages/iconoir-react/src/Code.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCode( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCode = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCode( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCode); +}; +const ForwardRef = forwardRef(SvgCode); export default ForwardRef; diff --git a/packages/iconoir-react/src/CodeBrackets.tsx b/packages/iconoir-react/src/CodeBrackets.tsx index c8456bfe..65019e32 100644 --- a/packages/iconoir-react/src/CodeBrackets.tsx +++ b/packages/iconoir-react/src/CodeBrackets.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCodeBrackets( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCodeBrackets = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCodeBrackets( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCodeBrackets); +}; +const ForwardRef = forwardRef(SvgCodeBrackets); export default ForwardRef; diff --git a/packages/iconoir-react/src/CodeBracketsSquare.tsx b/packages/iconoir-react/src/CodeBracketsSquare.tsx index 9827b533..97ac4b7e 100644 --- a/packages/iconoir-react/src/CodeBracketsSquare.tsx +++ b/packages/iconoir-react/src/CodeBracketsSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCodeBracketsSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCodeBracketsSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCodeBracketsSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCodeBracketsSquare); +}; +const ForwardRef = forwardRef(SvgCodeBracketsSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Codepen.tsx b/packages/iconoir-react/src/Codepen.tsx index 6c77bea2..2b4ce3aa 100644 --- a/packages/iconoir-react/src/Codepen.tsx +++ b/packages/iconoir-react/src/Codepen.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCodepen( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCodepen = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCodepen( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCodepen); +}; +const ForwardRef = forwardRef(SvgCodepen); export default ForwardRef; diff --git a/packages/iconoir-react/src/CoffeeCup.tsx b/packages/iconoir-react/src/CoffeeCup.tsx index 1d3dcf88..ec1b90d1 100644 --- a/packages/iconoir-react/src/CoffeeCup.tsx +++ b/packages/iconoir-react/src/CoffeeCup.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCoffeeCup( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCoffeeCup = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCoffeeCup( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCoffeeCup); +}; +const ForwardRef = forwardRef(SvgCoffeeCup); export default ForwardRef; diff --git a/packages/iconoir-react/src/Coin.tsx b/packages/iconoir-react/src/Coin.tsx index 6b38cab4..1900ec7a 100644 --- a/packages/iconoir-react/src/Coin.tsx +++ b/packages/iconoir-react/src/Coin.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCoin( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCoin = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCoin( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCoin); +}; +const ForwardRef = forwardRef(SvgCoin); export default ForwardRef; diff --git a/packages/iconoir-react/src/Coins.tsx b/packages/iconoir-react/src/Coins.tsx index 086a2047..1699fb67 100644 --- a/packages/iconoir-react/src/Coins.tsx +++ b/packages/iconoir-react/src/Coins.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCoins( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCoins = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgCoins( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCoins); +}; +const ForwardRef = forwardRef(SvgCoins); export default ForwardRef; diff --git a/packages/iconoir-react/src/CoinsSwap.tsx b/packages/iconoir-react/src/CoinsSwap.tsx index 231c0eec..b9b6eef6 100644 --- a/packages/iconoir-react/src/CoinsSwap.tsx +++ b/packages/iconoir-react/src/CoinsSwap.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCoinsSwap( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCoinsSwap = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgCoinsSwap( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgCoinsSwap); +}; +const ForwardRef = forwardRef(SvgCoinsSwap); export default ForwardRef; diff --git a/packages/iconoir-react/src/CollageFrame.tsx b/packages/iconoir-react/src/CollageFrame.tsx index ec232f79..d430bfb2 100644 --- a/packages/iconoir-react/src/CollageFrame.tsx +++ b/packages/iconoir-react/src/CollageFrame.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCollageFrame( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCollageFrame = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgCollageFrame( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCollageFrame); +}; +const ForwardRef = forwardRef(SvgCollageFrame); export default ForwardRef; diff --git a/packages/iconoir-react/src/Collapse.tsx b/packages/iconoir-react/src/Collapse.tsx index 418bfc80..853af4c1 100644 --- a/packages/iconoir-react/src/Collapse.tsx +++ b/packages/iconoir-react/src/Collapse.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCollapse( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCollapse = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCollapse( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCollapse); +}; +const ForwardRef = forwardRef(SvgCollapse); export default ForwardRef; diff --git a/packages/iconoir-react/src/ColorFilter.tsx b/packages/iconoir-react/src/ColorFilter.tsx index 715ec4be..f7859ab6 100644 --- a/packages/iconoir-react/src/ColorFilter.tsx +++ b/packages/iconoir-react/src/ColorFilter.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgColorFilter( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgColorFilter = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgColorFilter( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgColorFilter); +}; +const ForwardRef = forwardRef(SvgColorFilter); export default ForwardRef; diff --git a/packages/iconoir-react/src/ColorPicker.tsx b/packages/iconoir-react/src/ColorPicker.tsx index 2e183999..91e29041 100644 --- a/packages/iconoir-react/src/ColorPicker.tsx +++ b/packages/iconoir-react/src/ColorPicker.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgColorPicker( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgColorPicker = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgColorPicker( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgColorPicker); +}; +const ForwardRef = forwardRef(SvgColorPicker); export default ForwardRef; diff --git a/packages/iconoir-react/src/ColorPickerEmpty.tsx b/packages/iconoir-react/src/ColorPickerEmpty.tsx index 92dc38a7..1bf9b495 100644 --- a/packages/iconoir-react/src/ColorPickerEmpty.tsx +++ b/packages/iconoir-react/src/ColorPickerEmpty.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgColorPickerEmpty( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgColorPickerEmpty = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgColorPickerEmpty( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgColorPickerEmpty); +}; +const ForwardRef = forwardRef(SvgColorPickerEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/ColorWheel.tsx b/packages/iconoir-react/src/ColorWheel.tsx index c4cb7bfd..94429769 100644 --- a/packages/iconoir-react/src/ColorWheel.tsx +++ b/packages/iconoir-react/src/ColorWheel.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgColorWheel( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgColorWheel = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgColorWheel( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgColorWheel); +}; +const ForwardRef = forwardRef(SvgColorWheel); export default ForwardRef; diff --git a/packages/iconoir-react/src/Combine.tsx b/packages/iconoir-react/src/Combine.tsx index 06d7eaf0..58b66db9 100644 --- a/packages/iconoir-react/src/Combine.tsx +++ b/packages/iconoir-react/src/Combine.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCombine( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCombine = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCombine( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCombine); +}; +const ForwardRef = forwardRef(SvgCombine); export default ForwardRef; diff --git a/packages/iconoir-react/src/Commodity.tsx b/packages/iconoir-react/src/Commodity.tsx index 3e281dd5..b6fbffe4 100644 --- a/packages/iconoir-react/src/Commodity.tsx +++ b/packages/iconoir-react/src/Commodity.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCommodity( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCommodity = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,33 +13,33 @@ function SvgCommodity( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCommodity); +}; +const ForwardRef = forwardRef(SvgCommodity); export default ForwardRef; diff --git a/packages/iconoir-react/src/Community.tsx b/packages/iconoir-react/src/Community.tsx index f00ea9dd..cda7276b 100644 --- a/packages/iconoir-react/src/Community.tsx +++ b/packages/iconoir-react/src/Community.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCommunity( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCommunity = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCommunity( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCommunity); +}; +const ForwardRef = forwardRef(SvgCommunity); export default ForwardRef; diff --git a/packages/iconoir-react/src/CompAlignBottom.tsx b/packages/iconoir-react/src/CompAlignBottom.tsx index 90f78a59..27433fca 100644 --- a/packages/iconoir-react/src/CompAlignBottom.tsx +++ b/packages/iconoir-react/src/CompAlignBottom.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompAlignBottom( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCompAlignBottom = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgCompAlignBottom( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCompAlignBottom); +}; +const ForwardRef = forwardRef(SvgCompAlignBottom); export default ForwardRef; diff --git a/packages/iconoir-react/src/CompAlignLeft.tsx b/packages/iconoir-react/src/CompAlignLeft.tsx index 33375d1c..39f955aa 100644 --- a/packages/iconoir-react/src/CompAlignLeft.tsx +++ b/packages/iconoir-react/src/CompAlignLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompAlignLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCompAlignLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgCompAlignLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCompAlignLeft); +}; +const ForwardRef = forwardRef(SvgCompAlignLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/CompAlignRight.tsx b/packages/iconoir-react/src/CompAlignRight.tsx index 85868fc3..691dd7ad 100644 --- a/packages/iconoir-react/src/CompAlignRight.tsx +++ b/packages/iconoir-react/src/CompAlignRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompAlignRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCompAlignRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgCompAlignRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCompAlignRight); +}; +const ForwardRef = forwardRef(SvgCompAlignRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/CompAlignTop.tsx b/packages/iconoir-react/src/CompAlignTop.tsx index 6e2302c0..b9772912 100644 --- a/packages/iconoir-react/src/CompAlignTop.tsx +++ b/packages/iconoir-react/src/CompAlignTop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompAlignTop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCompAlignTop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgCompAlignTop( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCompAlignTop); +}; +const ForwardRef = forwardRef(SvgCompAlignTop); export default ForwardRef; diff --git a/packages/iconoir-react/src/CompactDisc.tsx b/packages/iconoir-react/src/CompactDisc.tsx index 3afcf8cc..2501f307 100644 --- a/packages/iconoir-react/src/CompactDisc.tsx +++ b/packages/iconoir-react/src/CompactDisc.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompactDisc( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCompactDisc = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCompactDisc( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCompactDisc); +}; +const ForwardRef = forwardRef(SvgCompactDisc); export default ForwardRef; diff --git a/packages/iconoir-react/src/Compass.tsx b/packages/iconoir-react/src/Compass.tsx index 4b429eef..11ad3d3d 100644 --- a/packages/iconoir-react/src/Compass.tsx +++ b/packages/iconoir-react/src/Compass.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompass( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCompass = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCompass( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCompass); +}; +const ForwardRef = forwardRef(SvgCompass); export default ForwardRef; diff --git a/packages/iconoir-react/src/Component.tsx b/packages/iconoir-react/src/Component.tsx index f77780a6..66a39977 100644 --- a/packages/iconoir-react/src/Component.tsx +++ b/packages/iconoir-react/src/Component.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgComponent( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgComponent = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgComponent( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgComponent); +}; +const ForwardRef = forwardRef(SvgComponent); export default ForwardRef; diff --git a/packages/iconoir-react/src/Compress.tsx b/packages/iconoir-react/src/Compress.tsx index cba96b7e..a34f6c78 100644 --- a/packages/iconoir-react/src/Compress.tsx +++ b/packages/iconoir-react/src/Compress.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompress( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCompress = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCompress( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCompress); +}; +const ForwardRef = forwardRef(SvgCompress); export default ForwardRef; diff --git a/packages/iconoir-react/src/CompressLines.tsx b/packages/iconoir-react/src/CompressLines.tsx index c691ad72..20e9e9ca 100644 --- a/packages/iconoir-react/src/CompressLines.tsx +++ b/packages/iconoir-react/src/CompressLines.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCompressLines( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCompressLines = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCompressLines( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCompressLines); +}; +const ForwardRef = forwardRef(SvgCompressLines); export default ForwardRef; diff --git a/packages/iconoir-react/src/Computer.tsx b/packages/iconoir-react/src/Computer.tsx index a8139aec..eef629c2 100644 --- a/packages/iconoir-react/src/Computer.tsx +++ b/packages/iconoir-react/src/Computer.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgComputer( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgComputer = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgComputer( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgComputer); +}; +const ForwardRef = forwardRef(SvgComputer); export default ForwardRef; diff --git a/packages/iconoir-react/src/ConstrainedSurface.tsx b/packages/iconoir-react/src/ConstrainedSurface.tsx index 05161543..a4e0b149 100644 --- a/packages/iconoir-react/src/ConstrainedSurface.tsx +++ b/packages/iconoir-react/src/ConstrainedSurface.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgConstrainedSurface( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgConstrainedSurface = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgConstrainedSurface( }; return ( - - + + - + ); -} -const ForwardRef = React.forwardRef(SvgConstrainedSurface); +}; +const ForwardRef = forwardRef(SvgConstrainedSurface); export default ForwardRef; diff --git a/packages/iconoir-react/src/Consumable.tsx b/packages/iconoir-react/src/Consumable.tsx index 81e7b435..8662ca12 100644 --- a/packages/iconoir-react/src/Consumable.tsx +++ b/packages/iconoir-react/src/Consumable.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgConsumable( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgConsumable = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgConsumable( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgConsumable); +}; +const ForwardRef = forwardRef(SvgConsumable); export default ForwardRef; diff --git a/packages/iconoir-react/src/Contactless.tsx b/packages/iconoir-react/src/Contactless.tsx index 7295944f..fe2120d3 100644 --- a/packages/iconoir-react/src/Contactless.tsx +++ b/packages/iconoir-react/src/Contactless.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgContactless( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgContactless = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgContactless( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgContactless); +}; +const ForwardRef = forwardRef(SvgContactless); export default ForwardRef; diff --git a/packages/iconoir-react/src/ControlSlider.tsx b/packages/iconoir-react/src/ControlSlider.tsx index dfe2360f..6d089b66 100644 --- a/packages/iconoir-react/src/ControlSlider.tsx +++ b/packages/iconoir-react/src/ControlSlider.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgControlSlider( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgControlSlider = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgControlSlider( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgControlSlider); +}; +const ForwardRef = forwardRef(SvgControlSlider); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cookie.tsx b/packages/iconoir-react/src/Cookie.tsx index a72ea373..f1a195a1 100644 --- a/packages/iconoir-react/src/Cookie.tsx +++ b/packages/iconoir-react/src/Cookie.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCookie( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCookie = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCookie( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCookie); +}; +const ForwardRef = forwardRef(SvgCookie); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cooling.tsx b/packages/iconoir-react/src/Cooling.tsx index 223de479..24ad1922 100644 --- a/packages/iconoir-react/src/Cooling.tsx +++ b/packages/iconoir-react/src/Cooling.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCooling( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCooling = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCooling( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCooling); +}; +const ForwardRef = forwardRef(SvgCooling); export default ForwardRef; diff --git a/packages/iconoir-react/src/Copy.tsx b/packages/iconoir-react/src/Copy.tsx index d80997fb..06cac868 100644 --- a/packages/iconoir-react/src/Copy.tsx +++ b/packages/iconoir-react/src/Copy.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCopy( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCopy = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCopy( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCopy); +}; +const ForwardRef = forwardRef(SvgCopy); export default ForwardRef; diff --git a/packages/iconoir-react/src/Copyright.tsx b/packages/iconoir-react/src/Copyright.tsx index f09b14ed..9d02221e 100644 --- a/packages/iconoir-react/src/Copyright.tsx +++ b/packages/iconoir-react/src/Copyright.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCopyright( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCopyright = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgCopyright( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgCopyright); +}; +const ForwardRef = forwardRef(SvgCopyright); export default ForwardRef; diff --git a/packages/iconoir-react/src/CornerBottomLeft.tsx b/packages/iconoir-react/src/CornerBottomLeft.tsx index f2cceea1..5c3eb363 100644 --- a/packages/iconoir-react/src/CornerBottomLeft.tsx +++ b/packages/iconoir-react/src/CornerBottomLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCornerBottomLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCornerBottomLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCornerBottomLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCornerBottomLeft); +}; +const ForwardRef = forwardRef(SvgCornerBottomLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/CornerBottomRight.tsx b/packages/iconoir-react/src/CornerBottomRight.tsx index aa1d3a57..83f01007 100644 --- a/packages/iconoir-react/src/CornerBottomRight.tsx +++ b/packages/iconoir-react/src/CornerBottomRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCornerBottomRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCornerBottomRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCornerBottomRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCornerBottomRight); +}; +const ForwardRef = forwardRef(SvgCornerBottomRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/CornerTopLeft.tsx b/packages/iconoir-react/src/CornerTopLeft.tsx index b2b1b598..75c3b6ff 100644 --- a/packages/iconoir-react/src/CornerTopLeft.tsx +++ b/packages/iconoir-react/src/CornerTopLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCornerTopLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCornerTopLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCornerTopLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCornerTopLeft); +}; +const ForwardRef = forwardRef(SvgCornerTopLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/CornerTopRight.tsx b/packages/iconoir-react/src/CornerTopRight.tsx index 8a8e651b..292e4e74 100644 --- a/packages/iconoir-react/src/CornerTopRight.tsx +++ b/packages/iconoir-react/src/CornerTopRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCornerTopRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCornerTopRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCornerTopRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCornerTopRight); +}; +const ForwardRef = forwardRef(SvgCornerTopRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cpu.tsx b/packages/iconoir-react/src/Cpu.tsx index 9e56f2b6..b755d1b7 100644 --- a/packages/iconoir-react/src/Cpu.tsx +++ b/packages/iconoir-react/src/Cpu.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCpu( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCpu = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCpu( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCpu); +}; +const ForwardRef = forwardRef(SvgCpu); export default ForwardRef; diff --git a/packages/iconoir-react/src/CpuWarning.tsx b/packages/iconoir-react/src/CpuWarning.tsx index d6797ec0..c3c84da4 100644 --- a/packages/iconoir-react/src/CpuWarning.tsx +++ b/packages/iconoir-react/src/CpuWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCpuWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCpuWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCpuWarning( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCpuWarning); +}; +const ForwardRef = forwardRef(SvgCpuWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/CrackedEgg.tsx b/packages/iconoir-react/src/CrackedEgg.tsx index ed8edd62..6670465d 100644 --- a/packages/iconoir-react/src/CrackedEgg.tsx +++ b/packages/iconoir-react/src/CrackedEgg.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCrackedEgg( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCrackedEgg = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCrackedEgg( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCrackedEgg); +}; +const ForwardRef = forwardRef(SvgCrackedEgg); export default ForwardRef; diff --git a/packages/iconoir-react/src/CreativeCommons.tsx b/packages/iconoir-react/src/CreativeCommons.tsx index 31a32ddf..4083cc4e 100644 --- a/packages/iconoir-react/src/CreativeCommons.tsx +++ b/packages/iconoir-react/src/CreativeCommons.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCreativeCommons( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCreativeCommons = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgCreativeCommons( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgCreativeCommons); +}; +const ForwardRef = forwardRef(SvgCreativeCommons); export default ForwardRef; diff --git a/packages/iconoir-react/src/CreditCard.tsx b/packages/iconoir-react/src/CreditCard.tsx index cef84828..036b7456 100644 --- a/packages/iconoir-react/src/CreditCard.tsx +++ b/packages/iconoir-react/src/CreditCard.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCreditCard( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCreditCard = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCreditCard( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCreditCard); +}; +const ForwardRef = forwardRef(SvgCreditCard); export default ForwardRef; diff --git a/packages/iconoir-react/src/CreditCards.tsx b/packages/iconoir-react/src/CreditCards.tsx index c35ebb81..15b8e7b9 100644 --- a/packages/iconoir-react/src/CreditCards.tsx +++ b/packages/iconoir-react/src/CreditCards.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCreditCards( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCreditCards = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCreditCards( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCreditCards); +}; +const ForwardRef = forwardRef(SvgCreditCards); export default ForwardRef; diff --git a/packages/iconoir-react/src/Crib.tsx b/packages/iconoir-react/src/Crib.tsx index d3a8ffce..05f0f3b3 100644 --- a/packages/iconoir-react/src/Crib.tsx +++ b/packages/iconoir-react/src/Crib.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCrib( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCrib = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgCrib( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCrib); +}; +const ForwardRef = forwardRef(SvgCrib); export default ForwardRef; diff --git a/packages/iconoir-react/src/Crop.tsx b/packages/iconoir-react/src/Crop.tsx index e6a73dbc..fb65a867 100644 --- a/packages/iconoir-react/src/Crop.tsx +++ b/packages/iconoir-react/src/Crop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCrop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCrop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCrop( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCrop); +}; +const ForwardRef = forwardRef(SvgCrop); export default ForwardRef; diff --git a/packages/iconoir-react/src/CropRotateBl.tsx b/packages/iconoir-react/src/CropRotateBl.tsx index 8c0355a3..eec9dc73 100644 --- a/packages/iconoir-react/src/CropRotateBl.tsx +++ b/packages/iconoir-react/src/CropRotateBl.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCropRotateBl( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCropRotateBl = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCropRotateBl( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCropRotateBl); +}; +const ForwardRef = forwardRef(SvgCropRotateBl); export default ForwardRef; diff --git a/packages/iconoir-react/src/CropRotateBr.tsx b/packages/iconoir-react/src/CropRotateBr.tsx index 092f61e6..23804503 100644 --- a/packages/iconoir-react/src/CropRotateBr.tsx +++ b/packages/iconoir-react/src/CropRotateBr.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCropRotateBr( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCropRotateBr = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCropRotateBr( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCropRotateBr); +}; +const ForwardRef = forwardRef(SvgCropRotateBr); export default ForwardRef; diff --git a/packages/iconoir-react/src/CropRotateTl.tsx b/packages/iconoir-react/src/CropRotateTl.tsx index c4449d04..9a76aabd 100644 --- a/packages/iconoir-react/src/CropRotateTl.tsx +++ b/packages/iconoir-react/src/CropRotateTl.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCropRotateTl( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCropRotateTl = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCropRotateTl( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCropRotateTl); +}; +const ForwardRef = forwardRef(SvgCropRotateTl); export default ForwardRef; diff --git a/packages/iconoir-react/src/CropRotateTr.tsx b/packages/iconoir-react/src/CropRotateTr.tsx index f4d7f4ea..ae504125 100644 --- a/packages/iconoir-react/src/CropRotateTr.tsx +++ b/packages/iconoir-react/src/CropRotateTr.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCropRotateTr( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCropRotateTr = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCropRotateTr( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCropRotateTr); +}; +const ForwardRef = forwardRef(SvgCropRotateTr); export default ForwardRef; diff --git a/packages/iconoir-react/src/Crown.tsx b/packages/iconoir-react/src/Crown.tsx index 2ded009b..0ea356cd 100644 --- a/packages/iconoir-react/src/Crown.tsx +++ b/packages/iconoir-react/src/Crown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCrown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCrown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCrown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCrown); +}; +const ForwardRef = forwardRef(SvgCrown); export default ForwardRef; diff --git a/packages/iconoir-react/src/CrownCircle.tsx b/packages/iconoir-react/src/CrownCircle.tsx index 670c2006..f1963f3c 100644 --- a/packages/iconoir-react/src/CrownCircle.tsx +++ b/packages/iconoir-react/src/CrownCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCrownCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCrownCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCrownCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCrownCircle); +}; +const ForwardRef = forwardRef(SvgCrownCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/Css3.tsx b/packages/iconoir-react/src/Css3.tsx index 476e47a0..0f238599 100644 --- a/packages/iconoir-react/src/Css3.tsx +++ b/packages/iconoir-react/src/Css3.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCss3( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCss3 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCss3( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCss3); +}; +const ForwardRef = forwardRef(SvgCss3); export default ForwardRef; diff --git a/packages/iconoir-react/src/CubeReplaceFace.tsx b/packages/iconoir-react/src/CubeReplaceFace.tsx index d4764bdc..85ff62f5 100644 --- a/packages/iconoir-react/src/CubeReplaceFace.tsx +++ b/packages/iconoir-react/src/CubeReplaceFace.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCubeReplaceFace( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCubeReplaceFace = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,32 @@ function SvgCubeReplaceFace( }; return ( - + + - + ); -} -const ForwardRef = React.forwardRef(SvgCubeReplaceFace); +}; +const ForwardRef = forwardRef(SvgCubeReplaceFace); export default ForwardRef; diff --git a/packages/iconoir-react/src/CursorPointer.tsx b/packages/iconoir-react/src/CursorPointer.tsx index 29f6bd48..594f53f0 100644 --- a/packages/iconoir-react/src/CursorPointer.tsx +++ b/packages/iconoir-react/src/CursorPointer.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCursorPointer( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCursorPointer = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgCursorPointer( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCursorPointer); +}; +const ForwardRef = forwardRef(SvgCursorPointer); export default ForwardRef; diff --git a/packages/iconoir-react/src/CurveArray.tsx b/packages/iconoir-react/src/CurveArray.tsx index 8f09e905..c6e1ec84 100644 --- a/packages/iconoir-react/src/CurveArray.tsx +++ b/packages/iconoir-react/src/CurveArray.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCurveArray( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCurveArray = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCurveArray( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCurveArray); +}; +const ForwardRef = forwardRef(SvgCurveArray); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cut.tsx b/packages/iconoir-react/src/Cut.tsx index 78286474..ee3adee5 100644 --- a/packages/iconoir-react/src/Cut.tsx +++ b/packages/iconoir-react/src/Cut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCut); +}; +const ForwardRef = forwardRef(SvgCut); export default ForwardRef; diff --git a/packages/iconoir-react/src/CutAlt.tsx b/packages/iconoir-react/src/CutAlt.tsx index 36fa88bb..d5995335 100644 --- a/packages/iconoir-react/src/CutAlt.tsx +++ b/packages/iconoir-react/src/CutAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCutAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCutAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCutAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCutAlt); +}; +const ForwardRef = forwardRef(SvgCutAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/CutSolidWithCurve.tsx b/packages/iconoir-react/src/CutSolidWithCurve.tsx index bffb9083..3771e597 100644 --- a/packages/iconoir-react/src/CutSolidWithCurve.tsx +++ b/packages/iconoir-react/src/CutSolidWithCurve.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCutSolidWithCurve( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCutSolidWithCurve = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgCutSolidWithCurve( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCutSolidWithCurve); +}; +const ForwardRef = forwardRef(SvgCutSolidWithCurve); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cycling.tsx b/packages/iconoir-react/src/Cycling.tsx index 07afc1e1..451082f8 100644 --- a/packages/iconoir-react/src/Cycling.tsx +++ b/packages/iconoir-react/src/Cycling.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCycling( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCycling = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgCycling( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCycling); +}; +const ForwardRef = forwardRef(SvgCycling); export default ForwardRef; diff --git a/packages/iconoir-react/src/Cylinder.tsx b/packages/iconoir-react/src/Cylinder.tsx index a589be6e..ed56778a 100644 --- a/packages/iconoir-react/src/Cylinder.tsx +++ b/packages/iconoir-react/src/Cylinder.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgCylinder( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgCylinder = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgCylinder( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgCylinder); +}; +const ForwardRef = forwardRef(SvgCylinder); export default ForwardRef; diff --git a/packages/iconoir-react/src/DashFlag.tsx b/packages/iconoir-react/src/DashFlag.tsx index 326d9172..eadacf84 100644 --- a/packages/iconoir-react/src/DashFlag.tsx +++ b/packages/iconoir-react/src/DashFlag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDashFlag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDashFlag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDashFlag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDashFlag); +}; +const ForwardRef = forwardRef(SvgDashFlag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Dashboard.tsx b/packages/iconoir-react/src/Dashboard.tsx index 96ddeb24..af0dfb65 100644 --- a/packages/iconoir-react/src/Dashboard.tsx +++ b/packages/iconoir-react/src/Dashboard.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDashboard( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDashboard = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgDashboard( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDashboard); +}; +const ForwardRef = forwardRef(SvgDashboard); export default ForwardRef; diff --git a/packages/iconoir-react/src/DashboardDots.tsx b/packages/iconoir-react/src/DashboardDots.tsx index 026f34fa..caedc9b3 100644 --- a/packages/iconoir-react/src/DashboardDots.tsx +++ b/packages/iconoir-react/src/DashboardDots.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDashboardDots( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDashboardDots = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDashboardDots( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDashboardDots); +}; +const ForwardRef = forwardRef(SvgDashboardDots); export default ForwardRef; diff --git a/packages/iconoir-react/src/DashboardSpeed.tsx b/packages/iconoir-react/src/DashboardSpeed.tsx index 8a75aa70..899b414c 100644 --- a/packages/iconoir-react/src/DashboardSpeed.tsx +++ b/packages/iconoir-react/src/DashboardSpeed.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDashboardSpeed( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDashboardSpeed = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDashboardSpeed( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDashboardSpeed); +}; +const ForwardRef = forwardRef(SvgDashboardSpeed); export default ForwardRef; diff --git a/packages/iconoir-react/src/DataTransferBoth.tsx b/packages/iconoir-react/src/DataTransferBoth.tsx index 461c2308..12d11583 100644 --- a/packages/iconoir-react/src/DataTransferBoth.tsx +++ b/packages/iconoir-react/src/DataTransferBoth.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDataTransferBoth( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDataTransferBoth = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDataTransferBoth( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDataTransferBoth); +}; +const ForwardRef = forwardRef(SvgDataTransferBoth); export default ForwardRef; diff --git a/packages/iconoir-react/src/DataTransferCheck.tsx b/packages/iconoir-react/src/DataTransferCheck.tsx index f349df18..0db59a6a 100644 --- a/packages/iconoir-react/src/DataTransferCheck.tsx +++ b/packages/iconoir-react/src/DataTransferCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDataTransferCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDataTransferCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDataTransferCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDataTransferCheck); +}; +const ForwardRef = forwardRef(SvgDataTransferCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/DataTransferDown.tsx b/packages/iconoir-react/src/DataTransferDown.tsx index 8e346620..0257c405 100644 --- a/packages/iconoir-react/src/DataTransferDown.tsx +++ b/packages/iconoir-react/src/DataTransferDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDataTransferDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDataTransferDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDataTransferDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDataTransferDown); +}; +const ForwardRef = forwardRef(SvgDataTransferDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/DataTransferUp.tsx b/packages/iconoir-react/src/DataTransferUp.tsx index 20632e8c..2887476a 100644 --- a/packages/iconoir-react/src/DataTransferUp.tsx +++ b/packages/iconoir-react/src/DataTransferUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDataTransferUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDataTransferUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDataTransferUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDataTransferUp); +}; +const ForwardRef = forwardRef(SvgDataTransferUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/DataTransferWarning.tsx b/packages/iconoir-react/src/DataTransferWarning.tsx index 5d2c40ca..448615d7 100644 --- a/packages/iconoir-react/src/DataTransferWarning.tsx +++ b/packages/iconoir-react/src/DataTransferWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDataTransferWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDataTransferWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDataTransferWarning( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDataTransferWarning); +}; +const ForwardRef = forwardRef(SvgDataTransferWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/DatabaseBackup.tsx b/packages/iconoir-react/src/DatabaseBackup.tsx index 45b83c49..a85379d0 100644 --- a/packages/iconoir-react/src/DatabaseBackup.tsx +++ b/packages/iconoir-react/src/DatabaseBackup.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseBackup( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDatabaseBackup = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,42 +13,42 @@ function SvgDatabaseBackup( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseBackup); +}; +const ForwardRef = forwardRef(SvgDatabaseBackup); export default ForwardRef; diff --git a/packages/iconoir-react/src/DatabaseExport.tsx b/packages/iconoir-react/src/DatabaseExport.tsx index acf07a38..0af6cf06 100644 --- a/packages/iconoir-react/src/DatabaseExport.tsx +++ b/packages/iconoir-react/src/DatabaseExport.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseExport( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDatabaseExport = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDatabaseExport( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseExport); +}; +const ForwardRef = forwardRef(SvgDatabaseExport); export default ForwardRef; diff --git a/packages/iconoir-react/src/DatabaseMonitor.tsx b/packages/iconoir-react/src/DatabaseMonitor.tsx index 21a6c393..f41ee97a 100644 --- a/packages/iconoir-react/src/DatabaseMonitor.tsx +++ b/packages/iconoir-react/src/DatabaseMonitor.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseMonitor( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDatabaseMonitor = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDatabaseMonitor( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseMonitor); +}; +const ForwardRef = forwardRef(SvgDatabaseMonitor); export default ForwardRef; diff --git a/packages/iconoir-react/src/DatabaseRestore.tsx b/packages/iconoir-react/src/DatabaseRestore.tsx index d1dd8ab7..3e18e9c3 100644 --- a/packages/iconoir-react/src/DatabaseRestore.tsx +++ b/packages/iconoir-react/src/DatabaseRestore.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseRestore( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDatabaseRestore = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDatabaseRestore( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseRestore); +}; +const ForwardRef = forwardRef(SvgDatabaseRestore); export default ForwardRef; diff --git a/packages/iconoir-react/src/DatabaseScript.tsx b/packages/iconoir-react/src/DatabaseScript.tsx index 717a84ca..3b867ae9 100644 --- a/packages/iconoir-react/src/DatabaseScript.tsx +++ b/packages/iconoir-react/src/DatabaseScript.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseScript( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDatabaseScript = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDatabaseScript( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseScript); +}; +const ForwardRef = forwardRef(SvgDatabaseScript); export default ForwardRef; diff --git a/packages/iconoir-react/src/DatabaseSettings.tsx b/packages/iconoir-react/src/DatabaseSettings.tsx index 03b4791a..c4228b0c 100644 --- a/packages/iconoir-react/src/DatabaseSettings.tsx +++ b/packages/iconoir-react/src/DatabaseSettings.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseSettings( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDatabaseSettings = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgDatabaseSettings( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseSettings); +}; +const ForwardRef = forwardRef(SvgDatabaseSettings); export default ForwardRef; diff --git a/packages/iconoir-react/src/DatabaseStar.tsx b/packages/iconoir-react/src/DatabaseStar.tsx index 74dd8a1a..5830c112 100644 --- a/packages/iconoir-react/src/DatabaseStar.tsx +++ b/packages/iconoir-react/src/DatabaseStar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseStar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDatabaseStar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDatabaseStar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseStar); +}; +const ForwardRef = forwardRef(SvgDatabaseStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/DatabaseStats.tsx b/packages/iconoir-react/src/DatabaseStats.tsx index 33888655..1e88b25d 100644 --- a/packages/iconoir-react/src/DatabaseStats.tsx +++ b/packages/iconoir-react/src/DatabaseStats.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseStats( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDatabaseStats = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgDatabaseStats( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseStats); +}; +const ForwardRef = forwardRef(SvgDatabaseStats); export default ForwardRef; diff --git a/packages/iconoir-react/src/DatabaseTag.tsx b/packages/iconoir-react/src/DatabaseTag.tsx index 8845cb2e..d80836f1 100644 --- a/packages/iconoir-react/src/DatabaseTag.tsx +++ b/packages/iconoir-react/src/DatabaseTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDatabaseTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDatabaseTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgDatabaseTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDatabaseTag); +}; +const ForwardRef = forwardRef(SvgDatabaseTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Db.tsx b/packages/iconoir-react/src/Db.tsx index d47a8023..caae8382 100644 --- a/packages/iconoir-react/src/Db.tsx +++ b/packages/iconoir-react/src/Db.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDb( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDb = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDb( }; return ( - - + + ); -} -const ForwardRef = React.forwardRef(SvgDb); +}; +const ForwardRef = forwardRef(SvgDb); export default ForwardRef; diff --git a/packages/iconoir-react/src/DbCheck.tsx b/packages/iconoir-react/src/DbCheck.tsx index 2d9b47fc..aba76b64 100644 --- a/packages/iconoir-react/src/DbCheck.tsx +++ b/packages/iconoir-react/src/DbCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDbCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDbCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDbCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDbCheck); +}; +const ForwardRef = forwardRef(SvgDbCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/DbError.tsx b/packages/iconoir-react/src/DbError.tsx index 9801104c..3081dde7 100644 --- a/packages/iconoir-react/src/DbError.tsx +++ b/packages/iconoir-react/src/DbError.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDbError( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDbError = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDbError( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDbError); +}; +const ForwardRef = forwardRef(SvgDbError); export default ForwardRef; diff --git a/packages/iconoir-react/src/DbSearch.tsx b/packages/iconoir-react/src/DbSearch.tsx index bb2fa339..0654183b 100644 --- a/packages/iconoir-react/src/DbSearch.tsx +++ b/packages/iconoir-react/src/DbSearch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDbSearch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDbSearch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDbSearch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDbSearch); +}; +const ForwardRef = forwardRef(SvgDbSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/DbStar.tsx b/packages/iconoir-react/src/DbStar.tsx index 74793541..0c1745a9 100644 --- a/packages/iconoir-react/src/DbStar.tsx +++ b/packages/iconoir-react/src/DbStar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDbStar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDbStar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDbStar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDbStar); +}; +const ForwardRef = forwardRef(SvgDbStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/DbWarning.tsx b/packages/iconoir-react/src/DbWarning.tsx index 9d057232..e1d0b2a3 100644 --- a/packages/iconoir-react/src/DbWarning.tsx +++ b/packages/iconoir-react/src/DbWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDbWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDbWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDbWarning( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDbWarning); +}; +const ForwardRef = forwardRef(SvgDbWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/DeCompress.tsx b/packages/iconoir-react/src/DeCompress.tsx index 6a698776..1d023ff4 100644 --- a/packages/iconoir-react/src/DeCompress.tsx +++ b/packages/iconoir-react/src/DeCompress.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDeCompress( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDeCompress = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDeCompress( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDeCompress); +}; +const ForwardRef = forwardRef(SvgDeCompress); export default ForwardRef; diff --git a/packages/iconoir-react/src/DeleteCircle.tsx b/packages/iconoir-react/src/DeleteCircle.tsx index df507744..ab4e2d5a 100644 --- a/packages/iconoir-react/src/DeleteCircle.tsx +++ b/packages/iconoir-react/src/DeleteCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDeleteCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDeleteCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDeleteCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDeleteCircle); +}; +const ForwardRef = forwardRef(SvgDeleteCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/Delivery.tsx b/packages/iconoir-react/src/Delivery.tsx index 09b24609..95c03962 100644 --- a/packages/iconoir-react/src/Delivery.tsx +++ b/packages/iconoir-react/src/Delivery.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDelivery( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDelivery = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDelivery( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDelivery); +}; +const ForwardRef = forwardRef(SvgDelivery); export default ForwardRef; diff --git a/packages/iconoir-react/src/DeliveryTruck.tsx b/packages/iconoir-react/src/DeliveryTruck.tsx index d4d5e47c..602a91b8 100644 --- a/packages/iconoir-react/src/DeliveryTruck.tsx +++ b/packages/iconoir-react/src/DeliveryTruck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDeliveryTruck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDeliveryTruck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,41 +13,41 @@ function SvgDeliveryTruck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDeliveryTruck); +}; +const ForwardRef = forwardRef(SvgDeliveryTruck); export default ForwardRef; diff --git a/packages/iconoir-react/src/Depth.tsx b/packages/iconoir-react/src/Depth.tsx index 21d1de6e..89a32ca6 100644 --- a/packages/iconoir-react/src/Depth.tsx +++ b/packages/iconoir-react/src/Depth.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDepth( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDepth = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDepth( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDepth); +}; +const ForwardRef = forwardRef(SvgDepth); export default ForwardRef; diff --git a/packages/iconoir-react/src/DesignNib.tsx b/packages/iconoir-react/src/DesignNib.tsx index 6af5488b..f824a578 100644 --- a/packages/iconoir-react/src/DesignNib.tsx +++ b/packages/iconoir-react/src/DesignNib.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDesignNib( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDesignNib = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgDesignNib( }; return ( - - + + - + ); -} -const ForwardRef = React.forwardRef(SvgDesignNib); +}; +const ForwardRef = forwardRef(SvgDesignNib); export default ForwardRef; diff --git a/packages/iconoir-react/src/DesignPencil.tsx b/packages/iconoir-react/src/DesignPencil.tsx index feaeab3c..6cfda993 100644 --- a/packages/iconoir-react/src/DesignPencil.tsx +++ b/packages/iconoir-react/src/DesignPencil.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDesignPencil( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDesignPencil = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgDesignPencil( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDesignPencil); +}; +const ForwardRef = forwardRef(SvgDesignPencil); export default ForwardRef; diff --git a/packages/iconoir-react/src/Desk.tsx b/packages/iconoir-react/src/Desk.tsx index e7918916..912feff8 100644 --- a/packages/iconoir-react/src/Desk.tsx +++ b/packages/iconoir-react/src/Desk.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDesk( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDesk = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDesk( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDesk); +}; +const ForwardRef = forwardRef(SvgDesk); export default ForwardRef; diff --git a/packages/iconoir-react/src/DevModeLaptop.tsx b/packages/iconoir-react/src/DevModeLaptop.tsx index 95de58c1..adabe6be 100644 --- a/packages/iconoir-react/src/DevModeLaptop.tsx +++ b/packages/iconoir-react/src/DevModeLaptop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDevModeLaptop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDevModeLaptop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgDevModeLaptop( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDevModeLaptop); +}; +const ForwardRef = forwardRef(SvgDevModeLaptop); export default ForwardRef; diff --git a/packages/iconoir-react/src/DevModePhone.tsx b/packages/iconoir-react/src/DevModePhone.tsx index 9fa67a51..1318123c 100644 --- a/packages/iconoir-react/src/DevModePhone.tsx +++ b/packages/iconoir-react/src/DevModePhone.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDevModePhone( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDevModePhone = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgDevModePhone( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDevModePhone); +}; +const ForwardRef = forwardRef(SvgDevModePhone); export default ForwardRef; diff --git a/packages/iconoir-react/src/Developer.tsx b/packages/iconoir-react/src/Developer.tsx index b121f603..3fb6ec90 100644 --- a/packages/iconoir-react/src/Developer.tsx +++ b/packages/iconoir-react/src/Developer.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDeveloper( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDeveloper = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDeveloper( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDeveloper); +}; +const ForwardRef = forwardRef(SvgDeveloper); export default ForwardRef; diff --git a/packages/iconoir-react/src/DewPoint.tsx b/packages/iconoir-react/src/DewPoint.tsx index e1f902d3..881090e5 100644 --- a/packages/iconoir-react/src/DewPoint.tsx +++ b/packages/iconoir-react/src/DewPoint.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDewPoint( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDewPoint = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,38 +13,38 @@ function SvgDewPoint( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDewPoint); +}; +const ForwardRef = forwardRef(SvgDewPoint); export default ForwardRef; diff --git a/packages/iconoir-react/src/Dialpad.tsx b/packages/iconoir-react/src/Dialpad.tsx index 11939aec..26c96e77 100644 --- a/packages/iconoir-react/src/Dialpad.tsx +++ b/packages/iconoir-react/src/Dialpad.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDialpad( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDialpad = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgDialpad( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDialpad); +}; +const ForwardRef = forwardRef(SvgDialpad); export default ForwardRef; diff --git a/packages/iconoir-react/src/Diameter.tsx b/packages/iconoir-react/src/Diameter.tsx index 207b07e4..87f90f46 100644 --- a/packages/iconoir-react/src/Diameter.tsx +++ b/packages/iconoir-react/src/Diameter.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiameter( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDiameter = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDiameter( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDiameter); +}; +const ForwardRef = forwardRef(SvgDiameter); export default ForwardRef; diff --git a/packages/iconoir-react/src/DiceFive.tsx b/packages/iconoir-react/src/DiceFive.tsx index 95978fda..8f4cc86a 100644 --- a/packages/iconoir-react/src/DiceFive.tsx +++ b/packages/iconoir-react/src/DiceFive.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceFive( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDiceFive = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgDiceFive( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDiceFive); +}; +const ForwardRef = forwardRef(SvgDiceFive); export default ForwardRef; diff --git a/packages/iconoir-react/src/DiceFour.tsx b/packages/iconoir-react/src/DiceFour.tsx index bac69cef..a00f03ad 100644 --- a/packages/iconoir-react/src/DiceFour.tsx +++ b/packages/iconoir-react/src/DiceFour.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceFour( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDiceFour = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgDiceFour( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDiceFour); +}; +const ForwardRef = forwardRef(SvgDiceFour); export default ForwardRef; diff --git a/packages/iconoir-react/src/DiceOne.tsx b/packages/iconoir-react/src/DiceOne.tsx index 7d88e447..2b5d8183 100644 --- a/packages/iconoir-react/src/DiceOne.tsx +++ b/packages/iconoir-react/src/DiceOne.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceOne( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDiceOne = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgDiceOne( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDiceOne); +}; +const ForwardRef = forwardRef(SvgDiceOne); export default ForwardRef; diff --git a/packages/iconoir-react/src/DiceSix.tsx b/packages/iconoir-react/src/DiceSix.tsx index 973b7de9..3998c507 100644 --- a/packages/iconoir-react/src/DiceSix.tsx +++ b/packages/iconoir-react/src/DiceSix.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceSix( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDiceSix = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgDiceSix( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDiceSix); +}; +const ForwardRef = forwardRef(SvgDiceSix); export default ForwardRef; diff --git a/packages/iconoir-react/src/DiceThree.tsx b/packages/iconoir-react/src/DiceThree.tsx index a36ea6dc..b1f98ee8 100644 --- a/packages/iconoir-react/src/DiceThree.tsx +++ b/packages/iconoir-react/src/DiceThree.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceThree( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDiceThree = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgDiceThree( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDiceThree); +}; +const ForwardRef = forwardRef(SvgDiceThree); export default ForwardRef; diff --git a/packages/iconoir-react/src/DiceTwo.tsx b/packages/iconoir-react/src/DiceTwo.tsx index 022a154b..fb61ac0f 100644 --- a/packages/iconoir-react/src/DiceTwo.tsx +++ b/packages/iconoir-react/src/DiceTwo.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiceTwo( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDiceTwo = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgDiceTwo( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDiceTwo); +}; +const ForwardRef = forwardRef(SvgDiceTwo); export default ForwardRef; diff --git a/packages/iconoir-react/src/DimmerSwitch.tsx b/packages/iconoir-react/src/DimmerSwitch.tsx index 56a8ddc3..2dc644a6 100644 --- a/packages/iconoir-react/src/DimmerSwitch.tsx +++ b/packages/iconoir-react/src/DimmerSwitch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDimmerSwitch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDimmerSwitch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDimmerSwitch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDimmerSwitch); +}; +const ForwardRef = forwardRef(SvgDimmerSwitch); export default ForwardRef; diff --git a/packages/iconoir-react/src/DirectorChair.tsx b/packages/iconoir-react/src/DirectorChair.tsx index 4cdc0437..cb439b27 100644 --- a/packages/iconoir-react/src/DirectorChair.tsx +++ b/packages/iconoir-react/src/DirectorChair.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDirectorChair( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDirectorChair = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgDirectorChair( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgDirectorChair); +}; +const ForwardRef = forwardRef(SvgDirectorChair); export default ForwardRef; diff --git a/packages/iconoir-react/src/Discord.tsx b/packages/iconoir-react/src/Discord.tsx index 8c688956..5801d580 100644 --- a/packages/iconoir-react/src/Discord.tsx +++ b/packages/iconoir-react/src/Discord.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDiscord( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDiscord = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,42 @@ function SvgDiscord( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgDiscord); +}; +const ForwardRef = forwardRef(SvgDiscord); export default ForwardRef; diff --git a/packages/iconoir-react/src/Dishwasher.tsx b/packages/iconoir-react/src/Dishwasher.tsx index 2aae1ea0..95451e08 100644 --- a/packages/iconoir-react/src/Dishwasher.tsx +++ b/packages/iconoir-react/src/Dishwasher.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDishwasher( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDishwasher = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDishwasher( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDishwasher); +}; +const ForwardRef = forwardRef(SvgDishwasher); export default ForwardRef; diff --git a/packages/iconoir-react/src/Display4K.tsx b/packages/iconoir-react/src/Display4K.tsx index 5d66232a..3de27b9c 100644 --- a/packages/iconoir-react/src/Display4K.tsx +++ b/packages/iconoir-react/src/Display4K.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDisplay4K( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDisplay4K = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgDisplay4K( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDisplay4K); +}; +const ForwardRef = forwardRef(SvgDisplay4K); export default ForwardRef; diff --git a/packages/iconoir-react/src/Divide.tsx b/packages/iconoir-react/src/Divide.tsx index b2f5ea56..f706c256 100644 --- a/packages/iconoir-react/src/Divide.tsx +++ b/packages/iconoir-react/src/Divide.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDivide( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDivide = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDivide( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDivide); +}; +const ForwardRef = forwardRef(SvgDivide); export default ForwardRef; diff --git a/packages/iconoir-react/src/DivideSelection1.tsx b/packages/iconoir-react/src/DivideSelection1.tsx index a1287431..2827c0f2 100644 --- a/packages/iconoir-react/src/DivideSelection1.tsx +++ b/packages/iconoir-react/src/DivideSelection1.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDivideSelection1( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDivideSelection1 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDivideSelection1( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDivideSelection1); +}; +const ForwardRef = forwardRef(SvgDivideSelection1); export default ForwardRef; diff --git a/packages/iconoir-react/src/DivideSelection2.tsx b/packages/iconoir-react/src/DivideSelection2.tsx index 8b14c243..83cb72cf 100644 --- a/packages/iconoir-react/src/DivideSelection2.tsx +++ b/packages/iconoir-react/src/DivideSelection2.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDivideSelection2( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDivideSelection2 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDivideSelection2( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDivideSelection2); +}; +const ForwardRef = forwardRef(SvgDivideSelection2); export default ForwardRef; diff --git a/packages/iconoir-react/src/DivideThree.tsx b/packages/iconoir-react/src/DivideThree.tsx index abecfc0c..2eefe01f 100644 --- a/packages/iconoir-react/src/DivideThree.tsx +++ b/packages/iconoir-react/src/DivideThree.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDivideThree( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDivideThree = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDivideThree( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDivideThree); +}; +const ForwardRef = forwardRef(SvgDivideThree); export default ForwardRef; diff --git a/packages/iconoir-react/src/Dna.tsx b/packages/iconoir-react/src/Dna.tsx index 0fb4e449..1495b945 100644 --- a/packages/iconoir-react/src/Dna.tsx +++ b/packages/iconoir-react/src/Dna.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDna( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDna = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDna( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDna); +}; +const ForwardRef = forwardRef(SvgDna); export default ForwardRef; diff --git a/packages/iconoir-react/src/DocSearch.tsx b/packages/iconoir-react/src/DocSearch.tsx index 3b33e749..1a2cb8f2 100644 --- a/packages/iconoir-react/src/DocSearch.tsx +++ b/packages/iconoir-react/src/DocSearch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDocSearch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDocSearch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgDocSearch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDocSearch); +}; +const ForwardRef = forwardRef(SvgDocSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/DocSearchAlt.tsx b/packages/iconoir-react/src/DocSearchAlt.tsx index b0c229d5..77e71907 100644 --- a/packages/iconoir-react/src/DocSearchAlt.tsx +++ b/packages/iconoir-react/src/DocSearchAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDocSearchAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDocSearchAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgDocSearchAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDocSearchAlt); +}; +const ForwardRef = forwardRef(SvgDocSearchAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/DocStar.tsx b/packages/iconoir-react/src/DocStar.tsx index ed88e735..329c2260 100644 --- a/packages/iconoir-react/src/DocStar.tsx +++ b/packages/iconoir-react/src/DocStar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDocStar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDocStar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgDocStar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDocStar); +}; +const ForwardRef = forwardRef(SvgDocStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/DocStarAlt.tsx b/packages/iconoir-react/src/DocStarAlt.tsx index 96c4597d..72e2a9f1 100644 --- a/packages/iconoir-react/src/DocStarAlt.tsx +++ b/packages/iconoir-react/src/DocStarAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDocStarAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDocStarAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDocStarAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDocStarAlt); +}; +const ForwardRef = forwardRef(SvgDocStarAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/DogecoinCircle.tsx b/packages/iconoir-react/src/DogecoinCircle.tsx index 4bc5d6d7..f3b2b9dd 100644 --- a/packages/iconoir-react/src/DogecoinCircle.tsx +++ b/packages/iconoir-react/src/DogecoinCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDogecoinCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDogecoinCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgDogecoinCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDogecoinCircle); +}; +const ForwardRef = forwardRef(SvgDogecoinCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/DogecoinRotateOut.tsx b/packages/iconoir-react/src/DogecoinRotateOut.tsx index 4289c626..6f3301ce 100644 --- a/packages/iconoir-react/src/DogecoinRotateOut.tsx +++ b/packages/iconoir-react/src/DogecoinRotateOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDogecoinRotateOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDogecoinRotateOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,46 +13,46 @@ function SvgDogecoinRotateOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDogecoinRotateOut); +}; +const ForwardRef = forwardRef(SvgDogecoinRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/Dollar.tsx b/packages/iconoir-react/src/Dollar.tsx index 7263166d..e5facc07 100644 --- a/packages/iconoir-react/src/Dollar.tsx +++ b/packages/iconoir-react/src/Dollar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDollar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDollar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDollar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDollar); +}; +const ForwardRef = forwardRef(SvgDollar); export default ForwardRef; diff --git a/packages/iconoir-react/src/DomoticIssue.tsx b/packages/iconoir-react/src/DomoticIssue.tsx index 0ca917fd..4fe39b21 100644 --- a/packages/iconoir-react/src/DomoticIssue.tsx +++ b/packages/iconoir-react/src/DomoticIssue.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDomoticIssue( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDomoticIssue = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDomoticIssue( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDomoticIssue); +}; +const ForwardRef = forwardRef(SvgDomoticIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/Donate.tsx b/packages/iconoir-react/src/Donate.tsx index dafd5c2a..7e75a99f 100644 --- a/packages/iconoir-react/src/Donate.tsx +++ b/packages/iconoir-react/src/Donate.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDonate( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDonate = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,41 +13,41 @@ function SvgDonate( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDonate); +}; +const ForwardRef = forwardRef(SvgDonate); export default ForwardRef; diff --git a/packages/iconoir-react/src/DoubleCheck.tsx b/packages/iconoir-react/src/DoubleCheck.tsx index b806fd30..918cf35b 100644 --- a/packages/iconoir-react/src/DoubleCheck.tsx +++ b/packages/iconoir-react/src/DoubleCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDoubleCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDoubleCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgDoubleCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDoubleCheck); +}; +const ForwardRef = forwardRef(SvgDoubleCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/DownRoundArrow.tsx b/packages/iconoir-react/src/DownRoundArrow.tsx index 826e013e..781fbbf6 100644 --- a/packages/iconoir-react/src/DownRoundArrow.tsx +++ b/packages/iconoir-react/src/DownRoundArrow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDownRoundArrow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDownRoundArrow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgDownRoundArrow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDownRoundArrow); +}; +const ForwardRef = forwardRef(SvgDownRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Download.tsx b/packages/iconoir-react/src/Download.tsx index ab8c6454..f2b44039 100644 --- a/packages/iconoir-react/src/Download.tsx +++ b/packages/iconoir-react/src/Download.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDownload( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDownload = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDownload( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDownload); +}; +const ForwardRef = forwardRef(SvgDownload); export default ForwardRef; diff --git a/packages/iconoir-react/src/DownloadCircle.tsx b/packages/iconoir-react/src/DownloadCircle.tsx index 87630fdb..0355bc9a 100644 --- a/packages/iconoir-react/src/DownloadCircle.tsx +++ b/packages/iconoir-react/src/DownloadCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDownloadCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDownloadCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDownloadCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDownloadCircle); +}; +const ForwardRef = forwardRef(SvgDownloadCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/DownloadDataWindow.tsx b/packages/iconoir-react/src/DownloadDataWindow.tsx index f1ba6701..e389a4a6 100644 --- a/packages/iconoir-react/src/DownloadDataWindow.tsx +++ b/packages/iconoir-react/src/DownloadDataWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDownloadDataWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDownloadDataWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgDownloadDataWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDownloadDataWindow); +}; +const ForwardRef = forwardRef(SvgDownloadDataWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/DownloadSquare.tsx b/packages/iconoir-react/src/DownloadSquare.tsx index 2ed9dbbd..b38791ea 100644 --- a/packages/iconoir-react/src/DownloadSquare.tsx +++ b/packages/iconoir-react/src/DownloadSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDownloadSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDownloadSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgDownloadSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDownloadSquare); +}; +const ForwardRef = forwardRef(SvgDownloadSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Drag.tsx b/packages/iconoir-react/src/Drag.tsx index 97f6f03d..38266458 100644 --- a/packages/iconoir-react/src/Drag.tsx +++ b/packages/iconoir-react/src/Drag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDrag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDrag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDrag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDrag); +}; +const ForwardRef = forwardRef(SvgDrag); export default ForwardRef; diff --git a/packages/iconoir-react/src/DragHandGesture.tsx b/packages/iconoir-react/src/DragHandGesture.tsx index 4edb685e..39cdfd92 100644 --- a/packages/iconoir-react/src/DragHandGesture.tsx +++ b/packages/iconoir-react/src/DragHandGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDragHandGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDragHandGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgDragHandGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDragHandGesture); +}; +const ForwardRef = forwardRef(SvgDragHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/Drawer.tsx b/packages/iconoir-react/src/Drawer.tsx index 475d0d53..e7caf5eb 100644 --- a/packages/iconoir-react/src/Drawer.tsx +++ b/packages/iconoir-react/src/Drawer.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDrawer( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDrawer = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgDrawer( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDrawer); +}; +const ForwardRef = forwardRef(SvgDrawer); export default ForwardRef; diff --git a/packages/iconoir-react/src/Dribbble.tsx b/packages/iconoir-react/src/Dribbble.tsx index 236196cb..b9763463 100644 --- a/packages/iconoir-react/src/Dribbble.tsx +++ b/packages/iconoir-react/src/Dribbble.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDribbble( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDribbble = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,36 @@ function SvgDribbble( }; return ( + + ); -} -const ForwardRef = React.forwardRef(SvgDribbble); +}; +const ForwardRef = forwardRef(SvgDribbble); export default ForwardRef; diff --git a/packages/iconoir-react/src/Drone.tsx b/packages/iconoir-react/src/Drone.tsx index 605c4b2a..bf5fc312 100644 --- a/packages/iconoir-react/src/Drone.tsx +++ b/packages/iconoir-react/src/Drone.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDrone( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDrone = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,43 +13,43 @@ function SvgDrone( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDrone); +}; +const ForwardRef = forwardRef(SvgDrone); export default ForwardRef; diff --git a/packages/iconoir-react/src/DroneChargeFull.tsx b/packages/iconoir-react/src/DroneChargeFull.tsx index acddb556..ce6284e7 100644 --- a/packages/iconoir-react/src/DroneChargeFull.tsx +++ b/packages/iconoir-react/src/DroneChargeFull.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneChargeFull( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDroneChargeFull = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,53 +13,53 @@ function SvgDroneChargeFull( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDroneChargeFull); +}; +const ForwardRef = forwardRef(SvgDroneChargeFull); export default ForwardRef; diff --git a/packages/iconoir-react/src/DroneChargeHalf.tsx b/packages/iconoir-react/src/DroneChargeHalf.tsx index 4daaf46f..337bfcd1 100644 --- a/packages/iconoir-react/src/DroneChargeHalf.tsx +++ b/packages/iconoir-react/src/DroneChargeHalf.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneChargeHalf( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDroneChargeHalf = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,53 +13,53 @@ function SvgDroneChargeHalf( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDroneChargeHalf); +}; +const ForwardRef = forwardRef(SvgDroneChargeHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/DroneChargeLow.tsx b/packages/iconoir-react/src/DroneChargeLow.tsx index 4f48d2f0..70ec562f 100644 --- a/packages/iconoir-react/src/DroneChargeLow.tsx +++ b/packages/iconoir-react/src/DroneChargeLow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneChargeLow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDroneChargeLow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,53 +13,53 @@ function SvgDroneChargeLow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDroneChargeLow); +}; +const ForwardRef = forwardRef(SvgDroneChargeLow); export default ForwardRef; diff --git a/packages/iconoir-react/src/DroneCheck.tsx b/packages/iconoir-react/src/DroneCheck.tsx index bdfb986b..a001d44c 100644 --- a/packages/iconoir-react/src/DroneCheck.tsx +++ b/packages/iconoir-react/src/DroneCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDroneCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,49 +13,49 @@ function SvgDroneCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDroneCheck); +}; +const ForwardRef = forwardRef(SvgDroneCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/DroneError.tsx b/packages/iconoir-react/src/DroneError.tsx index fa0a4486..d07982d2 100644 --- a/packages/iconoir-react/src/DroneError.tsx +++ b/packages/iconoir-react/src/DroneError.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneError( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDroneError = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,49 +13,49 @@ function SvgDroneError( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDroneError); +}; +const ForwardRef = forwardRef(SvgDroneError); export default ForwardRef; diff --git a/packages/iconoir-react/src/DroneLanding.tsx b/packages/iconoir-react/src/DroneLanding.tsx index cd439371..8a823a56 100644 --- a/packages/iconoir-react/src/DroneLanding.tsx +++ b/packages/iconoir-react/src/DroneLanding.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneLanding( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDroneLanding = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,49 +13,49 @@ function SvgDroneLanding( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDroneLanding); +}; +const ForwardRef = forwardRef(SvgDroneLanding); export default ForwardRef; diff --git a/packages/iconoir-react/src/DroneRefresh.tsx b/packages/iconoir-react/src/DroneRefresh.tsx index f1b59186..fa7804bb 100644 --- a/packages/iconoir-react/src/DroneRefresh.tsx +++ b/packages/iconoir-react/src/DroneRefresh.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneRefresh( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDroneRefresh = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,61 +13,61 @@ function SvgDroneRefresh( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDroneRefresh); +}; +const ForwardRef = forwardRef(SvgDroneRefresh); export default ForwardRef; diff --git a/packages/iconoir-react/src/DroneTakeOff.tsx b/packages/iconoir-react/src/DroneTakeOff.tsx index 926cda69..71be0532 100644 --- a/packages/iconoir-react/src/DroneTakeOff.tsx +++ b/packages/iconoir-react/src/DroneTakeOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroneTakeOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDroneTakeOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,49 +13,49 @@ function SvgDroneTakeOff( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDroneTakeOff); +}; +const ForwardRef = forwardRef(SvgDroneTakeOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/Droplet.tsx b/packages/iconoir-react/src/Droplet.tsx index d72c33e4..13edeed2 100644 --- a/packages/iconoir-react/src/Droplet.tsx +++ b/packages/iconoir-react/src/Droplet.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDroplet( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDroplet = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgDroplet( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDroplet); +}; +const ForwardRef = forwardRef(SvgDroplet); export default ForwardRef; diff --git a/packages/iconoir-react/src/DropletHalf.tsx b/packages/iconoir-react/src/DropletHalf.tsx index 9b28dff8..e110341f 100644 --- a/packages/iconoir-react/src/DropletHalf.tsx +++ b/packages/iconoir-react/src/DropletHalf.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgDropletHalf( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgDropletHalf = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgDropletHalf( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgDropletHalf); +}; +const ForwardRef = forwardRef(SvgDropletHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/EaseCurveControlPoints.tsx b/packages/iconoir-react/src/EaseCurveControlPoints.tsx index 3f4695f4..556c47d9 100644 --- a/packages/iconoir-react/src/EaseCurveControlPoints.tsx +++ b/packages/iconoir-react/src/EaseCurveControlPoints.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseCurveControlPoints( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEaseCurveControlPoints = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEaseCurveControlPoints( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEaseCurveControlPoints); +}; +const ForwardRef = forwardRef(SvgEaseCurveControlPoints); export default ForwardRef; diff --git a/packages/iconoir-react/src/EaseIn.tsx b/packages/iconoir-react/src/EaseIn.tsx index 4c6890a7..b1dbac11 100644 --- a/packages/iconoir-react/src/EaseIn.tsx +++ b/packages/iconoir-react/src/EaseIn.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseIn( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEaseIn = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEaseIn( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEaseIn); +}; +const ForwardRef = forwardRef(SvgEaseIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/EaseInControlPoint.tsx b/packages/iconoir-react/src/EaseInControlPoint.tsx index cb876af4..c0897f35 100644 --- a/packages/iconoir-react/src/EaseInControlPoint.tsx +++ b/packages/iconoir-react/src/EaseInControlPoint.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseInControlPoint( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEaseInControlPoint = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEaseInControlPoint( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEaseInControlPoint); +}; +const ForwardRef = forwardRef(SvgEaseInControlPoint); export default ForwardRef; diff --git a/packages/iconoir-react/src/EaseInOut.tsx b/packages/iconoir-react/src/EaseInOut.tsx index 1cedd495..d055ad08 100644 --- a/packages/iconoir-react/src/EaseInOut.tsx +++ b/packages/iconoir-react/src/EaseInOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseInOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEaseInOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEaseInOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEaseInOut); +}; +const ForwardRef = forwardRef(SvgEaseInOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/EaseOut.tsx b/packages/iconoir-react/src/EaseOut.tsx index 7ac067bc..c1eb7a27 100644 --- a/packages/iconoir-react/src/EaseOut.tsx +++ b/packages/iconoir-react/src/EaseOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEaseOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEaseOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEaseOut); +}; +const ForwardRef = forwardRef(SvgEaseOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/EaseOutControlPoint.tsx b/packages/iconoir-react/src/EaseOutControlPoint.tsx index 9b201f2c..481eddac 100644 --- a/packages/iconoir-react/src/EaseOutControlPoint.tsx +++ b/packages/iconoir-react/src/EaseOutControlPoint.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEaseOutControlPoint( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEaseOutControlPoint = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEaseOutControlPoint( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEaseOutControlPoint); +}; +const ForwardRef = forwardRef(SvgEaseOutControlPoint); export default ForwardRef; diff --git a/packages/iconoir-react/src/EcologyBook.tsx b/packages/iconoir-react/src/EcologyBook.tsx index 4a099e03..75be54f6 100644 --- a/packages/iconoir-react/src/EcologyBook.tsx +++ b/packages/iconoir-react/src/EcologyBook.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEcologyBook( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEcologyBook = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,42 @@ function SvgEcologyBook( }; return ( - + + ); -} -const ForwardRef = React.forwardRef(SvgEcologyBook); +}; +const ForwardRef = forwardRef(SvgEcologyBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/Edit.tsx b/packages/iconoir-react/src/Edit.tsx index ab2a5996..92a0c833 100644 --- a/packages/iconoir-react/src/Edit.tsx +++ b/packages/iconoir-react/src/Edit.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEdit( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEdit = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEdit( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEdit); +}; +const ForwardRef = forwardRef(SvgEdit); export default ForwardRef; diff --git a/packages/iconoir-react/src/EditPencil.tsx b/packages/iconoir-react/src/EditPencil.tsx index db0609ef..80ca116e 100644 --- a/packages/iconoir-react/src/EditPencil.tsx +++ b/packages/iconoir-react/src/EditPencil.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEditPencil( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEditPencil = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEditPencil( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEditPencil); +}; +const ForwardRef = forwardRef(SvgEditPencil); export default ForwardRef; diff --git a/packages/iconoir-react/src/Egg.tsx b/packages/iconoir-react/src/Egg.tsx index c9eb7bf8..6c7a4330 100644 --- a/packages/iconoir-react/src/Egg.tsx +++ b/packages/iconoir-react/src/Egg.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEgg( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEgg = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEgg( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEgg); +}; +const ForwardRef = forwardRef(SvgEgg); export default ForwardRef; diff --git a/packages/iconoir-react/src/Eject.tsx b/packages/iconoir-react/src/Eject.tsx index 0cd8d336..98fe529d 100644 --- a/packages/iconoir-react/src/Eject.tsx +++ b/packages/iconoir-react/src/Eject.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEject( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEject = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgEject( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEject); +}; +const ForwardRef = forwardRef(SvgEject); export default ForwardRef; diff --git a/packages/iconoir-react/src/ElectronicsChip.tsx b/packages/iconoir-react/src/ElectronicsChip.tsx index eeffb80f..98d0721e 100644 --- a/packages/iconoir-react/src/ElectronicsChip.tsx +++ b/packages/iconoir-react/src/ElectronicsChip.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgElectronicsChip( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgElectronicsChip = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgElectronicsChip( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgElectronicsChip); +}; +const ForwardRef = forwardRef(SvgElectronicsChip); export default ForwardRef; diff --git a/packages/iconoir-react/src/ElectronicsTransistor.tsx b/packages/iconoir-react/src/ElectronicsTransistor.tsx index 38751d37..aa1037e8 100644 --- a/packages/iconoir-react/src/ElectronicsTransistor.tsx +++ b/packages/iconoir-react/src/ElectronicsTransistor.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgElectronicsTransistor( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgElectronicsTransistor = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgElectronicsTransistor( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgElectronicsTransistor); +}; +const ForwardRef = forwardRef(SvgElectronicsTransistor); export default ForwardRef; diff --git a/packages/iconoir-react/src/Elevator.tsx b/packages/iconoir-react/src/Elevator.tsx index c5c9dc5d..88d8c16b 100644 --- a/packages/iconoir-react/src/Elevator.tsx +++ b/packages/iconoir-react/src/Elevator.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgElevator( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgElevator = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgElevator( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgElevator); +}; +const ForwardRef = forwardRef(SvgElevator); export default ForwardRef; diff --git a/packages/iconoir-react/src/Emoji.tsx b/packages/iconoir-react/src/Emoji.tsx index 364dbfd0..8ec3c493 100644 --- a/packages/iconoir-react/src/Emoji.tsx +++ b/packages/iconoir-react/src/Emoji.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmoji( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmoji = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgEmoji( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmoji); +}; +const ForwardRef = forwardRef(SvgEmoji); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiBall.tsx b/packages/iconoir-react/src/EmojiBall.tsx index 94d60390..b25b3c9b 100644 --- a/packages/iconoir-react/src/EmojiBall.tsx +++ b/packages/iconoir-react/src/EmojiBall.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiBall( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiBall = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEmojiBall( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiBall); +}; +const ForwardRef = forwardRef(SvgEmojiBall); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiBlinkLeft.tsx b/packages/iconoir-react/src/EmojiBlinkLeft.tsx index 0d56c5a9..17a9f528 100644 --- a/packages/iconoir-react/src/EmojiBlinkLeft.tsx +++ b/packages/iconoir-react/src/EmojiBlinkLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiBlinkLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiBlinkLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgEmojiBlinkLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiBlinkLeft); +}; +const ForwardRef = forwardRef(SvgEmojiBlinkLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiBlinkRight.tsx b/packages/iconoir-react/src/EmojiBlinkRight.tsx index 679c3176..b6ebb505 100644 --- a/packages/iconoir-react/src/EmojiBlinkRight.tsx +++ b/packages/iconoir-react/src/EmojiBlinkRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiBlinkRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiBlinkRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgEmojiBlinkRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiBlinkRight); +}; +const ForwardRef = forwardRef(SvgEmojiBlinkRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiLookDown.tsx b/packages/iconoir-react/src/EmojiLookDown.tsx index a8313909..df74386d 100644 --- a/packages/iconoir-react/src/EmojiLookDown.tsx +++ b/packages/iconoir-react/src/EmojiLookDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiLookDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiLookDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgEmojiLookDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookDown); +}; +const ForwardRef = forwardRef(SvgEmojiLookDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiLookLeft.tsx b/packages/iconoir-react/src/EmojiLookLeft.tsx index bee402b8..be797ca3 100644 --- a/packages/iconoir-react/src/EmojiLookLeft.tsx +++ b/packages/iconoir-react/src/EmojiLookLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiLookLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiLookLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgEmojiLookLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookLeft); +}; +const ForwardRef = forwardRef(SvgEmojiLookLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiLookRight.tsx b/packages/iconoir-react/src/EmojiLookRight.tsx index d8849a88..6261a39e 100644 --- a/packages/iconoir-react/src/EmojiLookRight.tsx +++ b/packages/iconoir-react/src/EmojiLookRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiLookRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiLookRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgEmojiLookRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookRight); +}; +const ForwardRef = forwardRef(SvgEmojiLookRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiLookUp.tsx b/packages/iconoir-react/src/EmojiLookUp.tsx index 2e70caf7..31e41fbb 100644 --- a/packages/iconoir-react/src/EmojiLookUp.tsx +++ b/packages/iconoir-react/src/EmojiLookUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiLookUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiLookUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgEmojiLookUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookUp); +}; +const ForwardRef = forwardRef(SvgEmojiLookUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiPuzzled.tsx b/packages/iconoir-react/src/EmojiPuzzled.tsx index 54bffe10..dfb11ce3 100644 --- a/packages/iconoir-react/src/EmojiPuzzled.tsx +++ b/packages/iconoir-react/src/EmojiPuzzled.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiPuzzled( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiPuzzled = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgEmojiPuzzled( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgEmojiPuzzled); +}; +const ForwardRef = forwardRef(SvgEmojiPuzzled); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiQuite.tsx b/packages/iconoir-react/src/EmojiQuite.tsx index 7f54fa9f..da0ace54 100644 --- a/packages/iconoir-react/src/EmojiQuite.tsx +++ b/packages/iconoir-react/src/EmojiQuite.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiQuite( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiQuite = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgEmojiQuite( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiQuite); +}; +const ForwardRef = forwardRef(SvgEmojiQuite); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiReally.tsx b/packages/iconoir-react/src/EmojiReally.tsx index 8e255a5c..825be350 100644 --- a/packages/iconoir-react/src/EmojiReally.tsx +++ b/packages/iconoir-react/src/EmojiReally.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiReally( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiReally = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEmojiReally( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiReally); +}; +const ForwardRef = forwardRef(SvgEmojiReally); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiSad.tsx b/packages/iconoir-react/src/EmojiSad.tsx index 4918c674..1b5a934b 100644 --- a/packages/iconoir-react/src/EmojiSad.tsx +++ b/packages/iconoir-react/src/EmojiSad.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSad( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiSad = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgEmojiSad( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSad); +}; +const ForwardRef = forwardRef(SvgEmojiSad); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiSatisfied.tsx b/packages/iconoir-react/src/EmojiSatisfied.tsx index 0b53033d..3f03c4e2 100644 --- a/packages/iconoir-react/src/EmojiSatisfied.tsx +++ b/packages/iconoir-react/src/EmojiSatisfied.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSatisfied( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiSatisfied = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgEmojiSatisfied( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSatisfied); +}; +const ForwardRef = forwardRef(SvgEmojiSatisfied); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiSingLeft.tsx b/packages/iconoir-react/src/EmojiSingLeft.tsx index d2391938..5d357925 100644 --- a/packages/iconoir-react/src/EmojiSingLeft.tsx +++ b/packages/iconoir-react/src/EmojiSingLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSingLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiSingLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgEmojiSingLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingLeft); +}; +const ForwardRef = forwardRef(SvgEmojiSingLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiSingLeftNote.tsx b/packages/iconoir-react/src/EmojiSingLeftNote.tsx index 2c13598d..9652d8d7 100644 --- a/packages/iconoir-react/src/EmojiSingLeftNote.tsx +++ b/packages/iconoir-react/src/EmojiSingLeftNote.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSingLeftNote( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiSingLeftNote = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,43 +13,46 @@ function SvgEmojiSingLeftNote( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingLeftNote); +}; +const ForwardRef = forwardRef(SvgEmojiSingLeftNote); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiSingRight.tsx b/packages/iconoir-react/src/EmojiSingRight.tsx index 71b9f037..9b06781c 100644 --- a/packages/iconoir-react/src/EmojiSingRight.tsx +++ b/packages/iconoir-react/src/EmojiSingRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSingRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiSingRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,44 +13,44 @@ function SvgEmojiSingRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingRight); +}; +const ForwardRef = forwardRef(SvgEmojiSingRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiSingRightNote.tsx b/packages/iconoir-react/src/EmojiSingRightNote.tsx index a898c388..d473f8bf 100644 --- a/packages/iconoir-react/src/EmojiSingRightNote.tsx +++ b/packages/iconoir-react/src/EmojiSingRightNote.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSingRightNote( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiSingRightNote = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,43 +13,46 @@ function SvgEmojiSingRightNote( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingRightNote); +}; +const ForwardRef = forwardRef(SvgEmojiSingRightNote); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiSurprise.tsx b/packages/iconoir-react/src/EmojiSurprise.tsx index 36f6a2f3..32594eea 100644 --- a/packages/iconoir-react/src/EmojiSurprise.tsx +++ b/packages/iconoir-react/src/EmojiSurprise.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSurprise( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiSurprise = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgEmojiSurprise( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSurprise); +}; +const ForwardRef = forwardRef(SvgEmojiSurprise); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiSurpriseAlt.tsx b/packages/iconoir-react/src/EmojiSurpriseAlt.tsx index 7eab34b4..ebfdbb9e 100644 --- a/packages/iconoir-react/src/EmojiSurpriseAlt.tsx +++ b/packages/iconoir-react/src/EmojiSurpriseAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiSurpriseAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiSurpriseAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgEmojiSurpriseAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiSurpriseAlt); +}; +const ForwardRef = forwardRef(SvgEmojiSurpriseAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiTalkingAngry.tsx b/packages/iconoir-react/src/EmojiTalkingAngry.tsx index 168855d2..45269fd1 100644 --- a/packages/iconoir-react/src/EmojiTalkingAngry.tsx +++ b/packages/iconoir-react/src/EmojiTalkingAngry.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiTalkingAngry( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiTalkingAngry = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEmojiTalkingAngry( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiTalkingAngry); +}; +const ForwardRef = forwardRef(SvgEmojiTalkingAngry); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiTalkingHappy.tsx b/packages/iconoir-react/src/EmojiTalkingHappy.tsx index 4468da8c..600fb7cc 100644 --- a/packages/iconoir-react/src/EmojiTalkingHappy.tsx +++ b/packages/iconoir-react/src/EmojiTalkingHappy.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiTalkingHappy( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiTalkingHappy = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEmojiTalkingHappy( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiTalkingHappy); +}; +const ForwardRef = forwardRef(SvgEmojiTalkingHappy); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiThinkLeft.tsx b/packages/iconoir-react/src/EmojiThinkLeft.tsx index 1ada5ffb..bbdee6e6 100644 --- a/packages/iconoir-react/src/EmojiThinkLeft.tsx +++ b/packages/iconoir-react/src/EmojiThinkLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiThinkLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiThinkLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgEmojiThinkLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiThinkLeft); +}; +const ForwardRef = forwardRef(SvgEmojiThinkLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmojiThinkRight.tsx b/packages/iconoir-react/src/EmojiThinkRight.tsx index b20ed32e..518e1718 100644 --- a/packages/iconoir-react/src/EmojiThinkRight.tsx +++ b/packages/iconoir-react/src/EmojiThinkRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmojiThinkRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmojiThinkRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgEmojiThinkRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmojiThinkRight); +}; +const ForwardRef = forwardRef(SvgEmojiThinkRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/EmptyPage.tsx b/packages/iconoir-react/src/EmptyPage.tsx index 09726bf8..073367fb 100644 --- a/packages/iconoir-react/src/EmptyPage.tsx +++ b/packages/iconoir-react/src/EmptyPage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEmptyPage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEmptyPage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgEmptyPage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEmptyPage); +}; +const ForwardRef = forwardRef(SvgEmptyPage); export default ForwardRef; diff --git a/packages/iconoir-react/src/EnergyUsageWindow.tsx b/packages/iconoir-react/src/EnergyUsageWindow.tsx index f37dbc0b..5a1d6109 100644 --- a/packages/iconoir-react/src/EnergyUsageWindow.tsx +++ b/packages/iconoir-react/src/EnergyUsageWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEnergyUsageWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEnergyUsageWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgEnergyUsageWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEnergyUsageWindow); +}; +const ForwardRef = forwardRef(SvgEnergyUsageWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Enlarge.tsx b/packages/iconoir-react/src/Enlarge.tsx index c3c1a783..4d88d6ca 100644 --- a/packages/iconoir-react/src/Enlarge.tsx +++ b/packages/iconoir-react/src/Enlarge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEnlarge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEnlarge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEnlarge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEnlarge); +}; +const ForwardRef = forwardRef(SvgEnlarge); export default ForwardRef; diff --git a/packages/iconoir-react/src/EnlargeRoundArrow.tsx b/packages/iconoir-react/src/EnlargeRoundArrow.tsx index 4abf5199..9df21bee 100644 --- a/packages/iconoir-react/src/EnlargeRoundArrow.tsx +++ b/packages/iconoir-react/src/EnlargeRoundArrow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEnlargeRoundArrow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEnlargeRoundArrow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgEnlargeRoundArrow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEnlargeRoundArrow); +}; +const ForwardRef = forwardRef(SvgEnlargeRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Erase.tsx b/packages/iconoir-react/src/Erase.tsx index 01421d8b..af0bd46b 100644 --- a/packages/iconoir-react/src/Erase.tsx +++ b/packages/iconoir-react/src/Erase.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgErase( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgErase = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgErase( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgErase); +}; +const ForwardRef = forwardRef(SvgErase); export default ForwardRef; diff --git a/packages/iconoir-react/src/ErrorWindow.tsx b/packages/iconoir-react/src/ErrorWindow.tsx index 1739c76a..4893f9e5 100644 --- a/packages/iconoir-react/src/ErrorWindow.tsx +++ b/packages/iconoir-react/src/ErrorWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgErrorWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgErrorWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgErrorWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgErrorWindow); +}; +const ForwardRef = forwardRef(SvgErrorWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/EthereumCircle.tsx b/packages/iconoir-react/src/EthereumCircle.tsx index af8b0d03..08f0052b 100644 --- a/packages/iconoir-react/src/EthereumCircle.tsx +++ b/packages/iconoir-react/src/EthereumCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEthereumCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEthereumCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgEthereumCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEthereumCircle); +}; +const ForwardRef = forwardRef(SvgEthereumCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/EthereumRotateOut.tsx b/packages/iconoir-react/src/EthereumRotateOut.tsx index 27bfcc75..05cfa437 100644 --- a/packages/iconoir-react/src/EthereumRotateOut.tsx +++ b/packages/iconoir-react/src/EthereumRotateOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEthereumRotateOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEthereumRotateOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgEthereumRotateOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEthereumRotateOut); +}; +const ForwardRef = forwardRef(SvgEthereumRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/Euro.tsx b/packages/iconoir-react/src/Euro.tsx index ca34cb29..dbf879eb 100644 --- a/packages/iconoir-react/src/Euro.tsx +++ b/packages/iconoir-react/src/Euro.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEuro( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEuro = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEuro( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEuro); +}; +const ForwardRef = forwardRef(SvgEuro); export default ForwardRef; diff --git a/packages/iconoir-react/src/EuroSquare.tsx b/packages/iconoir-react/src/EuroSquare.tsx index 1ebd7c3c..8d1b8617 100644 --- a/packages/iconoir-react/src/EuroSquare.tsx +++ b/packages/iconoir-react/src/EuroSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEuroSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEuroSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgEuroSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEuroSquare); +}; +const ForwardRef = forwardRef(SvgEuroSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/EvCharge.tsx b/packages/iconoir-react/src/EvCharge.tsx index e4090e96..a300e36f 100644 --- a/packages/iconoir-react/src/EvCharge.tsx +++ b/packages/iconoir-react/src/EvCharge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvCharge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEvCharge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgEvCharge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEvCharge); +}; +const ForwardRef = forwardRef(SvgEvCharge); export default ForwardRef; diff --git a/packages/iconoir-react/src/EvChargeAlt.tsx b/packages/iconoir-react/src/EvChargeAlt.tsx index e16aa53f..68671879 100644 --- a/packages/iconoir-react/src/EvChargeAlt.tsx +++ b/packages/iconoir-react/src/EvChargeAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvChargeAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEvChargeAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgEvChargeAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEvChargeAlt); +}; +const ForwardRef = forwardRef(SvgEvChargeAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/EvPlug.tsx b/packages/iconoir-react/src/EvPlug.tsx index c1ba0a6e..6943830a 100644 --- a/packages/iconoir-react/src/EvPlug.tsx +++ b/packages/iconoir-react/src/EvPlug.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvPlug( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEvPlug = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgEvPlug( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEvPlug); +}; +const ForwardRef = forwardRef(SvgEvPlug); export default ForwardRef; diff --git a/packages/iconoir-react/src/EvPlugCharging.tsx b/packages/iconoir-react/src/EvPlugCharging.tsx index d1a0d313..1cddaf1d 100644 --- a/packages/iconoir-react/src/EvPlugCharging.tsx +++ b/packages/iconoir-react/src/EvPlugCharging.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvPlugCharging( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEvPlugCharging = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgEvPlugCharging( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEvPlugCharging); +}; +const ForwardRef = forwardRef(SvgEvPlugCharging); export default ForwardRef; diff --git a/packages/iconoir-react/src/EvPlugError.tsx b/packages/iconoir-react/src/EvPlugError.tsx index 4f96befb..346e9b6a 100644 --- a/packages/iconoir-react/src/EvPlugError.tsx +++ b/packages/iconoir-react/src/EvPlugError.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvPlugError( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEvPlugError = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgEvPlugError( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEvPlugError); +}; +const ForwardRef = forwardRef(SvgEvPlugError); export default ForwardRef; diff --git a/packages/iconoir-react/src/EvStation.tsx b/packages/iconoir-react/src/EvStation.tsx index 401c15a3..e141d6a2 100644 --- a/packages/iconoir-react/src/EvStation.tsx +++ b/packages/iconoir-react/src/EvStation.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvStation( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEvStation = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgEvStation( }; return ( + + + - - - ); -} -const ForwardRef = React.forwardRef(SvgEvStation); +}; +const ForwardRef = forwardRef(SvgEvStation); export default ForwardRef; diff --git a/packages/iconoir-react/src/EvTag.tsx b/packages/iconoir-react/src/EvTag.tsx index e44ddba7..350f5f26 100644 --- a/packages/iconoir-react/src/EvTag.tsx +++ b/packages/iconoir-react/src/EvTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEvTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEvTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgEvTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEvTag); +}; +const ForwardRef = forwardRef(SvgEvTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Exclude.tsx b/packages/iconoir-react/src/Exclude.tsx index 37a6fa68..2244479f 100644 --- a/packages/iconoir-react/src/Exclude.tsx +++ b/packages/iconoir-react/src/Exclude.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgExclude( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgExclude = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgExclude( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgExclude); +}; +const ForwardRef = forwardRef(SvgExclude); export default ForwardRef; diff --git a/packages/iconoir-react/src/Expand.tsx b/packages/iconoir-react/src/Expand.tsx index e2c552a4..f08e66b8 100644 --- a/packages/iconoir-react/src/Expand.tsx +++ b/packages/iconoir-react/src/Expand.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgExpand( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgExpand = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgExpand( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgExpand); +}; +const ForwardRef = forwardRef(SvgExpand); export default ForwardRef; diff --git a/packages/iconoir-react/src/ExpandLines.tsx b/packages/iconoir-react/src/ExpandLines.tsx index 3ffa5ede..ceaad060 100644 --- a/packages/iconoir-react/src/ExpandLines.tsx +++ b/packages/iconoir-react/src/ExpandLines.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgExpandLines( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgExpandLines = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgExpandLines( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgExpandLines); +}; +const ForwardRef = forwardRef(SvgExpandLines); export default ForwardRef; diff --git a/packages/iconoir-react/src/Extrude.tsx b/packages/iconoir-react/src/Extrude.tsx index 04389cfa..ca408450 100644 --- a/packages/iconoir-react/src/Extrude.tsx +++ b/packages/iconoir-react/src/Extrude.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgExtrude( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgExtrude = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgExtrude( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgExtrude); +}; +const ForwardRef = forwardRef(SvgExtrude); export default ForwardRef; diff --git a/packages/iconoir-react/src/EyeAlt.tsx b/packages/iconoir-react/src/EyeAlt.tsx index 09b07e20..9bfe9f63 100644 --- a/packages/iconoir-react/src/EyeAlt.tsx +++ b/packages/iconoir-react/src/EyeAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEyeAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEyeAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgEyeAlt( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgEyeAlt); +}; +const ForwardRef = forwardRef(SvgEyeAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/EyeClose.tsx b/packages/iconoir-react/src/EyeClose.tsx index 17a91cf9..4eae9fca 100644 --- a/packages/iconoir-react/src/EyeClose.tsx +++ b/packages/iconoir-react/src/EyeClose.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEyeClose( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEyeClose = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgEyeClose( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEyeClose); +}; +const ForwardRef = forwardRef(SvgEyeClose); export default ForwardRef; diff --git a/packages/iconoir-react/src/EyeEmpty.tsx b/packages/iconoir-react/src/EyeEmpty.tsx index 3054378a..56c15d81 100644 --- a/packages/iconoir-react/src/EyeEmpty.tsx +++ b/packages/iconoir-react/src/EyeEmpty.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEyeEmpty( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEyeEmpty = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgEyeEmpty( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEyeEmpty); +}; +const ForwardRef = forwardRef(SvgEyeEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/EyeOff.tsx b/packages/iconoir-react/src/EyeOff.tsx index 429aa67c..058fec5f 100644 --- a/packages/iconoir-react/src/EyeOff.tsx +++ b/packages/iconoir-react/src/EyeOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgEyeOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgEyeOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgEyeOff( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgEyeOff); +}; +const ForwardRef = forwardRef(SvgEyeOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/FaceId.tsx b/packages/iconoir-react/src/FaceId.tsx index ec388be4..a30f2c21 100644 --- a/packages/iconoir-react/src/FaceId.tsx +++ b/packages/iconoir-react/src/FaceId.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFaceId( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFaceId = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFaceId( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFaceId); +}; +const ForwardRef = forwardRef(SvgFaceId); export default ForwardRef; diff --git a/packages/iconoir-react/src/Facebook.tsx b/packages/iconoir-react/src/Facebook.tsx index bb86b9cb..c80c55ec 100644 --- a/packages/iconoir-react/src/Facebook.tsx +++ b/packages/iconoir-react/src/Facebook.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFacebook( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFacebook = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFacebook( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFacebook); +}; +const ForwardRef = forwardRef(SvgFacebook); export default ForwardRef; diff --git a/packages/iconoir-react/src/FacebookTag.tsx b/packages/iconoir-react/src/FacebookTag.tsx index caf60a07..f7653c2e 100644 --- a/packages/iconoir-react/src/FacebookTag.tsx +++ b/packages/iconoir-react/src/FacebookTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFacebookTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFacebookTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFacebookTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFacebookTag); +}; +const ForwardRef = forwardRef(SvgFacebookTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Facetime.tsx b/packages/iconoir-react/src/Facetime.tsx index e0eacf22..31dc9031 100644 --- a/packages/iconoir-react/src/Facetime.tsx +++ b/packages/iconoir-react/src/Facetime.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFacetime( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFacetime = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgFacetime( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFacetime); +}; +const ForwardRef = forwardRef(SvgFacetime); export default ForwardRef; diff --git a/packages/iconoir-react/src/Farm.tsx b/packages/iconoir-react/src/Farm.tsx index a229aa1b..98fd49c0 100644 --- a/packages/iconoir-react/src/Farm.tsx +++ b/packages/iconoir-react/src/Farm.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFarm( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFarm = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFarm( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFarm); +}; +const ForwardRef = forwardRef(SvgFarm); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastArrowDown.tsx b/packages/iconoir-react/src/FastArrowDown.tsx index 46e417c6..3423503d 100644 --- a/packages/iconoir-react/src/FastArrowDown.tsx +++ b/packages/iconoir-react/src/FastArrowDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastArrowDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFastArrowDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowDown); +}; +const ForwardRef = forwardRef(SvgFastArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastArrowDownBox.tsx b/packages/iconoir-react/src/FastArrowDownBox.tsx index 9004bc27..2a73b166 100644 --- a/packages/iconoir-react/src/FastArrowDownBox.tsx +++ b/packages/iconoir-react/src/FastArrowDownBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowDownBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastArrowDownBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgFastArrowDownBox( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowDownBox); +}; +const ForwardRef = forwardRef(SvgFastArrowDownBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastArrowLeft.tsx b/packages/iconoir-react/src/FastArrowLeft.tsx index 4fe7361e..168f99f2 100644 --- a/packages/iconoir-react/src/FastArrowLeft.tsx +++ b/packages/iconoir-react/src/FastArrowLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastArrowLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFastArrowLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowLeft); +}; +const ForwardRef = forwardRef(SvgFastArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastArrowLeftBox.tsx b/packages/iconoir-react/src/FastArrowLeftBox.tsx index da7b0f46..6d84feb3 100644 --- a/packages/iconoir-react/src/FastArrowLeftBox.tsx +++ b/packages/iconoir-react/src/FastArrowLeftBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowLeftBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastArrowLeftBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgFastArrowLeftBox( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowLeftBox); +}; +const ForwardRef = forwardRef(SvgFastArrowLeftBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastArrowRight.tsx b/packages/iconoir-react/src/FastArrowRight.tsx index c47e8f6c..630c3e19 100644 --- a/packages/iconoir-react/src/FastArrowRight.tsx +++ b/packages/iconoir-react/src/FastArrowRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastArrowRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFastArrowRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowRight); +}; +const ForwardRef = forwardRef(SvgFastArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastArrowRightBox.tsx b/packages/iconoir-react/src/FastArrowRightBox.tsx index a7f21381..1585d452 100644 --- a/packages/iconoir-react/src/FastArrowRightBox.tsx +++ b/packages/iconoir-react/src/FastArrowRightBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowRightBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastArrowRightBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgFastArrowRightBox( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowRightBox); +}; +const ForwardRef = forwardRef(SvgFastArrowRightBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastArrowUp.tsx b/packages/iconoir-react/src/FastArrowUp.tsx index 6bc62318..61ae068e 100644 --- a/packages/iconoir-react/src/FastArrowUp.tsx +++ b/packages/iconoir-react/src/FastArrowUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastArrowUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFastArrowUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowUp); +}; +const ForwardRef = forwardRef(SvgFastArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastArrowUpBox.tsx b/packages/iconoir-react/src/FastArrowUpBox.tsx index 76b281d2..9435e933 100644 --- a/packages/iconoir-react/src/FastArrowUpBox.tsx +++ b/packages/iconoir-react/src/FastArrowUpBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastArrowUpBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastArrowUpBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgFastArrowUpBox( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastArrowUpBox); +}; +const ForwardRef = forwardRef(SvgFastArrowUpBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastDownCircle.tsx b/packages/iconoir-react/src/FastDownCircle.tsx index a4522a5e..e6c7d1ed 100644 --- a/packages/iconoir-react/src/FastDownCircle.tsx +++ b/packages/iconoir-react/src/FastDownCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastDownCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastDownCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFastDownCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastDownCircle); +}; +const ForwardRef = forwardRef(SvgFastDownCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastLeftCircle.tsx b/packages/iconoir-react/src/FastLeftCircle.tsx index bd02ca75..807447aa 100644 --- a/packages/iconoir-react/src/FastLeftCircle.tsx +++ b/packages/iconoir-react/src/FastLeftCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastLeftCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastLeftCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFastLeftCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastLeftCircle); +}; +const ForwardRef = forwardRef(SvgFastLeftCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastRightCircle.tsx b/packages/iconoir-react/src/FastRightCircle.tsx index 855d4b91..492246e9 100644 --- a/packages/iconoir-react/src/FastRightCircle.tsx +++ b/packages/iconoir-react/src/FastRightCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastRightCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastRightCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFastRightCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastRightCircle); +}; +const ForwardRef = forwardRef(SvgFastRightCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/FastUpCircle.tsx b/packages/iconoir-react/src/FastUpCircle.tsx index 5a5beb38..dbddf69c 100644 --- a/packages/iconoir-react/src/FastUpCircle.tsx +++ b/packages/iconoir-react/src/FastUpCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFastUpCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFastUpCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFastUpCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFastUpCircle); +}; +const ForwardRef = forwardRef(SvgFastUpCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/FavouriteBook.tsx b/packages/iconoir-react/src/FavouriteBook.tsx index 77c064c9..64406569 100644 --- a/packages/iconoir-react/src/FavouriteBook.tsx +++ b/packages/iconoir-react/src/FavouriteBook.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFavouriteBook( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFavouriteBook = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgFavouriteBook( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgFavouriteBook); +}; +const ForwardRef = forwardRef(SvgFavouriteBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/FavouriteWindow.tsx b/packages/iconoir-react/src/FavouriteWindow.tsx index af9c9a08..9facdc90 100644 --- a/packages/iconoir-react/src/FavouriteWindow.tsx +++ b/packages/iconoir-react/src/FavouriteWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFavouriteWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFavouriteWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgFavouriteWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFavouriteWindow); +}; +const ForwardRef = forwardRef(SvgFavouriteWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Female.tsx b/packages/iconoir-react/src/Female.tsx index 8ad7269c..41bfba91 100644 --- a/packages/iconoir-react/src/Female.tsx +++ b/packages/iconoir-react/src/Female.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFemale( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFemale = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFemale( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFemale); +}; +const ForwardRef = forwardRef(SvgFemale); export default ForwardRef; diff --git a/packages/iconoir-react/src/Figma.tsx b/packages/iconoir-react/src/Figma.tsx index 1fcf7f32..11453485 100644 --- a/packages/iconoir-react/src/Figma.tsx +++ b/packages/iconoir-react/src/Figma.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFigma( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFigma = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFigma( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFigma); +}; +const ForwardRef = forwardRef(SvgFigma); export default ForwardRef; diff --git a/packages/iconoir-react/src/FileNotFound.tsx b/packages/iconoir-react/src/FileNotFound.tsx index 4aca4fa9..2efcce8d 100644 --- a/packages/iconoir-react/src/FileNotFound.tsx +++ b/packages/iconoir-react/src/FileNotFound.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFileNotFound( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFileNotFound = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFileNotFound( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFileNotFound); +}; +const ForwardRef = forwardRef(SvgFileNotFound); export default ForwardRef; diff --git a/packages/iconoir-react/src/FillColor.tsx b/packages/iconoir-react/src/FillColor.tsx index 776975c1..b05dd6fd 100644 --- a/packages/iconoir-react/src/FillColor.tsx +++ b/packages/iconoir-react/src/FillColor.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFillColor( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFillColor = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgFillColor( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFillColor); +}; +const ForwardRef = forwardRef(SvgFillColor); export default ForwardRef; diff --git a/packages/iconoir-react/src/Fillet3D.tsx b/packages/iconoir-react/src/Fillet3D.tsx index 1360db9d..e2cff2ba 100644 --- a/packages/iconoir-react/src/Fillet3D.tsx +++ b/packages/iconoir-react/src/Fillet3D.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFillet3D( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFillet3D = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgFillet3D( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFillet3D); +}; +const ForwardRef = forwardRef(SvgFillet3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/Filter.tsx b/packages/iconoir-react/src/Filter.tsx index 7e0c2415..db1e491a 100644 --- a/packages/iconoir-react/src/Filter.tsx +++ b/packages/iconoir-react/src/Filter.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFilter( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFilter = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFilter( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFilter); +}; +const ForwardRef = forwardRef(SvgFilter); export default ForwardRef; diff --git a/packages/iconoir-react/src/FilterAlt.tsx b/packages/iconoir-react/src/FilterAlt.tsx index 89ce258c..7454ef55 100644 --- a/packages/iconoir-react/src/FilterAlt.tsx +++ b/packages/iconoir-react/src/FilterAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFilterAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFilterAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFilterAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFilterAlt); +}; +const ForwardRef = forwardRef(SvgFilterAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/FilterList.tsx b/packages/iconoir-react/src/FilterList.tsx index 383adb45..64f85dbb 100644 --- a/packages/iconoir-react/src/FilterList.tsx +++ b/packages/iconoir-react/src/FilterList.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFilterList( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFilterList = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFilterList( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFilterList); +}; +const ForwardRef = forwardRef(SvgFilterList); export default ForwardRef; diff --git a/packages/iconoir-react/src/FilterListCircle.tsx b/packages/iconoir-react/src/FilterListCircle.tsx index 50160670..0d6ffe15 100644 --- a/packages/iconoir-react/src/FilterListCircle.tsx +++ b/packages/iconoir-react/src/FilterListCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFilterListCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFilterListCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFilterListCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFilterListCircle); +}; +const ForwardRef = forwardRef(SvgFilterListCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/Finder.tsx b/packages/iconoir-react/src/Finder.tsx index bc23053c..daa762ed 100644 --- a/packages/iconoir-react/src/Finder.tsx +++ b/packages/iconoir-react/src/Finder.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFinder( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFinder = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgFinder( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFinder); +}; +const ForwardRef = forwardRef(SvgFinder); export default ForwardRef; diff --git a/packages/iconoir-react/src/Fingerprint.tsx b/packages/iconoir-react/src/Fingerprint.tsx index fe88fbb2..98b98b44 100644 --- a/packages/iconoir-react/src/Fingerprint.tsx +++ b/packages/iconoir-react/src/Fingerprint.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprint( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFingerprint = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgFingerprint( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFingerprint); +}; +const ForwardRef = forwardRef(SvgFingerprint); export default ForwardRef; diff --git a/packages/iconoir-react/src/FingerprintCheckCircle.tsx b/packages/iconoir-react/src/FingerprintCheckCircle.tsx index ea774329..89565db6 100644 --- a/packages/iconoir-react/src/FingerprintCheckCircle.tsx +++ b/packages/iconoir-react/src/FingerprintCheckCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintCheckCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFingerprintCheckCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFingerprintCheckCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintCheckCircle); +}; +const ForwardRef = forwardRef(SvgFingerprintCheckCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/FingerprintCircle.tsx b/packages/iconoir-react/src/FingerprintCircle.tsx index 9fcae9bc..85ee7da6 100644 --- a/packages/iconoir-react/src/FingerprintCircle.tsx +++ b/packages/iconoir-react/src/FingerprintCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFingerprintCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFingerprintCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintCircle); +}; +const ForwardRef = forwardRef(SvgFingerprintCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/FingerprintErrorCircle.tsx b/packages/iconoir-react/src/FingerprintErrorCircle.tsx index c2ba23c8..409b2d15 100644 --- a/packages/iconoir-react/src/FingerprintErrorCircle.tsx +++ b/packages/iconoir-react/src/FingerprintErrorCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintErrorCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFingerprintErrorCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFingerprintErrorCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintErrorCircle); +}; +const ForwardRef = forwardRef(SvgFingerprintErrorCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/FingerprintLockCircle.tsx b/packages/iconoir-react/src/FingerprintLockCircle.tsx index c74e4da1..f6ce8c7e 100644 --- a/packages/iconoir-react/src/FingerprintLockCircle.tsx +++ b/packages/iconoir-react/src/FingerprintLockCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintLockCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFingerprintLockCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgFingerprintLockCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintLockCircle); +}; +const ForwardRef = forwardRef(SvgFingerprintLockCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/FingerprintPhone.tsx b/packages/iconoir-react/src/FingerprintPhone.tsx index c1f739ed..b4a40334 100644 --- a/packages/iconoir-react/src/FingerprintPhone.tsx +++ b/packages/iconoir-react/src/FingerprintPhone.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintPhone( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFingerprintPhone = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFingerprintPhone( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintPhone); +}; +const ForwardRef = forwardRef(SvgFingerprintPhone); export default ForwardRef; diff --git a/packages/iconoir-react/src/FingerprintScan.tsx b/packages/iconoir-react/src/FingerprintScan.tsx index 75387698..96d858d5 100644 --- a/packages/iconoir-react/src/FingerprintScan.tsx +++ b/packages/iconoir-react/src/FingerprintScan.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintScan( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFingerprintScan = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFingerprintScan( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintScan); +}; +const ForwardRef = forwardRef(SvgFingerprintScan); export default ForwardRef; diff --git a/packages/iconoir-react/src/FingerprintSquare.tsx b/packages/iconoir-react/src/FingerprintSquare.tsx index 41c0bcb6..adc66ab8 100644 --- a/packages/iconoir-react/src/FingerprintSquare.tsx +++ b/packages/iconoir-react/src/FingerprintSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFingerprintSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFingerprintSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintSquare); +}; +const ForwardRef = forwardRef(SvgFingerprintSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/FingerprintWindow.tsx b/packages/iconoir-react/src/FingerprintWindow.tsx index ca617ac7..bcfd31e1 100644 --- a/packages/iconoir-react/src/FingerprintWindow.tsx +++ b/packages/iconoir-react/src/FingerprintWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFingerprintWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFingerprintWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgFingerprintWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFingerprintWindow); +}; +const ForwardRef = forwardRef(SvgFingerprintWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/FireFlame.tsx b/packages/iconoir-react/src/FireFlame.tsx index 9f80cbaa..5941a4a4 100644 --- a/packages/iconoir-react/src/FireFlame.tsx +++ b/packages/iconoir-react/src/FireFlame.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFireFlame( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFireFlame = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFireFlame( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFireFlame); +}; +const ForwardRef = forwardRef(SvgFireFlame); export default ForwardRef; diff --git a/packages/iconoir-react/src/Fish.tsx b/packages/iconoir-react/src/Fish.tsx index f474ac9b..90f3e7d4 100644 --- a/packages/iconoir-react/src/Fish.tsx +++ b/packages/iconoir-react/src/Fish.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFish( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFish = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFish( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFish); +}; +const ForwardRef = forwardRef(SvgFish); export default ForwardRef; diff --git a/packages/iconoir-react/src/Fishing.tsx b/packages/iconoir-react/src/Fishing.tsx index 8e98b077..e0c3c90c 100644 --- a/packages/iconoir-react/src/Fishing.tsx +++ b/packages/iconoir-react/src/Fishing.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFishing( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFishing = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFishing( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFishing); +}; +const ForwardRef = forwardRef(SvgFishing); export default ForwardRef; diff --git a/packages/iconoir-react/src/Flare.tsx b/packages/iconoir-react/src/Flare.tsx index 48a74977..b973dfc3 100644 --- a/packages/iconoir-react/src/Flare.tsx +++ b/packages/iconoir-react/src/Flare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFlare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFlare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFlare); +}; +const ForwardRef = forwardRef(SvgFlare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Flash.tsx b/packages/iconoir-react/src/Flash.tsx index b6223810..56c57e12 100644 --- a/packages/iconoir-react/src/Flash.tsx +++ b/packages/iconoir-react/src/Flash.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlash( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFlash = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFlash( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFlash); +}; +const ForwardRef = forwardRef(SvgFlash); export default ForwardRef; diff --git a/packages/iconoir-react/src/FlashOff.tsx b/packages/iconoir-react/src/FlashOff.tsx index fe40ee14..d8bffcd3 100644 --- a/packages/iconoir-react/src/FlashOff.tsx +++ b/packages/iconoir-react/src/FlashOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlashOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFlashOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFlashOff( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFlashOff); +}; +const ForwardRef = forwardRef(SvgFlashOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/Flask.tsx b/packages/iconoir-react/src/Flask.tsx index 9c5dbfb4..2f8c51f5 100644 --- a/packages/iconoir-react/src/Flask.tsx +++ b/packages/iconoir-react/src/Flask.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlask( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFlask = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgFlask( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgFlask); +}; +const ForwardRef = forwardRef(SvgFlask); export default ForwardRef; diff --git a/packages/iconoir-react/src/Flip.tsx b/packages/iconoir-react/src/Flip.tsx index 15516e04..2b2742a3 100644 --- a/packages/iconoir-react/src/Flip.tsx +++ b/packages/iconoir-react/src/Flip.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlip( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFlip = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFlip( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFlip); +}; +const ForwardRef = forwardRef(SvgFlip); export default ForwardRef; diff --git a/packages/iconoir-react/src/FlipReverse.tsx b/packages/iconoir-react/src/FlipReverse.tsx index 3ddc74ac..4c0d8b36 100644 --- a/packages/iconoir-react/src/FlipReverse.tsx +++ b/packages/iconoir-react/src/FlipReverse.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlipReverse( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFlipReverse = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFlipReverse( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFlipReverse); +}; +const ForwardRef = forwardRef(SvgFlipReverse); export default ForwardRef; diff --git a/packages/iconoir-react/src/Flower.tsx b/packages/iconoir-react/src/Flower.tsx index 7f407269..8a303d3c 100644 --- a/packages/iconoir-react/src/Flower.tsx +++ b/packages/iconoir-react/src/Flower.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFlower( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFlower = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgFlower( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFlower); +}; +const ForwardRef = forwardRef(SvgFlower); export default ForwardRef; diff --git a/packages/iconoir-react/src/Fluorine.tsx b/packages/iconoir-react/src/Fluorine.tsx index b8eaa096..ea8e817e 100644 --- a/packages/iconoir-react/src/Fluorine.tsx +++ b/packages/iconoir-react/src/Fluorine.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFluorine( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFluorine = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFluorine( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFluorine); +}; +const ForwardRef = forwardRef(SvgFluorine); export default ForwardRef; diff --git a/packages/iconoir-react/src/Fog.tsx b/packages/iconoir-react/src/Fog.tsx index 95b8b4dd..a56a5cf7 100644 --- a/packages/iconoir-react/src/Fog.tsx +++ b/packages/iconoir-react/src/Fog.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFog( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFog = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFog( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFog); +}; +const ForwardRef = forwardRef(SvgFog); export default ForwardRef; diff --git a/packages/iconoir-react/src/Folder.tsx b/packages/iconoir-react/src/Folder.tsx index e3911bc0..cb25093b 100644 --- a/packages/iconoir-react/src/Folder.tsx +++ b/packages/iconoir-react/src/Folder.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFolder( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFolder = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFolder( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFolder); +}; +const ForwardRef = forwardRef(SvgFolder); export default ForwardRef; diff --git a/packages/iconoir-react/src/FolderAlert.tsx b/packages/iconoir-react/src/FolderAlert.tsx index 1095a4da..60c1e60c 100644 --- a/packages/iconoir-react/src/FolderAlert.tsx +++ b/packages/iconoir-react/src/FolderAlert.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFolderAlert( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFolderAlert = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFolderAlert( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFolderAlert); +}; +const ForwardRef = forwardRef(SvgFolderAlert); export default ForwardRef; diff --git a/packages/iconoir-react/src/FolderSettings.tsx b/packages/iconoir-react/src/FolderSettings.tsx index a9a43897..15d01b9f 100644 --- a/packages/iconoir-react/src/FolderSettings.tsx +++ b/packages/iconoir-react/src/FolderSettings.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFolderSettings( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFolderSettings = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgFolderSettings( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFolderSettings); +}; +const ForwardRef = forwardRef(SvgFolderSettings); export default ForwardRef; diff --git a/packages/iconoir-react/src/FontSize.tsx b/packages/iconoir-react/src/FontSize.tsx index fbfeb57d..24776b86 100644 --- a/packages/iconoir-react/src/FontSize.tsx +++ b/packages/iconoir-react/src/FontSize.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFontSize( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFontSize = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFontSize( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFontSize); +}; +const ForwardRef = forwardRef(SvgFontSize); export default ForwardRef; diff --git a/packages/iconoir-react/src/Football.tsx b/packages/iconoir-react/src/Football.tsx index ffd934c7..a7f71cf2 100644 --- a/packages/iconoir-react/src/Football.tsx +++ b/packages/iconoir-react/src/Football.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFootball( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFootball = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgFootball( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFootball); +}; +const ForwardRef = forwardRef(SvgFootball); export default ForwardRef; diff --git a/packages/iconoir-react/src/FootballBall.tsx b/packages/iconoir-react/src/FootballBall.tsx index d2c5baaf..7db89dd0 100644 --- a/packages/iconoir-react/src/FootballBall.tsx +++ b/packages/iconoir-react/src/FootballBall.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFootballBall( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFootballBall = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFootballBall( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFootballBall); +}; +const ForwardRef = forwardRef(SvgFootballBall); export default ForwardRef; diff --git a/packages/iconoir-react/src/Forward.tsx b/packages/iconoir-react/src/Forward.tsx index d8e74c1a..20a2ac5b 100644 --- a/packages/iconoir-react/src/Forward.tsx +++ b/packages/iconoir-react/src/Forward.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgForward( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgForward = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgForward( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgForward); +}; +const ForwardRef = forwardRef(SvgForward); export default ForwardRef; diff --git a/packages/iconoir-react/src/Forward15Seconds.tsx b/packages/iconoir-react/src/Forward15Seconds.tsx index 022de280..d11b9942 100644 --- a/packages/iconoir-react/src/Forward15Seconds.tsx +++ b/packages/iconoir-react/src/Forward15Seconds.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgForward15Seconds( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgForward15Seconds = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgForward15Seconds( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgForward15Seconds); +}; +const ForwardRef = forwardRef(SvgForward15Seconds); export default ForwardRef; diff --git a/packages/iconoir-react/src/ForwardMessage.tsx b/packages/iconoir-react/src/ForwardMessage.tsx index 7e64cbef..115fb4c9 100644 --- a/packages/iconoir-react/src/ForwardMessage.tsx +++ b/packages/iconoir-react/src/ForwardMessage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgForwardMessage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgForwardMessage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgForwardMessage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgForwardMessage); +}; +const ForwardRef = forwardRef(SvgForwardMessage); export default ForwardRef; diff --git a/packages/iconoir-react/src/Frame.tsx b/packages/iconoir-react/src/Frame.tsx index d31e0255..cdb5e17a 100644 --- a/packages/iconoir-react/src/Frame.tsx +++ b/packages/iconoir-react/src/Frame.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrame( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFrame = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,53 +13,53 @@ function SvgFrame( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFrame); +}; +const ForwardRef = forwardRef(SvgFrame); export default ForwardRef; diff --git a/packages/iconoir-react/src/FrameAlt.tsx b/packages/iconoir-react/src/FrameAlt.tsx index 518d0f44..aea4f480 100644 --- a/packages/iconoir-react/src/FrameAlt.tsx +++ b/packages/iconoir-react/src/FrameAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrameAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFrameAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgFrameAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFrameAlt); +}; +const ForwardRef = forwardRef(SvgFrameAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/FrameAltEmpty.tsx b/packages/iconoir-react/src/FrameAltEmpty.tsx index 095363ee..b14c2a1f 100644 --- a/packages/iconoir-react/src/FrameAltEmpty.tsx +++ b/packages/iconoir-react/src/FrameAltEmpty.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrameAltEmpty( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFrameAltEmpty = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFrameAltEmpty( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFrameAltEmpty); +}; +const ForwardRef = forwardRef(SvgFrameAltEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/FrameSelect.tsx b/packages/iconoir-react/src/FrameSelect.tsx index ab7e0ebb..48af3f83 100644 --- a/packages/iconoir-react/src/FrameSelect.tsx +++ b/packages/iconoir-react/src/FrameSelect.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrameSelect( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFrameSelect = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,41 +13,41 @@ function SvgFrameSelect( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFrameSelect); +}; +const ForwardRef = forwardRef(SvgFrameSelect); export default ForwardRef; diff --git a/packages/iconoir-react/src/FrameSimple.tsx b/packages/iconoir-react/src/FrameSimple.tsx index 3cd6a875..d030b910 100644 --- a/packages/iconoir-react/src/FrameSimple.tsx +++ b/packages/iconoir-react/src/FrameSimple.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrameSimple( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFrameSimple = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgFrameSimple( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFrameSimple); +}; +const ForwardRef = forwardRef(SvgFrameSimple); export default ForwardRef; diff --git a/packages/iconoir-react/src/FrameTool.tsx b/packages/iconoir-react/src/FrameTool.tsx index b58ff1cd..f3547361 100644 --- a/packages/iconoir-react/src/FrameTool.tsx +++ b/packages/iconoir-react/src/FrameTool.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFrameTool( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFrameTool = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFrameTool( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFrameTool); +}; +const ForwardRef = forwardRef(SvgFrameTool); export default ForwardRef; diff --git a/packages/iconoir-react/src/Fridge.tsx b/packages/iconoir-react/src/Fridge.tsx index a51066ba..5d4cf99e 100644 --- a/packages/iconoir-react/src/Fridge.tsx +++ b/packages/iconoir-react/src/Fridge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFridge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFridge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgFridge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFridge); +}; +const ForwardRef = forwardRef(SvgFridge); export default ForwardRef; diff --git a/packages/iconoir-react/src/Fx.tsx b/packages/iconoir-react/src/Fx.tsx index ace39342..22f4c3c3 100644 --- a/packages/iconoir-react/src/Fx.tsx +++ b/packages/iconoir-react/src/Fx.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFx( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFx = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgFx( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFx); +}; +const ForwardRef = forwardRef(SvgFx); export default ForwardRef; diff --git a/packages/iconoir-react/src/FxTag.tsx b/packages/iconoir-react/src/FxTag.tsx index 7ffe3633..0a0372cf 100644 --- a/packages/iconoir-react/src/FxTag.tsx +++ b/packages/iconoir-react/src/FxTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgFxTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgFxTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgFxTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgFxTag); +}; +const ForwardRef = forwardRef(SvgFxTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Gamepad.tsx b/packages/iconoir-react/src/Gamepad.tsx index 3680d02e..eaed6775 100644 --- a/packages/iconoir-react/src/Gamepad.tsx +++ b/packages/iconoir-react/src/Gamepad.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGamepad( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGamepad = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGamepad( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGamepad); +}; +const ForwardRef = forwardRef(SvgGamepad); export default ForwardRef; diff --git a/packages/iconoir-react/src/Garage.tsx b/packages/iconoir-react/src/Garage.tsx index 638bc798..7fb993ed 100644 --- a/packages/iconoir-react/src/Garage.tsx +++ b/packages/iconoir-react/src/Garage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGarage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGarage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGarage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGarage); +}; +const ForwardRef = forwardRef(SvgGarage); export default ForwardRef; diff --git a/packages/iconoir-react/src/Gas.tsx b/packages/iconoir-react/src/Gas.tsx index 405277aa..b38f0cdd 100644 --- a/packages/iconoir-react/src/Gas.tsx +++ b/packages/iconoir-react/src/Gas.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGas( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGas = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgGas( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGas); +}; +const ForwardRef = forwardRef(SvgGas); export default ForwardRef; diff --git a/packages/iconoir-react/src/GasTank.tsx b/packages/iconoir-react/src/GasTank.tsx index 5bd84bdf..8a336e88 100644 --- a/packages/iconoir-react/src/GasTank.tsx +++ b/packages/iconoir-react/src/GasTank.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGasTank( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGasTank = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,33 +13,33 @@ function SvgGasTank( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGasTank); +}; +const ForwardRef = forwardRef(SvgGasTank); export default ForwardRef; diff --git a/packages/iconoir-react/src/GasTankDrop.tsx b/packages/iconoir-react/src/GasTankDrop.tsx index 61681c35..33a606d4 100644 --- a/packages/iconoir-react/src/GasTankDrop.tsx +++ b/packages/iconoir-react/src/GasTankDrop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGasTankDrop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGasTankDrop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgGasTankDrop( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGasTankDrop); +}; +const ForwardRef = forwardRef(SvgGasTankDrop); export default ForwardRef; diff --git a/packages/iconoir-react/src/GifFormat.tsx b/packages/iconoir-react/src/GifFormat.tsx index 447cab90..cf58e65a 100644 --- a/packages/iconoir-react/src/GifFormat.tsx +++ b/packages/iconoir-react/src/GifFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGifFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGifFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgGifFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGifFormat); +}; +const ForwardRef = forwardRef(SvgGifFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/Gift.tsx b/packages/iconoir-react/src/Gift.tsx index 257be887..7b03011a 100644 --- a/packages/iconoir-react/src/Gift.tsx +++ b/packages/iconoir-react/src/Gift.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGift( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGift = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGift( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGift); +}; +const ForwardRef = forwardRef(SvgGift); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitBranch.tsx b/packages/iconoir-react/src/GitBranch.tsx index 9365d950..e7e73a79 100644 --- a/packages/iconoir-react/src/GitBranch.tsx +++ b/packages/iconoir-react/src/GitBranch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitBranch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitBranch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGitBranch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGitBranch); +}; +const ForwardRef = forwardRef(SvgGitBranch); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitCherryPickCommit.tsx b/packages/iconoir-react/src/GitCherryPickCommit.tsx index 0ed67cbc..16cfb8d6 100644 --- a/packages/iconoir-react/src/GitCherryPickCommit.tsx +++ b/packages/iconoir-react/src/GitCherryPickCommit.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitCherryPickCommit( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitCherryPickCommit = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGitCherryPickCommit( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGitCherryPickCommit); +}; +const ForwardRef = forwardRef(SvgGitCherryPickCommit); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitCommand.tsx b/packages/iconoir-react/src/GitCommand.tsx index a5a440d2..c733dbd2 100644 --- a/packages/iconoir-react/src/GitCommand.tsx +++ b/packages/iconoir-react/src/GitCommand.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitCommand( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitCommand = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGitCommand( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGitCommand); +}; +const ForwardRef = forwardRef(SvgGitCommand); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitCommit.tsx b/packages/iconoir-react/src/GitCommit.tsx index 688b1a07..210eb4cc 100644 --- a/packages/iconoir-react/src/GitCommit.tsx +++ b/packages/iconoir-react/src/GitCommit.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitCommit( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitCommit = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGitCommit( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGitCommit); +}; +const ForwardRef = forwardRef(SvgGitCommit); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitCompare.tsx b/packages/iconoir-react/src/GitCompare.tsx index fa202a4d..caa53f67 100644 --- a/packages/iconoir-react/src/GitCompare.tsx +++ b/packages/iconoir-react/src/GitCompare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitCompare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitCompare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGitCompare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGitCompare); +}; +const ForwardRef = forwardRef(SvgGitCompare); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitFork.tsx b/packages/iconoir-react/src/GitFork.tsx index 4ed802b8..bf62285b 100644 --- a/packages/iconoir-react/src/GitFork.tsx +++ b/packages/iconoir-react/src/GitFork.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitFork( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitFork = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGitFork( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGitFork); +}; +const ForwardRef = forwardRef(SvgGitFork); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitHub.tsx b/packages/iconoir-react/src/GitHub.tsx index 487910c8..7e246741 100644 --- a/packages/iconoir-react/src/GitHub.tsx +++ b/packages/iconoir-react/src/GitHub.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitHub( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitHub = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgGitHub( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgGitHub); +}; +const ForwardRef = forwardRef(SvgGitHub); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitLabFull.tsx b/packages/iconoir-react/src/GitLabFull.tsx index 7dd2b6da..2eb09fd7 100644 --- a/packages/iconoir-react/src/GitLabFull.tsx +++ b/packages/iconoir-react/src/GitLabFull.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitLabFull( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitLabFull = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgGitLabFull( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGitLabFull); +}; +const ForwardRef = forwardRef(SvgGitLabFull); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitMerge.tsx b/packages/iconoir-react/src/GitMerge.tsx index 086bae33..9b8dc5ca 100644 --- a/packages/iconoir-react/src/GitMerge.tsx +++ b/packages/iconoir-react/src/GitMerge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitMerge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitMerge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGitMerge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGitMerge); +}; +const ForwardRef = forwardRef(SvgGitMerge); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitPullRequest.tsx b/packages/iconoir-react/src/GitPullRequest.tsx index 03899448..7a124e04 100644 --- a/packages/iconoir-react/src/GitPullRequest.tsx +++ b/packages/iconoir-react/src/GitPullRequest.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitPullRequest( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitPullRequest = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGitPullRequest( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGitPullRequest); +}; +const ForwardRef = forwardRef(SvgGitPullRequest); export default ForwardRef; diff --git a/packages/iconoir-react/src/GitPullRequestClosed.tsx b/packages/iconoir-react/src/GitPullRequestClosed.tsx index a90c8945..cad15166 100644 --- a/packages/iconoir-react/src/GitPullRequestClosed.tsx +++ b/packages/iconoir-react/src/GitPullRequestClosed.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGitPullRequestClosed( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGitPullRequestClosed = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGitPullRequestClosed( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGitPullRequestClosed); +}; +const ForwardRef = forwardRef(SvgGitPullRequestClosed); export default ForwardRef; diff --git a/packages/iconoir-react/src/GithubCircle.tsx b/packages/iconoir-react/src/GithubCircle.tsx index 53e1c606..3c1f536d 100644 --- a/packages/iconoir-react/src/GithubCircle.tsx +++ b/packages/iconoir-react/src/GithubCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGithubCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGithubCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,36 @@ function SvgGithubCircle( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgGithubCircle); +}; +const ForwardRef = forwardRef(SvgGithubCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/GlassEmpty.tsx b/packages/iconoir-react/src/GlassEmpty.tsx index ccfd759b..488b3208 100644 --- a/packages/iconoir-react/src/GlassEmpty.tsx +++ b/packages/iconoir-react/src/GlassEmpty.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlassEmpty( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGlassEmpty = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,29 @@ function SvgGlassEmpty( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgGlassEmpty); +}; +const ForwardRef = forwardRef(SvgGlassEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/GlassFragile.tsx b/packages/iconoir-react/src/GlassFragile.tsx index 58b5329f..e6b09684 100644 --- a/packages/iconoir-react/src/GlassFragile.tsx +++ b/packages/iconoir-react/src/GlassFragile.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlassFragile( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGlassFragile = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGlassFragile( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGlassFragile); +}; +const ForwardRef = forwardRef(SvgGlassFragile); export default ForwardRef; diff --git a/packages/iconoir-react/src/GlassHalf.tsx b/packages/iconoir-react/src/GlassHalf.tsx index 0282b231..6dace28f 100644 --- a/packages/iconoir-react/src/GlassHalf.tsx +++ b/packages/iconoir-react/src/GlassHalf.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlassHalf( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGlassHalf = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,26 @@ function SvgGlassHalf( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGlassHalf); +}; +const ForwardRef = forwardRef(SvgGlassHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/GlassHalfAlt.tsx b/packages/iconoir-react/src/GlassHalfAlt.tsx index 2d873a98..8a8bf7ce 100644 --- a/packages/iconoir-react/src/GlassHalfAlt.tsx +++ b/packages/iconoir-react/src/GlassHalfAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlassHalfAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGlassHalfAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,26 @@ function SvgGlassHalfAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGlassHalfAlt); +}; +const ForwardRef = forwardRef(SvgGlassHalfAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Glasses.tsx b/packages/iconoir-react/src/Glasses.tsx index 9d9ef533..43fd929d 100644 --- a/packages/iconoir-react/src/Glasses.tsx +++ b/packages/iconoir-react/src/Glasses.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlasses( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGlasses = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGlasses( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGlasses); +}; +const ForwardRef = forwardRef(SvgGlasses); export default ForwardRef; diff --git a/packages/iconoir-react/src/Globe.tsx b/packages/iconoir-react/src/Globe.tsx index 9bf180d4..f893ce97 100644 --- a/packages/iconoir-react/src/Globe.tsx +++ b/packages/iconoir-react/src/Globe.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGlobe( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGlobe = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGlobe( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGlobe); +}; +const ForwardRef = forwardRef(SvgGlobe); export default ForwardRef; diff --git a/packages/iconoir-react/src/Golf.tsx b/packages/iconoir-react/src/Golf.tsx index 22b81e51..70132402 100644 --- a/packages/iconoir-react/src/Golf.tsx +++ b/packages/iconoir-react/src/Golf.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGolf( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGolf = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGolf( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGolf); +}; +const ForwardRef = forwardRef(SvgGolf); export default ForwardRef; diff --git a/packages/iconoir-react/src/Google.tsx b/packages/iconoir-react/src/Google.tsx index abec1340..df0ec8c0 100644 --- a/packages/iconoir-react/src/Google.tsx +++ b/packages/iconoir-react/src/Google.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGoogle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgGoogle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGoogle); +}; +const ForwardRef = forwardRef(SvgGoogle); export default ForwardRef; diff --git a/packages/iconoir-react/src/GoogleCircle.tsx b/packages/iconoir-react/src/GoogleCircle.tsx index d80c42f8..170a07c0 100644 --- a/packages/iconoir-react/src/GoogleCircle.tsx +++ b/packages/iconoir-react/src/GoogleCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGoogleCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgGoogleCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGoogleCircle); +}; +const ForwardRef = forwardRef(SvgGoogleCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/GoogleDocs.tsx b/packages/iconoir-react/src/GoogleDocs.tsx index d572b3bd..26dad820 100644 --- a/packages/iconoir-react/src/GoogleDocs.tsx +++ b/packages/iconoir-react/src/GoogleDocs.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleDocs( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGoogleDocs = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGoogleDocs( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGoogleDocs); +}; +const ForwardRef = forwardRef(SvgGoogleDocs); export default ForwardRef; diff --git a/packages/iconoir-react/src/GoogleDrive.tsx b/packages/iconoir-react/src/GoogleDrive.tsx index 2debd9ac..cac742ad 100644 --- a/packages/iconoir-react/src/GoogleDrive.tsx +++ b/packages/iconoir-react/src/GoogleDrive.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleDrive( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGoogleDrive = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGoogleDrive( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGoogleDrive); +}; +const ForwardRef = forwardRef(SvgGoogleDrive); export default ForwardRef; diff --git a/packages/iconoir-react/src/GoogleDriveCheck.tsx b/packages/iconoir-react/src/GoogleDriveCheck.tsx index 6a569122..dc9c0e72 100644 --- a/packages/iconoir-react/src/GoogleDriveCheck.tsx +++ b/packages/iconoir-react/src/GoogleDriveCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleDriveCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGoogleDriveCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgGoogleDriveCheck( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgGoogleDriveCheck); +}; +const ForwardRef = forwardRef(SvgGoogleDriveCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/GoogleDriveSync.tsx b/packages/iconoir-react/src/GoogleDriveSync.tsx index b1a0e18e..edd85c2e 100644 --- a/packages/iconoir-react/src/GoogleDriveSync.tsx +++ b/packages/iconoir-react/src/GoogleDriveSync.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleDriveSync( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGoogleDriveSync = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgGoogleDriveSync( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGoogleDriveSync); +}; +const ForwardRef = forwardRef(SvgGoogleDriveSync); export default ForwardRef; diff --git a/packages/iconoir-react/src/GoogleDriveWarning.tsx b/packages/iconoir-react/src/GoogleDriveWarning.tsx index 025a979a..6fca3aca 100644 --- a/packages/iconoir-react/src/GoogleDriveWarning.tsx +++ b/packages/iconoir-react/src/GoogleDriveWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleDriveWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGoogleDriveWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGoogleDriveWarning( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGoogleDriveWarning); +}; +const ForwardRef = forwardRef(SvgGoogleDriveWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/GoogleHome.tsx b/packages/iconoir-react/src/GoogleHome.tsx index b0f2a357..44d1aad4 100644 --- a/packages/iconoir-react/src/GoogleHome.tsx +++ b/packages/iconoir-react/src/GoogleHome.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleHome( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGoogleHome = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgGoogleHome( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGoogleHome); +}; +const ForwardRef = forwardRef(SvgGoogleHome); export default ForwardRef; diff --git a/packages/iconoir-react/src/GoogleOne.tsx b/packages/iconoir-react/src/GoogleOne.tsx index fa6f6444..d604e9bb 100644 --- a/packages/iconoir-react/src/GoogleOne.tsx +++ b/packages/iconoir-react/src/GoogleOne.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGoogleOne( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGoogleOne = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGoogleOne( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGoogleOne); +}; +const ForwardRef = forwardRef(SvgGoogleOne); export default ForwardRef; diff --git a/packages/iconoir-react/src/Gps.tsx b/packages/iconoir-react/src/Gps.tsx index 10184c64..0c088c5a 100644 --- a/packages/iconoir-react/src/Gps.tsx +++ b/packages/iconoir-react/src/Gps.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGps( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGps = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgGps( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGps); +}; +const ForwardRef = forwardRef(SvgGps); export default ForwardRef; diff --git a/packages/iconoir-react/src/GraduationCap.tsx b/packages/iconoir-react/src/GraduationCap.tsx index a61dd263..059175b5 100644 --- a/packages/iconoir-react/src/GraduationCap.tsx +++ b/packages/iconoir-react/src/GraduationCap.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGraduationCap( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGraduationCap = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGraduationCap( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGraduationCap); +}; +const ForwardRef = forwardRef(SvgGraduationCap); export default ForwardRef; diff --git a/packages/iconoir-react/src/GraphDown.tsx b/packages/iconoir-react/src/GraphDown.tsx index 2e231b3a..772b2f53 100644 --- a/packages/iconoir-react/src/GraphDown.tsx +++ b/packages/iconoir-react/src/GraphDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGraphDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGraphDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGraphDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGraphDown); +}; +const ForwardRef = forwardRef(SvgGraphDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/GraphUp.tsx b/packages/iconoir-react/src/GraphUp.tsx index 1d9703ae..8eb4020a 100644 --- a/packages/iconoir-react/src/GraphUp.tsx +++ b/packages/iconoir-react/src/GraphUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGraphUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGraphUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGraphUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGraphUp); +}; +const ForwardRef = forwardRef(SvgGraphUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/GreenBus.tsx b/packages/iconoir-react/src/GreenBus.tsx index 34d891ef..91cf8db1 100644 --- a/packages/iconoir-react/src/GreenBus.tsx +++ b/packages/iconoir-react/src/GreenBus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGreenBus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGreenBus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgGreenBus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGreenBus); +}; +const ForwardRef = forwardRef(SvgGreenBus); export default ForwardRef; diff --git a/packages/iconoir-react/src/GreenTruck.tsx b/packages/iconoir-react/src/GreenTruck.tsx index 9a7bbacc..de6038fa 100644 --- a/packages/iconoir-react/src/GreenTruck.tsx +++ b/packages/iconoir-react/src/GreenTruck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGreenTruck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGreenTruck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,42 @@ function SvgGreenTruck( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgGreenTruck); +}; +const ForwardRef = forwardRef(SvgGreenTruck); export default ForwardRef; diff --git a/packages/iconoir-react/src/GreenVehicle.tsx b/packages/iconoir-react/src/GreenVehicle.tsx index 553798eb..dd0d91df 100644 --- a/packages/iconoir-react/src/GreenVehicle.tsx +++ b/packages/iconoir-react/src/GreenVehicle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGreenVehicle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGreenVehicle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,41 @@ function SvgGreenVehicle( }; return ( + + - ); -} -const ForwardRef = React.forwardRef(SvgGreenVehicle); +}; +const ForwardRef = forwardRef(SvgGreenVehicle); export default ForwardRef; diff --git a/packages/iconoir-react/src/GridAdd.tsx b/packages/iconoir-react/src/GridAdd.tsx index dd72fb27..549ed81a 100644 --- a/packages/iconoir-react/src/GridAdd.tsx +++ b/packages/iconoir-react/src/GridAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGridAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGridAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgGridAdd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGridAdd); +}; +const ForwardRef = forwardRef(SvgGridAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/GridMinus.tsx b/packages/iconoir-react/src/GridMinus.tsx index 86009bef..c240dd03 100644 --- a/packages/iconoir-react/src/GridMinus.tsx +++ b/packages/iconoir-react/src/GridMinus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGridMinus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGridMinus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgGridMinus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGridMinus); +}; +const ForwardRef = forwardRef(SvgGridMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/GridRemove.tsx b/packages/iconoir-react/src/GridRemove.tsx index d38f92d2..db2d908e 100644 --- a/packages/iconoir-react/src/GridRemove.tsx +++ b/packages/iconoir-react/src/GridRemove.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGridRemove( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGridRemove = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgGridRemove( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGridRemove); +}; +const ForwardRef = forwardRef(SvgGridRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/Group.tsx b/packages/iconoir-react/src/Group.tsx index 7600a05d..92177082 100644 --- a/packages/iconoir-react/src/Group.tsx +++ b/packages/iconoir-react/src/Group.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGroup( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGroup = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgGroup( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGroup); +}; +const ForwardRef = forwardRef(SvgGroup); export default ForwardRef; diff --git a/packages/iconoir-react/src/Gym.tsx b/packages/iconoir-react/src/Gym.tsx index 8b6d6d80..543fba5d 100644 --- a/packages/iconoir-react/src/Gym.tsx +++ b/packages/iconoir-react/src/Gym.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgGym( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgGym = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgGym( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgGym); +}; +const ForwardRef = forwardRef(SvgGym); export default ForwardRef; diff --git a/packages/iconoir-react/src/HalfCookie.tsx b/packages/iconoir-react/src/HalfCookie.tsx index 5d752e8d..86cac47c 100644 --- a/packages/iconoir-react/src/HalfCookie.tsx +++ b/packages/iconoir-react/src/HalfCookie.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHalfCookie( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHalfCookie = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHalfCookie( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHalfCookie); +}; +const ForwardRef = forwardRef(SvgHalfCookie); export default ForwardRef; diff --git a/packages/iconoir-react/src/HalfMoon.tsx b/packages/iconoir-react/src/HalfMoon.tsx index d2e098dd..ee2aac2e 100644 --- a/packages/iconoir-react/src/HalfMoon.tsx +++ b/packages/iconoir-react/src/HalfMoon.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHalfMoon( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHalfMoon = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHalfMoon( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHalfMoon); +}; +const ForwardRef = forwardRef(SvgHalfMoon); export default ForwardRef; diff --git a/packages/iconoir-react/src/Hammer.tsx b/packages/iconoir-react/src/Hammer.tsx index 362bf2e4..83d61724 100644 --- a/packages/iconoir-react/src/Hammer.tsx +++ b/packages/iconoir-react/src/Hammer.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHammer( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHammer = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHammer( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHammer); +}; +const ForwardRef = forwardRef(SvgHammer); export default ForwardRef; diff --git a/packages/iconoir-react/src/HandBrake.tsx b/packages/iconoir-react/src/HandBrake.tsx index 4462466f..3ee2974f 100644 --- a/packages/iconoir-react/src/HandBrake.tsx +++ b/packages/iconoir-react/src/HandBrake.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHandBrake( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHandBrake = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgHandBrake( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHandBrake); +}; +const ForwardRef = forwardRef(SvgHandBrake); export default ForwardRef; diff --git a/packages/iconoir-react/src/HandCard.tsx b/packages/iconoir-react/src/HandCard.tsx index 3cb27216..a4198346 100644 --- a/packages/iconoir-react/src/HandCard.tsx +++ b/packages/iconoir-react/src/HandCard.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHandCard( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHandCard = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgHandCard( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHandCard); +}; +const ForwardRef = forwardRef(SvgHandCard); export default ForwardRef; diff --git a/packages/iconoir-react/src/HandCash.tsx b/packages/iconoir-react/src/HandCash.tsx index 401b791d..570436dc 100644 --- a/packages/iconoir-react/src/HandCash.tsx +++ b/packages/iconoir-react/src/HandCash.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHandCash( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHandCash = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgHandCash( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHandCash); +}; +const ForwardRef = forwardRef(SvgHandCash); export default ForwardRef; diff --git a/packages/iconoir-react/src/HandContactless.tsx b/packages/iconoir-react/src/HandContactless.tsx index 2ec34519..3d8b1909 100644 --- a/packages/iconoir-react/src/HandContactless.tsx +++ b/packages/iconoir-react/src/HandContactless.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHandContactless( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHandContactless = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgHandContactless( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHandContactless); +}; +const ForwardRef = forwardRef(SvgHandContactless); export default ForwardRef; diff --git a/packages/iconoir-react/src/Handbag.tsx b/packages/iconoir-react/src/Handbag.tsx index 01e1c4a0..e3ce16aa 100644 --- a/packages/iconoir-react/src/Handbag.tsx +++ b/packages/iconoir-react/src/Handbag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHandbag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHandbag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHandbag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHandbag); +}; +const ForwardRef = forwardRef(SvgHandbag); export default ForwardRef; diff --git a/packages/iconoir-react/src/HardDrive.tsx b/packages/iconoir-react/src/HardDrive.tsx index ffec84fa..c1c5fd9a 100644 --- a/packages/iconoir-react/src/HardDrive.tsx +++ b/packages/iconoir-react/src/HardDrive.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHardDrive( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHardDrive = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgHardDrive( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHardDrive); +}; +const ForwardRef = forwardRef(SvgHardDrive); export default ForwardRef; diff --git a/packages/iconoir-react/src/Hat.tsx b/packages/iconoir-react/src/Hat.tsx index 68eeaefe..af8c6344 100644 --- a/packages/iconoir-react/src/Hat.tsx +++ b/packages/iconoir-react/src/Hat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHat); +}; +const ForwardRef = forwardRef(SvgHat); export default ForwardRef; diff --git a/packages/iconoir-react/src/Hd.tsx b/packages/iconoir-react/src/Hd.tsx index 2e25691a..0347200d 100644 --- a/packages/iconoir-react/src/Hd.tsx +++ b/packages/iconoir-react/src/Hd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHd); +}; +const ForwardRef = forwardRef(SvgHd); export default ForwardRef; diff --git a/packages/iconoir-react/src/HdDisplay.tsx b/packages/iconoir-react/src/HdDisplay.tsx index 30772a57..2d610521 100644 --- a/packages/iconoir-react/src/HdDisplay.tsx +++ b/packages/iconoir-react/src/HdDisplay.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHdDisplay( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHdDisplay = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgHdDisplay( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHdDisplay); +}; +const ForwardRef = forwardRef(SvgHdDisplay); export default ForwardRef; diff --git a/packages/iconoir-react/src/Hdr.tsx b/packages/iconoir-react/src/Hdr.tsx index b856429c..f3eb1444 100644 --- a/packages/iconoir-react/src/Hdr.tsx +++ b/packages/iconoir-react/src/Hdr.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHdr( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHdr = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHdr( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHdr); +}; +const ForwardRef = forwardRef(SvgHdr); export default ForwardRef; diff --git a/packages/iconoir-react/src/Headset.tsx b/packages/iconoir-react/src/Headset.tsx index acf11459..a10e46ad 100644 --- a/packages/iconoir-react/src/Headset.tsx +++ b/packages/iconoir-react/src/Headset.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeadset( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHeadset = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHeadset( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHeadset); +}; +const ForwardRef = forwardRef(SvgHeadset); export default ForwardRef; diff --git a/packages/iconoir-react/src/HeadsetCharge.tsx b/packages/iconoir-react/src/HeadsetCharge.tsx index 58945132..ae8ccbff 100644 --- a/packages/iconoir-react/src/HeadsetCharge.tsx +++ b/packages/iconoir-react/src/HeadsetCharge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeadsetCharge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHeadsetCharge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgHeadsetCharge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHeadsetCharge); +}; +const ForwardRef = forwardRef(SvgHeadsetCharge); export default ForwardRef; diff --git a/packages/iconoir-react/src/HeadsetHelp.tsx b/packages/iconoir-react/src/HeadsetHelp.tsx index 9f132cde..46837412 100644 --- a/packages/iconoir-react/src/HeadsetHelp.tsx +++ b/packages/iconoir-react/src/HeadsetHelp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeadsetHelp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHeadsetHelp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgHeadsetHelp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHeadsetHelp); +}; +const ForwardRef = forwardRef(SvgHeadsetHelp); export default ForwardRef; diff --git a/packages/iconoir-react/src/HeadsetIssue.tsx b/packages/iconoir-react/src/HeadsetIssue.tsx index 380270b2..e3de4198 100644 --- a/packages/iconoir-react/src/HeadsetIssue.tsx +++ b/packages/iconoir-react/src/HeadsetIssue.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeadsetIssue( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHeadsetIssue = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHeadsetIssue( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHeadsetIssue); +}; +const ForwardRef = forwardRef(SvgHeadsetIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/HealthShield.tsx b/packages/iconoir-react/src/HealthShield.tsx index 2db8eb9f..df703873 100644 --- a/packages/iconoir-react/src/HealthShield.tsx +++ b/packages/iconoir-react/src/HealthShield.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHealthShield( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHealthShield = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHealthShield( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHealthShield); +}; +const ForwardRef = forwardRef(SvgHealthShield); export default ForwardRef; diff --git a/packages/iconoir-react/src/Healthcare.tsx b/packages/iconoir-react/src/Healthcare.tsx index 0c721664..f42f317a 100644 --- a/packages/iconoir-react/src/Healthcare.tsx +++ b/packages/iconoir-react/src/Healthcare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHealthcare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHealthcare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgHealthcare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHealthcare); +}; +const ForwardRef = forwardRef(SvgHealthcare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Heart.tsx b/packages/iconoir-react/src/Heart.tsx index 37ea8c3a..3b29b4a1 100644 --- a/packages/iconoir-react/src/Heart.tsx +++ b/packages/iconoir-react/src/Heart.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeart( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHeart = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgHeart( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHeart); +}; +const ForwardRef = forwardRef(SvgHeart); export default ForwardRef; diff --git a/packages/iconoir-react/src/HeartArrowDown.tsx b/packages/iconoir-react/src/HeartArrowDown.tsx index 78cfc4db..b5609cf3 100644 --- a/packages/iconoir-react/src/HeartArrowDown.tsx +++ b/packages/iconoir-react/src/HeartArrowDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeartArrowDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHeartArrowDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHeartArrowDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHeartArrowDown); +}; +const ForwardRef = forwardRef(SvgHeartArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/Heating.tsx b/packages/iconoir-react/src/Heating.tsx index a34817b3..1855fe39 100644 --- a/packages/iconoir-react/src/Heating.tsx +++ b/packages/iconoir-react/src/Heating.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeating( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHeating = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHeating( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHeating); +}; +const ForwardRef = forwardRef(SvgHeating); export default ForwardRef; diff --git a/packages/iconoir-react/src/HeavyRain.tsx b/packages/iconoir-react/src/HeavyRain.tsx index a8bb4c67..a3dc1bac 100644 --- a/packages/iconoir-react/src/HeavyRain.tsx +++ b/packages/iconoir-react/src/HeavyRain.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeavyRain( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHeavyRain = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHeavyRain( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHeavyRain); +}; +const ForwardRef = forwardRef(SvgHeavyRain); export default ForwardRef; diff --git a/packages/iconoir-react/src/HelpCircle.tsx b/packages/iconoir-react/src/HelpCircle.tsx index 66fe67c6..4ed1c191 100644 --- a/packages/iconoir-react/src/HelpCircle.tsx +++ b/packages/iconoir-react/src/HelpCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHelpCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHelpCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHelpCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHelpCircle); +}; +const ForwardRef = forwardRef(SvgHelpCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/HelpSquare.tsx b/packages/iconoir-react/src/HelpSquare.tsx index 6612f607..4d153d2f 100644 --- a/packages/iconoir-react/src/HelpSquare.tsx +++ b/packages/iconoir-react/src/HelpSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHelpSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHelpSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgHelpSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHelpSquare); +}; +const ForwardRef = forwardRef(SvgHelpSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Heptagon.tsx b/packages/iconoir-react/src/Heptagon.tsx index 84f0af30..d9e90824 100644 --- a/packages/iconoir-react/src/Heptagon.tsx +++ b/packages/iconoir-react/src/Heptagon.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHeptagon( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHeptagon = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHeptagon( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHeptagon); +}; +const ForwardRef = forwardRef(SvgHeptagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/HerSlips.tsx b/packages/iconoir-react/src/HerSlips.tsx index 4d3c9590..f529d61f 100644 --- a/packages/iconoir-react/src/HerSlips.tsx +++ b/packages/iconoir-react/src/HerSlips.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHerSlips( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHerSlips = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgHerSlips( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHerSlips); +}; +const ForwardRef = forwardRef(SvgHerSlips); export default ForwardRef; diff --git a/packages/iconoir-react/src/Hexagon.tsx b/packages/iconoir-react/src/Hexagon.tsx index 79f5f155..f10fa612 100644 --- a/packages/iconoir-react/src/Hexagon.tsx +++ b/packages/iconoir-react/src/Hexagon.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHexagon( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHexagon = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHexagon( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHexagon); +}; +const ForwardRef = forwardRef(SvgHexagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/HexagonAlt.tsx b/packages/iconoir-react/src/HexagonAlt.tsx index f047c341..4506680e 100644 --- a/packages/iconoir-react/src/HexagonAlt.tsx +++ b/packages/iconoir-react/src/HexagonAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHexagonAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHexagonAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgHexagonAlt( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgHexagonAlt); +}; +const ForwardRef = forwardRef(SvgHexagonAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/HexagonDice.tsx b/packages/iconoir-react/src/HexagonDice.tsx index a840ee34..601ed9d0 100644 --- a/packages/iconoir-react/src/HexagonDice.tsx +++ b/packages/iconoir-react/src/HexagonDice.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHexagonDice( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHexagonDice = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgHexagonDice( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHexagonDice); +}; +const ForwardRef = forwardRef(SvgHexagonDice); export default ForwardRef; diff --git a/packages/iconoir-react/src/HighPriority.tsx b/packages/iconoir-react/src/HighPriority.tsx index df468ed1..36ba7281 100644 --- a/packages/iconoir-react/src/HighPriority.tsx +++ b/packages/iconoir-react/src/HighPriority.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHighPriority( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHighPriority = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHighPriority( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHighPriority); +}; +const ForwardRef = forwardRef(SvgHighPriority); export default ForwardRef; diff --git a/packages/iconoir-react/src/HistoricShield.tsx b/packages/iconoir-react/src/HistoricShield.tsx index e6619c48..75484e9a 100644 --- a/packages/iconoir-react/src/HistoricShield.tsx +++ b/packages/iconoir-react/src/HistoricShield.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHistoricShield( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHistoricShield = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHistoricShield( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHistoricShield); +}; +const ForwardRef = forwardRef(SvgHistoricShield); export default ForwardRef; diff --git a/packages/iconoir-react/src/HistoricShieldAlt.tsx b/packages/iconoir-react/src/HistoricShieldAlt.tsx index 12e7e83b..05a66306 100644 --- a/packages/iconoir-react/src/HistoricShieldAlt.tsx +++ b/packages/iconoir-react/src/HistoricShieldAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHistoricShieldAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHistoricShieldAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHistoricShieldAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHistoricShieldAlt); +}; +const ForwardRef = forwardRef(SvgHistoricShieldAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Home.tsx b/packages/iconoir-react/src/Home.tsx index d17109d3..851d1ab7 100644 --- a/packages/iconoir-react/src/Home.tsx +++ b/packages/iconoir-react/src/Home.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHome( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHome = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHome( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHome); +}; +const ForwardRef = forwardRef(SvgHome); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeAlt.tsx b/packages/iconoir-react/src/HomeAlt.tsx index 5cd3b82f..5608fdcf 100644 --- a/packages/iconoir-react/src/HomeAlt.tsx +++ b/packages/iconoir-react/src/HomeAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHomeAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeAlt); +}; +const ForwardRef = forwardRef(SvgHomeAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeAltSlim.tsx b/packages/iconoir-react/src/HomeAltSlim.tsx index ff8b5e95..629e9bc9 100644 --- a/packages/iconoir-react/src/HomeAltSlim.tsx +++ b/packages/iconoir-react/src/HomeAltSlim.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeAltSlim( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeAltSlim = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHomeAltSlim( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeAltSlim); +}; +const ForwardRef = forwardRef(SvgHomeAltSlim); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeAltSlimHoriz.tsx b/packages/iconoir-react/src/HomeAltSlimHoriz.tsx index 2ea913d7..afd4584e 100644 --- a/packages/iconoir-react/src/HomeAltSlimHoriz.tsx +++ b/packages/iconoir-react/src/HomeAltSlimHoriz.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeAltSlimHoriz( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeAltSlimHoriz = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHomeAltSlimHoriz( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeAltSlimHoriz); +}; +const ForwardRef = forwardRef(SvgHomeAltSlimHoriz); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeHospital.tsx b/packages/iconoir-react/src/HomeHospital.tsx index bdc4e17c..84d30b3d 100644 --- a/packages/iconoir-react/src/HomeHospital.tsx +++ b/packages/iconoir-react/src/HomeHospital.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeHospital( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeHospital = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHomeHospital( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeHospital); +}; +const ForwardRef = forwardRef(SvgHomeHospital); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeSale.tsx b/packages/iconoir-react/src/HomeSale.tsx index bcb44ea7..f71ce0b9 100644 --- a/packages/iconoir-react/src/HomeSale.tsx +++ b/packages/iconoir-react/src/HomeSale.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeSale( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeSale = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHomeSale( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeSale); +}; +const ForwardRef = forwardRef(SvgHomeSale); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeSecure.tsx b/packages/iconoir-react/src/HomeSecure.tsx index 1d0dfe66..1b2048f0 100644 --- a/packages/iconoir-react/src/HomeSecure.tsx +++ b/packages/iconoir-react/src/HomeSecure.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeSecure( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeSecure = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHomeSecure( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeSecure); +}; +const ForwardRef = forwardRef(SvgHomeSecure); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeShield.tsx b/packages/iconoir-react/src/HomeShield.tsx index 031e808d..2f82bed0 100644 --- a/packages/iconoir-react/src/HomeShield.tsx +++ b/packages/iconoir-react/src/HomeShield.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeShield( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeShield = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHomeShield( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeShield); +}; +const ForwardRef = forwardRef(SvgHomeShield); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeSimple.tsx b/packages/iconoir-react/src/HomeSimple.tsx index 0de3a12a..edc7c3f3 100644 --- a/packages/iconoir-react/src/HomeSimple.tsx +++ b/packages/iconoir-react/src/HomeSimple.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeSimple( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeSimple = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHomeSimple( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeSimple); +}; +const ForwardRef = forwardRef(SvgHomeSimple); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeSimpleDoor.tsx b/packages/iconoir-react/src/HomeSimpleDoor.tsx index 8accbd75..0674670e 100644 --- a/packages/iconoir-react/src/HomeSimpleDoor.tsx +++ b/packages/iconoir-react/src/HomeSimpleDoor.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeSimpleDoor( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeSimpleDoor = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHomeSimpleDoor( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeSimpleDoor); +}; +const ForwardRef = forwardRef(SvgHomeSimpleDoor); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeTable.tsx b/packages/iconoir-react/src/HomeTable.tsx index 9272e3fd..bb78954a 100644 --- a/packages/iconoir-react/src/HomeTable.tsx +++ b/packages/iconoir-react/src/HomeTable.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeTable( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeTable = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHomeTable( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeTable); +}; +const ForwardRef = forwardRef(SvgHomeTable); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeTemperatureIn.tsx b/packages/iconoir-react/src/HomeTemperatureIn.tsx index 1d9bfed1..b254045c 100644 --- a/packages/iconoir-react/src/HomeTemperatureIn.tsx +++ b/packages/iconoir-react/src/HomeTemperatureIn.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeTemperatureIn( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeTemperatureIn = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHomeTemperatureIn( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeTemperatureIn); +}; +const ForwardRef = forwardRef(SvgHomeTemperatureIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeTemperatureOut.tsx b/packages/iconoir-react/src/HomeTemperatureOut.tsx index b38be532..84dceb09 100644 --- a/packages/iconoir-react/src/HomeTemperatureOut.tsx +++ b/packages/iconoir-react/src/HomeTemperatureOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeTemperatureOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeTemperatureOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHomeTemperatureOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHomeTemperatureOut); +}; +const ForwardRef = forwardRef(SvgHomeTemperatureOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/HomeUser.tsx b/packages/iconoir-react/src/HomeUser.tsx index 94fd2631..3eb2ce68 100644 --- a/packages/iconoir-react/src/HomeUser.tsx +++ b/packages/iconoir-react/src/HomeUser.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHomeUser( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHomeUser = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgHomeUser( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgHomeUser); +}; +const ForwardRef = forwardRef(SvgHomeUser); export default ForwardRef; diff --git a/packages/iconoir-react/src/HorizDistributionLeft.tsx b/packages/iconoir-react/src/HorizDistributionLeft.tsx index e95a0426..5f92d714 100644 --- a/packages/iconoir-react/src/HorizDistributionLeft.tsx +++ b/packages/iconoir-react/src/HorizDistributionLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHorizDistributionLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHorizDistributionLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHorizDistributionLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHorizDistributionLeft); +}; +const ForwardRef = forwardRef(SvgHorizDistributionLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/HorizDistributionRight.tsx b/packages/iconoir-react/src/HorizDistributionRight.tsx index 1b77c668..7290f5ae 100644 --- a/packages/iconoir-react/src/HorizDistributionRight.tsx +++ b/packages/iconoir-react/src/HorizDistributionRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHorizDistributionRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHorizDistributionRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHorizDistributionRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHorizDistributionRight); +}; +const ForwardRef = forwardRef(SvgHorizDistributionRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/HorizontalMerge.tsx b/packages/iconoir-react/src/HorizontalMerge.tsx index 20b2a194..8d3ed5ca 100644 --- a/packages/iconoir-react/src/HorizontalMerge.tsx +++ b/packages/iconoir-react/src/HorizontalMerge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHorizontalMerge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHorizontalMerge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHorizontalMerge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHorizontalMerge); +}; +const ForwardRef = forwardRef(SvgHorizontalMerge); export default ForwardRef; diff --git a/packages/iconoir-react/src/HorizontalSplit.tsx b/packages/iconoir-react/src/HorizontalSplit.tsx index 45f54f9a..40bec594 100644 --- a/packages/iconoir-react/src/HorizontalSplit.tsx +++ b/packages/iconoir-react/src/HorizontalSplit.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHorizontalSplit( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHorizontalSplit = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHorizontalSplit( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHorizontalSplit); +}; +const ForwardRef = forwardRef(SvgHorizontalSplit); export default ForwardRef; diff --git a/packages/iconoir-react/src/Hospital.tsx b/packages/iconoir-react/src/Hospital.tsx index f052d9a8..7529f2a2 100644 --- a/packages/iconoir-react/src/Hospital.tsx +++ b/packages/iconoir-react/src/Hospital.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHospital( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHospital = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgHospital( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHospital); +}; +const ForwardRef = forwardRef(SvgHospital); export default ForwardRef; diff --git a/packages/iconoir-react/src/HospitalSign.tsx b/packages/iconoir-react/src/HospitalSign.tsx index 7a654311..f6ff799f 100644 --- a/packages/iconoir-react/src/HospitalSign.tsx +++ b/packages/iconoir-react/src/HospitalSign.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHospitalSign( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHospitalSign = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHospitalSign( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHospitalSign); +}; +const ForwardRef = forwardRef(SvgHospitalSign); export default ForwardRef; diff --git a/packages/iconoir-react/src/HotAirBalloon.tsx b/packages/iconoir-react/src/HotAirBalloon.tsx index 5b258b75..6bc0587d 100644 --- a/packages/iconoir-react/src/HotAirBalloon.tsx +++ b/packages/iconoir-react/src/HotAirBalloon.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHotAirBalloon( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHotAirBalloon = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgHotAirBalloon( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHotAirBalloon); +}; +const ForwardRef = forwardRef(SvgHotAirBalloon); export default ForwardRef; diff --git a/packages/iconoir-react/src/Hourglass.tsx b/packages/iconoir-react/src/Hourglass.tsx index 30bc66e4..0f306125 100644 --- a/packages/iconoir-react/src/Hourglass.tsx +++ b/packages/iconoir-react/src/Hourglass.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHourglass( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHourglass = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHourglass( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHourglass); +}; +const ForwardRef = forwardRef(SvgHourglass); export default ForwardRef; diff --git a/packages/iconoir-react/src/HouseRooms.tsx b/packages/iconoir-react/src/HouseRooms.tsx index 3a88e108..bdb69fb6 100644 --- a/packages/iconoir-react/src/HouseRooms.tsx +++ b/packages/iconoir-react/src/HouseRooms.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHouseRooms( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHouseRooms = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHouseRooms( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHouseRooms); +}; +const ForwardRef = forwardRef(SvgHouseRooms); export default ForwardRef; diff --git a/packages/iconoir-react/src/Html5.tsx b/packages/iconoir-react/src/Html5.tsx index f5786420..22d94aa9 100644 --- a/packages/iconoir-react/src/Html5.tsx +++ b/packages/iconoir-react/src/Html5.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHtml5( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHtml5 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgHtml5( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHtml5); +}; +const ForwardRef = forwardRef(SvgHtml5); export default ForwardRef; diff --git a/packages/iconoir-react/src/Hydrogen.tsx b/packages/iconoir-react/src/Hydrogen.tsx index 8a472f87..1d46b867 100644 --- a/packages/iconoir-react/src/Hydrogen.tsx +++ b/packages/iconoir-react/src/Hydrogen.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgHydrogen( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgHydrogen = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgHydrogen( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgHydrogen); +}; +const ForwardRef = forwardRef(SvgHydrogen); export default ForwardRef; diff --git a/packages/iconoir-react/src/Iconoir.tsx b/packages/iconoir-react/src/Iconoir.tsx index 8c76b252..7280264d 100644 --- a/packages/iconoir-react/src/Iconoir.tsx +++ b/packages/iconoir-react/src/Iconoir.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIconoir( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgIconoir = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgIconoir( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgIconoir); +}; +const ForwardRef = forwardRef(SvgIconoir); export default ForwardRef; diff --git a/packages/iconoir-react/src/Import.tsx b/packages/iconoir-react/src/Import.tsx index 065f9699..4e812fc9 100644 --- a/packages/iconoir-react/src/Import.tsx +++ b/packages/iconoir-react/src/Import.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgImport( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgImport = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgImport( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgImport); +}; +const ForwardRef = forwardRef(SvgImport); export default ForwardRef; diff --git a/packages/iconoir-react/src/Inclination.tsx b/packages/iconoir-react/src/Inclination.tsx index 0248f7f2..5e35892d 100644 --- a/packages/iconoir-react/src/Inclination.tsx +++ b/packages/iconoir-react/src/Inclination.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInclination( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgInclination = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgInclination( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgInclination); +}; +const ForwardRef = forwardRef(SvgInclination); export default ForwardRef; diff --git a/packages/iconoir-react/src/Industry.tsx b/packages/iconoir-react/src/Industry.tsx index 82f80f5e..7a451b6c 100644 --- a/packages/iconoir-react/src/Industry.tsx +++ b/packages/iconoir-react/src/Industry.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIndustry( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgIndustry = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgIndustry( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgIndustry); +}; +const ForwardRef = forwardRef(SvgIndustry); export default ForwardRef; diff --git a/packages/iconoir-react/src/Infinite.tsx b/packages/iconoir-react/src/Infinite.tsx index f7d1a8f4..85acb904 100644 --- a/packages/iconoir-react/src/Infinite.tsx +++ b/packages/iconoir-react/src/Infinite.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInfinite( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgInfinite = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgInfinite( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgInfinite); +}; +const ForwardRef = forwardRef(SvgInfinite); export default ForwardRef; diff --git a/packages/iconoir-react/src/InfoEmpty.tsx b/packages/iconoir-react/src/InfoEmpty.tsx index 146ce3be..0d361939 100644 --- a/packages/iconoir-react/src/InfoEmpty.tsx +++ b/packages/iconoir-react/src/InfoEmpty.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInfoEmpty( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgInfoEmpty = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgInfoEmpty( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgInfoEmpty); +}; +const ForwardRef = forwardRef(SvgInfoEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/InputField.tsx b/packages/iconoir-react/src/InputField.tsx index 5fa3b338..322fb1ae 100644 --- a/packages/iconoir-react/src/InputField.tsx +++ b/packages/iconoir-react/src/InputField.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInputField( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgInputField = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgInputField( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgInputField); +}; +const ForwardRef = forwardRef(SvgInputField); export default ForwardRef; diff --git a/packages/iconoir-react/src/InputOutput.tsx b/packages/iconoir-react/src/InputOutput.tsx index a6fe4a41..b8e68c57 100644 --- a/packages/iconoir-react/src/InputOutput.tsx +++ b/packages/iconoir-react/src/InputOutput.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInputOutput( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgInputOutput = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgInputOutput( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgInputOutput); +}; +const ForwardRef = forwardRef(SvgInputOutput); export default ForwardRef; diff --git a/packages/iconoir-react/src/InputSearch.tsx b/packages/iconoir-react/src/InputSearch.tsx index b837341f..e5b21e87 100644 --- a/packages/iconoir-react/src/InputSearch.tsx +++ b/packages/iconoir-react/src/InputSearch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInputSearch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgInputSearch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgInputSearch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgInputSearch); +}; +const ForwardRef = forwardRef(SvgInputSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/Instagram.tsx b/packages/iconoir-react/src/Instagram.tsx index 0e149db7..7bfce9d9 100644 --- a/packages/iconoir-react/src/Instagram.tsx +++ b/packages/iconoir-react/src/Instagram.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInstagram( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgInstagram = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgInstagram( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgInstagram); +}; +const ForwardRef = forwardRef(SvgInstagram); export default ForwardRef; diff --git a/packages/iconoir-react/src/Internet.tsx b/packages/iconoir-react/src/Internet.tsx index 4cfc88c0..55751b38 100644 --- a/packages/iconoir-react/src/Internet.tsx +++ b/packages/iconoir-react/src/Internet.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgInternet( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgInternet = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgInternet( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgInternet); +}; +const ForwardRef = forwardRef(SvgInternet); export default ForwardRef; diff --git a/packages/iconoir-react/src/Intersect.tsx b/packages/iconoir-react/src/Intersect.tsx index f8ab90b5..d1d13881 100644 --- a/packages/iconoir-react/src/Intersect.tsx +++ b/packages/iconoir-react/src/Intersect.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIntersect( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgIntersect = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgIntersect( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgIntersect); +}; +const ForwardRef = forwardRef(SvgIntersect); export default ForwardRef; diff --git a/packages/iconoir-react/src/IntersectAlt.tsx b/packages/iconoir-react/src/IntersectAlt.tsx index 01a8b9ba..3a63d10d 100644 --- a/packages/iconoir-react/src/IntersectAlt.tsx +++ b/packages/iconoir-react/src/IntersectAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIntersectAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgIntersectAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgIntersectAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgIntersectAlt); +}; +const ForwardRef = forwardRef(SvgIntersectAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/IosSettings.tsx b/packages/iconoir-react/src/IosSettings.tsx index db5ff455..dedece20 100644 --- a/packages/iconoir-react/src/IosSettings.tsx +++ b/packages/iconoir-react/src/IosSettings.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIosSettings( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgIosSettings = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,43 +13,43 @@ function SvgIosSettings( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgIosSettings); +}; +const ForwardRef = forwardRef(SvgIosSettings); export default ForwardRef; diff --git a/packages/iconoir-react/src/IpAddress.tsx b/packages/iconoir-react/src/IpAddress.tsx index 86a941d6..990d4a74 100644 --- a/packages/iconoir-react/src/IpAddress.tsx +++ b/packages/iconoir-react/src/IpAddress.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIpAddress( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgIpAddress = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgIpAddress( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgIpAddress); +}; +const ForwardRef = forwardRef(SvgIpAddress); export default ForwardRef; diff --git a/packages/iconoir-react/src/IrisScan.tsx b/packages/iconoir-react/src/IrisScan.tsx index 94079c02..6661248c 100644 --- a/packages/iconoir-react/src/IrisScan.tsx +++ b/packages/iconoir-react/src/IrisScan.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgIrisScan( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgIrisScan = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgIrisScan( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgIrisScan); +}; +const ForwardRef = forwardRef(SvgIrisScan); export default ForwardRef; diff --git a/packages/iconoir-react/src/Italic.tsx b/packages/iconoir-react/src/Italic.tsx index af2dce20..f4061051 100644 --- a/packages/iconoir-react/src/Italic.tsx +++ b/packages/iconoir-react/src/Italic.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgItalic( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgItalic = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgItalic( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgItalic); +}; +const ForwardRef = forwardRef(SvgItalic); export default ForwardRef; diff --git a/packages/iconoir-react/src/ItalicSquare.tsx b/packages/iconoir-react/src/ItalicSquare.tsx index ae6b9d3c..d2674959 100644 --- a/packages/iconoir-react/src/ItalicSquare.tsx +++ b/packages/iconoir-react/src/ItalicSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgItalicSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgItalicSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgItalicSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgItalicSquare); +}; +const ForwardRef = forwardRef(SvgItalicSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Jellyfish.tsx b/packages/iconoir-react/src/Jellyfish.tsx index 984ee46a..700dd45a 100644 --- a/packages/iconoir-react/src/Jellyfish.tsx +++ b/packages/iconoir-react/src/Jellyfish.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgJellyfish( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgJellyfish = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgJellyfish( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgJellyfish); +}; +const ForwardRef = forwardRef(SvgJellyfish); export default ForwardRef; diff --git a/packages/iconoir-react/src/Journal.tsx b/packages/iconoir-react/src/Journal.tsx index 4d7a3076..c49f5f1e 100644 --- a/packages/iconoir-react/src/Journal.tsx +++ b/packages/iconoir-react/src/Journal.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgJournal( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgJournal = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgJournal( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgJournal); +}; +const ForwardRef = forwardRef(SvgJournal); export default ForwardRef; diff --git a/packages/iconoir-react/src/JournalPage.tsx b/packages/iconoir-react/src/JournalPage.tsx index 59636621..d0576de6 100644 --- a/packages/iconoir-react/src/JournalPage.tsx +++ b/packages/iconoir-react/src/JournalPage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgJournalPage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgJournalPage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgJournalPage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgJournalPage); +}; +const ForwardRef = forwardRef(SvgJournalPage); export default ForwardRef; diff --git a/packages/iconoir-react/src/JpegFormat.tsx b/packages/iconoir-react/src/JpegFormat.tsx index 28a9f59c..bc744912 100644 --- a/packages/iconoir-react/src/JpegFormat.tsx +++ b/packages/iconoir-react/src/JpegFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgJpegFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgJpegFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgJpegFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgJpegFormat); +}; +const ForwardRef = forwardRef(SvgJpegFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/JpgFormat.tsx b/packages/iconoir-react/src/JpgFormat.tsx index 2864f600..60962fb9 100644 --- a/packages/iconoir-react/src/JpgFormat.tsx +++ b/packages/iconoir-react/src/JpgFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgJpgFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgJpgFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgJpgFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgJpgFormat); +}; +const ForwardRef = forwardRef(SvgJpgFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/KanbanBoard.tsx b/packages/iconoir-react/src/KanbanBoard.tsx index d3360af6..61bf203d 100644 --- a/packages/iconoir-react/src/KanbanBoard.tsx +++ b/packages/iconoir-react/src/KanbanBoard.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKanbanBoard( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKanbanBoard = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKanbanBoard( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKanbanBoard); +}; +const ForwardRef = forwardRef(SvgKanbanBoard); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyAlt.tsx b/packages/iconoir-react/src/KeyAlt.tsx index 54559737..b9e836e3 100644 --- a/packages/iconoir-react/src/KeyAlt.tsx +++ b/packages/iconoir-react/src/KeyAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyAlt); +}; +const ForwardRef = forwardRef(SvgKeyAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyAltBack.tsx b/packages/iconoir-react/src/KeyAltBack.tsx index 712015ac..5df6a0ff 100644 --- a/packages/iconoir-react/src/KeyAltBack.tsx +++ b/packages/iconoir-react/src/KeyAltBack.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyAltBack( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyAltBack = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyAltBack( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyAltBack); +}; +const ForwardRef = forwardRef(SvgKeyAltBack); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyAltMinus.tsx b/packages/iconoir-react/src/KeyAltMinus.tsx index ed96fb4c..40f3164a 100644 --- a/packages/iconoir-react/src/KeyAltMinus.tsx +++ b/packages/iconoir-react/src/KeyAltMinus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyAltMinus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyAltMinus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyAltMinus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyAltMinus); +}; +const ForwardRef = forwardRef(SvgKeyAltMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyAltPlus.tsx b/packages/iconoir-react/src/KeyAltPlus.tsx index 394e1f8e..fad1a5f2 100644 --- a/packages/iconoir-react/src/KeyAltPlus.tsx +++ b/packages/iconoir-react/src/KeyAltPlus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyAltPlus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyAltPlus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyAltPlus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyAltPlus); +}; +const ForwardRef = forwardRef(SvgKeyAltPlus); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyAltRemove.tsx b/packages/iconoir-react/src/KeyAltRemove.tsx index 73e6b7af..bc0ae3a2 100644 --- a/packages/iconoir-react/src/KeyAltRemove.tsx +++ b/packages/iconoir-react/src/KeyAltRemove.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyAltRemove( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyAltRemove = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyAltRemove( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyAltRemove); +}; +const ForwardRef = forwardRef(SvgKeyAltRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyCommand.tsx b/packages/iconoir-react/src/KeyCommand.tsx index 5bfe44af..83c5f41e 100644 --- a/packages/iconoir-react/src/KeyCommand.tsx +++ b/packages/iconoir-react/src/KeyCommand.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyCommand( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyCommand = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyCommand( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyCommand); +}; +const ForwardRef = forwardRef(SvgKeyCommand); export default ForwardRef; diff --git a/packages/iconoir-react/src/Keyframe.tsx b/packages/iconoir-react/src/Keyframe.tsx index 1ddd2bcb..30cbfd3f 100644 --- a/packages/iconoir-react/src/Keyframe.tsx +++ b/packages/iconoir-react/src/Keyframe.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframe( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyframe = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyframe( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyframe); +}; +const ForwardRef = forwardRef(SvgKeyframe); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyframeAlignCenter.tsx b/packages/iconoir-react/src/KeyframeAlignCenter.tsx index 4a758fac..db9b771d 100644 --- a/packages/iconoir-react/src/KeyframeAlignCenter.tsx +++ b/packages/iconoir-react/src/KeyframeAlignCenter.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframeAlignCenter( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyframeAlignCenter = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyframeAlignCenter( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyframeAlignCenter); +}; +const ForwardRef = forwardRef(SvgKeyframeAlignCenter); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyframeAlignHorizontal.tsx b/packages/iconoir-react/src/KeyframeAlignHorizontal.tsx index 6d00f80f..007cd559 100644 --- a/packages/iconoir-react/src/KeyframeAlignHorizontal.tsx +++ b/packages/iconoir-react/src/KeyframeAlignHorizontal.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframeAlignHorizontal( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyframeAlignHorizontal = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyframeAlignHorizontal( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyframeAlignHorizontal); +}; +const ForwardRef = forwardRef(SvgKeyframeAlignHorizontal); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyframeAlignVertical.tsx b/packages/iconoir-react/src/KeyframeAlignVertical.tsx index ab23b36f..3352275f 100644 --- a/packages/iconoir-react/src/KeyframeAlignVertical.tsx +++ b/packages/iconoir-react/src/KeyframeAlignVertical.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframeAlignVertical( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyframeAlignVertical = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyframeAlignVertical( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyframeAlignVertical); +}; +const ForwardRef = forwardRef(SvgKeyframeAlignVertical); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyframePosition.tsx b/packages/iconoir-react/src/KeyframePosition.tsx index c61932dc..a1fc7601 100644 --- a/packages/iconoir-react/src/KeyframePosition.tsx +++ b/packages/iconoir-react/src/KeyframePosition.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframePosition( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyframePosition = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgKeyframePosition( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyframePosition); +}; +const ForwardRef = forwardRef(SvgKeyframePosition); export default ForwardRef; diff --git a/packages/iconoir-react/src/Keyframes.tsx b/packages/iconoir-react/src/Keyframes.tsx index 18f608c7..4044447b 100644 --- a/packages/iconoir-react/src/Keyframes.tsx +++ b/packages/iconoir-react/src/Keyframes.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframes( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyframes = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgKeyframes( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyframes); +}; +const ForwardRef = forwardRef(SvgKeyframes); export default ForwardRef; diff --git a/packages/iconoir-react/src/KeyframesCouple.tsx b/packages/iconoir-react/src/KeyframesCouple.tsx index 5c504a9e..744def3b 100644 --- a/packages/iconoir-react/src/KeyframesCouple.tsx +++ b/packages/iconoir-react/src/KeyframesCouple.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgKeyframesCouple( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgKeyframesCouple = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgKeyframesCouple( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgKeyframesCouple); +}; +const ForwardRef = forwardRef(SvgKeyframesCouple); export default ForwardRef; diff --git a/packages/iconoir-react/src/Label.tsx b/packages/iconoir-react/src/Label.tsx index 75cf9b2b..ae5aebf0 100644 --- a/packages/iconoir-react/src/Label.tsx +++ b/packages/iconoir-react/src/Label.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLabel( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLabel = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgLabel( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLabel); +}; +const ForwardRef = forwardRef(SvgLabel); export default ForwardRef; diff --git a/packages/iconoir-react/src/Lamp.tsx b/packages/iconoir-react/src/Lamp.tsx index ae248b9f..14a493af 100644 --- a/packages/iconoir-react/src/Lamp.tsx +++ b/packages/iconoir-react/src/Lamp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLamp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLamp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLamp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLamp); +}; +const ForwardRef = forwardRef(SvgLamp); export default ForwardRef; diff --git a/packages/iconoir-react/src/Language.tsx b/packages/iconoir-react/src/Language.tsx index c3a7ab34..0bf14ce8 100644 --- a/packages/iconoir-react/src/Language.tsx +++ b/packages/iconoir-react/src/Language.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLanguage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLanguage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLanguage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLanguage); +}; +const ForwardRef = forwardRef(SvgLanguage); export default ForwardRef; diff --git a/packages/iconoir-react/src/Laptop.tsx b/packages/iconoir-react/src/Laptop.tsx index 884dee44..cb0b8cab 100644 --- a/packages/iconoir-react/src/Laptop.tsx +++ b/packages/iconoir-react/src/Laptop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLaptop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLaptop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgLaptop( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLaptop); +}; +const ForwardRef = forwardRef(SvgLaptop); export default ForwardRef; diff --git a/packages/iconoir-react/src/LaptopCharging.tsx b/packages/iconoir-react/src/LaptopCharging.tsx index 24642007..1fcbf255 100644 --- a/packages/iconoir-react/src/LaptopCharging.tsx +++ b/packages/iconoir-react/src/LaptopCharging.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLaptopCharging( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLaptopCharging = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgLaptopCharging( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLaptopCharging); +}; +const ForwardRef = forwardRef(SvgLaptopCharging); export default ForwardRef; diff --git a/packages/iconoir-react/src/LaptopFix.tsx b/packages/iconoir-react/src/LaptopFix.tsx index a1b399d2..1daa390f 100644 --- a/packages/iconoir-react/src/LaptopFix.tsx +++ b/packages/iconoir-react/src/LaptopFix.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLaptopFix( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLaptopFix = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLaptopFix( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLaptopFix); +}; +const ForwardRef = forwardRef(SvgLaptopFix); export default ForwardRef; diff --git a/packages/iconoir-react/src/LaptopIssue.tsx b/packages/iconoir-react/src/LaptopIssue.tsx index 80f64f42..ac8e2813 100644 --- a/packages/iconoir-react/src/LaptopIssue.tsx +++ b/packages/iconoir-react/src/LaptopIssue.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLaptopIssue( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLaptopIssue = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgLaptopIssue( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLaptopIssue); +}; +const ForwardRef = forwardRef(SvgLaptopIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/LargeSuitcase.tsx b/packages/iconoir-react/src/LargeSuitcase.tsx index 18bc396a..e5338350 100644 --- a/packages/iconoir-react/src/LargeSuitcase.tsx +++ b/packages/iconoir-react/src/LargeSuitcase.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLargeSuitcase( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLargeSuitcase = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgLargeSuitcase( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLargeSuitcase); +}; +const ForwardRef = forwardRef(SvgLargeSuitcase); export default ForwardRef; diff --git a/packages/iconoir-react/src/LayoutLeft.tsx b/packages/iconoir-react/src/LayoutLeft.tsx index f9f50370..77e8d9c6 100644 --- a/packages/iconoir-react/src/LayoutLeft.tsx +++ b/packages/iconoir-react/src/LayoutLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLayoutLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLayoutLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgLayoutLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLayoutLeft); +}; +const ForwardRef = forwardRef(SvgLayoutLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/LayoutRight.tsx b/packages/iconoir-react/src/LayoutRight.tsx index ca45301e..8a3f0dcf 100644 --- a/packages/iconoir-react/src/LayoutRight.tsx +++ b/packages/iconoir-react/src/LayoutRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLayoutRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLayoutRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgLayoutRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLayoutRight); +}; +const ForwardRef = forwardRef(SvgLayoutRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/Leaderboard.tsx b/packages/iconoir-react/src/Leaderboard.tsx index 35b8e429..bf154185 100644 --- a/packages/iconoir-react/src/Leaderboard.tsx +++ b/packages/iconoir-react/src/Leaderboard.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLeaderboard( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLeaderboard = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLeaderboard( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLeaderboard); +}; +const ForwardRef = forwardRef(SvgLeaderboard); export default ForwardRef; diff --git a/packages/iconoir-react/src/LeaderboardStar.tsx b/packages/iconoir-react/src/LeaderboardStar.tsx index 00de690b..59393d94 100644 --- a/packages/iconoir-react/src/LeaderboardStar.tsx +++ b/packages/iconoir-react/src/LeaderboardStar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLeaderboardStar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLeaderboardStar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLeaderboardStar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLeaderboardStar); +}; +const ForwardRef = forwardRef(SvgLeaderboardStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/Leaf.tsx b/packages/iconoir-react/src/Leaf.tsx index b0a57dfb..7f003f6a 100644 --- a/packages/iconoir-react/src/Leaf.tsx +++ b/packages/iconoir-react/src/Leaf.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLeaf( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLeaf = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgLeaf( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgLeaf); +}; +const ForwardRef = forwardRef(SvgLeaf); export default ForwardRef; diff --git a/packages/iconoir-react/src/Learning.tsx b/packages/iconoir-react/src/Learning.tsx index b820dbd5..54b77cae 100644 --- a/packages/iconoir-react/src/Learning.tsx +++ b/packages/iconoir-react/src/Learning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLearning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLearning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgLearning( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLearning); +}; +const ForwardRef = forwardRef(SvgLearning); export default ForwardRef; diff --git a/packages/iconoir-react/src/LeftRoundArrow.tsx b/packages/iconoir-react/src/LeftRoundArrow.tsx index 43f6c507..99474237 100644 --- a/packages/iconoir-react/src/LeftRoundArrow.tsx +++ b/packages/iconoir-react/src/LeftRoundArrow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLeftRoundArrow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLeftRoundArrow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgLeftRoundArrow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLeftRoundArrow); +}; +const ForwardRef = forwardRef(SvgLeftRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Lens.tsx b/packages/iconoir-react/src/Lens.tsx index 55b5cb31..0aa0662e 100644 --- a/packages/iconoir-react/src/Lens.tsx +++ b/packages/iconoir-react/src/Lens.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLens( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLens = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgLens( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgLens); +}; +const ForwardRef = forwardRef(SvgLens); export default ForwardRef; diff --git a/packages/iconoir-react/src/Lifebelt.tsx b/packages/iconoir-react/src/Lifebelt.tsx index a905df22..5bfd7713 100644 --- a/packages/iconoir-react/src/Lifebelt.tsx +++ b/packages/iconoir-react/src/Lifebelt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLifebelt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLifebelt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLifebelt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLifebelt); +}; +const ForwardRef = forwardRef(SvgLifebelt); export default ForwardRef; diff --git a/packages/iconoir-react/src/LightBulb.tsx b/packages/iconoir-react/src/LightBulb.tsx index 11f31cb3..3e47bddb 100644 --- a/packages/iconoir-react/src/LightBulb.tsx +++ b/packages/iconoir-react/src/LightBulb.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLightBulb( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLightBulb = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLightBulb( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLightBulb); +}; +const ForwardRef = forwardRef(SvgLightBulb); export default ForwardRef; diff --git a/packages/iconoir-react/src/LightBulbOff.tsx b/packages/iconoir-react/src/LightBulbOff.tsx index 52f14dac..e793f173 100644 --- a/packages/iconoir-react/src/LightBulbOff.tsx +++ b/packages/iconoir-react/src/LightBulbOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLightBulbOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLightBulbOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLightBulbOff( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLightBulbOff); +}; +const ForwardRef = forwardRef(SvgLightBulbOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/LightBulbOn.tsx b/packages/iconoir-react/src/LightBulbOn.tsx index e862e384..b6d9a4c8 100644 --- a/packages/iconoir-react/src/LightBulbOn.tsx +++ b/packages/iconoir-react/src/LightBulbOn.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLightBulbOn( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLightBulbOn = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLightBulbOn( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLightBulbOn); +}; +const ForwardRef = forwardRef(SvgLightBulbOn); export default ForwardRef; diff --git a/packages/iconoir-react/src/LineSpace.tsx b/packages/iconoir-react/src/LineSpace.tsx index d9dbe2a3..c7c4cd3f 100644 --- a/packages/iconoir-react/src/LineSpace.tsx +++ b/packages/iconoir-react/src/LineSpace.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLineSpace( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLineSpace = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLineSpace( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLineSpace); +}; +const ForwardRef = forwardRef(SvgLineSpace); export default ForwardRef; diff --git a/packages/iconoir-react/src/Linear.tsx b/packages/iconoir-react/src/Linear.tsx index 504e4845..988688f3 100644 --- a/packages/iconoir-react/src/Linear.tsx +++ b/packages/iconoir-react/src/Linear.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLinear( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLinear = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLinear( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLinear); +}; +const ForwardRef = forwardRef(SvgLinear); export default ForwardRef; diff --git a/packages/iconoir-react/src/Link.tsx b/packages/iconoir-react/src/Link.tsx index 3c786738..0be82772 100644 --- a/packages/iconoir-react/src/Link.tsx +++ b/packages/iconoir-react/src/Link.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLink( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLink = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLink( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLink); +}; +const ForwardRef = forwardRef(SvgLink); export default ForwardRef; diff --git a/packages/iconoir-react/src/LinkedIn.tsx b/packages/iconoir-react/src/LinkedIn.tsx index 823b2195..49e0f0cb 100644 --- a/packages/iconoir-react/src/LinkedIn.tsx +++ b/packages/iconoir-react/src/LinkedIn.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLinkedIn( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLinkedIn = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLinkedIn( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLinkedIn); +}; +const ForwardRef = forwardRef(SvgLinkedIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/Linux.tsx b/packages/iconoir-react/src/Linux.tsx index 4f4aa9e2..e1e761b0 100644 --- a/packages/iconoir-react/src/Linux.tsx +++ b/packages/iconoir-react/src/Linux.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLinux( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLinux = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgLinux( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLinux); +}; +const ForwardRef = forwardRef(SvgLinux); export default ForwardRef; diff --git a/packages/iconoir-react/src/List.tsx b/packages/iconoir-react/src/List.tsx index 1bce678a..76c8b1a1 100644 --- a/packages/iconoir-react/src/List.tsx +++ b/packages/iconoir-react/src/List.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgList( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgList = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgList( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgList); +}; +const ForwardRef = forwardRef(SvgList); export default ForwardRef; diff --git a/packages/iconoir-react/src/ListSelect.tsx b/packages/iconoir-react/src/ListSelect.tsx index f6e6dc7e..55b939b9 100644 --- a/packages/iconoir-react/src/ListSelect.tsx +++ b/packages/iconoir-react/src/ListSelect.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgListSelect( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgListSelect = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgListSelect( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgListSelect); +}; +const ForwardRef = forwardRef(SvgListSelect); export default ForwardRef; diff --git a/packages/iconoir-react/src/LitecoinCircle.tsx b/packages/iconoir-react/src/LitecoinCircle.tsx index d45658be..25c718e5 100644 --- a/packages/iconoir-react/src/LitecoinCircle.tsx +++ b/packages/iconoir-react/src/LitecoinCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLitecoinCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLitecoinCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgLitecoinCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLitecoinCircle); +}; +const ForwardRef = forwardRef(SvgLitecoinCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/LitecoinRotateOut.tsx b/packages/iconoir-react/src/LitecoinRotateOut.tsx index d0f0d067..56728f8f 100644 --- a/packages/iconoir-react/src/LitecoinRotateOut.tsx +++ b/packages/iconoir-react/src/LitecoinRotateOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLitecoinRotateOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLitecoinRotateOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,47 +13,47 @@ function SvgLitecoinRotateOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLitecoinRotateOut); +}; +const ForwardRef = forwardRef(SvgLitecoinRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/LoadActionFloppy.tsx b/packages/iconoir-react/src/LoadActionFloppy.tsx index 58d7dab5..ab63c38c 100644 --- a/packages/iconoir-react/src/LoadActionFloppy.tsx +++ b/packages/iconoir-react/src/LoadActionFloppy.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLoadActionFloppy( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLoadActionFloppy = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLoadActionFloppy( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLoadActionFloppy); +}; +const ForwardRef = forwardRef(SvgLoadActionFloppy); export default ForwardRef; diff --git a/packages/iconoir-react/src/Lock.tsx b/packages/iconoir-react/src/Lock.tsx index ac586552..5415db55 100644 --- a/packages/iconoir-react/src/Lock.tsx +++ b/packages/iconoir-react/src/Lock.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLock( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLock = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLock( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLock); +}; +const ForwardRef = forwardRef(SvgLock); export default ForwardRef; diff --git a/packages/iconoir-react/src/LockKey.tsx b/packages/iconoir-react/src/LockKey.tsx index f1ff1f08..1d03ed2a 100644 --- a/packages/iconoir-react/src/LockKey.tsx +++ b/packages/iconoir-react/src/LockKey.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLockKey( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLockKey = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgLockKey( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLockKey); +}; +const ForwardRef = forwardRef(SvgLockKey); export default ForwardRef; diff --git a/packages/iconoir-react/src/LockedBook.tsx b/packages/iconoir-react/src/LockedBook.tsx index ff311de0..d359769e 100644 --- a/packages/iconoir-react/src/LockedBook.tsx +++ b/packages/iconoir-react/src/LockedBook.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLockedBook( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLockedBook = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgLockedBook( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgLockedBook); +}; +const ForwardRef = forwardRef(SvgLockedBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/LockedWindow.tsx b/packages/iconoir-react/src/LockedWindow.tsx index d6e072af..4a4d8a59 100644 --- a/packages/iconoir-react/src/LockedWindow.tsx +++ b/packages/iconoir-react/src/LockedWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLockedWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLockedWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgLockedWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLockedWindow); +}; +const ForwardRef = forwardRef(SvgLockedWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Loft3D.tsx b/packages/iconoir-react/src/Loft3D.tsx index fcc7eaf0..a4f0b510 100644 --- a/packages/iconoir-react/src/Loft3D.tsx +++ b/packages/iconoir-react/src/Loft3D.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLoft3D( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLoft3D = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLoft3D( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLoft3D); +}; +const ForwardRef = forwardRef(SvgLoft3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/LogDenied.tsx b/packages/iconoir-react/src/LogDenied.tsx index 06f4b019..7dd49227 100644 --- a/packages/iconoir-react/src/LogDenied.tsx +++ b/packages/iconoir-react/src/LogDenied.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLogDenied( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLogDenied = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLogDenied( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLogDenied); +}; +const ForwardRef = forwardRef(SvgLogDenied); export default ForwardRef; diff --git a/packages/iconoir-react/src/LogIn.tsx b/packages/iconoir-react/src/LogIn.tsx index e4269a27..94c51210 100644 --- a/packages/iconoir-react/src/LogIn.tsx +++ b/packages/iconoir-react/src/LogIn.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLogIn( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLogIn = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLogIn( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLogIn); +}; +const ForwardRef = forwardRef(SvgLogIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/LogOut.tsx b/packages/iconoir-react/src/LogOut.tsx index b1c1a4af..cfda6c81 100644 --- a/packages/iconoir-react/src/LogOut.tsx +++ b/packages/iconoir-react/src/LogOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLogOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLogOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLogOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLogOut); +}; +const ForwardRef = forwardRef(SvgLogOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/LongArrowDownLeft.tsx b/packages/iconoir-react/src/LongArrowDownLeft.tsx index 14988ca8..0f7100e6 100644 --- a/packages/iconoir-react/src/LongArrowDownLeft.tsx +++ b/packages/iconoir-react/src/LongArrowDownLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowDownLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLongArrowDownLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLongArrowDownLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowDownLeft); +}; +const ForwardRef = forwardRef(SvgLongArrowDownLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/LongArrowDownRight.tsx b/packages/iconoir-react/src/LongArrowDownRight.tsx index fbb67c3b..4214be1a 100644 --- a/packages/iconoir-react/src/LongArrowDownRight.tsx +++ b/packages/iconoir-react/src/LongArrowDownRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowDownRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLongArrowDownRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLongArrowDownRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowDownRight); +}; +const ForwardRef = forwardRef(SvgLongArrowDownRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/LongArrowLeftDown.tsx b/packages/iconoir-react/src/LongArrowLeftDown.tsx index 6439685b..382d76a3 100644 --- a/packages/iconoir-react/src/LongArrowLeftDown.tsx +++ b/packages/iconoir-react/src/LongArrowLeftDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowLeftDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLongArrowLeftDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLongArrowLeftDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowLeftDown); +}; +const ForwardRef = forwardRef(SvgLongArrowLeftDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/LongArrowLeftUp.tsx b/packages/iconoir-react/src/LongArrowLeftUp.tsx index 1794e56b..9c52cf88 100644 --- a/packages/iconoir-react/src/LongArrowLeftUp.tsx +++ b/packages/iconoir-react/src/LongArrowLeftUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowLeftUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLongArrowLeftUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLongArrowLeftUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowLeftUp); +}; +const ForwardRef = forwardRef(SvgLongArrowLeftUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/LongArrowRightDown.tsx b/packages/iconoir-react/src/LongArrowRightDown.tsx index 1450c561..ea8679f4 100644 --- a/packages/iconoir-react/src/LongArrowRightDown.tsx +++ b/packages/iconoir-react/src/LongArrowRightDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowRightDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLongArrowRightDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLongArrowRightDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowRightDown); +}; +const ForwardRef = forwardRef(SvgLongArrowRightDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/LongArrowRightUp.tsx b/packages/iconoir-react/src/LongArrowRightUp.tsx index e985e4a5..064cb86d 100644 --- a/packages/iconoir-react/src/LongArrowRightUp.tsx +++ b/packages/iconoir-react/src/LongArrowRightUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowRightUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLongArrowRightUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLongArrowRightUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowRightUp); +}; +const ForwardRef = forwardRef(SvgLongArrowRightUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/LongArrowRightUp1.tsx b/packages/iconoir-react/src/LongArrowRightUp1.tsx index 11468f97..d3d84709 100644 --- a/packages/iconoir-react/src/LongArrowRightUp1.tsx +++ b/packages/iconoir-react/src/LongArrowRightUp1.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowRightUp1( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLongArrowRightUp1 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgLongArrowRightUp1( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowRightUp1); +}; +const ForwardRef = forwardRef(SvgLongArrowRightUp1); export default ForwardRef; diff --git a/packages/iconoir-react/src/LongArrowUpLeft.tsx b/packages/iconoir-react/src/LongArrowUpLeft.tsx index 9221a6aa..e2c9eb01 100644 --- a/packages/iconoir-react/src/LongArrowUpLeft.tsx +++ b/packages/iconoir-react/src/LongArrowUpLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowUpLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLongArrowUpLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLongArrowUpLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowUpLeft); +}; +const ForwardRef = forwardRef(SvgLongArrowUpLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/LongArrowUpRight.tsx b/packages/iconoir-react/src/LongArrowUpRight.tsx index 32ef21e0..10bbe128 100644 --- a/packages/iconoir-react/src/LongArrowUpRight.tsx +++ b/packages/iconoir-react/src/LongArrowUpRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLongArrowUpRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLongArrowUpRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLongArrowUpRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLongArrowUpRight); +}; +const ForwardRef = forwardRef(SvgLongArrowUpRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/LotOfCash.tsx b/packages/iconoir-react/src/LotOfCash.tsx index 5314d1bd..c4f3c64e 100644 --- a/packages/iconoir-react/src/LotOfCash.tsx +++ b/packages/iconoir-react/src/LotOfCash.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLotOfCash( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLotOfCash = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgLotOfCash( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLotOfCash); +}; +const ForwardRef = forwardRef(SvgLotOfCash); export default ForwardRef; diff --git a/packages/iconoir-react/src/Lullaby.tsx b/packages/iconoir-react/src/Lullaby.tsx index 7334670c..45a5ffe0 100644 --- a/packages/iconoir-react/src/Lullaby.tsx +++ b/packages/iconoir-react/src/Lullaby.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgLullaby( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgLullaby = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgLullaby( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgLullaby); +}; +const ForwardRef = forwardRef(SvgLullaby); export default ForwardRef; diff --git a/packages/iconoir-react/src/MacControlKey.tsx b/packages/iconoir-react/src/MacControlKey.tsx index 49a752b2..a1fe1c6d 100644 --- a/packages/iconoir-react/src/MacControlKey.tsx +++ b/packages/iconoir-react/src/MacControlKey.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMacControlKey( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMacControlKey = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgMacControlKey( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMacControlKey); +}; +const ForwardRef = forwardRef(SvgMacControlKey); export default ForwardRef; diff --git a/packages/iconoir-react/src/MacDock.tsx b/packages/iconoir-react/src/MacDock.tsx index 8388e0e8..3124fe34 100644 --- a/packages/iconoir-react/src/MacDock.tsx +++ b/packages/iconoir-react/src/MacDock.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMacDock( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMacDock = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgMacDock( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMacDock); +}; +const ForwardRef = forwardRef(SvgMacDock); export default ForwardRef; diff --git a/packages/iconoir-react/src/MacOptionKey.tsx b/packages/iconoir-react/src/MacOptionKey.tsx index 300b0d7a..3d19bf3d 100644 --- a/packages/iconoir-react/src/MacOptionKey.tsx +++ b/packages/iconoir-react/src/MacOptionKey.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMacOptionKey( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMacOptionKey = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgMacOptionKey( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMacOptionKey); +}; +const ForwardRef = forwardRef(SvgMacOptionKey); export default ForwardRef; diff --git a/packages/iconoir-react/src/MacOsWindow.tsx b/packages/iconoir-react/src/MacOsWindow.tsx index 0d81a157..4acb7b8f 100644 --- a/packages/iconoir-react/src/MacOsWindow.tsx +++ b/packages/iconoir-react/src/MacOsWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMacOsWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMacOsWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgMacOsWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMacOsWindow); +}; +const ForwardRef = forwardRef(SvgMacOsWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/MagicWand.tsx b/packages/iconoir-react/src/MagicWand.tsx index c267cea8..3857fd62 100644 --- a/packages/iconoir-react/src/MagicWand.tsx +++ b/packages/iconoir-react/src/MagicWand.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMagicWand( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMagicWand = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgMagicWand( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMagicWand); +}; +const ForwardRef = forwardRef(SvgMagicWand); export default ForwardRef; diff --git a/packages/iconoir-react/src/Magnet.tsx b/packages/iconoir-react/src/Magnet.tsx index 5b5c5364..42fd6c70 100644 --- a/packages/iconoir-react/src/Magnet.tsx +++ b/packages/iconoir-react/src/Magnet.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMagnet( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMagnet = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMagnet( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMagnet); +}; +const ForwardRef = forwardRef(SvgMagnet); export default ForwardRef; diff --git a/packages/iconoir-react/src/MagnetEnergy.tsx b/packages/iconoir-react/src/MagnetEnergy.tsx index c7b21b7d..7bbdd0e0 100644 --- a/packages/iconoir-react/src/MagnetEnergy.tsx +++ b/packages/iconoir-react/src/MagnetEnergy.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMagnetEnergy( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMagnetEnergy = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,41 +13,41 @@ function SvgMagnetEnergy( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgMagnetEnergy); +}; +const ForwardRef = forwardRef(SvgMagnetEnergy); export default ForwardRef; diff --git a/packages/iconoir-react/src/Mail.tsx b/packages/iconoir-react/src/Mail.tsx index 9c1040fc..7f63fb00 100644 --- a/packages/iconoir-react/src/Mail.tsx +++ b/packages/iconoir-react/src/Mail.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMail( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMail = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgMail( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMail); +}; +const ForwardRef = forwardRef(SvgMail); export default ForwardRef; diff --git a/packages/iconoir-react/src/MailIn.tsx b/packages/iconoir-react/src/MailIn.tsx index 2fdc5089..3119779b 100644 --- a/packages/iconoir-react/src/MailIn.tsx +++ b/packages/iconoir-react/src/MailIn.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMailIn( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMailIn = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgMailIn( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMailIn); +}; +const ForwardRef = forwardRef(SvgMailIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/MailOpened.tsx b/packages/iconoir-react/src/MailOpened.tsx index 32b23f88..1c4e0d3d 100644 --- a/packages/iconoir-react/src/MailOpened.tsx +++ b/packages/iconoir-react/src/MailOpened.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMailOpened( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMailOpened = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgMailOpened( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMailOpened); +}; +const ForwardRef = forwardRef(SvgMailOpened); export default ForwardRef; diff --git a/packages/iconoir-react/src/MailOut.tsx b/packages/iconoir-react/src/MailOut.tsx index a288afe8..953422bc 100644 --- a/packages/iconoir-react/src/MailOut.tsx +++ b/packages/iconoir-react/src/MailOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMailOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMailOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgMailOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMailOut); +}; +const ForwardRef = forwardRef(SvgMailOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/Male.tsx b/packages/iconoir-react/src/Male.tsx index da15c7c9..d4b49c05 100644 --- a/packages/iconoir-react/src/Male.tsx +++ b/packages/iconoir-react/src/Male.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMale( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMale = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMale( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMale); +}; +const ForwardRef = forwardRef(SvgMale); export default ForwardRef; diff --git a/packages/iconoir-react/src/Map.tsx b/packages/iconoir-react/src/Map.tsx index bf7b156d..7dbbad34 100644 --- a/packages/iconoir-react/src/Map.tsx +++ b/packages/iconoir-react/src/Map.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMap( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMap = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMap( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMap); +}; +const ForwardRef = forwardRef(SvgMap); export default ForwardRef; diff --git a/packages/iconoir-react/src/MapIssue.tsx b/packages/iconoir-react/src/MapIssue.tsx index 7654e44a..20120ac2 100644 --- a/packages/iconoir-react/src/MapIssue.tsx +++ b/packages/iconoir-react/src/MapIssue.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapIssue( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMapIssue = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMapIssue( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMapIssue); +}; +const ForwardRef = forwardRef(SvgMapIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/MapsArrow.tsx b/packages/iconoir-react/src/MapsArrow.tsx index d102aa07..30c8bb45 100644 --- a/packages/iconoir-react/src/MapsArrow.tsx +++ b/packages/iconoir-react/src/MapsArrow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsArrow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMapsArrow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMapsArrow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMapsArrow); +}; +const ForwardRef = forwardRef(SvgMapsArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/MapsArrowDiagonal.tsx b/packages/iconoir-react/src/MapsArrowDiagonal.tsx index 5114c19c..15059bb9 100644 --- a/packages/iconoir-react/src/MapsArrowDiagonal.tsx +++ b/packages/iconoir-react/src/MapsArrowDiagonal.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsArrowDiagonal( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMapsArrowDiagonal = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMapsArrowDiagonal( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMapsArrowDiagonal); +}; +const ForwardRef = forwardRef(SvgMapsArrowDiagonal); export default ForwardRef; diff --git a/packages/iconoir-react/src/MapsArrowIssue.tsx b/packages/iconoir-react/src/MapsArrowIssue.tsx index 56a2570a..73ed1e87 100644 --- a/packages/iconoir-react/src/MapsArrowIssue.tsx +++ b/packages/iconoir-react/src/MapsArrowIssue.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsArrowIssue( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMapsArrowIssue = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMapsArrowIssue( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMapsArrowIssue); +}; +const ForwardRef = forwardRef(SvgMapsArrowIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/MapsGoStraight.tsx b/packages/iconoir-react/src/MapsGoStraight.tsx index 91158b80..18dbef77 100644 --- a/packages/iconoir-react/src/MapsGoStraight.tsx +++ b/packages/iconoir-react/src/MapsGoStraight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsGoStraight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMapsGoStraight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMapsGoStraight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMapsGoStraight); +}; +const ForwardRef = forwardRef(SvgMapsGoStraight); export default ForwardRef; diff --git a/packages/iconoir-react/src/MapsTurnBack.tsx b/packages/iconoir-react/src/MapsTurnBack.tsx index 92fdba24..6898cc13 100644 --- a/packages/iconoir-react/src/MapsTurnBack.tsx +++ b/packages/iconoir-react/src/MapsTurnBack.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsTurnBack( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMapsTurnBack = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMapsTurnBack( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMapsTurnBack); +}; +const ForwardRef = forwardRef(SvgMapsTurnBack); export default ForwardRef; diff --git a/packages/iconoir-react/src/MapsTurnLeft.tsx b/packages/iconoir-react/src/MapsTurnLeft.tsx index 700e4e5e..be8402e2 100644 --- a/packages/iconoir-react/src/MapsTurnLeft.tsx +++ b/packages/iconoir-react/src/MapsTurnLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsTurnLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMapsTurnLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMapsTurnLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMapsTurnLeft); +}; +const ForwardRef = forwardRef(SvgMapsTurnLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/MapsTurnRight.tsx b/packages/iconoir-react/src/MapsTurnRight.tsx index 34f8867e..2e948a3e 100644 --- a/packages/iconoir-react/src/MapsTurnRight.tsx +++ b/packages/iconoir-react/src/MapsTurnRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMapsTurnRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMapsTurnRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMapsTurnRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMapsTurnRight); +}; +const ForwardRef = forwardRef(SvgMapsTurnRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/MaskSquare.tsx b/packages/iconoir-react/src/MaskSquare.tsx index 2a6bdfa4..a4226f77 100644 --- a/packages/iconoir-react/src/MaskSquare.tsx +++ b/packages/iconoir-react/src/MaskSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMaskSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMaskSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMaskSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMaskSquare); +}; +const ForwardRef = forwardRef(SvgMaskSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/MastercardCard.tsx b/packages/iconoir-react/src/MastercardCard.tsx index 2cf4729e..a6fc6ad5 100644 --- a/packages/iconoir-react/src/MastercardCard.tsx +++ b/packages/iconoir-react/src/MastercardCard.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMastercardCard( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMastercardCard = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgMastercardCard( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgMastercardCard); +}; +const ForwardRef = forwardRef(SvgMastercardCard); export default ForwardRef; diff --git a/packages/iconoir-react/src/MathBook.tsx b/packages/iconoir-react/src/MathBook.tsx index f2331fab..045c4f01 100644 --- a/packages/iconoir-react/src/MathBook.tsx +++ b/packages/iconoir-react/src/MathBook.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMathBook( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMathBook = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgMathBook( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgMathBook); +}; +const ForwardRef = forwardRef(SvgMathBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/Maximize.tsx b/packages/iconoir-react/src/Maximize.tsx index ecd16005..88b34d52 100644 --- a/packages/iconoir-react/src/Maximize.tsx +++ b/packages/iconoir-react/src/Maximize.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMaximize( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMaximize = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMaximize( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMaximize); +}; +const ForwardRef = forwardRef(SvgMaximize); export default ForwardRef; diff --git a/packages/iconoir-react/src/Medal.tsx b/packages/iconoir-react/src/Medal.tsx index 80ffd843..43329d14 100644 --- a/packages/iconoir-react/src/Medal.tsx +++ b/packages/iconoir-react/src/Medal.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMedal( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMedal = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMedal( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMedal); +}; +const ForwardRef = forwardRef(SvgMedal); export default ForwardRef; diff --git a/packages/iconoir-react/src/Medal1St.tsx b/packages/iconoir-react/src/Medal1St.tsx index 7028e2dc..244c54cb 100644 --- a/packages/iconoir-react/src/Medal1St.tsx +++ b/packages/iconoir-react/src/Medal1St.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMedal1St( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMedal1St = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMedal1St( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMedal1St); +}; +const ForwardRef = forwardRef(SvgMedal1St); export default ForwardRef; diff --git a/packages/iconoir-react/src/MediaImage.tsx b/packages/iconoir-react/src/MediaImage.tsx index 733089b1..1a2da297 100644 --- a/packages/iconoir-react/src/MediaImage.tsx +++ b/packages/iconoir-react/src/MediaImage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaImage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMediaImage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMediaImage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMediaImage); +}; +const ForwardRef = forwardRef(SvgMediaImage); export default ForwardRef; diff --git a/packages/iconoir-react/src/MediaImageFolder.tsx b/packages/iconoir-react/src/MediaImageFolder.tsx index 957bdc64..6f57c808 100644 --- a/packages/iconoir-react/src/MediaImageFolder.tsx +++ b/packages/iconoir-react/src/MediaImageFolder.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaImageFolder( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMediaImageFolder = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMediaImageFolder( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMediaImageFolder); +}; +const ForwardRef = forwardRef(SvgMediaImageFolder); export default ForwardRef; diff --git a/packages/iconoir-react/src/MediaImageList.tsx b/packages/iconoir-react/src/MediaImageList.tsx index 2bd9c4da..b615166b 100644 --- a/packages/iconoir-react/src/MediaImageList.tsx +++ b/packages/iconoir-react/src/MediaImageList.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaImageList( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMediaImageList = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMediaImageList( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMediaImageList); +}; +const ForwardRef = forwardRef(SvgMediaImageList); export default ForwardRef; diff --git a/packages/iconoir-react/src/MediaVideo.tsx b/packages/iconoir-react/src/MediaVideo.tsx index fc60a202..51f7f8e0 100644 --- a/packages/iconoir-react/src/MediaVideo.tsx +++ b/packages/iconoir-react/src/MediaVideo.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaVideo( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMediaVideo = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMediaVideo( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMediaVideo); +}; +const ForwardRef = forwardRef(SvgMediaVideo); export default ForwardRef; diff --git a/packages/iconoir-react/src/MediaVideoFolder.tsx b/packages/iconoir-react/src/MediaVideoFolder.tsx index 1ba5b020..088a923d 100644 --- a/packages/iconoir-react/src/MediaVideoFolder.tsx +++ b/packages/iconoir-react/src/MediaVideoFolder.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaVideoFolder( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMediaVideoFolder = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMediaVideoFolder( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMediaVideoFolder); +}; +const ForwardRef = forwardRef(SvgMediaVideoFolder); export default ForwardRef; diff --git a/packages/iconoir-react/src/MediaVideoList.tsx b/packages/iconoir-react/src/MediaVideoList.tsx index cfb8d9c2..cf37328a 100644 --- a/packages/iconoir-react/src/MediaVideoList.tsx +++ b/packages/iconoir-react/src/MediaVideoList.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediaVideoList( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMediaVideoList = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMediaVideoList( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMediaVideoList); +}; +const ForwardRef = forwardRef(SvgMediaVideoList); export default ForwardRef; diff --git a/packages/iconoir-react/src/Medium.tsx b/packages/iconoir-react/src/Medium.tsx index 1a7def06..9d3d77d5 100644 --- a/packages/iconoir-react/src/Medium.tsx +++ b/packages/iconoir-react/src/Medium.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMedium( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMedium = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMedium( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMedium); +}; +const ForwardRef = forwardRef(SvgMedium); export default ForwardRef; diff --git a/packages/iconoir-react/src/MediumPriority.tsx b/packages/iconoir-react/src/MediumPriority.tsx index cc1d88eb..25276ab0 100644 --- a/packages/iconoir-react/src/MediumPriority.tsx +++ b/packages/iconoir-react/src/MediumPriority.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMediumPriority( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMediumPriority = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgMediumPriority( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgMediumPriority); +}; +const ForwardRef = forwardRef(SvgMediumPriority); export default ForwardRef; diff --git a/packages/iconoir-react/src/Megaphone.tsx b/packages/iconoir-react/src/Megaphone.tsx index c5d72e7c..fba95a4d 100644 --- a/packages/iconoir-react/src/Megaphone.tsx +++ b/packages/iconoir-react/src/Megaphone.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMegaphone( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMegaphone = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgMegaphone( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMegaphone); +}; +const ForwardRef = forwardRef(SvgMegaphone); export default ForwardRef; diff --git a/packages/iconoir-react/src/Menu.tsx b/packages/iconoir-react/src/Menu.tsx index 8fb6e5e7..56c49ec9 100644 --- a/packages/iconoir-react/src/Menu.tsx +++ b/packages/iconoir-react/src/Menu.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMenu( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMenu = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMenu( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMenu); +}; +const ForwardRef = forwardRef(SvgMenu); export default ForwardRef; diff --git a/packages/iconoir-react/src/MenuScale.tsx b/packages/iconoir-react/src/MenuScale.tsx index 396c170a..180a5ccc 100644 --- a/packages/iconoir-react/src/MenuScale.tsx +++ b/packages/iconoir-react/src/MenuScale.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMenuScale( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMenuScale = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMenuScale( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMenuScale); +}; +const ForwardRef = forwardRef(SvgMenuScale); export default ForwardRef; diff --git a/packages/iconoir-react/src/Message.tsx b/packages/iconoir-react/src/Message.tsx index 546f2548..38ddd99d 100644 --- a/packages/iconoir-react/src/Message.tsx +++ b/packages/iconoir-react/src/Message.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMessage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMessage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgMessage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMessage); +}; +const ForwardRef = forwardRef(SvgMessage); export default ForwardRef; diff --git a/packages/iconoir-react/src/MessageAlert.tsx b/packages/iconoir-react/src/MessageAlert.tsx index cedb937d..b20a5f56 100644 --- a/packages/iconoir-react/src/MessageAlert.tsx +++ b/packages/iconoir-react/src/MessageAlert.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMessageAlert( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMessageAlert = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgMessageAlert( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMessageAlert); +}; +const ForwardRef = forwardRef(SvgMessageAlert); export default ForwardRef; diff --git a/packages/iconoir-react/src/MessageText.tsx b/packages/iconoir-react/src/MessageText.tsx index a90be91c..6c105ed9 100644 --- a/packages/iconoir-react/src/MessageText.tsx +++ b/packages/iconoir-react/src/MessageText.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMessageText( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMessageText = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgMessageText( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMessageText); +}; +const ForwardRef = forwardRef(SvgMessageText); export default ForwardRef; diff --git a/packages/iconoir-react/src/Metro.tsx b/packages/iconoir-react/src/Metro.tsx index 517b4e40..289f33dc 100644 --- a/packages/iconoir-react/src/Metro.tsx +++ b/packages/iconoir-react/src/Metro.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMetro( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMetro = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,41 +13,41 @@ function SvgMetro( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMetro); +}; +const ForwardRef = forwardRef(SvgMetro); export default ForwardRef; diff --git a/packages/iconoir-react/src/Mic.tsx b/packages/iconoir-react/src/Mic.tsx index 21ae0e3f..b6cc5c3c 100644 --- a/packages/iconoir-react/src/Mic.tsx +++ b/packages/iconoir-react/src/Mic.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMic( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMic = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgMic( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgMic); +}; +const ForwardRef = forwardRef(SvgMic); export default ForwardRef; diff --git a/packages/iconoir-react/src/MicAdd.tsx b/packages/iconoir-react/src/MicAdd.tsx index ba16f603..0c8c5790 100644 --- a/packages/iconoir-react/src/MicAdd.tsx +++ b/packages/iconoir-react/src/MicAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMicAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgMicAdd( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgMicAdd); +}; +const ForwardRef = forwardRef(SvgMicAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/MicCheck.tsx b/packages/iconoir-react/src/MicCheck.tsx index b11177b3..09ccdfef 100644 --- a/packages/iconoir-react/src/MicCheck.tsx +++ b/packages/iconoir-react/src/MicCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMicCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgMicCheck( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgMicCheck); +}; +const ForwardRef = forwardRef(SvgMicCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/MicMute.tsx b/packages/iconoir-react/src/MicMute.tsx index 0ae62fc7..4bd512d6 100644 --- a/packages/iconoir-react/src/MicMute.tsx +++ b/packages/iconoir-react/src/MicMute.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicMute( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMicMute = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMicMute( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMicMute); +}; +const ForwardRef = forwardRef(SvgMicMute); export default ForwardRef; diff --git a/packages/iconoir-react/src/MicRemove.tsx b/packages/iconoir-react/src/MicRemove.tsx index 1fd59f08..682e7864 100644 --- a/packages/iconoir-react/src/MicRemove.tsx +++ b/packages/iconoir-react/src/MicRemove.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicRemove( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMicRemove = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgMicRemove( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgMicRemove); +}; +const ForwardRef = forwardRef(SvgMicRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/MicSpeaking.tsx b/packages/iconoir-react/src/MicSpeaking.tsx index 20d033cb..f6169ab1 100644 --- a/packages/iconoir-react/src/MicSpeaking.tsx +++ b/packages/iconoir-react/src/MicSpeaking.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicSpeaking( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMicSpeaking = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgMicSpeaking( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgMicSpeaking); +}; +const ForwardRef = forwardRef(SvgMicSpeaking); export default ForwardRef; diff --git a/packages/iconoir-react/src/MicWarning.tsx b/packages/iconoir-react/src/MicWarning.tsx index 9a647b4f..2e94e1f1 100644 --- a/packages/iconoir-react/src/MicWarning.tsx +++ b/packages/iconoir-react/src/MicWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMicWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgMicWarning( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgMicWarning); +}; +const ForwardRef = forwardRef(SvgMicWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/Microscope.tsx b/packages/iconoir-react/src/Microscope.tsx index 067c6a45..285408bf 100644 --- a/packages/iconoir-react/src/Microscope.tsx +++ b/packages/iconoir-react/src/Microscope.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMicroscope( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMicroscope = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMicroscope( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMicroscope); +}; +const ForwardRef = forwardRef(SvgMicroscope); export default ForwardRef; diff --git a/packages/iconoir-react/src/Minus.tsx b/packages/iconoir-react/src/Minus.tsx index da37e328..806754c1 100644 --- a/packages/iconoir-react/src/Minus.tsx +++ b/packages/iconoir-react/src/Minus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMinus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMinus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMinus); +}; +const ForwardRef = forwardRef(SvgMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/Minus1.tsx b/packages/iconoir-react/src/Minus1.tsx index 24851ad0..e92fd3fd 100644 --- a/packages/iconoir-react/src/Minus1.tsx +++ b/packages/iconoir-react/src/Minus1.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinus1( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMinus1 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMinus1( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMinus1); +}; +const ForwardRef = forwardRef(SvgMinus1); export default ForwardRef; diff --git a/packages/iconoir-react/src/MinusCircle.tsx b/packages/iconoir-react/src/MinusCircle.tsx index d2d3d441..6602b02c 100644 --- a/packages/iconoir-react/src/MinusCircle.tsx +++ b/packages/iconoir-react/src/MinusCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinusCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMinusCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMinusCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMinusCircle); +}; +const ForwardRef = forwardRef(SvgMinusCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/MinusHexagon.tsx b/packages/iconoir-react/src/MinusHexagon.tsx index 0d9d6787..76b74a04 100644 --- a/packages/iconoir-react/src/MinusHexagon.tsx +++ b/packages/iconoir-react/src/MinusHexagon.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinusHexagon( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMinusHexagon = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMinusHexagon( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMinusHexagon); +}; +const ForwardRef = forwardRef(SvgMinusHexagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/MinusPinAlt.tsx b/packages/iconoir-react/src/MinusPinAlt.tsx index dac9884f..5c0305d9 100644 --- a/packages/iconoir-react/src/MinusPinAlt.tsx +++ b/packages/iconoir-react/src/MinusPinAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinusPinAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMinusPinAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgMinusPinAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMinusPinAlt); +}; +const ForwardRef = forwardRef(SvgMinusPinAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/MinusSquare.tsx b/packages/iconoir-react/src/MinusSquare.tsx index 9af7da65..6fd902d9 100644 --- a/packages/iconoir-react/src/MinusSquare.tsx +++ b/packages/iconoir-react/src/MinusSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMinusSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMinusSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMinusSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMinusSquare); +}; +const ForwardRef = forwardRef(SvgMinusSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Mirror.tsx b/packages/iconoir-react/src/Mirror.tsx index 48b14d42..06413773 100644 --- a/packages/iconoir-react/src/Mirror.tsx +++ b/packages/iconoir-react/src/Mirror.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMirror( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMirror = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMirror( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMirror); +}; +const ForwardRef = forwardRef(SvgMirror); export default ForwardRef; diff --git a/packages/iconoir-react/src/MissingFont.tsx b/packages/iconoir-react/src/MissingFont.tsx index fc1dec7c..e4abc3fa 100644 --- a/packages/iconoir-react/src/MissingFont.tsx +++ b/packages/iconoir-react/src/MissingFont.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMissingFont( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMissingFont = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMissingFont( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMissingFont); +}; +const ForwardRef = forwardRef(SvgMissingFont); export default ForwardRef; diff --git a/packages/iconoir-react/src/ModernTv.tsx b/packages/iconoir-react/src/ModernTv.tsx index 95cc283c..e97d28a2 100644 --- a/packages/iconoir-react/src/ModernTv.tsx +++ b/packages/iconoir-react/src/ModernTv.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgModernTv( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgModernTv = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgModernTv( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgModernTv); +}; +const ForwardRef = forwardRef(SvgModernTv); export default ForwardRef; diff --git a/packages/iconoir-react/src/ModernTv4K.tsx b/packages/iconoir-react/src/ModernTv4K.tsx index c9272b2d..cd8ac976 100644 --- a/packages/iconoir-react/src/ModernTv4K.tsx +++ b/packages/iconoir-react/src/ModernTv4K.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgModernTv4K( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgModernTv4K = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgModernTv4K( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgModernTv4K); +}; +const ForwardRef = forwardRef(SvgModernTv4K); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoneySquare.tsx b/packages/iconoir-react/src/MoneySquare.tsx index 3bae4309..73ca517b 100644 --- a/packages/iconoir-react/src/MoneySquare.tsx +++ b/packages/iconoir-react/src/MoneySquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoneySquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoneySquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgMoneySquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoneySquare); +}; +const ForwardRef = forwardRef(SvgMoneySquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoonSat.tsx b/packages/iconoir-react/src/MoonSat.tsx index 557a1d07..e7cd7088 100644 --- a/packages/iconoir-react/src/MoonSat.tsx +++ b/packages/iconoir-react/src/MoonSat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoonSat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoonSat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgMoonSat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoonSat); +}; +const ForwardRef = forwardRef(SvgMoonSat); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoreHoriz.tsx b/packages/iconoir-react/src/MoreHoriz.tsx index 00874b13..3da67540 100644 --- a/packages/iconoir-react/src/MoreHoriz.tsx +++ b/packages/iconoir-react/src/MoreHoriz.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoreHoriz( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoreHoriz = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgMoreHoriz( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoreHoriz); +}; +const ForwardRef = forwardRef(SvgMoreHoriz); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoreHorizCircle.tsx b/packages/iconoir-react/src/MoreHorizCircle.tsx index aba824db..c652a3df 100644 --- a/packages/iconoir-react/src/MoreHorizCircle.tsx +++ b/packages/iconoir-react/src/MoreHorizCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoreHorizCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoreHorizCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgMoreHorizCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoreHorizCircle); +}; +const ForwardRef = forwardRef(SvgMoreHorizCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoreVert.tsx b/packages/iconoir-react/src/MoreVert.tsx index c6765d22..3e0df839 100644 --- a/packages/iconoir-react/src/MoreVert.tsx +++ b/packages/iconoir-react/src/MoreVert.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoreVert( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoreVert = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgMoreVert( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoreVert); +}; +const ForwardRef = forwardRef(SvgMoreVert); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoreVertCircle.tsx b/packages/iconoir-react/src/MoreVertCircle.tsx index fd63fc58..f399eb1c 100644 --- a/packages/iconoir-react/src/MoreVertCircle.tsx +++ b/packages/iconoir-react/src/MoreVertCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoreVertCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoreVertCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgMoreVertCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoreVertCircle); +}; +const ForwardRef = forwardRef(SvgMoreVertCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/Motorcycle.tsx b/packages/iconoir-react/src/Motorcycle.tsx index bd217197..8b89755a 100644 --- a/packages/iconoir-react/src/Motorcycle.tsx +++ b/packages/iconoir-react/src/Motorcycle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMotorcycle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMotorcycle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMotorcycle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMotorcycle); +}; +const ForwardRef = forwardRef(SvgMotorcycle); export default ForwardRef; diff --git a/packages/iconoir-react/src/MouseButtonLeft.tsx b/packages/iconoir-react/src/MouseButtonLeft.tsx index 255d0d17..7bfdffa3 100644 --- a/packages/iconoir-react/src/MouseButtonLeft.tsx +++ b/packages/iconoir-react/src/MouseButtonLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMouseButtonLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMouseButtonLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgMouseButtonLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMouseButtonLeft); +}; +const ForwardRef = forwardRef(SvgMouseButtonLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/MouseButtonRight.tsx b/packages/iconoir-react/src/MouseButtonRight.tsx index 7402e49e..832d3647 100644 --- a/packages/iconoir-react/src/MouseButtonRight.tsx +++ b/packages/iconoir-react/src/MouseButtonRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMouseButtonRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMouseButtonRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgMouseButtonRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMouseButtonRight); +}; +const ForwardRef = forwardRef(SvgMouseButtonRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/MouseScrollWheel.tsx b/packages/iconoir-react/src/MouseScrollWheel.tsx index 0bac6219..54be4b11 100644 --- a/packages/iconoir-react/src/MouseScrollWheel.tsx +++ b/packages/iconoir-react/src/MouseScrollWheel.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMouseScrollWheel( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMouseScrollWheel = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgMouseScrollWheel( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMouseScrollWheel); +}; +const ForwardRef = forwardRef(SvgMouseScrollWheel); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoveDown.tsx b/packages/iconoir-react/src/MoveDown.tsx index 81187fca..2a8d9ae1 100644 --- a/packages/iconoir-react/src/MoveDown.tsx +++ b/packages/iconoir-react/src/MoveDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoveDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoveDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMoveDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoveDown); +}; +const ForwardRef = forwardRef(SvgMoveDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoveLeft.tsx b/packages/iconoir-react/src/MoveLeft.tsx index 4f876908..0c0c6a44 100644 --- a/packages/iconoir-react/src/MoveLeft.tsx +++ b/packages/iconoir-react/src/MoveLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoveLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoveLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMoveLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoveLeft); +}; +const ForwardRef = forwardRef(SvgMoveLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoveRight.tsx b/packages/iconoir-react/src/MoveRight.tsx index 829740af..420cc400 100644 --- a/packages/iconoir-react/src/MoveRight.tsx +++ b/packages/iconoir-react/src/MoveRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoveRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoveRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMoveRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoveRight); +}; +const ForwardRef = forwardRef(SvgMoveRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoveRuler.tsx b/packages/iconoir-react/src/MoveRuler.tsx index 5ae3c9f4..04007995 100644 --- a/packages/iconoir-react/src/MoveRuler.tsx +++ b/packages/iconoir-react/src/MoveRuler.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoveRuler( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoveRuler = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMoveRuler( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoveRuler); +}; +const ForwardRef = forwardRef(SvgMoveRuler); export default ForwardRef; diff --git a/packages/iconoir-react/src/MoveUp.tsx b/packages/iconoir-react/src/MoveUp.tsx index e96b227b..c4b4d8e6 100644 --- a/packages/iconoir-react/src/MoveUp.tsx +++ b/packages/iconoir-react/src/MoveUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMoveUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMoveUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMoveUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMoveUp); +}; +const ForwardRef = forwardRef(SvgMoveUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/Movie.tsx b/packages/iconoir-react/src/Movie.tsx index 4979dd82..b811a2ae 100644 --- a/packages/iconoir-react/src/Movie.tsx +++ b/packages/iconoir-react/src/Movie.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMovie( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMovie = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMovie( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMovie); +}; +const ForwardRef = forwardRef(SvgMovie); export default ForwardRef; diff --git a/packages/iconoir-react/src/MpegFormat.tsx b/packages/iconoir-react/src/MpegFormat.tsx index adeed521..eb1be025 100644 --- a/packages/iconoir-react/src/MpegFormat.tsx +++ b/packages/iconoir-react/src/MpegFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMpegFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMpegFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgMpegFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMpegFormat); +}; +const ForwardRef = forwardRef(SvgMpegFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/MultiBubble.tsx b/packages/iconoir-react/src/MultiBubble.tsx index 585f9a40..3889f740 100644 --- a/packages/iconoir-react/src/MultiBubble.tsx +++ b/packages/iconoir-react/src/MultiBubble.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiBubble( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMultiBubble = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMultiBubble( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMultiBubble); +}; +const ForwardRef = forwardRef(SvgMultiBubble); export default ForwardRef; diff --git a/packages/iconoir-react/src/MultiMacOsWindow.tsx b/packages/iconoir-react/src/MultiMacOsWindow.tsx index 35966cbe..2ab77809 100644 --- a/packages/iconoir-react/src/MultiMacOsWindow.tsx +++ b/packages/iconoir-react/src/MultiMacOsWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiMacOsWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMultiMacOsWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,38 +13,38 @@ function SvgMultiMacOsWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMultiMacOsWindow); +}; +const ForwardRef = forwardRef(SvgMultiMacOsWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/MultiWindow.tsx b/packages/iconoir-react/src/MultiWindow.tsx index 445ffde7..96f65f5f 100644 --- a/packages/iconoir-react/src/MultiWindow.tsx +++ b/packages/iconoir-react/src/MultiWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMultiWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgMultiWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMultiWindow); +}; +const ForwardRef = forwardRef(SvgMultiWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/MultiplePages.tsx b/packages/iconoir-react/src/MultiplePages.tsx index 0d0773b0..36ef85cf 100644 --- a/packages/iconoir-react/src/MultiplePages.tsx +++ b/packages/iconoir-react/src/MultiplePages.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiplePages( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMultiplePages = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgMultiplePages( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMultiplePages); +}; +const ForwardRef = forwardRef(SvgMultiplePages); export default ForwardRef; diff --git a/packages/iconoir-react/src/MultiplePagesAdd.tsx b/packages/iconoir-react/src/MultiplePagesAdd.tsx index 2f9b1d2b..fa8e1296 100644 --- a/packages/iconoir-react/src/MultiplePagesAdd.tsx +++ b/packages/iconoir-react/src/MultiplePagesAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiplePagesAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMultiplePagesAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgMultiplePagesAdd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesAdd); +}; +const ForwardRef = forwardRef(SvgMultiplePagesAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/MultiplePagesDelete.tsx b/packages/iconoir-react/src/MultiplePagesDelete.tsx index 840c06d9..076e9124 100644 --- a/packages/iconoir-react/src/MultiplePagesDelete.tsx +++ b/packages/iconoir-react/src/MultiplePagesDelete.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiplePagesDelete( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMultiplePagesDelete = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgMultiplePagesDelete( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesDelete); +}; +const ForwardRef = forwardRef(SvgMultiplePagesDelete); export default ForwardRef; diff --git a/packages/iconoir-react/src/MultiplePagesEmpty.tsx b/packages/iconoir-react/src/MultiplePagesEmpty.tsx index b2de2060..6de0af92 100644 --- a/packages/iconoir-react/src/MultiplePagesEmpty.tsx +++ b/packages/iconoir-react/src/MultiplePagesEmpty.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiplePagesEmpty( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMultiplePagesEmpty = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgMultiplePagesEmpty( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesEmpty); +}; +const ForwardRef = forwardRef(SvgMultiplePagesEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/MultiplePagesRemove.tsx b/packages/iconoir-react/src/MultiplePagesRemove.tsx index af9c2a10..caac21b0 100644 --- a/packages/iconoir-react/src/MultiplePagesRemove.tsx +++ b/packages/iconoir-react/src/MultiplePagesRemove.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMultiplePagesRemove( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMultiplePagesRemove = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgMultiplePagesRemove( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesRemove); +}; +const ForwardRef = forwardRef(SvgMultiplePagesRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/MusicDoubleNote.tsx b/packages/iconoir-react/src/MusicDoubleNote.tsx index 60341a32..c17ec12d 100644 --- a/packages/iconoir-react/src/MusicDoubleNote.tsx +++ b/packages/iconoir-react/src/MusicDoubleNote.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMusicDoubleNote( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMusicDoubleNote = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgMusicDoubleNote( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMusicDoubleNote); +}; +const ForwardRef = forwardRef(SvgMusicDoubleNote); export default ForwardRef; diff --git a/packages/iconoir-react/src/MusicDoubleNoteAdd.tsx b/packages/iconoir-react/src/MusicDoubleNoteAdd.tsx index ce81abe3..fb18d913 100644 --- a/packages/iconoir-react/src/MusicDoubleNoteAdd.tsx +++ b/packages/iconoir-react/src/MusicDoubleNoteAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMusicDoubleNoteAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMusicDoubleNoteAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMusicDoubleNoteAdd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMusicDoubleNoteAdd); +}; +const ForwardRef = forwardRef(SvgMusicDoubleNoteAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/MusicNote.tsx b/packages/iconoir-react/src/MusicNote.tsx index aeda8f9d..ec9a6dcc 100644 --- a/packages/iconoir-react/src/MusicNote.tsx +++ b/packages/iconoir-react/src/MusicNote.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMusicNote( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMusicNote = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMusicNote( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMusicNote); +}; +const ForwardRef = forwardRef(SvgMusicNote); export default ForwardRef; diff --git a/packages/iconoir-react/src/MusicNoteAdd.tsx b/packages/iconoir-react/src/MusicNoteAdd.tsx index 74948d80..494891f8 100644 --- a/packages/iconoir-react/src/MusicNoteAdd.tsx +++ b/packages/iconoir-react/src/MusicNoteAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgMusicNoteAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgMusicNoteAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgMusicNoteAdd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgMusicNoteAdd); +}; +const ForwardRef = forwardRef(SvgMusicNoteAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/NavArrowDown.tsx b/packages/iconoir-react/src/NavArrowDown.tsx index 1ce7d729..a9fb988b 100644 --- a/packages/iconoir-react/src/NavArrowDown.tsx +++ b/packages/iconoir-react/src/NavArrowDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavArrowDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNavArrowDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNavArrowDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNavArrowDown); +}; +const ForwardRef = forwardRef(SvgNavArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/NavArrowLeft.tsx b/packages/iconoir-react/src/NavArrowLeft.tsx index 415e6b14..d4950940 100644 --- a/packages/iconoir-react/src/NavArrowLeft.tsx +++ b/packages/iconoir-react/src/NavArrowLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavArrowLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNavArrowLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNavArrowLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNavArrowLeft); +}; +const ForwardRef = forwardRef(SvgNavArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/NavArrowRight.tsx b/packages/iconoir-react/src/NavArrowRight.tsx index be94ea81..747a4e89 100644 --- a/packages/iconoir-react/src/NavArrowRight.tsx +++ b/packages/iconoir-react/src/NavArrowRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavArrowRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNavArrowRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNavArrowRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNavArrowRight); +}; +const ForwardRef = forwardRef(SvgNavArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/NavArrowUp.tsx b/packages/iconoir-react/src/NavArrowUp.tsx index ca7dee32..c768a099 100644 --- a/packages/iconoir-react/src/NavArrowUp.tsx +++ b/packages/iconoir-react/src/NavArrowUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavArrowUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNavArrowUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNavArrowUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNavArrowUp); +}; +const ForwardRef = forwardRef(SvgNavArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/Navigator.tsx b/packages/iconoir-react/src/Navigator.tsx index c11ee7b8..d5dcbf7b 100644 --- a/packages/iconoir-react/src/Navigator.tsx +++ b/packages/iconoir-react/src/Navigator.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavigator( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNavigator = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNavigator( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNavigator); +}; +const ForwardRef = forwardRef(SvgNavigator); export default ForwardRef; diff --git a/packages/iconoir-react/src/NavigatorAlt.tsx b/packages/iconoir-react/src/NavigatorAlt.tsx index b386776e..82f24dfa 100644 --- a/packages/iconoir-react/src/NavigatorAlt.tsx +++ b/packages/iconoir-react/src/NavigatorAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNavigatorAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNavigatorAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNavigatorAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNavigatorAlt); +}; +const ForwardRef = forwardRef(SvgNavigatorAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Neighbourhood.tsx b/packages/iconoir-react/src/Neighbourhood.tsx index 65ca8f15..9bfe67fb 100644 --- a/packages/iconoir-react/src/Neighbourhood.tsx +++ b/packages/iconoir-react/src/Neighbourhood.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNeighbourhood( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNeighbourhood = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgNeighbourhood( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNeighbourhood); +}; +const ForwardRef = forwardRef(SvgNeighbourhood); export default ForwardRef; diff --git a/packages/iconoir-react/src/Network.tsx b/packages/iconoir-react/src/Network.tsx index 96006449..1ceeab9b 100644 --- a/packages/iconoir-react/src/Network.tsx +++ b/packages/iconoir-react/src/Network.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNetwork( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNetwork = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgNetwork( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgNetwork); +}; +const ForwardRef = forwardRef(SvgNetwork); export default ForwardRef; diff --git a/packages/iconoir-react/src/NetworkAlt.tsx b/packages/iconoir-react/src/NetworkAlt.tsx index 6a067f09..9aac2cfe 100644 --- a/packages/iconoir-react/src/NetworkAlt.tsx +++ b/packages/iconoir-react/src/NetworkAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNetworkAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNetworkAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,43 +13,43 @@ function SvgNetworkAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNetworkAlt); +}; +const ForwardRef = forwardRef(SvgNetworkAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/NetworkLeft.tsx b/packages/iconoir-react/src/NetworkLeft.tsx index 5bc310e7..a56dd28b 100644 --- a/packages/iconoir-react/src/NetworkLeft.tsx +++ b/packages/iconoir-react/src/NetworkLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNetworkLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNetworkLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,49 +13,49 @@ function SvgNetworkLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNetworkLeft); +}; +const ForwardRef = forwardRef(SvgNetworkLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/NetworkRight.tsx b/packages/iconoir-react/src/NetworkRight.tsx index 518d0b9e..5a86a21d 100644 --- a/packages/iconoir-react/src/NetworkRight.tsx +++ b/packages/iconoir-react/src/NetworkRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNetworkRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNetworkRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,43 +13,43 @@ function SvgNetworkRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNetworkRight); +}; +const ForwardRef = forwardRef(SvgNetworkRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/NewTab.tsx b/packages/iconoir-react/src/NewTab.tsx index 265f22a7..136bb38f 100644 --- a/packages/iconoir-react/src/NewTab.tsx +++ b/packages/iconoir-react/src/NewTab.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNewTab( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNewTab = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgNewTab( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNewTab); +}; +const ForwardRef = forwardRef(SvgNewTab); export default ForwardRef; diff --git a/packages/iconoir-react/src/NintendoSwitch.tsx b/packages/iconoir-react/src/NintendoSwitch.tsx index 5705d120..384a4f9d 100644 --- a/packages/iconoir-react/src/NintendoSwitch.tsx +++ b/packages/iconoir-react/src/NintendoSwitch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNintendoSwitch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNintendoSwitch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,33 +13,33 @@ function SvgNintendoSwitch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNintendoSwitch); +}; +const ForwardRef = forwardRef(SvgNintendoSwitch); export default ForwardRef; diff --git a/packages/iconoir-react/src/Nitrogen.tsx b/packages/iconoir-react/src/Nitrogen.tsx index b1ebbd54..c0d708df 100644 --- a/packages/iconoir-react/src/Nitrogen.tsx +++ b/packages/iconoir-react/src/Nitrogen.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNitrogen( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNitrogen = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgNitrogen( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNitrogen); +}; +const ForwardRef = forwardRef(SvgNitrogen); export default ForwardRef; diff --git a/packages/iconoir-react/src/NoAccessWindow.tsx b/packages/iconoir-react/src/NoAccessWindow.tsx index acd7231d..73ef5452 100644 --- a/packages/iconoir-react/src/NoAccessWindow.tsx +++ b/packages/iconoir-react/src/NoAccessWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoAccessWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNoAccessWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgNoAccessWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNoAccessWindow); +}; +const ForwardRef = forwardRef(SvgNoAccessWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/NoBattery.tsx b/packages/iconoir-react/src/NoBattery.tsx index e46e88eb..63642aca 100644 --- a/packages/iconoir-react/src/NoBattery.tsx +++ b/packages/iconoir-react/src/NoBattery.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoBattery( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNoBattery = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNoBattery( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNoBattery); +}; +const ForwardRef = forwardRef(SvgNoBattery); export default ForwardRef; diff --git a/packages/iconoir-react/src/NoCoin.tsx b/packages/iconoir-react/src/NoCoin.tsx index 01855244..1dec76f9 100644 --- a/packages/iconoir-react/src/NoCoin.tsx +++ b/packages/iconoir-react/src/NoCoin.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoCoin( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNoCoin = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgNoCoin( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNoCoin); +}; +const ForwardRef = forwardRef(SvgNoCoin); export default ForwardRef; diff --git a/packages/iconoir-react/src/NoCreditCard.tsx b/packages/iconoir-react/src/NoCreditCard.tsx index 2fc19bbe..9daf91cd 100644 --- a/packages/iconoir-react/src/NoCreditCard.tsx +++ b/packages/iconoir-react/src/NoCreditCard.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoCreditCard( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNoCreditCard = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNoCreditCard( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNoCreditCard); +}; +const ForwardRef = forwardRef(SvgNoCreditCard); export default ForwardRef; diff --git a/packages/iconoir-react/src/NoLink.tsx b/packages/iconoir-react/src/NoLink.tsx index 1dc57f18..7d3d3fee 100644 --- a/packages/iconoir-react/src/NoLink.tsx +++ b/packages/iconoir-react/src/NoLink.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoLink( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNoLink = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgNoLink( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgNoLink); +}; +const ForwardRef = forwardRef(SvgNoLink); export default ForwardRef; diff --git a/packages/iconoir-react/src/NoLock.tsx b/packages/iconoir-react/src/NoLock.tsx index f27daa9b..fd675aef 100644 --- a/packages/iconoir-react/src/NoLock.tsx +++ b/packages/iconoir-react/src/NoLock.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoLock( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNoLock = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNoLock( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNoLock); +}; +const ForwardRef = forwardRef(SvgNoLock); export default ForwardRef; diff --git a/packages/iconoir-react/src/NoSmoking.tsx b/packages/iconoir-react/src/NoSmoking.tsx index d296fa51..9eef993f 100644 --- a/packages/iconoir-react/src/NoSmoking.tsx +++ b/packages/iconoir-react/src/NoSmoking.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoSmoking( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNoSmoking = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgNoSmoking( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNoSmoking); +}; +const ForwardRef = forwardRef(SvgNoSmoking); export default ForwardRef; diff --git a/packages/iconoir-react/src/NoSmokingCircle.tsx b/packages/iconoir-react/src/NoSmokingCircle.tsx index bdb84501..1f643046 100644 --- a/packages/iconoir-react/src/NoSmokingCircle.tsx +++ b/packages/iconoir-react/src/NoSmokingCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNoSmokingCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNoSmokingCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,40 +13,40 @@ function SvgNoSmokingCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNoSmokingCircle); +}; +const ForwardRef = forwardRef(SvgNoSmokingCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/NonBinary.tsx b/packages/iconoir-react/src/NonBinary.tsx index 2f686407..de8d13d4 100644 --- a/packages/iconoir-react/src/NonBinary.tsx +++ b/packages/iconoir-react/src/NonBinary.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNonBinary( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNonBinary = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNonBinary( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNonBinary); +}; +const ForwardRef = forwardRef(SvgNonBinary); export default ForwardRef; diff --git a/packages/iconoir-react/src/Notes.tsx b/packages/iconoir-react/src/Notes.tsx index 1ad1615e..1cff88ee 100644 --- a/packages/iconoir-react/src/Notes.tsx +++ b/packages/iconoir-react/src/Notes.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNotes( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNotes = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNotes( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNotes); +}; +const ForwardRef = forwardRef(SvgNotes); export default ForwardRef; diff --git a/packages/iconoir-react/src/Npm.tsx b/packages/iconoir-react/src/Npm.tsx index 1fa2a539..990a69cb 100644 --- a/packages/iconoir-react/src/Npm.tsx +++ b/packages/iconoir-react/src/Npm.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNpm( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNpm = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgNpm( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNpm); +}; +const ForwardRef = forwardRef(SvgNpm); export default ForwardRef; diff --git a/packages/iconoir-react/src/NpmSquare.tsx b/packages/iconoir-react/src/NpmSquare.tsx index d187c347..5ebe44b6 100644 --- a/packages/iconoir-react/src/NpmSquare.tsx +++ b/packages/iconoir-react/src/NpmSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNpmSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNpmSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgNpmSquare( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgNpmSquare); +}; +const ForwardRef = forwardRef(SvgNpmSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Number0Square.tsx b/packages/iconoir-react/src/Number0Square.tsx index d3b8455a..ab6ef115 100644 --- a/packages/iconoir-react/src/Number0Square.tsx +++ b/packages/iconoir-react/src/Number0Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber0Square( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumber0Square = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,26 @@ function SvgNumber0Square( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNumber0Square); +}; +const ForwardRef = forwardRef(SvgNumber0Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/Number1Square.tsx b/packages/iconoir-react/src/Number1Square.tsx index 00196009..5a30233b 100644 --- a/packages/iconoir-react/src/Number1Square.tsx +++ b/packages/iconoir-react/src/Number1Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber1Square( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumber1Square = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgNumber1Square( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNumber1Square); +}; +const ForwardRef = forwardRef(SvgNumber1Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/Number2Square.tsx b/packages/iconoir-react/src/Number2Square.tsx index e8749d61..291cacf5 100644 --- a/packages/iconoir-react/src/Number2Square.tsx +++ b/packages/iconoir-react/src/Number2Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber2Square( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumber2Square = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgNumber2Square( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNumber2Square); +}; +const ForwardRef = forwardRef(SvgNumber2Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/Number3Square.tsx b/packages/iconoir-react/src/Number3Square.tsx index 77f10c29..a74ca296 100644 --- a/packages/iconoir-react/src/Number3Square.tsx +++ b/packages/iconoir-react/src/Number3Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber3Square( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumber3Square = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgNumber3Square( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNumber3Square); +}; +const ForwardRef = forwardRef(SvgNumber3Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/Number4Square.tsx b/packages/iconoir-react/src/Number4Square.tsx index 3ebf132c..755d4780 100644 --- a/packages/iconoir-react/src/Number4Square.tsx +++ b/packages/iconoir-react/src/Number4Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber4Square( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumber4Square = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgNumber4Square( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNumber4Square); +}; +const ForwardRef = forwardRef(SvgNumber4Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/Number5Square.tsx b/packages/iconoir-react/src/Number5Square.tsx index 67f29de5..13a741f3 100644 --- a/packages/iconoir-react/src/Number5Square.tsx +++ b/packages/iconoir-react/src/Number5Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber5Square( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumber5Square = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgNumber5Square( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNumber5Square); +}; +const ForwardRef = forwardRef(SvgNumber5Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/Number6Square.tsx b/packages/iconoir-react/src/Number6Square.tsx index 6d3bd9cf..07e12edd 100644 --- a/packages/iconoir-react/src/Number6Square.tsx +++ b/packages/iconoir-react/src/Number6Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber6Square( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumber6Square = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,34 @@ function SvgNumber6Square( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgNumber6Square); +}; +const ForwardRef = forwardRef(SvgNumber6Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/Number7Square.tsx b/packages/iconoir-react/src/Number7Square.tsx index e9229f0b..3b20c9a1 100644 --- a/packages/iconoir-react/src/Number7Square.tsx +++ b/packages/iconoir-react/src/Number7Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber7Square( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumber7Square = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgNumber7Square( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNumber7Square); +}; +const ForwardRef = forwardRef(SvgNumber7Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/Number8Square.tsx b/packages/iconoir-react/src/Number8Square.tsx index 68a1a811..09b8eb7f 100644 --- a/packages/iconoir-react/src/Number8Square.tsx +++ b/packages/iconoir-react/src/Number8Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber8Square( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumber8Square = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgNumber8Square( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNumber8Square); +}; +const ForwardRef = forwardRef(SvgNumber8Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/Number9Square.tsx b/packages/iconoir-react/src/Number9Square.tsx index d57ed8d0..528bac3e 100644 --- a/packages/iconoir-react/src/Number9Square.tsx +++ b/packages/iconoir-react/src/Number9Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumber9Square( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumber9Square = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,34 @@ function SvgNumber9Square( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgNumber9Square); +}; +const ForwardRef = forwardRef(SvgNumber9Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/NumberedListLeft.tsx b/packages/iconoir-react/src/NumberedListLeft.tsx index 779ec625..8fc28939 100644 --- a/packages/iconoir-react/src/NumberedListLeft.tsx +++ b/packages/iconoir-react/src/NumberedListLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumberedListLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumberedListLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNumberedListLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNumberedListLeft); +}; +const ForwardRef = forwardRef(SvgNumberedListLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/NumberedListRight.tsx b/packages/iconoir-react/src/NumberedListRight.tsx index 004f925b..370db3ac 100644 --- a/packages/iconoir-react/src/NumberedListRight.tsx +++ b/packages/iconoir-react/src/NumberedListRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgNumberedListRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgNumberedListRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgNumberedListRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgNumberedListRight); +}; +const ForwardRef = forwardRef(SvgNumberedListRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/Octagon.tsx b/packages/iconoir-react/src/Octagon.tsx index 032f0346..42c6b638 100644 --- a/packages/iconoir-react/src/Octagon.tsx +++ b/packages/iconoir-react/src/Octagon.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOctagon( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOctagon = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgOctagon( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOctagon); +}; +const ForwardRef = forwardRef(SvgOctagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/OffTag.tsx b/packages/iconoir-react/src/OffTag.tsx index 36801281..5ae73695 100644 --- a/packages/iconoir-react/src/OffTag.tsx +++ b/packages/iconoir-react/src/OffTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOffTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOffTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgOffTag( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgOffTag); +}; +const ForwardRef = forwardRef(SvgOffTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/OilIndustry.tsx b/packages/iconoir-react/src/OilIndustry.tsx index 82c42c10..e0b28137 100644 --- a/packages/iconoir-react/src/OilIndustry.tsx +++ b/packages/iconoir-react/src/OilIndustry.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOilIndustry( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOilIndustry = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgOilIndustry( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOilIndustry); +}; +const ForwardRef = forwardRef(SvgOilIndustry); export default ForwardRef; diff --git a/packages/iconoir-react/src/Okrs.tsx b/packages/iconoir-react/src/Okrs.tsx index 3916be7e..f46bc492 100644 --- a/packages/iconoir-react/src/Okrs.tsx +++ b/packages/iconoir-react/src/Okrs.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOkrs( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOkrs = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgOkrs( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOkrs); +}; +const ForwardRef = forwardRef(SvgOkrs); export default ForwardRef; diff --git a/packages/iconoir-react/src/OnTag.tsx b/packages/iconoir-react/src/OnTag.tsx index d55314f1..04a88563 100644 --- a/packages/iconoir-react/src/OnTag.tsx +++ b/packages/iconoir-react/src/OnTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOnTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOnTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgOnTag( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgOnTag); +}; +const ForwardRef = forwardRef(SvgOnTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/OneFingerSelectHandGesture.tsx b/packages/iconoir-react/src/OneFingerSelectHandGesture.tsx index 08e90e10..8a40d1dc 100644 --- a/packages/iconoir-react/src/OneFingerSelectHandGesture.tsx +++ b/packages/iconoir-react/src/OneFingerSelectHandGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOneFingerSelectHandGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOneFingerSelectHandGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgOneFingerSelectHandGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOneFingerSelectHandGesture); +}; +const ForwardRef = forwardRef(SvgOneFingerSelectHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/OnePointCircle.tsx b/packages/iconoir-react/src/OnePointCircle.tsx index 99aca544..79cccef7 100644 --- a/packages/iconoir-react/src/OnePointCircle.tsx +++ b/packages/iconoir-react/src/OnePointCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOnePointCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOnePointCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgOnePointCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOnePointCircle); +}; +const ForwardRef = forwardRef(SvgOnePointCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/OpenBook.tsx b/packages/iconoir-react/src/OpenBook.tsx index f1a27fc5..f5856cb2 100644 --- a/packages/iconoir-react/src/OpenBook.tsx +++ b/packages/iconoir-react/src/OpenBook.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenBook( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOpenBook = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgOpenBook( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOpenBook); +}; +const ForwardRef = forwardRef(SvgOpenBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/OpenInBrowser.tsx b/packages/iconoir-react/src/OpenInBrowser.tsx index c7c81d17..4e4b1cb6 100644 --- a/packages/iconoir-react/src/OpenInBrowser.tsx +++ b/packages/iconoir-react/src/OpenInBrowser.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenInBrowser( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOpenInBrowser = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgOpenInBrowser( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOpenInBrowser); +}; +const ForwardRef = forwardRef(SvgOpenInBrowser); export default ForwardRef; diff --git a/packages/iconoir-react/src/OpenInWindow.tsx b/packages/iconoir-react/src/OpenInWindow.tsx index 94a004f3..dda958d2 100644 --- a/packages/iconoir-react/src/OpenInWindow.tsx +++ b/packages/iconoir-react/src/OpenInWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenInWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOpenInWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgOpenInWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOpenInWindow); +}; +const ForwardRef = forwardRef(SvgOpenInWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/OpenNewWindow.tsx b/packages/iconoir-react/src/OpenNewWindow.tsx index 38f0f4f5..b54e4e23 100644 --- a/packages/iconoir-react/src/OpenNewWindow.tsx +++ b/packages/iconoir-react/src/OpenNewWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenNewWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOpenNewWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgOpenNewWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOpenNewWindow); +}; +const ForwardRef = forwardRef(SvgOpenNewWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/OpenSelectHandGesture.tsx b/packages/iconoir-react/src/OpenSelectHandGesture.tsx index c1f5ca18..e85c3b4c 100644 --- a/packages/iconoir-react/src/OpenSelectHandGesture.tsx +++ b/packages/iconoir-react/src/OpenSelectHandGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenSelectHandGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOpenSelectHandGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgOpenSelectHandGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOpenSelectHandGesture); +}; +const ForwardRef = forwardRef(SvgOpenSelectHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/OpenVpn.tsx b/packages/iconoir-react/src/OpenVpn.tsx index f9666ce7..6592317f 100644 --- a/packages/iconoir-react/src/OpenVpn.tsx +++ b/packages/iconoir-react/src/OpenVpn.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOpenVpn( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOpenVpn = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgOpenVpn( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOpenVpn); +}; +const ForwardRef = forwardRef(SvgOpenVpn); export default ForwardRef; diff --git a/packages/iconoir-react/src/OrangeHalf.tsx b/packages/iconoir-react/src/OrangeHalf.tsx index 95a339b9..0a1607c7 100644 --- a/packages/iconoir-react/src/OrangeHalf.tsx +++ b/packages/iconoir-react/src/OrangeHalf.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrangeHalf( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOrangeHalf = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgOrangeHalf( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOrangeHalf); +}; +const ForwardRef = forwardRef(SvgOrangeHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/OrangeSlice.tsx b/packages/iconoir-react/src/OrangeSlice.tsx index 90dd48bb..353a2733 100644 --- a/packages/iconoir-react/src/OrangeSlice.tsx +++ b/packages/iconoir-react/src/OrangeSlice.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrangeSlice( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOrangeSlice = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgOrangeSlice( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOrangeSlice); +}; +const ForwardRef = forwardRef(SvgOrangeSlice); export default ForwardRef; diff --git a/packages/iconoir-react/src/OrangeSliceAlt.tsx b/packages/iconoir-react/src/OrangeSliceAlt.tsx index ddecb772..d1176980 100644 --- a/packages/iconoir-react/src/OrangeSliceAlt.tsx +++ b/packages/iconoir-react/src/OrangeSliceAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrangeSliceAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOrangeSliceAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgOrangeSliceAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOrangeSliceAlt); +}; +const ForwardRef = forwardRef(SvgOrangeSliceAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/OrganicFood.tsx b/packages/iconoir-react/src/OrganicFood.tsx index 96a54f2e..fd5c6b21 100644 --- a/packages/iconoir-react/src/OrganicFood.tsx +++ b/packages/iconoir-react/src/OrganicFood.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrganicFood( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOrganicFood = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,36 @@ function SvgOrganicFood( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgOrganicFood); +}; +const ForwardRef = forwardRef(SvgOrganicFood); export default ForwardRef; diff --git a/packages/iconoir-react/src/OrganicFoodSquare.tsx b/packages/iconoir-react/src/OrganicFoodSquare.tsx index 799a2320..5bdb20bc 100644 --- a/packages/iconoir-react/src/OrganicFoodSquare.tsx +++ b/packages/iconoir-react/src/OrganicFoodSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrganicFoodSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOrganicFoodSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,36 @@ function SvgOrganicFoodSquare( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgOrganicFoodSquare); +}; +const ForwardRef = forwardRef(SvgOrganicFoodSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/OrthogonalView.tsx b/packages/iconoir-react/src/OrthogonalView.tsx index 3ce4e2b6..559c0bbd 100644 --- a/packages/iconoir-react/src/OrthogonalView.tsx +++ b/packages/iconoir-react/src/OrthogonalView.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOrthogonalView( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOrthogonalView = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgOrthogonalView( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOrthogonalView); +}; +const ForwardRef = forwardRef(SvgOrthogonalView); export default ForwardRef; diff --git a/packages/iconoir-react/src/Oxygen.tsx b/packages/iconoir-react/src/Oxygen.tsx index 33a44068..f28a4b5d 100644 --- a/packages/iconoir-react/src/Oxygen.tsx +++ b/packages/iconoir-react/src/Oxygen.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgOxygen( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgOxygen = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgOxygen( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgOxygen); +}; +const ForwardRef = forwardRef(SvgOxygen); export default ForwardRef; diff --git a/packages/iconoir-react/src/Package.tsx b/packages/iconoir-react/src/Package.tsx index ede16fff..feb16641 100644 --- a/packages/iconoir-react/src/Package.tsx +++ b/packages/iconoir-react/src/Package.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPackage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPackage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPackage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPackage); +}; +const ForwardRef = forwardRef(SvgPackage); export default ForwardRef; diff --git a/packages/iconoir-react/src/PackageLock.tsx b/packages/iconoir-react/src/PackageLock.tsx index 25bba8c5..5365080c 100644 --- a/packages/iconoir-react/src/PackageLock.tsx +++ b/packages/iconoir-react/src/PackageLock.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPackageLock( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPackageLock = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPackageLock( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPackageLock); +}; +const ForwardRef = forwardRef(SvgPackageLock); export default ForwardRef; diff --git a/packages/iconoir-react/src/Packages.tsx b/packages/iconoir-react/src/Packages.tsx index a2ee19ea..2745a82d 100644 --- a/packages/iconoir-react/src/Packages.tsx +++ b/packages/iconoir-react/src/Packages.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPackages( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPackages = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPackages( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPackages); +}; +const ForwardRef = forwardRef(SvgPackages); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pacman.tsx b/packages/iconoir-react/src/Pacman.tsx index f05ea545..2769a65d 100644 --- a/packages/iconoir-react/src/Pacman.tsx +++ b/packages/iconoir-react/src/Pacman.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPacman( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPacman = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPacman( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPacman); +}; +const ForwardRef = forwardRef(SvgPacman); export default ForwardRef; diff --git a/packages/iconoir-react/src/Page.tsx b/packages/iconoir-react/src/Page.tsx index 9c2397eb..a41e1211 100644 --- a/packages/iconoir-react/src/Page.tsx +++ b/packages/iconoir-react/src/Page.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPage); +}; +const ForwardRef = forwardRef(SvgPage); export default ForwardRef; diff --git a/packages/iconoir-react/src/PageDown.tsx b/packages/iconoir-react/src/PageDown.tsx index f16d9ef4..f2e0fe9c 100644 --- a/packages/iconoir-react/src/PageDown.tsx +++ b/packages/iconoir-react/src/PageDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPageDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPageDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPageDown); +}; +const ForwardRef = forwardRef(SvgPageDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/PageEdit.tsx b/packages/iconoir-react/src/PageEdit.tsx index e72d0aff..eecfaa4c 100644 --- a/packages/iconoir-react/src/PageEdit.tsx +++ b/packages/iconoir-react/src/PageEdit.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageEdit( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPageEdit = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPageEdit( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPageEdit); +}; +const ForwardRef = forwardRef(SvgPageEdit); export default ForwardRef; diff --git a/packages/iconoir-react/src/PageFlip.tsx b/packages/iconoir-react/src/PageFlip.tsx index f47601e4..d45d5d3b 100644 --- a/packages/iconoir-react/src/PageFlip.tsx +++ b/packages/iconoir-react/src/PageFlip.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageFlip( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPageFlip = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPageFlip( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPageFlip); +}; +const ForwardRef = forwardRef(SvgPageFlip); export default ForwardRef; diff --git a/packages/iconoir-react/src/PageLeft.tsx b/packages/iconoir-react/src/PageLeft.tsx index b436b9ec..f1608c5d 100644 --- a/packages/iconoir-react/src/PageLeft.tsx +++ b/packages/iconoir-react/src/PageLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPageLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPageLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPageLeft); +}; +const ForwardRef = forwardRef(SvgPageLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/PageRight.tsx b/packages/iconoir-react/src/PageRight.tsx index 599224ec..275ec832 100644 --- a/packages/iconoir-react/src/PageRight.tsx +++ b/packages/iconoir-react/src/PageRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPageRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPageRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPageRight); +}; +const ForwardRef = forwardRef(SvgPageRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/PageSearch.tsx b/packages/iconoir-react/src/PageSearch.tsx index ba40deac..ce066143 100644 --- a/packages/iconoir-react/src/PageSearch.tsx +++ b/packages/iconoir-react/src/PageSearch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageSearch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPageSearch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPageSearch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPageSearch); +}; +const ForwardRef = forwardRef(SvgPageSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/PageStar.tsx b/packages/iconoir-react/src/PageStar.tsx index 9ec6f3a6..bca5d0e7 100644 --- a/packages/iconoir-react/src/PageStar.tsx +++ b/packages/iconoir-react/src/PageStar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageStar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPageStar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPageStar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPageStar); +}; +const ForwardRef = forwardRef(SvgPageStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/PageUp.tsx b/packages/iconoir-react/src/PageUp.tsx index dd5896ac..0bfebef0 100644 --- a/packages/iconoir-react/src/PageUp.tsx +++ b/packages/iconoir-react/src/PageUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPageUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPageUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPageUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPageUp); +}; +const ForwardRef = forwardRef(SvgPageUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/Palette.tsx b/packages/iconoir-react/src/Palette.tsx index ebe5f973..44439c36 100644 --- a/packages/iconoir-react/src/Palette.tsx +++ b/packages/iconoir-react/src/Palette.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPalette( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPalette = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgPalette( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPalette); +}; +const ForwardRef = forwardRef(SvgPalette); export default ForwardRef; diff --git a/packages/iconoir-react/src/PanoramaEnlarge.tsx b/packages/iconoir-react/src/PanoramaEnlarge.tsx index 61d8de48..15cdbf25 100644 --- a/packages/iconoir-react/src/PanoramaEnlarge.tsx +++ b/packages/iconoir-react/src/PanoramaEnlarge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPanoramaEnlarge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPanoramaEnlarge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPanoramaEnlarge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPanoramaEnlarge); +}; +const ForwardRef = forwardRef(SvgPanoramaEnlarge); export default ForwardRef; diff --git a/packages/iconoir-react/src/PanoramaReduce.tsx b/packages/iconoir-react/src/PanoramaReduce.tsx index 4af7ccb5..32d4895f 100644 --- a/packages/iconoir-react/src/PanoramaReduce.tsx +++ b/packages/iconoir-react/src/PanoramaReduce.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPanoramaReduce( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPanoramaReduce = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPanoramaReduce( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPanoramaReduce); +}; +const ForwardRef = forwardRef(SvgPanoramaReduce); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pants.tsx b/packages/iconoir-react/src/Pants.tsx index 851bb793..f088d5c8 100644 --- a/packages/iconoir-react/src/Pants.tsx +++ b/packages/iconoir-react/src/Pants.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPants( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPants = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,26 @@ function SvgPants( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPants); +}; +const ForwardRef = forwardRef(SvgPants); export default ForwardRef; diff --git a/packages/iconoir-react/src/PantsAlt.tsx b/packages/iconoir-react/src/PantsAlt.tsx index 360abd06..a825e37e 100644 --- a/packages/iconoir-react/src/PantsAlt.tsx +++ b/packages/iconoir-react/src/PantsAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPantsAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPantsAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPantsAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPantsAlt); +}; +const ForwardRef = forwardRef(SvgPantsAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Parking.tsx b/packages/iconoir-react/src/Parking.tsx index 3369a43c..9ae4d4f2 100644 --- a/packages/iconoir-react/src/Parking.tsx +++ b/packages/iconoir-react/src/Parking.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgParking( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgParking = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgParking( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgParking); +}; +const ForwardRef = forwardRef(SvgParking); export default ForwardRef; diff --git a/packages/iconoir-react/src/PasswordCursor.tsx b/packages/iconoir-react/src/PasswordCursor.tsx index 51f8bbe2..cba36877 100644 --- a/packages/iconoir-react/src/PasswordCursor.tsx +++ b/packages/iconoir-react/src/PasswordCursor.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPasswordCursor( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPasswordCursor = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgPasswordCursor( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPasswordCursor); +}; +const ForwardRef = forwardRef(SvgPasswordCursor); export default ForwardRef; diff --git a/packages/iconoir-react/src/PasswordError.tsx b/packages/iconoir-react/src/PasswordError.tsx index 331cdf69..02b7a2ef 100644 --- a/packages/iconoir-react/src/PasswordError.tsx +++ b/packages/iconoir-react/src/PasswordError.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPasswordError( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPasswordError = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPasswordError( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPasswordError); +}; +const ForwardRef = forwardRef(SvgPasswordError); export default ForwardRef; diff --git a/packages/iconoir-react/src/PasswordPass.tsx b/packages/iconoir-react/src/PasswordPass.tsx index 007cce2a..1b0d93df 100644 --- a/packages/iconoir-react/src/PasswordPass.tsx +++ b/packages/iconoir-react/src/PasswordPass.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPasswordPass( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPasswordPass = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPasswordPass( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPasswordPass); +}; +const ForwardRef = forwardRef(SvgPasswordPass); export default ForwardRef; diff --git a/packages/iconoir-react/src/PasteClipboard.tsx b/packages/iconoir-react/src/PasteClipboard.tsx index 2503dbf1..162e72bb 100644 --- a/packages/iconoir-react/src/PasteClipboard.tsx +++ b/packages/iconoir-react/src/PasteClipboard.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPasteClipboard( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPasteClipboard = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgPasteClipboard( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPasteClipboard); +}; +const ForwardRef = forwardRef(SvgPasteClipboard); export default ForwardRef; diff --git a/packages/iconoir-react/src/PatchHoles3D.tsx b/packages/iconoir-react/src/PatchHoles3D.tsx index fd856170..5bcdfb15 100644 --- a/packages/iconoir-react/src/PatchHoles3D.tsx +++ b/packages/iconoir-react/src/PatchHoles3D.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPatchHoles3D( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPatchHoles3D = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPatchHoles3D( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPatchHoles3D); +}; +const ForwardRef = forwardRef(SvgPatchHoles3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/PathArrow.tsx b/packages/iconoir-react/src/PathArrow.tsx index 195abdc1..67eb0adf 100644 --- a/packages/iconoir-react/src/PathArrow.tsx +++ b/packages/iconoir-react/src/PathArrow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPathArrow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPathArrow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPathArrow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPathArrow); +}; +const ForwardRef = forwardRef(SvgPathArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pause.tsx b/packages/iconoir-react/src/Pause.tsx index 764999ed..d85caa85 100644 --- a/packages/iconoir-react/src/Pause.tsx +++ b/packages/iconoir-react/src/Pause.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPause( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPause = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgPause( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPause); +}; +const ForwardRef = forwardRef(SvgPause); export default ForwardRef; diff --git a/packages/iconoir-react/src/PauseWindow.tsx b/packages/iconoir-react/src/PauseWindow.tsx index 7d9ad246..3a92e441 100644 --- a/packages/iconoir-react/src/PauseWindow.tsx +++ b/packages/iconoir-react/src/PauseWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPauseWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPauseWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgPauseWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPauseWindow); +}; +const ForwardRef = forwardRef(SvgPauseWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Paypal.tsx b/packages/iconoir-react/src/Paypal.tsx index 042c56a1..e33846a9 100644 --- a/packages/iconoir-react/src/Paypal.tsx +++ b/packages/iconoir-react/src/Paypal.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPaypal( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPaypal = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPaypal( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPaypal); +}; +const ForwardRef = forwardRef(SvgPaypal); export default ForwardRef; diff --git a/packages/iconoir-react/src/PcCheck.tsx b/packages/iconoir-react/src/PcCheck.tsx index 782401b7..c160636e 100644 --- a/packages/iconoir-react/src/PcCheck.tsx +++ b/packages/iconoir-react/src/PcCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPcCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPcCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgPcCheck( }; return ( + + - - ); -} -const ForwardRef = React.forwardRef(SvgPcCheck); +}; +const ForwardRef = forwardRef(SvgPcCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/PcFirewall.tsx b/packages/iconoir-react/src/PcFirewall.tsx index c859a47d..58b5bccf 100644 --- a/packages/iconoir-react/src/PcFirewall.tsx +++ b/packages/iconoir-react/src/PcFirewall.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPcFirewall( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPcFirewall = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgPcFirewall( }; return ( + + - - ); -} -const ForwardRef = React.forwardRef(SvgPcFirewall); +}; +const ForwardRef = forwardRef(SvgPcFirewall); export default ForwardRef; diff --git a/packages/iconoir-react/src/PcMouse.tsx b/packages/iconoir-react/src/PcMouse.tsx index f3991ecb..3f0f2ff5 100644 --- a/packages/iconoir-react/src/PcMouse.tsx +++ b/packages/iconoir-react/src/PcMouse.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPcMouse( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPcMouse = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgPcMouse( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPcMouse); +}; +const ForwardRef = forwardRef(SvgPcMouse); export default ForwardRef; diff --git a/packages/iconoir-react/src/PcNoEntry.tsx b/packages/iconoir-react/src/PcNoEntry.tsx index cf6c0bcd..78594994 100644 --- a/packages/iconoir-react/src/PcNoEntry.tsx +++ b/packages/iconoir-react/src/PcNoEntry.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPcNoEntry( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPcNoEntry = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgPcNoEntry( }; return ( + + - - ); -} -const ForwardRef = React.forwardRef(SvgPcNoEntry); +}; +const ForwardRef = forwardRef(SvgPcNoEntry); export default ForwardRef; diff --git a/packages/iconoir-react/src/PcWarning.tsx b/packages/iconoir-react/src/PcWarning.tsx index 113729ca..1be035de 100644 --- a/packages/iconoir-react/src/PcWarning.tsx +++ b/packages/iconoir-react/src/PcWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPcWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPcWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgPcWarning( }; return ( + + - - ); -} -const ForwardRef = React.forwardRef(SvgPcWarning); +}; +const ForwardRef = forwardRef(SvgPcWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/PeaceHand.tsx b/packages/iconoir-react/src/PeaceHand.tsx index e8b09291..2bdc29a5 100644 --- a/packages/iconoir-react/src/PeaceHand.tsx +++ b/packages/iconoir-react/src/PeaceHand.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPeaceHand( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPeaceHand = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,38 +13,38 @@ function SvgPeaceHand( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPeaceHand); +}; +const ForwardRef = forwardRef(SvgPeaceHand); export default ForwardRef; diff --git a/packages/iconoir-react/src/PenConnectBluetooth.tsx b/packages/iconoir-react/src/PenConnectBluetooth.tsx index 53877cc1..88df94f4 100644 --- a/packages/iconoir-react/src/PenConnectBluetooth.tsx +++ b/packages/iconoir-react/src/PenConnectBluetooth.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPenConnectBluetooth( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPenConnectBluetooth = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgPenConnectBluetooth( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgPenConnectBluetooth); +}; +const ForwardRef = forwardRef(SvgPenConnectBluetooth); export default ForwardRef; diff --git a/packages/iconoir-react/src/PenConnectWifi.tsx b/packages/iconoir-react/src/PenConnectWifi.tsx index 5194b7f5..8a804523 100644 --- a/packages/iconoir-react/src/PenConnectWifi.tsx +++ b/packages/iconoir-react/src/PenConnectWifi.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPenConnectWifi( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPenConnectWifi = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPenConnectWifi( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPenConnectWifi); +}; +const ForwardRef = forwardRef(SvgPenConnectWifi); export default ForwardRef; diff --git a/packages/iconoir-react/src/PenTablet.tsx b/packages/iconoir-react/src/PenTablet.tsx index 3dad60f0..a939ff42 100644 --- a/packages/iconoir-react/src/PenTablet.tsx +++ b/packages/iconoir-react/src/PenTablet.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPenTablet( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPenTablet = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgPenTablet( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPenTablet); +}; +const ForwardRef = forwardRef(SvgPenTablet); export default ForwardRef; diff --git a/packages/iconoir-react/src/PenTabletConnectUsb.tsx b/packages/iconoir-react/src/PenTabletConnectUsb.tsx index 1688cf52..6c65254b 100644 --- a/packages/iconoir-react/src/PenTabletConnectUsb.tsx +++ b/packages/iconoir-react/src/PenTabletConnectUsb.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPenTabletConnectUsb( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPenTabletConnectUsb = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgPenTabletConnectUsb( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgPenTabletConnectUsb); +}; +const ForwardRef = forwardRef(SvgPenTabletConnectUsb); export default ForwardRef; diff --git a/packages/iconoir-react/src/PenTabletConnectWifi.tsx b/packages/iconoir-react/src/PenTabletConnectWifi.tsx index d6c72e6f..09c83503 100644 --- a/packages/iconoir-react/src/PenTabletConnectWifi.tsx +++ b/packages/iconoir-react/src/PenTabletConnectWifi.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPenTabletConnectWifi( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPenTabletConnectWifi = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgPenTabletConnectWifi( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgPenTabletConnectWifi); +}; +const ForwardRef = forwardRef(SvgPenTabletConnectWifi); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pentagon.tsx b/packages/iconoir-react/src/Pentagon.tsx index 608e423c..e77c4c8b 100644 --- a/packages/iconoir-react/src/Pentagon.tsx +++ b/packages/iconoir-react/src/Pentagon.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPentagon( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPentagon = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPentagon( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPentagon); +}; +const ForwardRef = forwardRef(SvgPentagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/PeopleTag.tsx b/packages/iconoir-react/src/PeopleTag.tsx index 79f70d29..44a50e07 100644 --- a/packages/iconoir-react/src/PeopleTag.tsx +++ b/packages/iconoir-react/src/PeopleTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPeopleTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPeopleTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgPeopleTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPeopleTag); +}; +const ForwardRef = forwardRef(SvgPeopleTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/PercentRotateOut.tsx b/packages/iconoir-react/src/PercentRotateOut.tsx index 547558c6..d96757cc 100644 --- a/packages/iconoir-react/src/PercentRotateOut.tsx +++ b/packages/iconoir-react/src/PercentRotateOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPercentRotateOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPercentRotateOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,49 +13,49 @@ function SvgPercentRotateOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPercentRotateOut); +}; +const ForwardRef = forwardRef(SvgPercentRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/Percentage.tsx b/packages/iconoir-react/src/Percentage.tsx index 4e1cf4be..931d5a64 100644 --- a/packages/iconoir-react/src/Percentage.tsx +++ b/packages/iconoir-react/src/Percentage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPercentage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPercentage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPercentage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPercentage); +}; +const ForwardRef = forwardRef(SvgPercentage); export default ForwardRef; diff --git a/packages/iconoir-react/src/PercentageCircle.tsx b/packages/iconoir-react/src/PercentageCircle.tsx index 68dba413..95de69a7 100644 --- a/packages/iconoir-react/src/PercentageCircle.tsx +++ b/packages/iconoir-react/src/PercentageCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPercentageCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPercentageCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgPercentageCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPercentageCircle); +}; +const ForwardRef = forwardRef(SvgPercentageCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/PercentageSquare.tsx b/packages/iconoir-react/src/PercentageSquare.tsx index a11c1adb..1e094741 100644 --- a/packages/iconoir-react/src/PercentageSquare.tsx +++ b/packages/iconoir-react/src/PercentageSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPercentageSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPercentageSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgPercentageSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPercentageSquare); +}; +const ForwardRef = forwardRef(SvgPercentageSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/PerspectiveView.tsx b/packages/iconoir-react/src/PerspectiveView.tsx index e694998b..2a7fb620 100644 --- a/packages/iconoir-react/src/PerspectiveView.tsx +++ b/packages/iconoir-react/src/PerspectiveView.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPerspectiveView( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPerspectiveView = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPerspectiveView( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPerspectiveView); +}; +const ForwardRef = forwardRef(SvgPerspectiveView); export default ForwardRef; diff --git a/packages/iconoir-react/src/PharmacyCrossCircle.tsx b/packages/iconoir-react/src/PharmacyCrossCircle.tsx index 35bc2d09..04c21b1f 100644 --- a/packages/iconoir-react/src/PharmacyCrossCircle.tsx +++ b/packages/iconoir-react/src/PharmacyCrossCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPharmacyCrossCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPharmacyCrossCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgPharmacyCrossCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPharmacyCrossCircle); +}; +const ForwardRef = forwardRef(SvgPharmacyCrossCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/PharmacyCrossSquare.tsx b/packages/iconoir-react/src/PharmacyCrossSquare.tsx index 8a16e140..fa617f4a 100644 --- a/packages/iconoir-react/src/PharmacyCrossSquare.tsx +++ b/packages/iconoir-react/src/PharmacyCrossSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPharmacyCrossSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPharmacyCrossSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgPharmacyCrossSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPharmacyCrossSquare); +}; +const ForwardRef = forwardRef(SvgPharmacyCrossSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Phone.tsx b/packages/iconoir-react/src/Phone.tsx index 8f08f1f3..428d0cc5 100644 --- a/packages/iconoir-react/src/Phone.tsx +++ b/packages/iconoir-react/src/Phone.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhone( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPhone = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPhone( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPhone); +}; +const ForwardRef = forwardRef(SvgPhone); export default ForwardRef; diff --git a/packages/iconoir-react/src/PhoneAdd.tsx b/packages/iconoir-react/src/PhoneAdd.tsx index ac901354..a1247170 100644 --- a/packages/iconoir-react/src/PhoneAdd.tsx +++ b/packages/iconoir-react/src/PhoneAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPhoneAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPhoneAdd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPhoneAdd); +}; +const ForwardRef = forwardRef(SvgPhoneAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/PhoneDelete.tsx b/packages/iconoir-react/src/PhoneDelete.tsx index b0720a78..b7685d9d 100644 --- a/packages/iconoir-react/src/PhoneDelete.tsx +++ b/packages/iconoir-react/src/PhoneDelete.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneDelete( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPhoneDelete = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgPhoneDelete( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgPhoneDelete); +}; +const ForwardRef = forwardRef(SvgPhoneDelete); export default ForwardRef; diff --git a/packages/iconoir-react/src/PhoneDisabled.tsx b/packages/iconoir-react/src/PhoneDisabled.tsx index 5aac9c73..c710ada2 100644 --- a/packages/iconoir-react/src/PhoneDisabled.tsx +++ b/packages/iconoir-react/src/PhoneDisabled.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneDisabled( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPhoneDisabled = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPhoneDisabled( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPhoneDisabled); +}; +const ForwardRef = forwardRef(SvgPhoneDisabled); export default ForwardRef; diff --git a/packages/iconoir-react/src/PhoneIncome.tsx b/packages/iconoir-react/src/PhoneIncome.tsx index 705fdf5f..082b286c 100644 --- a/packages/iconoir-react/src/PhoneIncome.tsx +++ b/packages/iconoir-react/src/PhoneIncome.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneIncome( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPhoneIncome = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPhoneIncome( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPhoneIncome); +}; +const ForwardRef = forwardRef(SvgPhoneIncome); export default ForwardRef; diff --git a/packages/iconoir-react/src/PhoneOutcome.tsx b/packages/iconoir-react/src/PhoneOutcome.tsx index b0549765..1df1b8cb 100644 --- a/packages/iconoir-react/src/PhoneOutcome.tsx +++ b/packages/iconoir-react/src/PhoneOutcome.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneOutcome( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPhoneOutcome = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPhoneOutcome( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPhoneOutcome); +}; +const ForwardRef = forwardRef(SvgPhoneOutcome); export default ForwardRef; diff --git a/packages/iconoir-react/src/PhonePaused.tsx b/packages/iconoir-react/src/PhonePaused.tsx index 9098cefb..d18278ce 100644 --- a/packages/iconoir-react/src/PhonePaused.tsx +++ b/packages/iconoir-react/src/PhonePaused.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhonePaused( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPhonePaused = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPhonePaused( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPhonePaused); +}; +const ForwardRef = forwardRef(SvgPhonePaused); export default ForwardRef; diff --git a/packages/iconoir-react/src/PhoneRemove.tsx b/packages/iconoir-react/src/PhoneRemove.tsx index 6c666db1..cfdc4b80 100644 --- a/packages/iconoir-react/src/PhoneRemove.tsx +++ b/packages/iconoir-react/src/PhoneRemove.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPhoneRemove( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPhoneRemove = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPhoneRemove( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPhoneRemove); +}; +const ForwardRef = forwardRef(SvgPhoneRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/PiggyBank.tsx b/packages/iconoir-react/src/PiggyBank.tsx index c88f50ed..a26df6a9 100644 --- a/packages/iconoir-react/src/PiggyBank.tsx +++ b/packages/iconoir-react/src/PiggyBank.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPiggyBank( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPiggyBank = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,42 +13,42 @@ function SvgPiggyBank( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPiggyBank); +}; +const ForwardRef = forwardRef(SvgPiggyBank); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pillow.tsx b/packages/iconoir-react/src/Pillow.tsx index eda1a8c7..42b546aa 100644 --- a/packages/iconoir-react/src/Pillow.tsx +++ b/packages/iconoir-react/src/Pillow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPillow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPillow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPillow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPillow); +}; +const ForwardRef = forwardRef(SvgPillow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pin.tsx b/packages/iconoir-react/src/Pin.tsx index bb11f207..3432131d 100644 --- a/packages/iconoir-react/src/Pin.tsx +++ b/packages/iconoir-react/src/Pin.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPin( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPin = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPin( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPin); +}; +const ForwardRef = forwardRef(SvgPin); export default ForwardRef; diff --git a/packages/iconoir-react/src/PinAlt.tsx b/packages/iconoir-react/src/PinAlt.tsx index a81cebbb..85808572 100644 --- a/packages/iconoir-react/src/PinAlt.tsx +++ b/packages/iconoir-react/src/PinAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPinAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPinAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgPinAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPinAlt); +}; +const ForwardRef = forwardRef(SvgPinAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/PineTree.tsx b/packages/iconoir-react/src/PineTree.tsx index 0c1d2e41..999c31e7 100644 --- a/packages/iconoir-react/src/PineTree.tsx +++ b/packages/iconoir-react/src/PineTree.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPineTree( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPineTree = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPineTree( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPineTree); +}; +const ForwardRef = forwardRef(SvgPineTree); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pinterest.tsx b/packages/iconoir-react/src/Pinterest.tsx index 829b7b57..23485c8a 100644 --- a/packages/iconoir-react/src/Pinterest.tsx +++ b/packages/iconoir-react/src/Pinterest.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPinterest( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPinterest = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPinterest( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPinterest); +}; +const ForwardRef = forwardRef(SvgPinterest); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pipe3D.tsx b/packages/iconoir-react/src/Pipe3D.tsx index 12f40026..9ff449b1 100644 --- a/packages/iconoir-react/src/Pipe3D.tsx +++ b/packages/iconoir-react/src/Pipe3D.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPipe3D( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPipe3D = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPipe3D( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPipe3D); +}; +const ForwardRef = forwardRef(SvgPipe3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/PizzaSlice.tsx b/packages/iconoir-react/src/PizzaSlice.tsx index 304aaa1c..63660564 100644 --- a/packages/iconoir-react/src/PizzaSlice.tsx +++ b/packages/iconoir-react/src/PizzaSlice.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPizzaSlice( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPizzaSlice = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,33 +13,33 @@ function SvgPizzaSlice( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPizzaSlice); +}; +const ForwardRef = forwardRef(SvgPizzaSlice); export default ForwardRef; diff --git a/packages/iconoir-react/src/Planet.tsx b/packages/iconoir-react/src/Planet.tsx index b1a35512..dcdcf29e 100644 --- a/packages/iconoir-react/src/Planet.tsx +++ b/packages/iconoir-react/src/Planet.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlanet( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlanet = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgPlanet( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlanet); +}; +const ForwardRef = forwardRef(SvgPlanet); export default ForwardRef; diff --git a/packages/iconoir-react/src/PlanetAlt.tsx b/packages/iconoir-react/src/PlanetAlt.tsx index 53a44e3f..8f934453 100644 --- a/packages/iconoir-react/src/PlanetAlt.tsx +++ b/packages/iconoir-react/src/PlanetAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlanetAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlanetAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgPlanetAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlanetAlt); +}; +const ForwardRef = forwardRef(SvgPlanetAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/PlanetSat.tsx b/packages/iconoir-react/src/PlanetSat.tsx index 54d2890f..15aa28ec 100644 --- a/packages/iconoir-react/src/PlanetSat.tsx +++ b/packages/iconoir-react/src/PlanetSat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlanetSat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlanetSat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgPlanetSat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlanetSat); +}; +const ForwardRef = forwardRef(SvgPlanetSat); export default ForwardRef; diff --git a/packages/iconoir-react/src/Planimetry.tsx b/packages/iconoir-react/src/Planimetry.tsx index b9a5b943..c6824aa7 100644 --- a/packages/iconoir-react/src/Planimetry.tsx +++ b/packages/iconoir-react/src/Planimetry.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlanimetry( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlanimetry = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPlanimetry( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlanimetry); +}; +const ForwardRef = forwardRef(SvgPlanimetry); export default ForwardRef; diff --git a/packages/iconoir-react/src/Play.tsx b/packages/iconoir-react/src/Play.tsx index 74c6e1b1..45062361 100644 --- a/packages/iconoir-react/src/Play.tsx +++ b/packages/iconoir-react/src/Play.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlay( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlay = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPlay( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlay); +}; +const ForwardRef = forwardRef(SvgPlay); export default ForwardRef; diff --git a/packages/iconoir-react/src/Playlist.tsx b/packages/iconoir-react/src/Playlist.tsx index c563ffd9..c2f73a5f 100644 --- a/packages/iconoir-react/src/Playlist.tsx +++ b/packages/iconoir-react/src/Playlist.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlaylist( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlaylist = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgPlaylist( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlaylist); +}; +const ForwardRef = forwardRef(SvgPlaylist); export default ForwardRef; diff --git a/packages/iconoir-react/src/PlaylistAdd.tsx b/packages/iconoir-react/src/PlaylistAdd.tsx index 68bd779d..18b6ae72 100644 --- a/packages/iconoir-react/src/PlaylistAdd.tsx +++ b/packages/iconoir-react/src/PlaylistAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlaylistAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlaylistAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPlaylistAdd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlaylistAdd); +}; +const ForwardRef = forwardRef(SvgPlaylistAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/PlaylistPlay.tsx b/packages/iconoir-react/src/PlaylistPlay.tsx index d39234f7..b1fdc6d3 100644 --- a/packages/iconoir-react/src/PlaylistPlay.tsx +++ b/packages/iconoir-react/src/PlaylistPlay.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlaylistPlay( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlaylistPlay = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPlaylistPlay( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlaylistPlay); +}; +const ForwardRef = forwardRef(SvgPlaylistPlay); export default ForwardRef; diff --git a/packages/iconoir-react/src/PlaystationGamepad.tsx b/packages/iconoir-react/src/PlaystationGamepad.tsx index 965e7d5b..7e034780 100644 --- a/packages/iconoir-react/src/PlaystationGamepad.tsx +++ b/packages/iconoir-react/src/PlaystationGamepad.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlaystationGamepad( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlaystationGamepad = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPlaystationGamepad( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlaystationGamepad); +}; +const ForwardRef = forwardRef(SvgPlaystationGamepad); export default ForwardRef; diff --git a/packages/iconoir-react/src/PlugTypeA.tsx b/packages/iconoir-react/src/PlugTypeA.tsx index 09053f13..40570843 100644 --- a/packages/iconoir-react/src/PlugTypeA.tsx +++ b/packages/iconoir-react/src/PlugTypeA.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlugTypeA( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlugTypeA = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPlugTypeA( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeA); +}; +const ForwardRef = forwardRef(SvgPlugTypeA); export default ForwardRef; diff --git a/packages/iconoir-react/src/PlugTypeC.tsx b/packages/iconoir-react/src/PlugTypeC.tsx index d3fb2839..41389444 100644 --- a/packages/iconoir-react/src/PlugTypeC.tsx +++ b/packages/iconoir-react/src/PlugTypeC.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlugTypeC( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlugTypeC = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPlugTypeC( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeC); +}; +const ForwardRef = forwardRef(SvgPlugTypeC); export default ForwardRef; diff --git a/packages/iconoir-react/src/PlugTypeG.tsx b/packages/iconoir-react/src/PlugTypeG.tsx index 6fc0c134..af890fcc 100644 --- a/packages/iconoir-react/src/PlugTypeG.tsx +++ b/packages/iconoir-react/src/PlugTypeG.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlugTypeG( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlugTypeG = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPlugTypeG( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeG); +}; +const ForwardRef = forwardRef(SvgPlugTypeG); export default ForwardRef; diff --git a/packages/iconoir-react/src/PlugTypeL.tsx b/packages/iconoir-react/src/PlugTypeL.tsx index 6aad0a24..5dfbc1e5 100644 --- a/packages/iconoir-react/src/PlugTypeL.tsx +++ b/packages/iconoir-react/src/PlugTypeL.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlugTypeL( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlugTypeL = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPlugTypeL( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeL); +}; +const ForwardRef = forwardRef(SvgPlugTypeL); export default ForwardRef; diff --git a/packages/iconoir-react/src/Plus.tsx b/packages/iconoir-react/src/Plus.tsx index 145bcf9b..3e31323c 100644 --- a/packages/iconoir-react/src/Plus.tsx +++ b/packages/iconoir-react/src/Plus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPlus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPlus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPlus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPlus); +}; +const ForwardRef = forwardRef(SvgPlus); export default ForwardRef; diff --git a/packages/iconoir-react/src/PngFormat.tsx b/packages/iconoir-react/src/PngFormat.tsx index 60ce9e41..ad9cbf0b 100644 --- a/packages/iconoir-react/src/PngFormat.tsx +++ b/packages/iconoir-react/src/PngFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPngFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPngFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgPngFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPngFormat); +}; +const ForwardRef = forwardRef(SvgPngFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pocket.tsx b/packages/iconoir-react/src/Pocket.tsx index 9fa4df91..2f2772c4 100644 --- a/packages/iconoir-react/src/Pocket.tsx +++ b/packages/iconoir-react/src/Pocket.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPocket( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPocket = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPocket( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPocket); +}; +const ForwardRef = forwardRef(SvgPocket); export default ForwardRef; diff --git a/packages/iconoir-react/src/Podcast.tsx b/packages/iconoir-react/src/Podcast.tsx index cbb32819..13d07fa5 100644 --- a/packages/iconoir-react/src/Podcast.tsx +++ b/packages/iconoir-react/src/Podcast.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPodcast( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPodcast = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,42 @@ function SvgPodcast( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgPodcast); +}; +const ForwardRef = forwardRef(SvgPodcast); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pokeball.tsx b/packages/iconoir-react/src/Pokeball.tsx index 6fcfc02e..a4510476 100644 --- a/packages/iconoir-react/src/Pokeball.tsx +++ b/packages/iconoir-react/src/Pokeball.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPokeball( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPokeball = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgPokeball( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgPokeball); +}; +const ForwardRef = forwardRef(SvgPokeball); export default ForwardRef; diff --git a/packages/iconoir-react/src/Position.tsx b/packages/iconoir-react/src/Position.tsx index ad615d5c..9036a08f 100644 --- a/packages/iconoir-react/src/Position.tsx +++ b/packages/iconoir-react/src/Position.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPosition( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPosition = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPosition( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPosition); +}; +const ForwardRef = forwardRef(SvgPosition); export default ForwardRef; diff --git a/packages/iconoir-react/src/PositionAlign.tsx b/packages/iconoir-react/src/PositionAlign.tsx index 47ebdb0a..3f8589d8 100644 --- a/packages/iconoir-react/src/PositionAlign.tsx +++ b/packages/iconoir-react/src/PositionAlign.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPositionAlign( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPositionAlign = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPositionAlign( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPositionAlign); +}; +const ForwardRef = forwardRef(SvgPositionAlign); export default ForwardRef; diff --git a/packages/iconoir-react/src/Post.tsx b/packages/iconoir-react/src/Post.tsx index dd84623a..5aa0e5b9 100644 --- a/packages/iconoir-react/src/Post.tsx +++ b/packages/iconoir-react/src/Post.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPost( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPost = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,27 +13,27 @@ function SvgPost( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPost); +}; +const ForwardRef = forwardRef(SvgPost); export default ForwardRef; diff --git a/packages/iconoir-react/src/Potion.tsx b/packages/iconoir-react/src/Potion.tsx index c0c07227..11efcf83 100644 --- a/packages/iconoir-react/src/Potion.tsx +++ b/packages/iconoir-react/src/Potion.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPotion( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPotion = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgPotion( }; return ( - - + + ); -} -const ForwardRef = React.forwardRef(SvgPotion); +}; +const ForwardRef = forwardRef(SvgPotion); export default ForwardRef; diff --git a/packages/iconoir-react/src/Pound.tsx b/packages/iconoir-react/src/Pound.tsx index 4d462c10..daf2d32a 100644 --- a/packages/iconoir-react/src/Pound.tsx +++ b/packages/iconoir-react/src/Pound.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPound( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPound = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPound( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPound); +}; +const ForwardRef = forwardRef(SvgPound); export default ForwardRef; diff --git a/packages/iconoir-react/src/PrecisionTool.tsx b/packages/iconoir-react/src/PrecisionTool.tsx index c9e41dcc..796f33b2 100644 --- a/packages/iconoir-react/src/PrecisionTool.tsx +++ b/packages/iconoir-react/src/PrecisionTool.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrecisionTool( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPrecisionTool = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPrecisionTool( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPrecisionTool); +}; +const ForwardRef = forwardRef(SvgPrecisionTool); export default ForwardRef; diff --git a/packages/iconoir-react/src/Presentation.tsx b/packages/iconoir-react/src/Presentation.tsx index 0efc7392..29f9aea1 100644 --- a/packages/iconoir-react/src/Presentation.tsx +++ b/packages/iconoir-react/src/Presentation.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPresentation( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPresentation = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPresentation( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPresentation); +}; +const ForwardRef = forwardRef(SvgPresentation); export default ForwardRef; diff --git a/packages/iconoir-react/src/Printer.tsx b/packages/iconoir-react/src/Printer.tsx index 2b3f59ac..d88bace9 100644 --- a/packages/iconoir-react/src/Printer.tsx +++ b/packages/iconoir-react/src/Printer.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrinter( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPrinter = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgPrinter( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPrinter); +}; +const ForwardRef = forwardRef(SvgPrinter); export default ForwardRef; diff --git a/packages/iconoir-react/src/PrinterAlt.tsx b/packages/iconoir-react/src/PrinterAlt.tsx index 4bef3281..a7f6d239 100644 --- a/packages/iconoir-react/src/PrinterAlt.tsx +++ b/packages/iconoir-react/src/PrinterAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrinterAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPrinterAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPrinterAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPrinterAlt); +}; +const ForwardRef = forwardRef(SvgPrinterAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/PrintingPage.tsx b/packages/iconoir-react/src/PrintingPage.tsx index f4a483aa..6e463843 100644 --- a/packages/iconoir-react/src/PrintingPage.tsx +++ b/packages/iconoir-react/src/PrintingPage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrintingPage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPrintingPage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgPrintingPage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPrintingPage); +}; +const ForwardRef = forwardRef(SvgPrintingPage); export default ForwardRef; diff --git a/packages/iconoir-react/src/PriorityDown.tsx b/packages/iconoir-react/src/PriorityDown.tsx index bd09e470..f0914c7b 100644 --- a/packages/iconoir-react/src/PriorityDown.tsx +++ b/packages/iconoir-react/src/PriorityDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPriorityDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPriorityDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPriorityDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPriorityDown); +}; +const ForwardRef = forwardRef(SvgPriorityDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/PriorityUp.tsx b/packages/iconoir-react/src/PriorityUp.tsx index b2d3392b..db04d019 100644 --- a/packages/iconoir-react/src/PriorityUp.tsx +++ b/packages/iconoir-react/src/PriorityUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPriorityUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPriorityUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPriorityUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPriorityUp); +}; +const ForwardRef = forwardRef(SvgPriorityUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/PrivacyPolicy.tsx b/packages/iconoir-react/src/PrivacyPolicy.tsx index d2613e35..132c47b9 100644 --- a/packages/iconoir-react/src/PrivacyPolicy.tsx +++ b/packages/iconoir-react/src/PrivacyPolicy.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrivacypolicy( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPrivacyPolicy = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgPrivacypolicy( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPrivacypolicy); +}; +const ForwardRef = forwardRef(SvgPrivacyPolicy); export default ForwardRef; diff --git a/packages/iconoir-react/src/PrivateWifi.tsx b/packages/iconoir-react/src/PrivateWifi.tsx index 10635e82..cfc58b35 100644 --- a/packages/iconoir-react/src/PrivateWifi.tsx +++ b/packages/iconoir-react/src/PrivateWifi.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPrivateWifi( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPrivateWifi = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPrivateWifi( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPrivateWifi); +}; +const ForwardRef = forwardRef(SvgPrivateWifi); export default ForwardRef; diff --git a/packages/iconoir-react/src/ProfileCircle.tsx b/packages/iconoir-react/src/ProfileCircle.tsx index d6985e6f..5a92bcf2 100644 --- a/packages/iconoir-react/src/ProfileCircle.tsx +++ b/packages/iconoir-react/src/ProfileCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgProfileCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgProfileCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgProfileCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgProfileCircle); +}; +const ForwardRef = forwardRef(SvgProfileCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/Prohibition.tsx b/packages/iconoir-react/src/Prohibition.tsx index 7c0d1058..f2d64645 100644 --- a/packages/iconoir-react/src/Prohibition.tsx +++ b/packages/iconoir-react/src/Prohibition.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgProhibition( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgProhibition = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgProhibition( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgProhibition); +}; +const ForwardRef = forwardRef(SvgProhibition); export default ForwardRef; diff --git a/packages/iconoir-react/src/ProjectCurve3D.tsx b/packages/iconoir-react/src/ProjectCurve3D.tsx index e31811a2..b40b450d 100644 --- a/packages/iconoir-react/src/ProjectCurve3D.tsx +++ b/packages/iconoir-react/src/ProjectCurve3D.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgProjectCurve3D( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgProjectCurve3D = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgProjectCurve3D( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgProjectCurve3D); +}; +const ForwardRef = forwardRef(SvgProjectCurve3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/Puzzle.tsx b/packages/iconoir-react/src/Puzzle.tsx index 787e9bad..e204c7ce 100644 --- a/packages/iconoir-react/src/Puzzle.tsx +++ b/packages/iconoir-react/src/Puzzle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgPuzzle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgPuzzle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgPuzzle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgPuzzle); +}; +const ForwardRef = forwardRef(SvgPuzzle); export default ForwardRef; diff --git a/packages/iconoir-react/src/QrCode.tsx b/packages/iconoir-react/src/QrCode.tsx index b6cee54c..3eb0a3c3 100644 --- a/packages/iconoir-react/src/QrCode.tsx +++ b/packages/iconoir-react/src/QrCode.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgQrCode( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgQrCode = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgQrCode( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgQrCode); +}; +const ForwardRef = forwardRef(SvgQrCode); export default ForwardRef; diff --git a/packages/iconoir-react/src/QuestionMark.tsx b/packages/iconoir-react/src/QuestionMark.tsx index ca9e0782..433c270c 100644 --- a/packages/iconoir-react/src/QuestionMark.tsx +++ b/packages/iconoir-react/src/QuestionMark.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgQuestionMark( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgQuestionMark = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgQuestionMark( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgQuestionMark); +}; +const ForwardRef = forwardRef(SvgQuestionMark); export default ForwardRef; diff --git a/packages/iconoir-react/src/Quote.tsx b/packages/iconoir-react/src/Quote.tsx index 2f522e17..7c0d58f6 100644 --- a/packages/iconoir-react/src/Quote.tsx +++ b/packages/iconoir-react/src/Quote.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgQuote( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgQuote = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgQuote( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgQuote); +}; +const ForwardRef = forwardRef(SvgQuote); export default ForwardRef; diff --git a/packages/iconoir-react/src/QuoteMessage.tsx b/packages/iconoir-react/src/QuoteMessage.tsx index a4687c36..3b837a31 100644 --- a/packages/iconoir-react/src/QuoteMessage.tsx +++ b/packages/iconoir-react/src/QuoteMessage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgQuoteMessage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgQuoteMessage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,27 +13,27 @@ function SvgQuoteMessage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgQuoteMessage); +}; +const ForwardRef = forwardRef(SvgQuoteMessage); export default ForwardRef; diff --git a/packages/iconoir-react/src/Radiation.tsx b/packages/iconoir-react/src/Radiation.tsx index e0ff3261..1041615a 100644 --- a/packages/iconoir-react/src/Radiation.tsx +++ b/packages/iconoir-react/src/Radiation.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRadiation( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRadiation = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRadiation( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRadiation); +}; +const ForwardRef = forwardRef(SvgRadiation); export default ForwardRef; diff --git a/packages/iconoir-react/src/Radius.tsx b/packages/iconoir-react/src/Radius.tsx index 2988436f..2c3990ee 100644 --- a/packages/iconoir-react/src/Radius.tsx +++ b/packages/iconoir-react/src/Radius.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRadius( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRadius = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgRadius( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRadius); +}; +const ForwardRef = forwardRef(SvgRadius); export default ForwardRef; diff --git a/packages/iconoir-react/src/Rain.tsx b/packages/iconoir-react/src/Rain.tsx index aec54059..a80c031e 100644 --- a/packages/iconoir-react/src/Rain.tsx +++ b/packages/iconoir-react/src/Rain.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRain( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRain = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRain( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRain); +}; +const ForwardRef = forwardRef(SvgRain); export default ForwardRef; diff --git a/packages/iconoir-react/src/RawFormat.tsx b/packages/iconoir-react/src/RawFormat.tsx index 229a1515..6ec6bd71 100644 --- a/packages/iconoir-react/src/RawFormat.tsx +++ b/packages/iconoir-react/src/RawFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRawFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRawFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgRawFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRawFormat); +}; +const ForwardRef = forwardRef(SvgRawFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/ReceiveDollars.tsx b/packages/iconoir-react/src/ReceiveDollars.tsx index c67118e6..0147f1f1 100644 --- a/packages/iconoir-react/src/ReceiveDollars.tsx +++ b/packages/iconoir-react/src/ReceiveDollars.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReceiveDollars( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReceiveDollars = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgReceiveDollars( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReceiveDollars); +}; +const ForwardRef = forwardRef(SvgReceiveDollars); export default ForwardRef; diff --git a/packages/iconoir-react/src/ReceiveEuros.tsx b/packages/iconoir-react/src/ReceiveEuros.tsx index 20f6dab2..8119ee05 100644 --- a/packages/iconoir-react/src/ReceiveEuros.tsx +++ b/packages/iconoir-react/src/ReceiveEuros.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReceiveEuros( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReceiveEuros = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgReceiveEuros( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReceiveEuros); +}; +const ForwardRef = forwardRef(SvgReceiveEuros); export default ForwardRef; diff --git a/packages/iconoir-react/src/ReceivePounds.tsx b/packages/iconoir-react/src/ReceivePounds.tsx index 36b44774..9ccabb85 100644 --- a/packages/iconoir-react/src/ReceivePounds.tsx +++ b/packages/iconoir-react/src/ReceivePounds.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReceivePounds( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReceivePounds = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgReceivePounds( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReceivePounds); +}; +const ForwardRef = forwardRef(SvgReceivePounds); export default ForwardRef; diff --git a/packages/iconoir-react/src/ReceiveYens.tsx b/packages/iconoir-react/src/ReceiveYens.tsx index 62434c7f..07913fd8 100644 --- a/packages/iconoir-react/src/ReceiveYens.tsx +++ b/packages/iconoir-react/src/ReceiveYens.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReceiveYens( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReceiveYens = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgReceiveYens( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReceiveYens); +}; +const ForwardRef = forwardRef(SvgReceiveYens); export default ForwardRef; diff --git a/packages/iconoir-react/src/Redo.tsx b/packages/iconoir-react/src/Redo.tsx index 5226815a..dbb89305 100644 --- a/packages/iconoir-react/src/Redo.tsx +++ b/packages/iconoir-react/src/Redo.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRedo( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRedo = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRedo( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRedo); +}; +const ForwardRef = forwardRef(SvgRedo); export default ForwardRef; diff --git a/packages/iconoir-react/src/RedoAction.tsx b/packages/iconoir-react/src/RedoAction.tsx index 0bee6b5e..cd23988f 100644 --- a/packages/iconoir-react/src/RedoAction.tsx +++ b/packages/iconoir-react/src/RedoAction.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRedoAction( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRedoAction = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRedoAction( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRedoAction); +}; +const ForwardRef = forwardRef(SvgRedoAction); export default ForwardRef; diff --git a/packages/iconoir-react/src/RedoCircle.tsx b/packages/iconoir-react/src/RedoCircle.tsx index cb237713..78bdf520 100644 --- a/packages/iconoir-react/src/RedoCircle.tsx +++ b/packages/iconoir-react/src/RedoCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRedoCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRedoCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgRedoCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRedoCircle); +}; +const ForwardRef = forwardRef(SvgRedoCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/Reduce.tsx b/packages/iconoir-react/src/Reduce.tsx index 134b5ca3..aaaece78 100644 --- a/packages/iconoir-react/src/Reduce.tsx +++ b/packages/iconoir-react/src/Reduce.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReduce( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReduce = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgReduce( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReduce); +}; +const ForwardRef = forwardRef(SvgReduce); export default ForwardRef; diff --git a/packages/iconoir-react/src/ReduceRoundArrow.tsx b/packages/iconoir-react/src/ReduceRoundArrow.tsx index 530aca52..93b2704f 100644 --- a/packages/iconoir-react/src/ReduceRoundArrow.tsx +++ b/packages/iconoir-react/src/ReduceRoundArrow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReduceRoundArrow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReduceRoundArrow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgReduceRoundArrow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReduceRoundArrow); +}; +const ForwardRef = forwardRef(SvgReduceRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Refresh.tsx b/packages/iconoir-react/src/Refresh.tsx index 5d1c80e5..ce0205ab 100644 --- a/packages/iconoir-react/src/Refresh.tsx +++ b/packages/iconoir-react/src/Refresh.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRefresh( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRefresh = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRefresh( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRefresh); +}; +const ForwardRef = forwardRef(SvgRefresh); export default ForwardRef; diff --git a/packages/iconoir-react/src/RefreshCircular.tsx b/packages/iconoir-react/src/RefreshCircular.tsx index 5f61349b..13c161c4 100644 --- a/packages/iconoir-react/src/RefreshCircular.tsx +++ b/packages/iconoir-react/src/RefreshCircular.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRefreshCircular( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRefreshCircular = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgRefreshCircular( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRefreshCircular); +}; +const ForwardRef = forwardRef(SvgRefreshCircular); export default ForwardRef; diff --git a/packages/iconoir-react/src/RefreshDouble.tsx b/packages/iconoir-react/src/RefreshDouble.tsx index 5da2eb2d..74309667 100644 --- a/packages/iconoir-react/src/RefreshDouble.tsx +++ b/packages/iconoir-react/src/RefreshDouble.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRefreshDouble( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRefreshDouble = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgRefreshDouble( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRefreshDouble); +}; +const ForwardRef = forwardRef(SvgRefreshDouble); export default ForwardRef; diff --git a/packages/iconoir-react/src/ReloadWindow.tsx b/packages/iconoir-react/src/ReloadWindow.tsx index 841de00d..77b2bb8f 100644 --- a/packages/iconoir-react/src/ReloadWindow.tsx +++ b/packages/iconoir-react/src/ReloadWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReloadWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReloadWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,41 +13,41 @@ function SvgReloadWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReloadWindow); +}; +const ForwardRef = forwardRef(SvgReloadWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/ReminderHandGesture.tsx b/packages/iconoir-react/src/ReminderHandGesture.tsx index 15558a4b..8953dc99 100644 --- a/packages/iconoir-react/src/ReminderHandGesture.tsx +++ b/packages/iconoir-react/src/ReminderHandGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReminderHandGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReminderHandGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgReminderHandGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReminderHandGesture); +}; +const ForwardRef = forwardRef(SvgReminderHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveDatabaseScript.tsx b/packages/iconoir-react/src/RemoveDatabaseScript.tsx index 72222e04..523af7dc 100644 --- a/packages/iconoir-react/src/RemoveDatabaseScript.tsx +++ b/packages/iconoir-react/src/RemoveDatabaseScript.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveDatabaseScript( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveDatabaseScript = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRemoveDatabaseScript( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveDatabaseScript); +}; +const ForwardRef = forwardRef(SvgRemoveDatabaseScript); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveFolder.tsx b/packages/iconoir-react/src/RemoveFolder.tsx index 6d4c56da..a824bb18 100644 --- a/packages/iconoir-react/src/RemoveFolder.tsx +++ b/packages/iconoir-react/src/RemoveFolder.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveFolder( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveFolder = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRemoveFolder( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveFolder); +}; +const ForwardRef = forwardRef(SvgRemoveFolder); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveFrame.tsx b/packages/iconoir-react/src/RemoveFrame.tsx index 610bdbeb..fe8313fe 100644 --- a/packages/iconoir-react/src/RemoveFrame.tsx +++ b/packages/iconoir-react/src/RemoveFrame.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveFrame( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveFrame = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgRemoveFrame( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveFrame); +}; +const ForwardRef = forwardRef(SvgRemoveFrame); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveFromCart.tsx b/packages/iconoir-react/src/RemoveFromCart.tsx index 78e38689..af42c987 100644 --- a/packages/iconoir-react/src/RemoveFromCart.tsx +++ b/packages/iconoir-react/src/RemoveFromCart.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveFromCart( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveFromCart = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRemoveFromCart( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveFromCart); +}; +const ForwardRef = forwardRef(SvgRemoveFromCart); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveKeyframe.tsx b/packages/iconoir-react/src/RemoveKeyframe.tsx index e6ef73bd..6f8078c0 100644 --- a/packages/iconoir-react/src/RemoveKeyframe.tsx +++ b/packages/iconoir-react/src/RemoveKeyframe.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveKeyframe( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveKeyframe = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRemoveKeyframe( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveKeyframe); +}; +const ForwardRef = forwardRef(SvgRemoveKeyframe); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveKeyframeAlt.tsx b/packages/iconoir-react/src/RemoveKeyframeAlt.tsx index ac434b36..28503464 100644 --- a/packages/iconoir-react/src/RemoveKeyframeAlt.tsx +++ b/packages/iconoir-react/src/RemoveKeyframeAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveKeyframeAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveKeyframeAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRemoveKeyframeAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveKeyframeAlt); +}; +const ForwardRef = forwardRef(SvgRemoveKeyframeAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveKeyframes.tsx b/packages/iconoir-react/src/RemoveKeyframes.tsx index d0d42d24..b56f0c7c 100644 --- a/packages/iconoir-react/src/RemoveKeyframes.tsx +++ b/packages/iconoir-react/src/RemoveKeyframes.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveKeyframes( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveKeyframes = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgRemoveKeyframes( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveKeyframes); +}; +const ForwardRef = forwardRef(SvgRemoveKeyframes); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveLink.tsx b/packages/iconoir-react/src/RemoveLink.tsx index 4c06d676..c7b6235f 100644 --- a/packages/iconoir-react/src/RemoveLink.tsx +++ b/packages/iconoir-react/src/RemoveLink.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveLink( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveLink = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRemoveLink( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveLink); +}; +const ForwardRef = forwardRef(SvgRemoveLink); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveMediaImage.tsx b/packages/iconoir-react/src/RemoveMediaImage.tsx index b5470e36..2540cbeb 100644 --- a/packages/iconoir-react/src/RemoveMediaImage.tsx +++ b/packages/iconoir-react/src/RemoveMediaImage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveMediaImage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveMediaImage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRemoveMediaImage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveMediaImage); +}; +const ForwardRef = forwardRef(SvgRemoveMediaImage); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveMediaVideo.tsx b/packages/iconoir-react/src/RemoveMediaVideo.tsx index 24744bd4..a7a37d4d 100644 --- a/packages/iconoir-react/src/RemoveMediaVideo.tsx +++ b/packages/iconoir-react/src/RemoveMediaVideo.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveMediaVideo( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveMediaVideo = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRemoveMediaVideo( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveMediaVideo); +}; +const ForwardRef = forwardRef(SvgRemoveMediaVideo); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemovePage.tsx b/packages/iconoir-react/src/RemovePage.tsx index 87d49561..c17aca8a 100644 --- a/packages/iconoir-react/src/RemovePage.tsx +++ b/packages/iconoir-react/src/RemovePage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemovePage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemovePage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRemovePage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemovePage); +}; +const ForwardRef = forwardRef(SvgRemovePage); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemovePageAlt.tsx b/packages/iconoir-react/src/RemovePageAlt.tsx index 05e54274..fa674e29 100644 --- a/packages/iconoir-react/src/RemovePageAlt.tsx +++ b/packages/iconoir-react/src/RemovePageAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemovePageAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemovePageAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRemovePageAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemovePageAlt); +}; +const ForwardRef = forwardRef(SvgRemovePageAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemovePin.tsx b/packages/iconoir-react/src/RemovePin.tsx index 6a92d7f5..310a4515 100644 --- a/packages/iconoir-react/src/RemovePin.tsx +++ b/packages/iconoir-react/src/RemovePin.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemovePin( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemovePin = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRemovePin( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemovePin); +}; +const ForwardRef = forwardRef(SvgRemovePin); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemovePinAlt.tsx b/packages/iconoir-react/src/RemovePinAlt.tsx index f0b316d7..6baacae8 100644 --- a/packages/iconoir-react/src/RemovePinAlt.tsx +++ b/packages/iconoir-react/src/RemovePinAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemovePinAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemovePinAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgRemovePinAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemovePinAlt); +}; +const ForwardRef = forwardRef(SvgRemovePinAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveSelection.tsx b/packages/iconoir-react/src/RemoveSelection.tsx index 29078b53..f5828977 100644 --- a/packages/iconoir-react/src/RemoveSelection.tsx +++ b/packages/iconoir-react/src/RemoveSelection.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveSelection( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveSelection = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRemoveSelection( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveSelection); +}; +const ForwardRef = forwardRef(SvgRemoveSelection); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveSquare.tsx b/packages/iconoir-react/src/RemoveSquare.tsx index ab3b7ecd..41fe1d9e 100644 --- a/packages/iconoir-react/src/RemoveSquare.tsx +++ b/packages/iconoir-react/src/RemoveSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRemoveSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRemoveSquare); +}; +const ForwardRef = forwardRef(SvgRemoveSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/RemoveUser.tsx b/packages/iconoir-react/src/RemoveUser.tsx index 94bf9ae6..9dec412b 100644 --- a/packages/iconoir-react/src/RemoveUser.tsx +++ b/packages/iconoir-react/src/RemoveUser.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRemoveUser( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRemoveUser = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgRemoveUser( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgRemoveUser); +}; +const ForwardRef = forwardRef(SvgRemoveUser); export default ForwardRef; diff --git a/packages/iconoir-react/src/Repeat.tsx b/packages/iconoir-react/src/Repeat.tsx index b9c3e830..1ad42dc7 100644 --- a/packages/iconoir-react/src/Repeat.tsx +++ b/packages/iconoir-react/src/Repeat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRepeat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRepeat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRepeat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRepeat); +}; +const ForwardRef = forwardRef(SvgRepeat); export default ForwardRef; diff --git a/packages/iconoir-react/src/RepeatOnce.tsx b/packages/iconoir-react/src/RepeatOnce.tsx index 1ae8d776..878aa78d 100644 --- a/packages/iconoir-react/src/RepeatOnce.tsx +++ b/packages/iconoir-react/src/RepeatOnce.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRepeatOnce( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRepeatOnce = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRepeatOnce( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRepeatOnce); +}; +const ForwardRef = forwardRef(SvgRepeatOnce); export default ForwardRef; diff --git a/packages/iconoir-react/src/Reply.tsx b/packages/iconoir-react/src/Reply.tsx index 1fbf5fb1..482349f7 100644 --- a/packages/iconoir-react/src/Reply.tsx +++ b/packages/iconoir-react/src/Reply.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReply( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReply = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgReply( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReply); +}; +const ForwardRef = forwardRef(SvgReply); export default ForwardRef; diff --git a/packages/iconoir-react/src/ReplyToMessage.tsx b/packages/iconoir-react/src/ReplyToMessage.tsx index c8c692ce..3bc0e175 100644 --- a/packages/iconoir-react/src/ReplyToMessage.tsx +++ b/packages/iconoir-react/src/ReplyToMessage.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReplyToMessage( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReplyToMessage = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgReplyToMessage( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReplyToMessage); +}; +const ForwardRef = forwardRef(SvgReplyToMessage); export default ForwardRef; diff --git a/packages/iconoir-react/src/ReportColumns.tsx b/packages/iconoir-react/src/ReportColumns.tsx index b117004c..55c81a24 100644 --- a/packages/iconoir-react/src/ReportColumns.tsx +++ b/packages/iconoir-react/src/ReportColumns.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReportColumns( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReportColumns = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgReportColumns( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReportColumns); +}; +const ForwardRef = forwardRef(SvgReportColumns); export default ForwardRef; diff --git a/packages/iconoir-react/src/Reports.tsx b/packages/iconoir-react/src/Reports.tsx index c5082dd0..77d5a66d 100644 --- a/packages/iconoir-react/src/Reports.tsx +++ b/packages/iconoir-react/src/Reports.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgReports( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgReports = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgReports( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgReports); +}; +const ForwardRef = forwardRef(SvgReports); export default ForwardRef; diff --git a/packages/iconoir-react/src/Repository.tsx b/packages/iconoir-react/src/Repository.tsx index 1ea2e01d..9d54fea2 100644 --- a/packages/iconoir-react/src/Repository.tsx +++ b/packages/iconoir-react/src/Repository.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRepository( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRepository = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgRepository( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgRepository); +}; +const ForwardRef = forwardRef(SvgRepository); export default ForwardRef; diff --git a/packages/iconoir-react/src/Restart.tsx b/packages/iconoir-react/src/Restart.tsx index 2666097f..b3e51288 100644 --- a/packages/iconoir-react/src/Restart.tsx +++ b/packages/iconoir-react/src/Restart.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRestart( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRestart = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,32 +13,32 @@ function SvgRestart( }; return ( - - + + - + ); -} -const ForwardRef = React.forwardRef(SvgRestart); +}; +const ForwardRef = forwardRef(SvgRestart); export default ForwardRef; diff --git a/packages/iconoir-react/src/Rewind.tsx b/packages/iconoir-react/src/Rewind.tsx index 45cb59b3..fb7c8b87 100644 --- a/packages/iconoir-react/src/Rewind.tsx +++ b/packages/iconoir-react/src/Rewind.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRewind( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRewind = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRewind( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRewind); +}; +const ForwardRef = forwardRef(SvgRewind); export default ForwardRef; diff --git a/packages/iconoir-react/src/Rhombus.tsx b/packages/iconoir-react/src/Rhombus.tsx index a0573ddb..825627f0 100644 --- a/packages/iconoir-react/src/Rhombus.tsx +++ b/packages/iconoir-react/src/Rhombus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRhombus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRhombus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRhombus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRhombus); +}; +const ForwardRef = forwardRef(SvgRhombus); export default ForwardRef; diff --git a/packages/iconoir-react/src/RightRoundArrow.tsx b/packages/iconoir-react/src/RightRoundArrow.tsx index 7749d7c8..28305b53 100644 --- a/packages/iconoir-react/src/RightRoundArrow.tsx +++ b/packages/iconoir-react/src/RightRoundArrow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRightRoundArrow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRightRoundArrow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgRightRoundArrow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRightRoundArrow); +}; +const ForwardRef = forwardRef(SvgRightRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Rings.tsx b/packages/iconoir-react/src/Rings.tsx index 5d8dd5e7..2150c361 100644 --- a/packages/iconoir-react/src/Rings.tsx +++ b/packages/iconoir-react/src/Rings.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRings( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRings = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRings( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRings); +}; +const ForwardRef = forwardRef(SvgRings); export default ForwardRef; diff --git a/packages/iconoir-react/src/Rocket.tsx b/packages/iconoir-react/src/Rocket.tsx index 3d394e40..e5c606e1 100644 --- a/packages/iconoir-react/src/Rocket.tsx +++ b/packages/iconoir-react/src/Rocket.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRocket( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRocket = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRocket( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRocket); +}; +const ForwardRef = forwardRef(SvgRocket); export default ForwardRef; diff --git a/packages/iconoir-react/src/Rook.tsx b/packages/iconoir-react/src/Rook.tsx index 3421eaf9..13763505 100644 --- a/packages/iconoir-react/src/Rook.tsx +++ b/packages/iconoir-react/src/Rook.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRook( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRook = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgRook( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRook); +}; +const ForwardRef = forwardRef(SvgRook); export default ForwardRef; diff --git a/packages/iconoir-react/src/RotateCameraLeft.tsx b/packages/iconoir-react/src/RotateCameraLeft.tsx index 6e7e124d..a74fe258 100644 --- a/packages/iconoir-react/src/RotateCameraLeft.tsx +++ b/packages/iconoir-react/src/RotateCameraLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRotateCameraLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRotateCameraLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgRotateCameraLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRotateCameraLeft); +}; +const ForwardRef = forwardRef(SvgRotateCameraLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/RotateCameraRight.tsx b/packages/iconoir-react/src/RotateCameraRight.tsx index 7487a618..5b4d0813 100644 --- a/packages/iconoir-react/src/RotateCameraRight.tsx +++ b/packages/iconoir-react/src/RotateCameraRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRotateCameraRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRotateCameraRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgRotateCameraRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRotateCameraRight); +}; +const ForwardRef = forwardRef(SvgRotateCameraRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/RoundFlask.tsx b/packages/iconoir-react/src/RoundFlask.tsx index 8af5c39b..9c3d86f3 100644 --- a/packages/iconoir-react/src/RoundFlask.tsx +++ b/packages/iconoir-react/src/RoundFlask.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRoundFlask( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRoundFlask = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgRoundFlask( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgRoundFlask); +}; +const ForwardRef = forwardRef(SvgRoundFlask); export default ForwardRef; diff --git a/packages/iconoir-react/src/RoundedMirror.tsx b/packages/iconoir-react/src/RoundedMirror.tsx index bdcda868..1a41593a 100644 --- a/packages/iconoir-react/src/RoundedMirror.tsx +++ b/packages/iconoir-react/src/RoundedMirror.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRoundedMirror( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRoundedMirror = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRoundedMirror( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRoundedMirror); +}; +const ForwardRef = forwardRef(SvgRoundedMirror); export default ForwardRef; diff --git a/packages/iconoir-react/src/RssFeed.tsx b/packages/iconoir-react/src/RssFeed.tsx index 2e40f119..c9b165d7 100644 --- a/packages/iconoir-react/src/RssFeed.tsx +++ b/packages/iconoir-react/src/RssFeed.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRssFeed( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRssFeed = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRssFeed( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRssFeed); +}; +const ForwardRef = forwardRef(SvgRssFeed); export default ForwardRef; diff --git a/packages/iconoir-react/src/RssFeedTag.tsx b/packages/iconoir-react/src/RssFeedTag.tsx index e55f1433..3936c735 100644 --- a/packages/iconoir-react/src/RssFeedTag.tsx +++ b/packages/iconoir-react/src/RssFeedTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRssFeedTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRssFeedTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRssFeedTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRssFeedTag); +}; +const ForwardRef = forwardRef(SvgRssFeedTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/RubikCube.tsx b/packages/iconoir-react/src/RubikCube.tsx index 1431c6df..6a86c1fa 100644 --- a/packages/iconoir-react/src/RubikCube.tsx +++ b/packages/iconoir-react/src/RubikCube.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRubikCube( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRubikCube = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRubikCube( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRubikCube); +}; +const ForwardRef = forwardRef(SvgRubikCube); export default ForwardRef; diff --git a/packages/iconoir-react/src/Ruler.tsx b/packages/iconoir-react/src/Ruler.tsx index 74d23b68..ac98b659 100644 --- a/packages/iconoir-react/src/Ruler.tsx +++ b/packages/iconoir-react/src/Ruler.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRuler( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRuler = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRuler( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRuler); +}; +const ForwardRef = forwardRef(SvgRuler); export default ForwardRef; diff --git a/packages/iconoir-react/src/RulerAdd.tsx b/packages/iconoir-react/src/RulerAdd.tsx index 8e280b80..b854bfc4 100644 --- a/packages/iconoir-react/src/RulerAdd.tsx +++ b/packages/iconoir-react/src/RulerAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRulerAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRulerAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRulerAdd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRulerAdd); +}; +const ForwardRef = forwardRef(SvgRulerAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/RulerCombine.tsx b/packages/iconoir-react/src/RulerCombine.tsx index 1669e1e3..5c759891 100644 --- a/packages/iconoir-react/src/RulerCombine.tsx +++ b/packages/iconoir-react/src/RulerCombine.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRulerCombine( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRulerCombine = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRulerCombine( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRulerCombine); +}; +const ForwardRef = forwardRef(SvgRulerCombine); export default ForwardRef; diff --git a/packages/iconoir-react/src/RulerRemove.tsx b/packages/iconoir-react/src/RulerRemove.tsx index 27a95845..d5cc837b 100644 --- a/packages/iconoir-react/src/RulerRemove.tsx +++ b/packages/iconoir-react/src/RulerRemove.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRulerRemove( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRulerRemove = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgRulerRemove( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRulerRemove); +}; +const ForwardRef = forwardRef(SvgRulerRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/Running.tsx b/packages/iconoir-react/src/Running.tsx index 616361a5..ea437481 100644 --- a/packages/iconoir-react/src/Running.tsx +++ b/packages/iconoir-react/src/Running.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgRunning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgRunning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgRunning( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgRunning); +}; +const ForwardRef = forwardRef(SvgRunning); export default ForwardRef; diff --git a/packages/iconoir-react/src/Safari.tsx b/packages/iconoir-react/src/Safari.tsx index 869879c8..eae4ce1c 100644 --- a/packages/iconoir-react/src/Safari.tsx +++ b/packages/iconoir-react/src/Safari.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSafari( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSafari = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSafari( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSafari); +}; +const ForwardRef = forwardRef(SvgSafari); export default ForwardRef; diff --git a/packages/iconoir-react/src/Safe.tsx b/packages/iconoir-react/src/Safe.tsx index f2a0aa29..8e4c8d78 100644 --- a/packages/iconoir-react/src/Safe.tsx +++ b/packages/iconoir-react/src/Safe.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSafe( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSafe = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgSafe( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSafe); +}; +const ForwardRef = forwardRef(SvgSafe); export default ForwardRef; diff --git a/packages/iconoir-react/src/SafeArrowLeft.tsx b/packages/iconoir-react/src/SafeArrowLeft.tsx index 644e228d..9b41aa1e 100644 --- a/packages/iconoir-react/src/SafeArrowLeft.tsx +++ b/packages/iconoir-react/src/SafeArrowLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSafeArrowLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSafeArrowLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgSafeArrowLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSafeArrowLeft); +}; +const ForwardRef = forwardRef(SvgSafeArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/SafeArrowRight.tsx b/packages/iconoir-react/src/SafeArrowRight.tsx index 1b28e0f3..b728935d 100644 --- a/packages/iconoir-react/src/SafeArrowRight.tsx +++ b/packages/iconoir-react/src/SafeArrowRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSafeArrowRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSafeArrowRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgSafeArrowRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSafeArrowRight); +}; +const ForwardRef = forwardRef(SvgSafeArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/SafeOpen.tsx b/packages/iconoir-react/src/SafeOpen.tsx index 7919dd75..55227ac1 100644 --- a/packages/iconoir-react/src/SafeOpen.tsx +++ b/packages/iconoir-react/src/SafeOpen.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSafeOpen( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSafeOpen = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,32 @@ function SvgSafeOpen( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgSafeOpen); +}; +const ForwardRef = forwardRef(SvgSafeOpen); export default ForwardRef; diff --git a/packages/iconoir-react/src/Sandals.tsx b/packages/iconoir-react/src/Sandals.tsx index 253a9eb9..0c709fed 100644 --- a/packages/iconoir-react/src/Sandals.tsx +++ b/packages/iconoir-react/src/Sandals.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSandals( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSandals = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSandals( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSandals); +}; +const ForwardRef = forwardRef(SvgSandals); export default ForwardRef; diff --git a/packages/iconoir-react/src/SaveActionFloppy.tsx b/packages/iconoir-react/src/SaveActionFloppy.tsx index 17cd97bc..155bab9f 100644 --- a/packages/iconoir-react/src/SaveActionFloppy.tsx +++ b/packages/iconoir-react/src/SaveActionFloppy.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSaveActionFloppy( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSaveActionFloppy = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSaveActionFloppy( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSaveActionFloppy); +}; +const ForwardRef = forwardRef(SvgSaveActionFloppy); export default ForwardRef; diff --git a/packages/iconoir-react/src/SaveFloppyDisk.tsx b/packages/iconoir-react/src/SaveFloppyDisk.tsx index f2959bb4..a69486dd 100644 --- a/packages/iconoir-react/src/SaveFloppyDisk.tsx +++ b/packages/iconoir-react/src/SaveFloppyDisk.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSaveFloppyDisk( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSaveFloppyDisk = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,26 @@ function SvgSaveFloppyDisk( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSaveFloppyDisk); +}; +const ForwardRef = forwardRef(SvgSaveFloppyDisk); export default ForwardRef; diff --git a/packages/iconoir-react/src/ScaleFrameEnlarge.tsx b/packages/iconoir-react/src/ScaleFrameEnlarge.tsx index e3fb3fb1..6fcc1ab2 100644 --- a/packages/iconoir-react/src/ScaleFrameEnlarge.tsx +++ b/packages/iconoir-react/src/ScaleFrameEnlarge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScaleFrameEnlarge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgScaleFrameEnlarge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgScaleFrameEnlarge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgScaleFrameEnlarge); +}; +const ForwardRef = forwardRef(SvgScaleFrameEnlarge); export default ForwardRef; diff --git a/packages/iconoir-react/src/ScaleFrameReduce.tsx b/packages/iconoir-react/src/ScaleFrameReduce.tsx index d111b2a3..9e4c0d5d 100644 --- a/packages/iconoir-react/src/ScaleFrameReduce.tsx +++ b/packages/iconoir-react/src/ScaleFrameReduce.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScaleFrameReduce( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgScaleFrameReduce = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgScaleFrameReduce( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgScaleFrameReduce); +}; +const ForwardRef = forwardRef(SvgScaleFrameReduce); export default ForwardRef; diff --git a/packages/iconoir-react/src/ScanBarcode.tsx b/packages/iconoir-react/src/ScanBarcode.tsx index ff09f004..9e0eaf29 100644 --- a/packages/iconoir-react/src/ScanBarcode.tsx +++ b/packages/iconoir-react/src/ScanBarcode.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScanBarcode( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgScanBarcode = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgScanBarcode( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgScanBarcode); +}; +const ForwardRef = forwardRef(SvgScanBarcode); export default ForwardRef; diff --git a/packages/iconoir-react/src/ScanQrCode.tsx b/packages/iconoir-react/src/ScanQrCode.tsx index 4f6700b9..db2fc916 100644 --- a/packages/iconoir-react/src/ScanQrCode.tsx +++ b/packages/iconoir-react/src/ScanQrCode.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScanQrCode( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgScanQrCode = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgScanQrCode( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgScanQrCode); +}; +const ForwardRef = forwardRef(SvgScanQrCode); export default ForwardRef; diff --git a/packages/iconoir-react/src/Scanning.tsx b/packages/iconoir-react/src/Scanning.tsx index 8212ad18..9baa2242 100644 --- a/packages/iconoir-react/src/Scanning.tsx +++ b/packages/iconoir-react/src/Scanning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScanning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgScanning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgScanning( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgScanning); +}; +const ForwardRef = forwardRef(SvgScanning); export default ForwardRef; diff --git a/packages/iconoir-react/src/Scarf.tsx b/packages/iconoir-react/src/Scarf.tsx index f974089e..0cec9fd0 100644 --- a/packages/iconoir-react/src/Scarf.tsx +++ b/packages/iconoir-react/src/Scarf.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScarf( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgScarf = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgScarf( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgScarf); +}; +const ForwardRef = forwardRef(SvgScarf); export default ForwardRef; diff --git a/packages/iconoir-react/src/Scissor.tsx b/packages/iconoir-react/src/Scissor.tsx index 2a640631..1492b9f7 100644 --- a/packages/iconoir-react/src/Scissor.tsx +++ b/packages/iconoir-react/src/Scissor.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScissor( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgScissor = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgScissor( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgScissor); +}; +const ForwardRef = forwardRef(SvgScissor); export default ForwardRef; diff --git a/packages/iconoir-react/src/ScissorAlt.tsx b/packages/iconoir-react/src/ScissorAlt.tsx index 779479cd..6885c17f 100644 --- a/packages/iconoir-react/src/ScissorAlt.tsx +++ b/packages/iconoir-react/src/ScissorAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScissorAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgScissorAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgScissorAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgScissorAlt); +}; +const ForwardRef = forwardRef(SvgScissorAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Screenshot.tsx b/packages/iconoir-react/src/Screenshot.tsx index 90466b83..300a17fc 100644 --- a/packages/iconoir-react/src/Screenshot.tsx +++ b/packages/iconoir-react/src/Screenshot.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgScreenshot( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgScreenshot = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgScreenshot( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgScreenshot); +}; +const ForwardRef = forwardRef(SvgScreenshot); export default ForwardRef; diff --git a/packages/iconoir-react/src/SeaAndSun.tsx b/packages/iconoir-react/src/SeaAndSun.tsx index 97d81479..c3da3741 100644 --- a/packages/iconoir-react/src/SeaAndSun.tsx +++ b/packages/iconoir-react/src/SeaAndSun.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSeaAndSun( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSeaAndSun = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSeaAndSun( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSeaAndSun); +}; +const ForwardRef = forwardRef(SvgSeaAndSun); export default ForwardRef; diff --git a/packages/iconoir-react/src/SeaWaves.tsx b/packages/iconoir-react/src/SeaWaves.tsx index 03c2a52d..363f5f31 100644 --- a/packages/iconoir-react/src/SeaWaves.tsx +++ b/packages/iconoir-react/src/SeaWaves.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSeaWaves( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSeaWaves = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSeaWaves( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSeaWaves); +}; +const ForwardRef = forwardRef(SvgSeaWaves); export default ForwardRef; diff --git a/packages/iconoir-react/src/Search.tsx b/packages/iconoir-react/src/Search.tsx index 4e3ae32c..9e4d958d 100644 --- a/packages/iconoir-react/src/Search.tsx +++ b/packages/iconoir-react/src/Search.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSearch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSearch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSearch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSearch); +}; +const ForwardRef = forwardRef(SvgSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/SearchEngine.tsx b/packages/iconoir-react/src/SearchEngine.tsx index 492a539c..8370c6fd 100644 --- a/packages/iconoir-react/src/SearchEngine.tsx +++ b/packages/iconoir-react/src/SearchEngine.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSearchEngine( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSearchEngine = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgSearchEngine( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSearchEngine); +}; +const ForwardRef = forwardRef(SvgSearchEngine); export default ForwardRef; diff --git a/packages/iconoir-react/src/SearchFont.tsx b/packages/iconoir-react/src/SearchFont.tsx index 52b3db62..3b15c678 100644 --- a/packages/iconoir-react/src/SearchFont.tsx +++ b/packages/iconoir-react/src/SearchFont.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSearchFont( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSearchFont = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSearchFont( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSearchFont); +}; +const ForwardRef = forwardRef(SvgSearchFont); export default ForwardRef; diff --git a/packages/iconoir-react/src/SearchWindow.tsx b/packages/iconoir-react/src/SearchWindow.tsx index 4b6a63ec..f8ff2aa9 100644 --- a/packages/iconoir-react/src/SearchWindow.tsx +++ b/packages/iconoir-react/src/SearchWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSearchWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSearchWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgSearchWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSearchWindow); +}; +const ForwardRef = forwardRef(SvgSearchWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/SecureWindow.tsx b/packages/iconoir-react/src/SecureWindow.tsx index c188ffb0..3cf3863b 100644 --- a/packages/iconoir-react/src/SecureWindow.tsx +++ b/packages/iconoir-react/src/SecureWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSecureWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSecureWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgSecureWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSecureWindow); +}; +const ForwardRef = forwardRef(SvgSecureWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/SecurityPass.tsx b/packages/iconoir-react/src/SecurityPass.tsx index cee84f6b..e831b4fb 100644 --- a/packages/iconoir-react/src/SecurityPass.tsx +++ b/packages/iconoir-react/src/SecurityPass.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSecurityPass( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSecurityPass = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgSecurityPass( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgSecurityPass); +}; +const ForwardRef = forwardRef(SvgSecurityPass); export default ForwardRef; diff --git a/packages/iconoir-react/src/SelectWindow.tsx b/packages/iconoir-react/src/SelectWindow.tsx index 98e74f4e..a296fb1d 100644 --- a/packages/iconoir-react/src/SelectWindow.tsx +++ b/packages/iconoir-react/src/SelectWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSelectWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSelectWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgSelectWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSelectWindow); +}; +const ForwardRef = forwardRef(SvgSelectWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Selection.tsx b/packages/iconoir-react/src/Selection.tsx index d34201bc..903c5e54 100644 --- a/packages/iconoir-react/src/Selection.tsx +++ b/packages/iconoir-react/src/Selection.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSelection( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSelection = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSelection( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSelection); +}; +const ForwardRef = forwardRef(SvgSelection); export default ForwardRef; diff --git a/packages/iconoir-react/src/SelectiveTool.tsx b/packages/iconoir-react/src/SelectiveTool.tsx index 6fb218ea..7c5a244f 100644 --- a/packages/iconoir-react/src/SelectiveTool.tsx +++ b/packages/iconoir-react/src/SelectiveTool.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSelectiveTool( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSelectiveTool = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgSelectiveTool( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSelectiveTool); +}; +const ForwardRef = forwardRef(SvgSelectiveTool); export default ForwardRef; diff --git a/packages/iconoir-react/src/Send.tsx b/packages/iconoir-react/src/Send.tsx index c3d62c36..18f63579 100644 --- a/packages/iconoir-react/src/Send.tsx +++ b/packages/iconoir-react/src/Send.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSend( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSend = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSend( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSend); +}; +const ForwardRef = forwardRef(SvgSend); export default ForwardRef; diff --git a/packages/iconoir-react/src/SendDiagonal.tsx b/packages/iconoir-react/src/SendDiagonal.tsx index 736cb4c4..d8e08929 100644 --- a/packages/iconoir-react/src/SendDiagonal.tsx +++ b/packages/iconoir-react/src/SendDiagonal.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendDiagonal( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSendDiagonal = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgSendDiagonal( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgSendDiagonal); +}; +const ForwardRef = forwardRef(SvgSendDiagonal); export default ForwardRef; diff --git a/packages/iconoir-react/src/SendDollars.tsx b/packages/iconoir-react/src/SendDollars.tsx index 2452b0c5..85f69fdd 100644 --- a/packages/iconoir-react/src/SendDollars.tsx +++ b/packages/iconoir-react/src/SendDollars.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendDollars( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSendDollars = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSendDollars( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSendDollars); +}; +const ForwardRef = forwardRef(SvgSendDollars); export default ForwardRef; diff --git a/packages/iconoir-react/src/SendEuros.tsx b/packages/iconoir-react/src/SendEuros.tsx index 50814d7d..01ef6ba9 100644 --- a/packages/iconoir-react/src/SendEuros.tsx +++ b/packages/iconoir-react/src/SendEuros.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendEuros( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSendEuros = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSendEuros( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSendEuros); +}; +const ForwardRef = forwardRef(SvgSendEuros); export default ForwardRef; diff --git a/packages/iconoir-react/src/SendMail.tsx b/packages/iconoir-react/src/SendMail.tsx index bbc0206d..91c00ea9 100644 --- a/packages/iconoir-react/src/SendMail.tsx +++ b/packages/iconoir-react/src/SendMail.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendMail( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSendMail = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgSendMail( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSendMail); +}; +const ForwardRef = forwardRef(SvgSendMail); export default ForwardRef; diff --git a/packages/iconoir-react/src/SendPounds.tsx b/packages/iconoir-react/src/SendPounds.tsx index 33701e5c..72040ea7 100644 --- a/packages/iconoir-react/src/SendPounds.tsx +++ b/packages/iconoir-react/src/SendPounds.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendPounds( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSendPounds = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSendPounds( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSendPounds); +}; +const ForwardRef = forwardRef(SvgSendPounds); export default ForwardRef; diff --git a/packages/iconoir-react/src/SendYens.tsx b/packages/iconoir-react/src/SendYens.tsx index 591900db..0e99f8f9 100644 --- a/packages/iconoir-react/src/SendYens.tsx +++ b/packages/iconoir-react/src/SendYens.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSendYens( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSendYens = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSendYens( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSendYens); +}; +const ForwardRef = forwardRef(SvgSendYens); export default ForwardRef; diff --git a/packages/iconoir-react/src/Server.tsx b/packages/iconoir-react/src/Server.tsx index e7623a7d..561abbc8 100644 --- a/packages/iconoir-react/src/Server.tsx +++ b/packages/iconoir-react/src/Server.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgServer( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgServer = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgServer( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgServer); +}; +const ForwardRef = forwardRef(SvgServer); export default ForwardRef; diff --git a/packages/iconoir-react/src/ServerConnection.tsx b/packages/iconoir-react/src/ServerConnection.tsx index 1764dc32..dd3bb6f2 100644 --- a/packages/iconoir-react/src/ServerConnection.tsx +++ b/packages/iconoir-react/src/ServerConnection.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgServerConnection( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgServerConnection = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgServerConnection( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgServerConnection); +}; +const ForwardRef = forwardRef(SvgServerConnection); export default ForwardRef; diff --git a/packages/iconoir-react/src/Settings.tsx b/packages/iconoir-react/src/Settings.tsx index 2581deaa..ad1eb954 100644 --- a/packages/iconoir-react/src/Settings.tsx +++ b/packages/iconoir-react/src/Settings.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSettings( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSettings = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSettings( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSettings); +}; +const ForwardRef = forwardRef(SvgSettings); export default ForwardRef; diff --git a/packages/iconoir-react/src/SettingsCloud.tsx b/packages/iconoir-react/src/SettingsCloud.tsx index 2bf9d374..258b8156 100644 --- a/packages/iconoir-react/src/SettingsCloud.tsx +++ b/packages/iconoir-react/src/SettingsCloud.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSettingsCloud( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSettingsCloud = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,27 +13,27 @@ function SvgSettingsCloud( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSettingsCloud); +}; +const ForwardRef = forwardRef(SvgSettingsCloud); export default ForwardRef; diff --git a/packages/iconoir-react/src/SettingsProfiles.tsx b/packages/iconoir-react/src/SettingsProfiles.tsx index 833d45c6..5b541626 100644 --- a/packages/iconoir-react/src/SettingsProfiles.tsx +++ b/packages/iconoir-react/src/SettingsProfiles.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSettingsProfiles( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSettingsProfiles = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgSettingsProfiles( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSettingsProfiles); +}; +const ForwardRef = forwardRef(SvgSettingsProfiles); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShareAndroid.tsx b/packages/iconoir-react/src/ShareAndroid.tsx index 159930a8..0afd883b 100644 --- a/packages/iconoir-react/src/ShareAndroid.tsx +++ b/packages/iconoir-react/src/ShareAndroid.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShareAndroid( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShareAndroid = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgShareAndroid( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgShareAndroid); +}; +const ForwardRef = forwardRef(SvgShareAndroid); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShareIos.tsx b/packages/iconoir-react/src/ShareIos.tsx index 7b163bd1..97744d7d 100644 --- a/packages/iconoir-react/src/ShareIos.tsx +++ b/packages/iconoir-react/src/ShareIos.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShareIos( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShareIos = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShareIos( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShareIos); +}; +const ForwardRef = forwardRef(SvgShareIos); export default ForwardRef; diff --git a/packages/iconoir-react/src/Shield.tsx b/packages/iconoir-react/src/Shield.tsx index 602318c3..73c958ee 100644 --- a/packages/iconoir-react/src/Shield.tsx +++ b/packages/iconoir-react/src/Shield.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShield( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShield = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShield( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShield); +}; +const ForwardRef = forwardRef(SvgShield); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldAdd.tsx b/packages/iconoir-react/src/ShieldAdd.tsx index a098ca33..74fa9402 100644 --- a/packages/iconoir-react/src/ShieldAdd.tsx +++ b/packages/iconoir-react/src/ShieldAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShieldAdd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldAdd); +}; +const ForwardRef = forwardRef(SvgShieldAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldAlert.tsx b/packages/iconoir-react/src/ShieldAlert.tsx index 03a515db..f3c7464e 100644 --- a/packages/iconoir-react/src/ShieldAlert.tsx +++ b/packages/iconoir-react/src/ShieldAlert.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldAlert( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldAlert = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShieldAlert( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldAlert); +}; +const ForwardRef = forwardRef(SvgShieldAlert); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldAlt.tsx b/packages/iconoir-react/src/ShieldAlt.tsx index 3302c6a6..e06dc9b8 100644 --- a/packages/iconoir-react/src/ShieldAlt.tsx +++ b/packages/iconoir-react/src/ShieldAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShieldAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldAlt); +}; +const ForwardRef = forwardRef(SvgShieldAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldBroken.tsx b/packages/iconoir-react/src/ShieldBroken.tsx index 5872bd65..fec73b83 100644 --- a/packages/iconoir-react/src/ShieldBroken.tsx +++ b/packages/iconoir-react/src/ShieldBroken.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldBroken( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldBroken = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgShieldBroken( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldBroken); +}; +const ForwardRef = forwardRef(SvgShieldBroken); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldCheck.tsx b/packages/iconoir-react/src/ShieldCheck.tsx index 019bb429..8e77db6f 100644 --- a/packages/iconoir-react/src/ShieldCheck.tsx +++ b/packages/iconoir-react/src/ShieldCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgShieldCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldCheck); +}; +const ForwardRef = forwardRef(SvgShieldCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldCross.tsx b/packages/iconoir-react/src/ShieldCross.tsx index 9e581dbb..580d9910 100644 --- a/packages/iconoir-react/src/ShieldCross.tsx +++ b/packages/iconoir-react/src/ShieldCross.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldCross( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldCross = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShieldCross( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldCross); +}; +const ForwardRef = forwardRef(SvgShieldCross); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldDownload.tsx b/packages/iconoir-react/src/ShieldDownload.tsx index 1c2a2b94..8b576f2e 100644 --- a/packages/iconoir-react/src/ShieldDownload.tsx +++ b/packages/iconoir-react/src/ShieldDownload.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldDownload( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldDownload = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShieldDownload( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldDownload); +}; +const ForwardRef = forwardRef(SvgShieldDownload); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldEye.tsx b/packages/iconoir-react/src/ShieldEye.tsx index 1513c5b8..cc2338a4 100644 --- a/packages/iconoir-react/src/ShieldEye.tsx +++ b/packages/iconoir-react/src/ShieldEye.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldEye( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldEye = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgShieldEye( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldEye); +}; +const ForwardRef = forwardRef(SvgShieldEye); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldLoading.tsx b/packages/iconoir-react/src/ShieldLoading.tsx index cb1dee14..def57822 100644 --- a/packages/iconoir-react/src/ShieldLoading.tsx +++ b/packages/iconoir-react/src/ShieldLoading.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldLoading( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldLoading = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShieldLoading( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldLoading); +}; +const ForwardRef = forwardRef(SvgShieldLoading); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldMinus.tsx b/packages/iconoir-react/src/ShieldMinus.tsx index 0a62c20a..82d2a5d9 100644 --- a/packages/iconoir-react/src/ShieldMinus.tsx +++ b/packages/iconoir-react/src/ShieldMinus.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldMinus( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldMinus = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShieldMinus( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldMinus); +}; +const ForwardRef = forwardRef(SvgShieldMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldQuestion.tsx b/packages/iconoir-react/src/ShieldQuestion.tsx index 815445b8..b540cd30 100644 --- a/packages/iconoir-react/src/ShieldQuestion.tsx +++ b/packages/iconoir-react/src/ShieldQuestion.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldQuestion( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldQuestion = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgShieldQuestion( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldQuestion); +}; +const ForwardRef = forwardRef(SvgShieldQuestion); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldSearch.tsx b/packages/iconoir-react/src/ShieldSearch.tsx index 8ff5b6bc..0604e1c8 100644 --- a/packages/iconoir-react/src/ShieldSearch.tsx +++ b/packages/iconoir-react/src/ShieldSearch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldSearch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldSearch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgShieldSearch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldSearch); +}; +const ForwardRef = forwardRef(SvgShieldSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShieldUpload.tsx b/packages/iconoir-react/src/ShieldUpload.tsx index fafa5e49..cc1b7086 100644 --- a/packages/iconoir-react/src/ShieldUpload.tsx +++ b/packages/iconoir-react/src/ShieldUpload.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShieldUpload( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShieldUpload = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShieldUpload( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShieldUpload); +}; +const ForwardRef = forwardRef(SvgShieldUpload); export default ForwardRef; diff --git a/packages/iconoir-react/src/Shop.tsx b/packages/iconoir-react/src/Shop.tsx index 30e57b65..e953f6a7 100644 --- a/packages/iconoir-react/src/Shop.tsx +++ b/packages/iconoir-react/src/Shop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,38 @@ function SvgShop( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgShop); +}; +const ForwardRef = forwardRef(SvgShop); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShopAlt.tsx b/packages/iconoir-react/src/ShopAlt.tsx index 6d65bf81..4bdac219 100644 --- a/packages/iconoir-react/src/ShopAlt.tsx +++ b/packages/iconoir-react/src/ShopAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShopAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShopAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,40 +13,43 @@ function SvgShopAlt( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgShopAlt); +}; +const ForwardRef = forwardRef(SvgShopAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingBag.tsx b/packages/iconoir-react/src/ShoppingBag.tsx index 05c3ee28..308733e8 100644 --- a/packages/iconoir-react/src/ShoppingBag.tsx +++ b/packages/iconoir-react/src/ShoppingBag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingBag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShoppingBag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBag); +}; +const ForwardRef = forwardRef(SvgShoppingBag); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingBagAdd.tsx b/packages/iconoir-react/src/ShoppingBagAdd.tsx index 06c93f0c..dc58cb7c 100644 --- a/packages/iconoir-react/src/ShoppingBagAdd.tsx +++ b/packages/iconoir-react/src/ShoppingBagAdd.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagAdd( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingBagAdd = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShoppingBagAdd( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagAdd); +}; +const ForwardRef = forwardRef(SvgShoppingBagAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingBagAlt.tsx b/packages/iconoir-react/src/ShoppingBagAlt.tsx index c59ee391..b614d84a 100644 --- a/packages/iconoir-react/src/ShoppingBagAlt.tsx +++ b/packages/iconoir-react/src/ShoppingBagAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingBagAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShoppingBagAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagAlt); +}; +const ForwardRef = forwardRef(SvgShoppingBagAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingBagArrowDown.tsx b/packages/iconoir-react/src/ShoppingBagArrowDown.tsx index 4fbfc0f2..cf9831f2 100644 --- a/packages/iconoir-react/src/ShoppingBagArrowDown.tsx +++ b/packages/iconoir-react/src/ShoppingBagArrowDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagArrowDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingBagArrowDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShoppingBagArrowDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagArrowDown); +}; +const ForwardRef = forwardRef(SvgShoppingBagArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingBagArrowUp.tsx b/packages/iconoir-react/src/ShoppingBagArrowUp.tsx index 1af2e971..d54f8aa1 100644 --- a/packages/iconoir-react/src/ShoppingBagArrowUp.tsx +++ b/packages/iconoir-react/src/ShoppingBagArrowUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagArrowUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingBagArrowUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShoppingBagArrowUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagArrowUp); +}; +const ForwardRef = forwardRef(SvgShoppingBagArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingBagCheck.tsx b/packages/iconoir-react/src/ShoppingBagCheck.tsx index e3c98fc6..d923ddc9 100644 --- a/packages/iconoir-react/src/ShoppingBagCheck.tsx +++ b/packages/iconoir-react/src/ShoppingBagCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingBagCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgShoppingBagCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagCheck); +}; +const ForwardRef = forwardRef(SvgShoppingBagCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingBagIssue.tsx b/packages/iconoir-react/src/ShoppingBagIssue.tsx index 5656b17a..4220acb1 100644 --- a/packages/iconoir-react/src/ShoppingBagIssue.tsx +++ b/packages/iconoir-react/src/ShoppingBagIssue.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagIssue( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingBagIssue = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShoppingBagIssue( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagIssue); +}; +const ForwardRef = forwardRef(SvgShoppingBagIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingBagRemove.tsx b/packages/iconoir-react/src/ShoppingBagRemove.tsx index 10cdb490..aeaa5653 100644 --- a/packages/iconoir-react/src/ShoppingBagRemove.tsx +++ b/packages/iconoir-react/src/ShoppingBagRemove.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingBagRemove( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingBagRemove = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShoppingBagRemove( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagRemove); +}; +const ForwardRef = forwardRef(SvgShoppingBagRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingCode.tsx b/packages/iconoir-react/src/ShoppingCode.tsx index 83e0073e..85e8852d 100644 --- a/packages/iconoir-react/src/ShoppingCode.tsx +++ b/packages/iconoir-react/src/ShoppingCode.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingCode( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingCode = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShoppingCode( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingCode); +}; +const ForwardRef = forwardRef(SvgShoppingCode); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingCodeCheck.tsx b/packages/iconoir-react/src/ShoppingCodeCheck.tsx index 2ceb585c..15e4a33e 100644 --- a/packages/iconoir-react/src/ShoppingCodeCheck.tsx +++ b/packages/iconoir-react/src/ShoppingCodeCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingCodeCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingCodeCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShoppingCodeCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingCodeCheck); +}; +const ForwardRef = forwardRef(SvgShoppingCodeCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShoppingCodeError.tsx b/packages/iconoir-react/src/ShoppingCodeError.tsx index a3460f36..10a0a6bf 100644 --- a/packages/iconoir-react/src/ShoppingCodeError.tsx +++ b/packages/iconoir-react/src/ShoppingCodeError.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShoppingCodeError( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShoppingCodeError = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShoppingCodeError( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShoppingCodeError); +}; +const ForwardRef = forwardRef(SvgShoppingCodeError); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShortPants.tsx b/packages/iconoir-react/src/ShortPants.tsx index 1381a244..5227e6e9 100644 --- a/packages/iconoir-react/src/ShortPants.tsx +++ b/packages/iconoir-react/src/ShortPants.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShortPants( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShortPants = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,26 @@ function SvgShortPants( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShortPants); +}; +const ForwardRef = forwardRef(SvgShortPants); export default ForwardRef; diff --git a/packages/iconoir-react/src/ShortPantsAlt.tsx b/packages/iconoir-react/src/ShortPantsAlt.tsx index 2cae51a8..fe8e035f 100644 --- a/packages/iconoir-react/src/ShortPantsAlt.tsx +++ b/packages/iconoir-react/src/ShortPantsAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShortPantsAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShortPantsAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgShortPantsAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShortPantsAlt); +}; +const ForwardRef = forwardRef(SvgShortPantsAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Shortcut.tsx b/packages/iconoir-react/src/Shortcut.tsx index a20f1f7a..36f0f01f 100644 --- a/packages/iconoir-react/src/Shortcut.tsx +++ b/packages/iconoir-react/src/Shortcut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShortcut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShortcut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgShortcut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShortcut); +}; +const ForwardRef = forwardRef(SvgShortcut); export default ForwardRef; diff --git a/packages/iconoir-react/src/Shuffle.tsx b/packages/iconoir-react/src/Shuffle.tsx index 2ac45eb5..a14cd6f2 100644 --- a/packages/iconoir-react/src/Shuffle.tsx +++ b/packages/iconoir-react/src/Shuffle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgShuffle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgShuffle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgShuffle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgShuffle); +}; +const ForwardRef = forwardRef(SvgShuffle); export default ForwardRef; diff --git a/packages/iconoir-react/src/SidebarCollapse.tsx b/packages/iconoir-react/src/SidebarCollapse.tsx index adc8104d..78acfe8e 100644 --- a/packages/iconoir-react/src/SidebarCollapse.tsx +++ b/packages/iconoir-react/src/SidebarCollapse.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSidebarCollapse( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSidebarCollapse = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSidebarCollapse( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSidebarCollapse); +}; +const ForwardRef = forwardRef(SvgSidebarCollapse); export default ForwardRef; diff --git a/packages/iconoir-react/src/SidebarExpand.tsx b/packages/iconoir-react/src/SidebarExpand.tsx index 041e6c97..27e11db6 100644 --- a/packages/iconoir-react/src/SidebarExpand.tsx +++ b/packages/iconoir-react/src/SidebarExpand.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSidebarExpand( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSidebarExpand = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSidebarExpand( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSidebarExpand); +}; +const ForwardRef = forwardRef(SvgSidebarExpand); export default ForwardRef; diff --git a/packages/iconoir-react/src/SigmaFunction.tsx b/packages/iconoir-react/src/SigmaFunction.tsx index 47ce4127..33539bd0 100644 --- a/packages/iconoir-react/src/SigmaFunction.tsx +++ b/packages/iconoir-react/src/SigmaFunction.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSigmaFunction( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSigmaFunction = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSigmaFunction( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSigmaFunction); +}; +const ForwardRef = forwardRef(SvgSigmaFunction); export default ForwardRef; diff --git a/packages/iconoir-react/src/SimpleCart.tsx b/packages/iconoir-react/src/SimpleCart.tsx index 429f08b7..bf96b27e 100644 --- a/packages/iconoir-react/src/SimpleCart.tsx +++ b/packages/iconoir-react/src/SimpleCart.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSimpleCart( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSimpleCart = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSimpleCart( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSimpleCart); +}; +const ForwardRef = forwardRef(SvgSimpleCart); export default ForwardRef; diff --git a/packages/iconoir-react/src/SineWave.tsx b/packages/iconoir-react/src/SineWave.tsx index 1cc41ed1..e97fdb1c 100644 --- a/packages/iconoir-react/src/SineWave.tsx +++ b/packages/iconoir-react/src/SineWave.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSineWave( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSineWave = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSineWave( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSineWave); +}; +const ForwardRef = forwardRef(SvgSineWave); export default ForwardRef; diff --git a/packages/iconoir-react/src/SingleTapGesture.tsx b/packages/iconoir-react/src/SingleTapGesture.tsx index dd83c6dc..8731e4a3 100644 --- a/packages/iconoir-react/src/SingleTapGesture.tsx +++ b/packages/iconoir-react/src/SingleTapGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSingleTapGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSingleTapGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSingleTapGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSingleTapGesture); +}; +const ForwardRef = forwardRef(SvgSingleTapGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/Skateboard.tsx b/packages/iconoir-react/src/Skateboard.tsx index 5e257cd3..b5f7019e 100644 --- a/packages/iconoir-react/src/Skateboard.tsx +++ b/packages/iconoir-react/src/Skateboard.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSkateboard( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSkateboard = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSkateboard( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSkateboard); +}; +const ForwardRef = forwardRef(SvgSkateboard); export default ForwardRef; diff --git a/packages/iconoir-react/src/Skateboarding.tsx b/packages/iconoir-react/src/Skateboarding.tsx index 4a31718e..71ff6899 100644 --- a/packages/iconoir-react/src/Skateboarding.tsx +++ b/packages/iconoir-react/src/Skateboarding.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSkateboarding( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSkateboarding = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSkateboarding( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSkateboarding); +}; +const ForwardRef = forwardRef(SvgSkateboarding); export default ForwardRef; diff --git a/packages/iconoir-react/src/SkipNext.tsx b/packages/iconoir-react/src/SkipNext.tsx index b5e1ef97..f43f6ace 100644 --- a/packages/iconoir-react/src/SkipNext.tsx +++ b/packages/iconoir-react/src/SkipNext.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSkipNext( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSkipNext = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSkipNext( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSkipNext); +}; +const ForwardRef = forwardRef(SvgSkipNext); export default ForwardRef; diff --git a/packages/iconoir-react/src/SkipPrev.tsx b/packages/iconoir-react/src/SkipPrev.tsx index 4b023e09..1cc7c425 100644 --- a/packages/iconoir-react/src/SkipPrev.tsx +++ b/packages/iconoir-react/src/SkipPrev.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSkipPrev( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSkipPrev = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSkipPrev( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSkipPrev); +}; +const ForwardRef = forwardRef(SvgSkipPrev); export default ForwardRef; diff --git a/packages/iconoir-react/src/Slash.tsx b/packages/iconoir-react/src/Slash.tsx index e9237ea0..bbf9ec86 100644 --- a/packages/iconoir-react/src/Slash.tsx +++ b/packages/iconoir-react/src/Slash.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSlash( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSlash = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSlash( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSlash); +}; +const ForwardRef = forwardRef(SvgSlash); export default ForwardRef; diff --git a/packages/iconoir-react/src/SleeperChair.tsx b/packages/iconoir-react/src/SleeperChair.tsx index f71a9a55..9b26d3a0 100644 --- a/packages/iconoir-react/src/SleeperChair.tsx +++ b/packages/iconoir-react/src/SleeperChair.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSleeperChair( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSleeperChair = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSleeperChair( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSleeperChair); +}; +const ForwardRef = forwardRef(SvgSleeperChair); export default ForwardRef; diff --git a/packages/iconoir-react/src/SmallLamp.tsx b/packages/iconoir-react/src/SmallLamp.tsx index ff599bae..7d911a8f 100644 --- a/packages/iconoir-react/src/SmallLamp.tsx +++ b/packages/iconoir-react/src/SmallLamp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmallLamp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSmallLamp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSmallLamp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSmallLamp); +}; +const ForwardRef = forwardRef(SvgSmallLamp); export default ForwardRef; diff --git a/packages/iconoir-react/src/SmallLampAlt.tsx b/packages/iconoir-react/src/SmallLampAlt.tsx index e8a91b25..e3824ee2 100644 --- a/packages/iconoir-react/src/SmallLampAlt.tsx +++ b/packages/iconoir-react/src/SmallLampAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmallLampAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSmallLampAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSmallLampAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSmallLampAlt); +}; +const ForwardRef = forwardRef(SvgSmallLampAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/SmallShop.tsx b/packages/iconoir-react/src/SmallShop.tsx index 2ef1584c..7722f330 100644 --- a/packages/iconoir-react/src/SmallShop.tsx +++ b/packages/iconoir-react/src/SmallShop.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmallShop( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSmallShop = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,34 @@ function SvgSmallShop( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgSmallShop); +}; +const ForwardRef = forwardRef(SvgSmallShop); export default ForwardRef; diff --git a/packages/iconoir-react/src/SmallShopAlt.tsx b/packages/iconoir-react/src/SmallShopAlt.tsx index f469faec..55a2db67 100644 --- a/packages/iconoir-react/src/SmallShopAlt.tsx +++ b/packages/iconoir-react/src/SmallShopAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmallShopAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSmallShopAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,39 @@ function SvgSmallShopAlt( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgSmallShopAlt); +}; +const ForwardRef = forwardRef(SvgSmallShopAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/SmartphoneDevice.tsx b/packages/iconoir-react/src/SmartphoneDevice.tsx index 890b8f0e..b165df68 100644 --- a/packages/iconoir-react/src/SmartphoneDevice.tsx +++ b/packages/iconoir-react/src/SmartphoneDevice.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmartphoneDevice( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSmartphoneDevice = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgSmartphoneDevice( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSmartphoneDevice); +}; +const ForwardRef = forwardRef(SvgSmartphoneDevice); export default ForwardRef; diff --git a/packages/iconoir-react/src/Smoking.tsx b/packages/iconoir-react/src/Smoking.tsx index c160e312..7969faa6 100644 --- a/packages/iconoir-react/src/Smoking.tsx +++ b/packages/iconoir-react/src/Smoking.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSmoking( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSmoking = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgSmoking( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgSmoking); +}; +const ForwardRef = forwardRef(SvgSmoking); export default ForwardRef; diff --git a/packages/iconoir-react/src/Snapchat.tsx b/packages/iconoir-react/src/Snapchat.tsx index 412e1509..001491a6 100644 --- a/packages/iconoir-react/src/Snapchat.tsx +++ b/packages/iconoir-react/src/Snapchat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSnapchat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSnapchat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,25 +13,25 @@ function SvgSnapchat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSnapchat); +}; +const ForwardRef = forwardRef(SvgSnapchat); export default ForwardRef; diff --git a/packages/iconoir-react/src/Snow.tsx b/packages/iconoir-react/src/Snow.tsx index d324f7fc..f4eb4182 100644 --- a/packages/iconoir-react/src/Snow.tsx +++ b/packages/iconoir-react/src/Snow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSnow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSnow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSnow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSnow); +}; +const ForwardRef = forwardRef(SvgSnow); export default ForwardRef; diff --git a/packages/iconoir-react/src/SnowFlake.tsx b/packages/iconoir-react/src/SnowFlake.tsx index caad533b..be4f9533 100644 --- a/packages/iconoir-react/src/SnowFlake.tsx +++ b/packages/iconoir-react/src/SnowFlake.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSnowFlake( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSnowFlake = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSnowFlake( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSnowFlake); +}; +const ForwardRef = forwardRef(SvgSnowFlake); export default ForwardRef; diff --git a/packages/iconoir-react/src/Soap.tsx b/packages/iconoir-react/src/Soap.tsx index 585ee742..b00e3cf3 100644 --- a/packages/iconoir-react/src/Soap.tsx +++ b/packages/iconoir-react/src/Soap.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoap( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSoap = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgSoap( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSoap); +}; +const ForwardRef = forwardRef(SvgSoap); export default ForwardRef; diff --git a/packages/iconoir-react/src/SoccerBall.tsx b/packages/iconoir-react/src/SoccerBall.tsx index 1a8f5cee..61e02303 100644 --- a/packages/iconoir-react/src/SoccerBall.tsx +++ b/packages/iconoir-react/src/SoccerBall.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoccerBall( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSoccerBall = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSoccerBall( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSoccerBall); +}; +const ForwardRef = forwardRef(SvgSoccerBall); export default ForwardRef; diff --git a/packages/iconoir-react/src/Sofa.tsx b/packages/iconoir-react/src/Sofa.tsx index 4fb4cbf0..cac557bb 100644 --- a/packages/iconoir-react/src/Sofa.tsx +++ b/packages/iconoir-react/src/Sofa.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSofa( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSofa = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSofa( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSofa); +}; +const ForwardRef = forwardRef(SvgSofa); export default ForwardRef; diff --git a/packages/iconoir-react/src/Soil.tsx b/packages/iconoir-react/src/Soil.tsx index c295e01f..7b98d0d9 100644 --- a/packages/iconoir-react/src/Soil.tsx +++ b/packages/iconoir-react/src/Soil.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoil( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSoil = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSoil( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSoil); +}; +const ForwardRef = forwardRef(SvgSoil); export default ForwardRef; diff --git a/packages/iconoir-react/src/SoilAlt.tsx b/packages/iconoir-react/src/SoilAlt.tsx index 78043047..b3a866c2 100644 --- a/packages/iconoir-react/src/SoilAlt.tsx +++ b/packages/iconoir-react/src/SoilAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoilAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSoilAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSoilAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSoilAlt); +}; +const ForwardRef = forwardRef(SvgSoilAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Sort.tsx b/packages/iconoir-react/src/Sort.tsx index 3bf8655a..64280776 100644 --- a/packages/iconoir-react/src/Sort.tsx +++ b/packages/iconoir-react/src/Sort.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSort( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSort = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSort( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSort); +}; +const ForwardRef = forwardRef(SvgSort); export default ForwardRef; diff --git a/packages/iconoir-react/src/SortDown.tsx b/packages/iconoir-react/src/SortDown.tsx index 01ce1fe3..29bfd674 100644 --- a/packages/iconoir-react/src/SortDown.tsx +++ b/packages/iconoir-react/src/SortDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSortDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSortDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSortDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSortDown); +}; +const ForwardRef = forwardRef(SvgSortDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/SortUp.tsx b/packages/iconoir-react/src/SortUp.tsx index 95f71099..c9062701 100644 --- a/packages/iconoir-react/src/SortUp.tsx +++ b/packages/iconoir-react/src/SortUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSortUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSortUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSortUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSortUp); +}; +const ForwardRef = forwardRef(SvgSortUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/SoundHigh.tsx b/packages/iconoir-react/src/SoundHigh.tsx index 13420c52..eff1a2eb 100644 --- a/packages/iconoir-react/src/SoundHigh.tsx +++ b/packages/iconoir-react/src/SoundHigh.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoundHigh( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSoundHigh = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgSoundHigh( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSoundHigh); +}; +const ForwardRef = forwardRef(SvgSoundHigh); export default ForwardRef; diff --git a/packages/iconoir-react/src/SoundLow.tsx b/packages/iconoir-react/src/SoundLow.tsx index babbae54..b2a80a38 100644 --- a/packages/iconoir-react/src/SoundLow.tsx +++ b/packages/iconoir-react/src/SoundLow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoundLow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSoundLow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgSoundLow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSoundLow); +}; +const ForwardRef = forwardRef(SvgSoundLow); export default ForwardRef; diff --git a/packages/iconoir-react/src/SoundMin.tsx b/packages/iconoir-react/src/SoundMin.tsx index 83ccb0bd..2e876233 100644 --- a/packages/iconoir-react/src/SoundMin.tsx +++ b/packages/iconoir-react/src/SoundMin.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoundMin( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSoundMin = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgSoundMin( }; return ( - + ); -} -const ForwardRef = React.forwardRef(SvgSoundMin); +}; +const ForwardRef = forwardRef(SvgSoundMin); export default ForwardRef; diff --git a/packages/iconoir-react/src/SoundOff.tsx b/packages/iconoir-react/src/SoundOff.tsx index f6e3c166..9eb38b51 100644 --- a/packages/iconoir-react/src/SoundOff.tsx +++ b/packages/iconoir-react/src/SoundOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSoundOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSoundOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgSoundOff( }; return ( - + - + - + ); -} -const ForwardRef = React.forwardRef(SvgSoundOff); +}; +const ForwardRef = forwardRef(SvgSoundOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/Spades.tsx b/packages/iconoir-react/src/Spades.tsx index 81b9f453..4b4199b7 100644 --- a/packages/iconoir-react/src/Spades.tsx +++ b/packages/iconoir-react/src/Spades.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSpades( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSpades = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgSpades( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSpades); +}; +const ForwardRef = forwardRef(SvgSpades); export default ForwardRef; diff --git a/packages/iconoir-react/src/Spark.tsx b/packages/iconoir-react/src/Spark.tsx index 279b9287..8699ee4a 100644 --- a/packages/iconoir-react/src/Spark.tsx +++ b/packages/iconoir-react/src/Spark.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSpark( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSpark = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgSpark( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSpark); +}; +const ForwardRef = forwardRef(SvgSpark); export default ForwardRef; diff --git a/packages/iconoir-react/src/Sparks.tsx b/packages/iconoir-react/src/Sparks.tsx index 9b00a2b1..b8503d94 100644 --- a/packages/iconoir-react/src/Sparks.tsx +++ b/packages/iconoir-react/src/Sparks.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSparks( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSparks = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,23 +13,23 @@ function SvgSparks( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSparks); +}; +const ForwardRef = forwardRef(SvgSparks); export default ForwardRef; diff --git a/packages/iconoir-react/src/Sphere.tsx b/packages/iconoir-react/src/Sphere.tsx index 498e4077..a84908f3 100644 --- a/packages/iconoir-react/src/Sphere.tsx +++ b/packages/iconoir-react/src/Sphere.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSphere( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSphere = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSphere( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSphere); +}; +const ForwardRef = forwardRef(SvgSphere); export default ForwardRef; diff --git a/packages/iconoir-react/src/Spiral.tsx b/packages/iconoir-react/src/Spiral.tsx index 668a963c..6666fe34 100644 --- a/packages/iconoir-react/src/Spiral.tsx +++ b/packages/iconoir-react/src/Spiral.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSpiral( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSpiral = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSpiral( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSpiral); +}; +const ForwardRef = forwardRef(SvgSpiral); export default ForwardRef; diff --git a/packages/iconoir-react/src/SpockHandGesture.tsx b/packages/iconoir-react/src/SpockHandGesture.tsx index 21bf7949..24c50564 100644 --- a/packages/iconoir-react/src/SpockHandGesture.tsx +++ b/packages/iconoir-react/src/SpockHandGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSpockHandGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSpockHandGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSpockHandGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSpockHandGesture); +}; +const ForwardRef = forwardRef(SvgSpockHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/Spotify.tsx b/packages/iconoir-react/src/Spotify.tsx index 2c72ceda..9e95337a 100644 --- a/packages/iconoir-react/src/Spotify.tsx +++ b/packages/iconoir-react/src/Spotify.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSpotify( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSpotify = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSpotify( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSpotify); +}; +const ForwardRef = forwardRef(SvgSpotify); export default ForwardRef; diff --git a/packages/iconoir-react/src/Square.tsx b/packages/iconoir-react/src/Square.tsx index 96e0399f..882f619f 100644 --- a/packages/iconoir-react/src/Square.tsx +++ b/packages/iconoir-react/src/Square.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSquare); +}; +const ForwardRef = forwardRef(SvgSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/SquareCursor.tsx b/packages/iconoir-react/src/SquareCursor.tsx index 8cf19f69..bcb039f5 100644 --- a/packages/iconoir-react/src/SquareCursor.tsx +++ b/packages/iconoir-react/src/SquareCursor.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSquareCursor( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSquareCursor = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,27 +13,27 @@ function SvgSquareCursor( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSquareCursor); +}; +const ForwardRef = forwardRef(SvgSquareCursor); export default ForwardRef; diff --git a/packages/iconoir-react/src/SquareWave.tsx b/packages/iconoir-react/src/SquareWave.tsx index 0f12b845..ed8c8427 100644 --- a/packages/iconoir-react/src/SquareWave.tsx +++ b/packages/iconoir-react/src/SquareWave.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSquareWave( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSquareWave = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSquareWave( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSquareWave); +}; +const ForwardRef = forwardRef(SvgSquareWave); export default ForwardRef; diff --git a/packages/iconoir-react/src/Stackoverflow.tsx b/packages/iconoir-react/src/Stackoverflow.tsx index 26657390..f6a33d68 100644 --- a/packages/iconoir-react/src/Stackoverflow.tsx +++ b/packages/iconoir-react/src/Stackoverflow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStackoverflow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStackoverflow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgStackoverflow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStackoverflow); +}; +const ForwardRef = forwardRef(SvgStackoverflow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Star.tsx b/packages/iconoir-react/src/Star.tsx index 36c7f385..350d7146 100644 --- a/packages/iconoir-react/src/Star.tsx +++ b/packages/iconoir-react/src/Star.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgStar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStar); +}; +const ForwardRef = forwardRef(SvgStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/StarDashed.tsx b/packages/iconoir-react/src/StarDashed.tsx index efa94b7f..326de51d 100644 --- a/packages/iconoir-react/src/StarDashed.tsx +++ b/packages/iconoir-react/src/StarDashed.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStarDashed( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStarDashed = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgStarDashed( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStarDashed); +}; +const ForwardRef = forwardRef(SvgStarDashed); export default ForwardRef; diff --git a/packages/iconoir-react/src/StarHalfDashed.tsx b/packages/iconoir-react/src/StarHalfDashed.tsx index 257564c0..9da141ae 100644 --- a/packages/iconoir-react/src/StarHalfDashed.tsx +++ b/packages/iconoir-react/src/StarHalfDashed.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStarHalfDashed( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStarHalfDashed = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgStarHalfDashed( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStarHalfDashed); +}; +const ForwardRef = forwardRef(SvgStarHalfDashed); export default ForwardRef; diff --git a/packages/iconoir-react/src/StatDown.tsx b/packages/iconoir-react/src/StatDown.tsx index 4083271a..e74ea3b5 100644 --- a/packages/iconoir-react/src/StatDown.tsx +++ b/packages/iconoir-react/src/StatDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStatDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStatDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgStatDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStatDown); +}; +const ForwardRef = forwardRef(SvgStatDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/StatUp.tsx b/packages/iconoir-react/src/StatUp.tsx index 072494e9..57e9dd6d 100644 --- a/packages/iconoir-react/src/StatUp.tsx +++ b/packages/iconoir-react/src/StatUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStatUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStatUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgStatUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStatUp); +}; +const ForwardRef = forwardRef(SvgStatUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/StatsDownSquare.tsx b/packages/iconoir-react/src/StatsDownSquare.tsx index 12469de3..71195dff 100644 --- a/packages/iconoir-react/src/StatsDownSquare.tsx +++ b/packages/iconoir-react/src/StatsDownSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStatsDownSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStatsDownSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgStatsDownSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStatsDownSquare); +}; +const ForwardRef = forwardRef(SvgStatsDownSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/StatsReport.tsx b/packages/iconoir-react/src/StatsReport.tsx index 63991ed0..d257bd36 100644 --- a/packages/iconoir-react/src/StatsReport.tsx +++ b/packages/iconoir-react/src/StatsReport.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStatsReport( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStatsReport = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgStatsReport( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStatsReport); +}; +const ForwardRef = forwardRef(SvgStatsReport); export default ForwardRef; diff --git a/packages/iconoir-react/src/StatsUpSquare.tsx b/packages/iconoir-react/src/StatsUpSquare.tsx index 18aac476..2d2da441 100644 --- a/packages/iconoir-react/src/StatsUpSquare.tsx +++ b/packages/iconoir-react/src/StatsUpSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStatsUpSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStatsUpSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgStatsUpSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStatsUpSquare); +}; +const ForwardRef = forwardRef(SvgStatsUpSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Strategy.tsx b/packages/iconoir-react/src/Strategy.tsx index 01438028..2c9209c9 100644 --- a/packages/iconoir-react/src/Strategy.tsx +++ b/packages/iconoir-react/src/Strategy.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStrategy( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStrategy = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgStrategy( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgStrategy); +}; +const ForwardRef = forwardRef(SvgStrategy); export default ForwardRef; diff --git a/packages/iconoir-react/src/Stretching.tsx b/packages/iconoir-react/src/Stretching.tsx index c51007c4..a563c4b9 100644 --- a/packages/iconoir-react/src/Stretching.tsx +++ b/packages/iconoir-react/src/Stretching.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStretching( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStretching = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgStretching( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStretching); +}; +const ForwardRef = forwardRef(SvgStretching); export default ForwardRef; diff --git a/packages/iconoir-react/src/Strikethrough.tsx b/packages/iconoir-react/src/Strikethrough.tsx index 1a781447..9ec3ea6c 100644 --- a/packages/iconoir-react/src/Strikethrough.tsx +++ b/packages/iconoir-react/src/Strikethrough.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStrikethrough( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStrikethrough = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgStrikethrough( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStrikethrough); +}; +const ForwardRef = forwardRef(SvgStrikethrough); export default ForwardRef; diff --git a/packages/iconoir-react/src/Stroller.tsx b/packages/iconoir-react/src/Stroller.tsx index 122d0c15..1ea840ce 100644 --- a/packages/iconoir-react/src/Stroller.tsx +++ b/packages/iconoir-react/src/Stroller.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStroller( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStroller = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgStroller( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgStroller); +}; +const ForwardRef = forwardRef(SvgStroller); export default ForwardRef; diff --git a/packages/iconoir-react/src/StyleBorder.tsx b/packages/iconoir-react/src/StyleBorder.tsx index 631ae211..5d4bb862 100644 --- a/packages/iconoir-react/src/StyleBorder.tsx +++ b/packages/iconoir-react/src/StyleBorder.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgStyleBorder( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgStyleBorder = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,33 +13,33 @@ function SvgStyleBorder( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgStyleBorder); +}; +const ForwardRef = forwardRef(SvgStyleBorder); export default ForwardRef; diff --git a/packages/iconoir-react/src/SubmitDocument.tsx b/packages/iconoir-react/src/SubmitDocument.tsx index a19f2a20..057f9313 100644 --- a/packages/iconoir-react/src/SubmitDocument.tsx +++ b/packages/iconoir-react/src/SubmitDocument.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSubmitDocument( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSubmitDocument = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSubmitDocument( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSubmitDocument); +}; +const ForwardRef = forwardRef(SvgSubmitDocument); export default ForwardRef; diff --git a/packages/iconoir-react/src/Substract.tsx b/packages/iconoir-react/src/Substract.tsx index 69da4576..58a7919a 100644 --- a/packages/iconoir-react/src/Substract.tsx +++ b/packages/iconoir-react/src/Substract.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSubstract( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSubstract = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgSubstract( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSubstract); +}; +const ForwardRef = forwardRef(SvgSubstract); export default ForwardRef; diff --git a/packages/iconoir-react/src/Suggestion.tsx b/packages/iconoir-react/src/Suggestion.tsx index d3d23da4..7a042a18 100644 --- a/packages/iconoir-react/src/Suggestion.tsx +++ b/packages/iconoir-react/src/Suggestion.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSuggestion( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSuggestion = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgSuggestion( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSuggestion); +}; +const ForwardRef = forwardRef(SvgSuggestion); export default ForwardRef; diff --git a/packages/iconoir-react/src/SunLight.tsx b/packages/iconoir-react/src/SunLight.tsx index 92d6b7d1..414a5610 100644 --- a/packages/iconoir-react/src/SunLight.tsx +++ b/packages/iconoir-react/src/SunLight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSunLight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSunLight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSunLight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSunLight); +}; +const ForwardRef = forwardRef(SvgSunLight); export default ForwardRef; diff --git a/packages/iconoir-react/src/SvgFormat.tsx b/packages/iconoir-react/src/SvgFormat.tsx index 1e39d2ef..f3517adb 100644 --- a/packages/iconoir-react/src/SvgFormat.tsx +++ b/packages/iconoir-react/src/SvgFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSvgFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSvgFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgSvgFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSvgFormat); +}; +const ForwardRef = forwardRef(SvgSvgFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/Sweep3D.tsx b/packages/iconoir-react/src/Sweep3D.tsx index 27d70ed1..6e6f3f72 100644 --- a/packages/iconoir-react/src/Sweep3D.tsx +++ b/packages/iconoir-react/src/Sweep3D.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSweep3D( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSweep3D = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSweep3D( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSweep3D); +}; +const ForwardRef = forwardRef(SvgSweep3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/Swimming.tsx b/packages/iconoir-react/src/Swimming.tsx index 5cc81a27..ad75b024 100644 --- a/packages/iconoir-react/src/Swimming.tsx +++ b/packages/iconoir-react/src/Swimming.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwimming( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwimming = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSwimming( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSwimming); +}; +const ForwardRef = forwardRef(SvgSwimming); export default ForwardRef; diff --git a/packages/iconoir-react/src/SwipeDownGesture.tsx b/packages/iconoir-react/src/SwipeDownGesture.tsx index a9d7056c..b51e363b 100644 --- a/packages/iconoir-react/src/SwipeDownGesture.tsx +++ b/packages/iconoir-react/src/SwipeDownGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeDownGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwipeDownGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSwipeDownGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSwipeDownGesture); +}; +const ForwardRef = forwardRef(SvgSwipeDownGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/SwipeLeftGesture.tsx b/packages/iconoir-react/src/SwipeLeftGesture.tsx index 1fd2a176..8f18692f 100644 --- a/packages/iconoir-react/src/SwipeLeftGesture.tsx +++ b/packages/iconoir-react/src/SwipeLeftGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeLeftGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwipeLeftGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSwipeLeftGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSwipeLeftGesture); +}; +const ForwardRef = forwardRef(SvgSwipeLeftGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/SwipeRightGesture.tsx b/packages/iconoir-react/src/SwipeRightGesture.tsx index f69e4545..1de76105 100644 --- a/packages/iconoir-react/src/SwipeRightGesture.tsx +++ b/packages/iconoir-react/src/SwipeRightGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeRightGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwipeRightGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSwipeRightGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSwipeRightGesture); +}; +const ForwardRef = forwardRef(SvgSwipeRightGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/SwipeTwoFingersDownGesture.tsx b/packages/iconoir-react/src/SwipeTwoFingersDownGesture.tsx index a4d8ee38..4a3a539c 100644 --- a/packages/iconoir-react/src/SwipeTwoFingersDownGesture.tsx +++ b/packages/iconoir-react/src/SwipeTwoFingersDownGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeTwoFingersDownGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwipeTwoFingersDownGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSwipeTwoFingersDownGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersDownGesture); +}; +const ForwardRef = forwardRef(SvgSwipeTwoFingersDownGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/SwipeTwoFingersLeftGesture.tsx b/packages/iconoir-react/src/SwipeTwoFingersLeftGesture.tsx index 6ffa1b66..10da3180 100644 --- a/packages/iconoir-react/src/SwipeTwoFingersLeftGesture.tsx +++ b/packages/iconoir-react/src/SwipeTwoFingersLeftGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeTwoFingersLeftGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwipeTwoFingersLeftGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSwipeTwoFingersLeftGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersLeftGesture); +}; +const ForwardRef = forwardRef(SvgSwipeTwoFingersLeftGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/SwipeTwoFingersRightGesture.tsx b/packages/iconoir-react/src/SwipeTwoFingersRightGesture.tsx index b3a126e0..8e28f63f 100644 --- a/packages/iconoir-react/src/SwipeTwoFingersRightGesture.tsx +++ b/packages/iconoir-react/src/SwipeTwoFingersRightGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeTwoFingersRightGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwipeTwoFingersRightGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSwipeTwoFingersRightGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersRightGesture); +}; +const ForwardRef = forwardRef(SvgSwipeTwoFingersRightGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/SwipeTwoFingersUpGesture.tsx b/packages/iconoir-react/src/SwipeTwoFingersUpGesture.tsx index 4a133381..26645c34 100644 --- a/packages/iconoir-react/src/SwipeTwoFingersUpGesture.tsx +++ b/packages/iconoir-react/src/SwipeTwoFingersUpGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeTwoFingersUpGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwipeTwoFingersUpGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSwipeTwoFingersUpGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersUpGesture); +}; +const ForwardRef = forwardRef(SvgSwipeTwoFingersUpGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/SwipeUpGesture.tsx b/packages/iconoir-react/src/SwipeUpGesture.tsx index 5189f732..424a3a94 100644 --- a/packages/iconoir-react/src/SwipeUpGesture.tsx +++ b/packages/iconoir-react/src/SwipeUpGesture.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwipeUpGesture( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwipeUpGesture = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSwipeUpGesture( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSwipeUpGesture); +}; +const ForwardRef = forwardRef(SvgSwipeUpGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/SwitchOff.tsx b/packages/iconoir-react/src/SwitchOff.tsx index 5e2fb024..dc30eb02 100644 --- a/packages/iconoir-react/src/SwitchOff.tsx +++ b/packages/iconoir-react/src/SwitchOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwitchOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwitchOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,29 @@ function SvgSwitchOff( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgSwitchOff); +}; +const ForwardRef = forwardRef(SvgSwitchOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/SwitchOn.tsx b/packages/iconoir-react/src/SwitchOn.tsx index 077bad0b..f4f1f53f 100644 --- a/packages/iconoir-react/src/SwitchOn.tsx +++ b/packages/iconoir-react/src/SwitchOn.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSwitchOn( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSwitchOn = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,26 +13,29 @@ function SvgSwitchOn( }; return ( + - ); -} -const ForwardRef = React.forwardRef(SvgSwitchOn); +}; +const ForwardRef = forwardRef(SvgSwitchOn); export default ForwardRef; diff --git a/packages/iconoir-react/src/SystemRestart.tsx b/packages/iconoir-react/src/SystemRestart.tsx index f31207ae..581b3219 100644 --- a/packages/iconoir-react/src/SystemRestart.tsx +++ b/packages/iconoir-react/src/SystemRestart.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSystemRestart( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSystemRestart = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSystemRestart( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSystemRestart); +}; +const ForwardRef = forwardRef(SvgSystemRestart); export default ForwardRef; diff --git a/packages/iconoir-react/src/SystemShut.tsx b/packages/iconoir-react/src/SystemShut.tsx index 995a0f4a..45926fee 100644 --- a/packages/iconoir-react/src/SystemShut.tsx +++ b/packages/iconoir-react/src/SystemShut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgSystemShut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgSystemShut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgSystemShut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgSystemShut); +}; +const ForwardRef = forwardRef(SvgSystemShut); export default ForwardRef; diff --git a/packages/iconoir-react/src/TShirt.tsx b/packages/iconoir-react/src/TShirt.tsx index 0481c262..f36f7711 100644 --- a/packages/iconoir-react/src/TShirt.tsx +++ b/packages/iconoir-react/src/TShirt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTShirt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTShirt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTShirt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTShirt); +}; +const ForwardRef = forwardRef(SvgTShirt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Table.tsx b/packages/iconoir-react/src/Table.tsx index fc1a8b62..b217d1ab 100644 --- a/packages/iconoir-react/src/Table.tsx +++ b/packages/iconoir-react/src/Table.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTable( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTable = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTable( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTable); +}; +const ForwardRef = forwardRef(SvgTable); export default ForwardRef; diff --git a/packages/iconoir-react/src/Table2Columns.tsx b/packages/iconoir-react/src/Table2Columns.tsx index 482ddefa..946957dc 100644 --- a/packages/iconoir-react/src/Table2Columns.tsx +++ b/packages/iconoir-react/src/Table2Columns.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTable2Columns( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTable2Columns = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgTable2Columns( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTable2Columns); +}; +const ForwardRef = forwardRef(SvgTable2Columns); export default ForwardRef; diff --git a/packages/iconoir-react/src/TableRows.tsx b/packages/iconoir-react/src/TableRows.tsx index 62ad1731..7dfcf80e 100644 --- a/packages/iconoir-react/src/TableRows.tsx +++ b/packages/iconoir-react/src/TableRows.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTableRows( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTableRows = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgTableRows( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTableRows); +}; +const ForwardRef = forwardRef(SvgTableRows); export default ForwardRef; diff --git a/packages/iconoir-react/src/TaskList.tsx b/packages/iconoir-react/src/TaskList.tsx index 2e9b7669..0d66a41b 100644 --- a/packages/iconoir-react/src/TaskList.tsx +++ b/packages/iconoir-react/src/TaskList.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTaskList( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTaskList = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTaskList( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTaskList); +}; +const ForwardRef = forwardRef(SvgTaskList); export default ForwardRef; diff --git a/packages/iconoir-react/src/Telegram.tsx b/packages/iconoir-react/src/Telegram.tsx index c328a3d1..f8dfecc4 100644 --- a/packages/iconoir-react/src/Telegram.tsx +++ b/packages/iconoir-react/src/Telegram.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTelegram( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTelegram = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTelegram( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTelegram); +}; +const ForwardRef = forwardRef(SvgTelegram); export default ForwardRef; diff --git a/packages/iconoir-react/src/TelegramCircle.tsx b/packages/iconoir-react/src/TelegramCircle.tsx index f2ec6c69..5c995578 100644 --- a/packages/iconoir-react/src/TelegramCircle.tsx +++ b/packages/iconoir-react/src/TelegramCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTelegramCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTelegramCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTelegramCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTelegramCircle); +}; +const ForwardRef = forwardRef(SvgTelegramCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/TemperatureDown.tsx b/packages/iconoir-react/src/TemperatureDown.tsx index d8c8147f..7533c707 100644 --- a/packages/iconoir-react/src/TemperatureDown.tsx +++ b/packages/iconoir-react/src/TemperatureDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTemperatureDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTemperatureDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTemperatureDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTemperatureDown); +}; +const ForwardRef = forwardRef(SvgTemperatureDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/TemperatureHigh.tsx b/packages/iconoir-react/src/TemperatureHigh.tsx index bb87a2bc..18bdc9c1 100644 --- a/packages/iconoir-react/src/TemperatureHigh.tsx +++ b/packages/iconoir-react/src/TemperatureHigh.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTemperatureHigh( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTemperatureHigh = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTemperatureHigh( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTemperatureHigh); +}; +const ForwardRef = forwardRef(SvgTemperatureHigh); export default ForwardRef; diff --git a/packages/iconoir-react/src/TemperatureLow.tsx b/packages/iconoir-react/src/TemperatureLow.tsx index 8342a5df..f98e1ffd 100644 --- a/packages/iconoir-react/src/TemperatureLow.tsx +++ b/packages/iconoir-react/src/TemperatureLow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTemperatureLow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTemperatureLow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTemperatureLow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTemperatureLow); +}; +const ForwardRef = forwardRef(SvgTemperatureLow); export default ForwardRef; diff --git a/packages/iconoir-react/src/TemperatureUp.tsx b/packages/iconoir-react/src/TemperatureUp.tsx index e8443ca8..43d3fc1a 100644 --- a/packages/iconoir-react/src/TemperatureUp.tsx +++ b/packages/iconoir-react/src/TemperatureUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTemperatureUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTemperatureUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTemperatureUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTemperatureUp); +}; +const ForwardRef = forwardRef(SvgTemperatureUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/TennisBall.tsx b/packages/iconoir-react/src/TennisBall.tsx index b76b5c5e..6af952c9 100644 --- a/packages/iconoir-react/src/TennisBall.tsx +++ b/packages/iconoir-react/src/TennisBall.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTennisBall( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTennisBall = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgTennisBall( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgTennisBall); +}; +const ForwardRef = forwardRef(SvgTennisBall); export default ForwardRef; diff --git a/packages/iconoir-react/src/TennisBallAlt.tsx b/packages/iconoir-react/src/TennisBallAlt.tsx index 5b0494af..d7a8e7b1 100644 --- a/packages/iconoir-react/src/TennisBallAlt.tsx +++ b/packages/iconoir-react/src/TennisBallAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTennisBallAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTennisBallAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgTennisBallAlt( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgTennisBallAlt); +}; +const ForwardRef = forwardRef(SvgTennisBallAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Terminal.tsx b/packages/iconoir-react/src/Terminal.tsx index cf945c2e..61a77485 100644 --- a/packages/iconoir-react/src/Terminal.tsx +++ b/packages/iconoir-react/src/Terminal.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTerminal( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTerminal = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTerminal( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTerminal); +}; +const ForwardRef = forwardRef(SvgTerminal); export default ForwardRef; diff --git a/packages/iconoir-react/src/TerminalTag.tsx b/packages/iconoir-react/src/TerminalTag.tsx index 3dddfe23..4f6ea3cb 100644 --- a/packages/iconoir-react/src/TerminalTag.tsx +++ b/packages/iconoir-react/src/TerminalTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTerminalTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTerminalTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTerminalTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTerminalTag); +}; +const ForwardRef = forwardRef(SvgTerminalTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/TestTube.tsx b/packages/iconoir-react/src/TestTube.tsx index b07810a0..4560829b 100644 --- a/packages/iconoir-react/src/TestTube.tsx +++ b/packages/iconoir-react/src/TestTube.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTestTube( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTestTube = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgTestTube( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgTestTube); +}; +const ForwardRef = forwardRef(SvgTestTube); export default ForwardRef; diff --git a/packages/iconoir-react/src/Text.tsx b/packages/iconoir-react/src/Text.tsx index 167e4588..05d0db2b 100644 --- a/packages/iconoir-react/src/Text.tsx +++ b/packages/iconoir-react/src/Text.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgText( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgText = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgText( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgText); +}; +const ForwardRef = forwardRef(SvgText); export default ForwardRef; diff --git a/packages/iconoir-react/src/TextAlt.tsx b/packages/iconoir-react/src/TextAlt.tsx index 88ab0ae8..146e27e6 100644 --- a/packages/iconoir-react/src/TextAlt.tsx +++ b/packages/iconoir-react/src/TextAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTextAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTextAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTextAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTextAlt); +}; +const ForwardRef = forwardRef(SvgTextAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/TextBox.tsx b/packages/iconoir-react/src/TextBox.tsx index c93eff63..eb1381e7 100644 --- a/packages/iconoir-react/src/TextBox.tsx +++ b/packages/iconoir-react/src/TextBox.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTextBox( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTextBox = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgTextBox( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTextBox); +}; +const ForwardRef = forwardRef(SvgTextBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/TextSize.tsx b/packages/iconoir-react/src/TextSize.tsx index 6f797c48..8fc545ba 100644 --- a/packages/iconoir-react/src/TextSize.tsx +++ b/packages/iconoir-react/src/TextSize.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTextSize( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTextSize = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTextSize( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTextSize); +}; +const ForwardRef = forwardRef(SvgTextSize); export default ForwardRef; diff --git a/packages/iconoir-react/src/Threads.tsx b/packages/iconoir-react/src/Threads.tsx index d57bfb37..9a0677e6 100644 --- a/packages/iconoir-react/src/Threads.tsx +++ b/packages/iconoir-react/src/Threads.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThreads( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgThreads = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgThreads( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgThreads); +}; +const ForwardRef = forwardRef(SvgThreads); export default ForwardRef; diff --git a/packages/iconoir-react/src/ThreePointsCircle.tsx b/packages/iconoir-react/src/ThreePointsCircle.tsx index 7bf436fa..021474b6 100644 --- a/packages/iconoir-react/src/ThreePointsCircle.tsx +++ b/packages/iconoir-react/src/ThreePointsCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThreePointsCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgThreePointsCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,50 +13,50 @@ function SvgThreePointsCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgThreePointsCircle); +}; +const ForwardRef = forwardRef(SvgThreePointsCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/ThreeStars.tsx b/packages/iconoir-react/src/ThreeStars.tsx index 7178cdee..871aacad 100644 --- a/packages/iconoir-react/src/ThreeStars.tsx +++ b/packages/iconoir-react/src/ThreeStars.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThreeStars( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgThreeStars = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgThreeStars( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgThreeStars); +}; +const ForwardRef = forwardRef(SvgThreeStars); export default ForwardRef; diff --git a/packages/iconoir-react/src/ThumbsDown.tsx b/packages/iconoir-react/src/ThumbsDown.tsx index f41845ce..67b928d5 100644 --- a/packages/iconoir-react/src/ThumbsDown.tsx +++ b/packages/iconoir-react/src/ThumbsDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThumbsDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgThumbsDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgThumbsDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgThumbsDown); +}; +const ForwardRef = forwardRef(SvgThumbsDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/ThumbsUp.tsx b/packages/iconoir-react/src/ThumbsUp.tsx index 5aa15dd8..b840b69c 100644 --- a/packages/iconoir-react/src/ThumbsUp.tsx +++ b/packages/iconoir-react/src/ThumbsUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThumbsUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgThumbsUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgThumbsUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgThumbsUp); +}; +const ForwardRef = forwardRef(SvgThumbsUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/Thunderstorm.tsx b/packages/iconoir-react/src/Thunderstorm.tsx index 578747a1..404096f6 100644 --- a/packages/iconoir-react/src/Thunderstorm.tsx +++ b/packages/iconoir-react/src/Thunderstorm.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgThunderstorm( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgThunderstorm = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgThunderstorm( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgThunderstorm); +}; +const ForwardRef = forwardRef(SvgThunderstorm); export default ForwardRef; diff --git a/packages/iconoir-react/src/TifFormat.tsx b/packages/iconoir-react/src/TifFormat.tsx index c91522fa..0b1b64b6 100644 --- a/packages/iconoir-react/src/TifFormat.tsx +++ b/packages/iconoir-react/src/TifFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTifFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTifFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgTifFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTifFormat); +}; +const ForwardRef = forwardRef(SvgTifFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/TiffFormat.tsx b/packages/iconoir-react/src/TiffFormat.tsx index 8359fdb9..4be2b0e8 100644 --- a/packages/iconoir-react/src/TiffFormat.tsx +++ b/packages/iconoir-react/src/TiffFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTiffFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTiffFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgTiffFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTiffFormat); +}; +const ForwardRef = forwardRef(SvgTiffFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/TikTok.tsx b/packages/iconoir-react/src/TikTok.tsx index 77243a19..7449fbe1 100644 --- a/packages/iconoir-react/src/TikTok.tsx +++ b/packages/iconoir-react/src/TikTok.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTikTok( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTikTok = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTikTok( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTikTok); +}; +const ForwardRef = forwardRef(SvgTikTok); export default ForwardRef; diff --git a/packages/iconoir-react/src/TimeZone.tsx b/packages/iconoir-react/src/TimeZone.tsx index 412344f1..b5f35ef6 100644 --- a/packages/iconoir-react/src/TimeZone.tsx +++ b/packages/iconoir-react/src/TimeZone.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTimeZone( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTimeZone = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgTimeZone( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTimeZone); +}; +const ForwardRef = forwardRef(SvgTimeZone); export default ForwardRef; diff --git a/packages/iconoir-react/src/Timer.tsx b/packages/iconoir-react/src/Timer.tsx index 7b7e8cb7..4091e21d 100644 --- a/packages/iconoir-react/src/Timer.tsx +++ b/packages/iconoir-react/src/Timer.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTimer( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTimer = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTimer( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTimer); +}; +const ForwardRef = forwardRef(SvgTimer); export default ForwardRef; diff --git a/packages/iconoir-react/src/TimerOff.tsx b/packages/iconoir-react/src/TimerOff.tsx index 06d4af3e..2730cfab 100644 --- a/packages/iconoir-react/src/TimerOff.tsx +++ b/packages/iconoir-react/src/TimerOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTimerOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTimerOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTimerOff( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTimerOff); +}; +const ForwardRef = forwardRef(SvgTimerOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/Tools.tsx b/packages/iconoir-react/src/Tools.tsx index df7dcf42..14ff7e54 100644 --- a/packages/iconoir-react/src/Tools.tsx +++ b/packages/iconoir-react/src/Tools.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTools( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTools = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTools( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTools); +}; +const ForwardRef = forwardRef(SvgTools); export default ForwardRef; diff --git a/packages/iconoir-react/src/Tournament.tsx b/packages/iconoir-react/src/Tournament.tsx index e0beea6c..cfdf322f 100644 --- a/packages/iconoir-react/src/Tournament.tsx +++ b/packages/iconoir-react/src/Tournament.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTournament( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTournament = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTournament( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTournament); +}; +const ForwardRef = forwardRef(SvgTournament); export default ForwardRef; diff --git a/packages/iconoir-react/src/Tower.tsx b/packages/iconoir-react/src/Tower.tsx index 2ff48cb6..59fed0f3 100644 --- a/packages/iconoir-react/src/Tower.tsx +++ b/packages/iconoir-react/src/Tower.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTower( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTower = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgTower( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTower); +}; +const ForwardRef = forwardRef(SvgTower); export default ForwardRef; diff --git a/packages/iconoir-react/src/TowerCheck.tsx b/packages/iconoir-react/src/TowerCheck.tsx index de093017..ef4b8ee8 100644 --- a/packages/iconoir-react/src/TowerCheck.tsx +++ b/packages/iconoir-react/src/TowerCheck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTowerCheck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTowerCheck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTowerCheck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTowerCheck); +}; +const ForwardRef = forwardRef(SvgTowerCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/TowerNoAccess.tsx b/packages/iconoir-react/src/TowerNoAccess.tsx index 97a3bf76..e85bcbe4 100644 --- a/packages/iconoir-react/src/TowerNoAccess.tsx +++ b/packages/iconoir-react/src/TowerNoAccess.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTowerNoAccess( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTowerNoAccess = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTowerNoAccess( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTowerNoAccess); +}; +const ForwardRef = forwardRef(SvgTowerNoAccess); export default ForwardRef; diff --git a/packages/iconoir-react/src/TowerWarning.tsx b/packages/iconoir-react/src/TowerWarning.tsx index 97d67ac8..57b12f0d 100644 --- a/packages/iconoir-react/src/TowerWarning.tsx +++ b/packages/iconoir-react/src/TowerWarning.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTowerWarning( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTowerWarning = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgTowerWarning( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTowerWarning); +}; +const ForwardRef = forwardRef(SvgTowerWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/Trademark.tsx b/packages/iconoir-react/src/Trademark.tsx index f1a6d12e..fff4d92d 100644 --- a/packages/iconoir-react/src/Trademark.tsx +++ b/packages/iconoir-react/src/Trademark.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrademark( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTrademark = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTrademark( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTrademark); +}; +const ForwardRef = forwardRef(SvgTrademark); export default ForwardRef; diff --git a/packages/iconoir-react/src/Train.tsx b/packages/iconoir-react/src/Train.tsx index b14863c9..1f80b556 100644 --- a/packages/iconoir-react/src/Train.tsx +++ b/packages/iconoir-react/src/Train.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrain( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTrain = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgTrain( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTrain); +}; +const ForwardRef = forwardRef(SvgTrain); export default ForwardRef; diff --git a/packages/iconoir-react/src/Tram.tsx b/packages/iconoir-react/src/Tram.tsx index 54ba6cc2..da2a74a2 100644 --- a/packages/iconoir-react/src/Tram.tsx +++ b/packages/iconoir-react/src/Tram.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTram( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTram = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgTram( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTram); +}; +const ForwardRef = forwardRef(SvgTram); export default ForwardRef; diff --git a/packages/iconoir-react/src/TransitionDown.tsx b/packages/iconoir-react/src/TransitionDown.tsx index acc48fd1..6c16b18e 100644 --- a/packages/iconoir-react/src/TransitionDown.tsx +++ b/packages/iconoir-react/src/TransitionDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTransitionDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTransitionDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgTransitionDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTransitionDown); +}; +const ForwardRef = forwardRef(SvgTransitionDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/TransitionLeft.tsx b/packages/iconoir-react/src/TransitionLeft.tsx index a49c6091..fe9eee4d 100644 --- a/packages/iconoir-react/src/TransitionLeft.tsx +++ b/packages/iconoir-react/src/TransitionLeft.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTransitionLeft( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTransitionLeft = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgTransitionLeft( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTransitionLeft); +}; +const ForwardRef = forwardRef(SvgTransitionLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/TransitionRight.tsx b/packages/iconoir-react/src/TransitionRight.tsx index 245c3311..d424b153 100644 --- a/packages/iconoir-react/src/TransitionRight.tsx +++ b/packages/iconoir-react/src/TransitionRight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTransitionRight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTransitionRight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgTransitionRight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTransitionRight); +}; +const ForwardRef = forwardRef(SvgTransitionRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/TransitionUp.tsx b/packages/iconoir-react/src/TransitionUp.tsx index d403e767..e98e1e96 100644 --- a/packages/iconoir-react/src/TransitionUp.tsx +++ b/packages/iconoir-react/src/TransitionUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTransitionUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTransitionUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgTransitionUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTransitionUp); +}; +const ForwardRef = forwardRef(SvgTransitionUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/Translate.tsx b/packages/iconoir-react/src/Translate.tsx index 9db5e583..9b575916 100644 --- a/packages/iconoir-react/src/Translate.tsx +++ b/packages/iconoir-react/src/Translate.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTranslate( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTranslate = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTranslate( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTranslate); +}; +const ForwardRef = forwardRef(SvgTranslate); export default ForwardRef; diff --git a/packages/iconoir-react/src/Trash.tsx b/packages/iconoir-react/src/Trash.tsx index 020c37e7..6889d045 100644 --- a/packages/iconoir-react/src/Trash.tsx +++ b/packages/iconoir-react/src/Trash.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrash( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTrash = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTrash( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTrash); +}; +const ForwardRef = forwardRef(SvgTrash); export default ForwardRef; diff --git a/packages/iconoir-react/src/Treadmill.tsx b/packages/iconoir-react/src/Treadmill.tsx index 469e371a..4c59af6a 100644 --- a/packages/iconoir-react/src/Treadmill.tsx +++ b/packages/iconoir-react/src/Treadmill.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTreadmill( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTreadmill = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgTreadmill( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTreadmill); +}; +const ForwardRef = forwardRef(SvgTreadmill); export default ForwardRef; diff --git a/packages/iconoir-react/src/Tree.tsx b/packages/iconoir-react/src/Tree.tsx index 2a4ce295..e2192136 100644 --- a/packages/iconoir-react/src/Tree.tsx +++ b/packages/iconoir-react/src/Tree.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTree( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTree = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTree( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTree); +}; +const ForwardRef = forwardRef(SvgTree); export default ForwardRef; diff --git a/packages/iconoir-react/src/Trekking.tsx b/packages/iconoir-react/src/Trekking.tsx index a13af308..0e530736 100644 --- a/packages/iconoir-react/src/Trekking.tsx +++ b/packages/iconoir-react/src/Trekking.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrekking( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTrekking = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTrekking( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTrekking); +}; +const ForwardRef = forwardRef(SvgTrekking); export default ForwardRef; diff --git a/packages/iconoir-react/src/Trello.tsx b/packages/iconoir-react/src/Trello.tsx index 7a28fa58..b688f55a 100644 --- a/packages/iconoir-react/src/Trello.tsx +++ b/packages/iconoir-react/src/Trello.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrello( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTrello = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTrello( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTrello); +}; +const ForwardRef = forwardRef(SvgTrello); export default ForwardRef; diff --git a/packages/iconoir-react/src/Triangle.tsx b/packages/iconoir-react/src/Triangle.tsx index cf91e461..5871fb3c 100644 --- a/packages/iconoir-react/src/Triangle.tsx +++ b/packages/iconoir-react/src/Triangle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTriangle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTriangle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTriangle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTriangle); +}; +const ForwardRef = forwardRef(SvgTriangle); export default ForwardRef; diff --git a/packages/iconoir-react/src/TriangleFlag.tsx b/packages/iconoir-react/src/TriangleFlag.tsx index 44929adf..9ba96637 100644 --- a/packages/iconoir-react/src/TriangleFlag.tsx +++ b/packages/iconoir-react/src/TriangleFlag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTriangleFlag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTriangleFlag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTriangleFlag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTriangleFlag); +}; +const ForwardRef = forwardRef(SvgTriangleFlag); export default ForwardRef; diff --git a/packages/iconoir-react/src/TriangleFlagCircle.tsx b/packages/iconoir-react/src/TriangleFlagCircle.tsx index 0017e1c6..f031d661 100644 --- a/packages/iconoir-react/src/TriangleFlagCircle.tsx +++ b/packages/iconoir-react/src/TriangleFlagCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTriangleFlagCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTriangleFlagCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTriangleFlagCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTriangleFlagCircle); +}; +const ForwardRef = forwardRef(SvgTriangleFlagCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/TriangleFlagTwoStripes.tsx b/packages/iconoir-react/src/TriangleFlagTwoStripes.tsx index ba305721..af1a679b 100644 --- a/packages/iconoir-react/src/TriangleFlagTwoStripes.tsx +++ b/packages/iconoir-react/src/TriangleFlagTwoStripes.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTriangleFlagTwoStripes( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTriangleFlagTwoStripes = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTriangleFlagTwoStripes( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTriangleFlagTwoStripes); +}; +const ForwardRef = forwardRef(SvgTriangleFlagTwoStripes); export default ForwardRef; diff --git a/packages/iconoir-react/src/Trophy.tsx b/packages/iconoir-react/src/Trophy.tsx index 71ae7041..79d1acf7 100644 --- a/packages/iconoir-react/src/Trophy.tsx +++ b/packages/iconoir-react/src/Trophy.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTrophy( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTrophy = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTrophy( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTrophy); +}; +const ForwardRef = forwardRef(SvgTrophy); export default ForwardRef; diff --git a/packages/iconoir-react/src/Truck.tsx b/packages/iconoir-react/src/Truck.tsx index 8276d2d9..3367ceb3 100644 --- a/packages/iconoir-react/src/Truck.tsx +++ b/packages/iconoir-react/src/Truck.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTruck( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTruck = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTruck( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTruck); +}; +const ForwardRef = forwardRef(SvgTruck); export default ForwardRef; diff --git a/packages/iconoir-react/src/TruckLength.tsx b/packages/iconoir-react/src/TruckLength.tsx index d013b828..737d3721 100644 --- a/packages/iconoir-react/src/TruckLength.tsx +++ b/packages/iconoir-react/src/TruckLength.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTruckLength( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTruckLength = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgTruckLength( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTruckLength); +}; +const ForwardRef = forwardRef(SvgTruckLength); export default ForwardRef; diff --git a/packages/iconoir-react/src/Tunnel.tsx b/packages/iconoir-react/src/Tunnel.tsx index f0d41eb6..087821d9 100644 --- a/packages/iconoir-react/src/Tunnel.tsx +++ b/packages/iconoir-react/src/Tunnel.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTunnel( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTunnel = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgTunnel( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTunnel); +}; +const ForwardRef = forwardRef(SvgTunnel); export default ForwardRef; diff --git a/packages/iconoir-react/src/Tv.tsx b/packages/iconoir-react/src/Tv.tsx index e4b3708e..403d891b 100644 --- a/packages/iconoir-react/src/Tv.tsx +++ b/packages/iconoir-react/src/Tv.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTv( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTv = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgTv( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTv); +}; +const ForwardRef = forwardRef(SvgTv); export default ForwardRef; diff --git a/packages/iconoir-react/src/TvFix.tsx b/packages/iconoir-react/src/TvFix.tsx index 8720a492..6b10f15a 100644 --- a/packages/iconoir-react/src/TvFix.tsx +++ b/packages/iconoir-react/src/TvFix.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTvFix( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTvFix = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgTvFix( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTvFix); +}; +const ForwardRef = forwardRef(SvgTvFix); export default ForwardRef; diff --git a/packages/iconoir-react/src/TvIssue.tsx b/packages/iconoir-react/src/TvIssue.tsx index a52926b5..6da6963c 100644 --- a/packages/iconoir-react/src/TvIssue.tsx +++ b/packages/iconoir-react/src/TvIssue.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTvIssue( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTvIssue = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgTvIssue( }; return ( + + - - ); -} -const ForwardRef = React.forwardRef(SvgTvIssue); +}; +const ForwardRef = forwardRef(SvgTvIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/Twitter.tsx b/packages/iconoir-react/src/Twitter.tsx index d3d9c6a9..06d0c1d1 100644 --- a/packages/iconoir-react/src/Twitter.tsx +++ b/packages/iconoir-react/src/Twitter.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTwitter( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTwitter = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgTwitter( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTwitter); +}; +const ForwardRef = forwardRef(SvgTwitter); export default ForwardRef; diff --git a/packages/iconoir-react/src/TwitterVerifiedBadge.tsx b/packages/iconoir-react/src/TwitterVerifiedBadge.tsx index 7d3f94c6..5281810c 100644 --- a/packages/iconoir-react/src/TwitterVerifiedBadge.tsx +++ b/packages/iconoir-react/src/TwitterVerifiedBadge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTwitterVerifiedBadge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTwitterVerifiedBadge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgTwitterVerifiedBadge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTwitterVerifiedBadge); +}; +const ForwardRef = forwardRef(SvgTwitterVerifiedBadge); export default ForwardRef; diff --git a/packages/iconoir-react/src/TwoPointsCircle.tsx b/packages/iconoir-react/src/TwoPointsCircle.tsx index 720999b0..d3d5cb9a 100644 --- a/packages/iconoir-react/src/TwoPointsCircle.tsx +++ b/packages/iconoir-react/src/TwoPointsCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTwoPointsCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTwoPointsCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,37 +13,37 @@ function SvgTwoPointsCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTwoPointsCircle); +}; +const ForwardRef = forwardRef(SvgTwoPointsCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/TwoSeaterSofa.tsx b/packages/iconoir-react/src/TwoSeaterSofa.tsx index a61d50f1..4070034c 100644 --- a/packages/iconoir-react/src/TwoSeaterSofa.tsx +++ b/packages/iconoir-react/src/TwoSeaterSofa.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgTwoSeaterSofa( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgTwoSeaterSofa = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgTwoSeaterSofa( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgTwoSeaterSofa); +}; +const ForwardRef = forwardRef(SvgTwoSeaterSofa); export default ForwardRef; diff --git a/packages/iconoir-react/src/Type.tsx b/packages/iconoir-react/src/Type.tsx index 4b381f1f..311df202 100644 --- a/packages/iconoir-react/src/Type.tsx +++ b/packages/iconoir-react/src/Type.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgType( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgType = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgType( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgType); +}; +const ForwardRef = forwardRef(SvgType); export default ForwardRef; diff --git a/packages/iconoir-react/src/UmbrellaFull.tsx b/packages/iconoir-react/src/UmbrellaFull.tsx index 5df41ded..4792c0f1 100644 --- a/packages/iconoir-react/src/UmbrellaFull.tsx +++ b/packages/iconoir-react/src/UmbrellaFull.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUmbrellaFull( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUmbrellaFull = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgUmbrellaFull( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUmbrellaFull); +}; +const ForwardRef = forwardRef(SvgUmbrellaFull); export default ForwardRef; diff --git a/packages/iconoir-react/src/Underline.tsx b/packages/iconoir-react/src/Underline.tsx index e7f0c88f..88181e68 100644 --- a/packages/iconoir-react/src/Underline.tsx +++ b/packages/iconoir-react/src/Underline.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnderline( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUnderline = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgUnderline( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUnderline); +}; +const ForwardRef = forwardRef(SvgUnderline); export default ForwardRef; diff --git a/packages/iconoir-react/src/UnderlineSquare.tsx b/packages/iconoir-react/src/UnderlineSquare.tsx index c0a53daa..2a2e5724 100644 --- a/packages/iconoir-react/src/UnderlineSquare.tsx +++ b/packages/iconoir-react/src/UnderlineSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnderlineSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUnderlineSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgUnderlineSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUnderlineSquare); +}; +const ForwardRef = forwardRef(SvgUnderlineSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Undo.tsx b/packages/iconoir-react/src/Undo.tsx index de1993e6..7e86b2c1 100644 --- a/packages/iconoir-react/src/Undo.tsx +++ b/packages/iconoir-react/src/Undo.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUndo( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUndo = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgUndo( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUndo); +}; +const ForwardRef = forwardRef(SvgUndo); export default ForwardRef; diff --git a/packages/iconoir-react/src/UndoAction.tsx b/packages/iconoir-react/src/UndoAction.tsx index 80b84341..88b30496 100644 --- a/packages/iconoir-react/src/UndoAction.tsx +++ b/packages/iconoir-react/src/UndoAction.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUndoAction( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUndoAction = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgUndoAction( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUndoAction); +}; +const ForwardRef = forwardRef(SvgUndoAction); export default ForwardRef; diff --git a/packages/iconoir-react/src/UndoCircle.tsx b/packages/iconoir-react/src/UndoCircle.tsx index 03d79ffb..9144dc39 100644 --- a/packages/iconoir-react/src/UndoCircle.tsx +++ b/packages/iconoir-react/src/UndoCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUndoCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUndoCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgUndoCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUndoCircle); +}; +const ForwardRef = forwardRef(SvgUndoCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/Union.tsx b/packages/iconoir-react/src/Union.tsx index f3d08d1e..e15ef6e3 100644 --- a/packages/iconoir-react/src/Union.tsx +++ b/packages/iconoir-react/src/Union.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnion( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUnion = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgUnion( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUnion); +}; +const ForwardRef = forwardRef(SvgUnion); export default ForwardRef; diff --git a/packages/iconoir-react/src/UnionAlt.tsx b/packages/iconoir-react/src/UnionAlt.tsx index 0d8d3797..5ab2e51f 100644 --- a/packages/iconoir-react/src/UnionAlt.tsx +++ b/packages/iconoir-react/src/UnionAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnionAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUnionAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgUnionAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUnionAlt); +}; +const ForwardRef = forwardRef(SvgUnionAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/UnionHorizAlt.tsx b/packages/iconoir-react/src/UnionHorizAlt.tsx index d2e720c1..086e8357 100644 --- a/packages/iconoir-react/src/UnionHorizAlt.tsx +++ b/packages/iconoir-react/src/UnionHorizAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnionHorizAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUnionHorizAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgUnionHorizAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUnionHorizAlt); +}; +const ForwardRef = forwardRef(SvgUnionHorizAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/Unity.tsx b/packages/iconoir-react/src/Unity.tsx index 88bda8f6..b4250d4e 100644 --- a/packages/iconoir-react/src/Unity.tsx +++ b/packages/iconoir-react/src/Unity.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnity( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUnity = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgUnity( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgUnity); +}; +const ForwardRef = forwardRef(SvgUnity); export default ForwardRef; diff --git a/packages/iconoir-react/src/Unity5.tsx b/packages/iconoir-react/src/Unity5.tsx index a469aa7d..1a1d7ea0 100644 --- a/packages/iconoir-react/src/Unity5.tsx +++ b/packages/iconoir-react/src/Unity5.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnity5( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUnity5 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgUnity5( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUnity5); +}; +const ForwardRef = forwardRef(SvgUnity5); export default ForwardRef; diff --git a/packages/iconoir-react/src/Unjoin3D.tsx b/packages/iconoir-react/src/Unjoin3D.tsx index fe713c95..de2d6b65 100644 --- a/packages/iconoir-react/src/Unjoin3D.tsx +++ b/packages/iconoir-react/src/Unjoin3D.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUnjoin3D( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUnjoin3D = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgUnjoin3D( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUnjoin3D); +}; +const ForwardRef = forwardRef(SvgUnjoin3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/UpRoundArrow.tsx b/packages/iconoir-react/src/UpRoundArrow.tsx index e0bcf0ad..15cbcb91 100644 --- a/packages/iconoir-react/src/UpRoundArrow.tsx +++ b/packages/iconoir-react/src/UpRoundArrow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUpRoundArrow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUpRoundArrow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgUpRoundArrow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUpRoundArrow); +}; +const ForwardRef = forwardRef(SvgUpRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Upload.tsx b/packages/iconoir-react/src/Upload.tsx index 25b1f3b2..8dcec127 100644 --- a/packages/iconoir-react/src/Upload.tsx +++ b/packages/iconoir-react/src/Upload.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUpload( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUpload = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgUpload( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUpload); +}; +const ForwardRef = forwardRef(SvgUpload); export default ForwardRef; diff --git a/packages/iconoir-react/src/UploadDataWindow.tsx b/packages/iconoir-react/src/UploadDataWindow.tsx index dea59007..017aa9f4 100644 --- a/packages/iconoir-react/src/UploadDataWindow.tsx +++ b/packages/iconoir-react/src/UploadDataWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUploadDataWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUploadDataWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgUploadDataWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUploadDataWindow); +}; +const ForwardRef = forwardRef(SvgUploadDataWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/UploadSquare.tsx b/packages/iconoir-react/src/UploadSquare.tsx index 1b260ac1..e61f338b 100644 --- a/packages/iconoir-react/src/UploadSquare.tsx +++ b/packages/iconoir-react/src/UploadSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUploadSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUploadSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgUploadSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUploadSquare); +}; +const ForwardRef = forwardRef(SvgUploadSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Usb.tsx b/packages/iconoir-react/src/Usb.tsx index 66f361c7..b7d759d2 100644 --- a/packages/iconoir-react/src/Usb.tsx +++ b/packages/iconoir-react/src/Usb.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUsb( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUsb = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgUsb( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUsb); +}; +const ForwardRef = forwardRef(SvgUsb); export default ForwardRef; diff --git a/packages/iconoir-react/src/User.tsx b/packages/iconoir-react/src/User.tsx index 5210cd98..80a14a19 100644 --- a/packages/iconoir-react/src/User.tsx +++ b/packages/iconoir-react/src/User.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUser( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUser = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgUser( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUser); +}; +const ForwardRef = forwardRef(SvgUser); export default ForwardRef; diff --git a/packages/iconoir-react/src/UserBag.tsx b/packages/iconoir-react/src/UserBag.tsx index 7216ef0a..bd5651c9 100644 --- a/packages/iconoir-react/src/UserBag.tsx +++ b/packages/iconoir-react/src/UserBag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserBag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUserBag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgUserBag( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgUserBag); +}; +const ForwardRef = forwardRef(SvgUserBag); export default ForwardRef; diff --git a/packages/iconoir-react/src/UserCart.tsx b/packages/iconoir-react/src/UserCart.tsx index f0764cda..7aeddfc2 100644 --- a/packages/iconoir-react/src/UserCart.tsx +++ b/packages/iconoir-react/src/UserCart.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserCart( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUserCart = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgUserCart( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgUserCart); +}; +const ForwardRef = forwardRef(SvgUserCart); export default ForwardRef; diff --git a/packages/iconoir-react/src/UserCircle.tsx b/packages/iconoir-react/src/UserCircle.tsx index 1b19956c..3f2d1fdd 100644 --- a/packages/iconoir-react/src/UserCircle.tsx +++ b/packages/iconoir-react/src/UserCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUserCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgUserCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUserCircle); +}; +const ForwardRef = forwardRef(SvgUserCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/UserCrown.tsx b/packages/iconoir-react/src/UserCrown.tsx index 084f6019..36c336d4 100644 --- a/packages/iconoir-react/src/UserCrown.tsx +++ b/packages/iconoir-react/src/UserCrown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserCrown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUserCrown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgUserCrown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUserCrown); +}; +const ForwardRef = forwardRef(SvgUserCrown); export default ForwardRef; diff --git a/packages/iconoir-react/src/UserLove.tsx b/packages/iconoir-react/src/UserLove.tsx index d3c40bfd..046539a2 100644 --- a/packages/iconoir-react/src/UserLove.tsx +++ b/packages/iconoir-react/src/UserLove.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserLove( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUserLove = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgUserLove( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUserLove); +}; +const ForwardRef = forwardRef(SvgUserLove); export default ForwardRef; diff --git a/packages/iconoir-react/src/UserScan.tsx b/packages/iconoir-react/src/UserScan.tsx index 496fd2ca..fe1c45e5 100644 --- a/packages/iconoir-react/src/UserScan.tsx +++ b/packages/iconoir-react/src/UserScan.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserScan( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUserScan = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgUserScan( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUserScan); +}; +const ForwardRef = forwardRef(SvgUserScan); export default ForwardRef; diff --git a/packages/iconoir-react/src/UserSquare.tsx b/packages/iconoir-react/src/UserSquare.tsx index e871c773..d18def94 100644 --- a/packages/iconoir-react/src/UserSquare.tsx +++ b/packages/iconoir-react/src/UserSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUserSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgUserSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUserSquare); +}; +const ForwardRef = forwardRef(SvgUserSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/UserStar.tsx b/packages/iconoir-react/src/UserStar.tsx index 7ef81f70..cf8ed58a 100644 --- a/packages/iconoir-react/src/UserStar.tsx +++ b/packages/iconoir-react/src/UserStar.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgUserStar( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgUserStar = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgUserStar( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgUserStar); +}; +const ForwardRef = forwardRef(SvgUserStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/Vegan.tsx b/packages/iconoir-react/src/Vegan.tsx index e6edf72f..68a67dec 100644 --- a/packages/iconoir-react/src/Vegan.tsx +++ b/packages/iconoir-react/src/Vegan.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVegan( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVegan = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgVegan( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVegan); +}; +const ForwardRef = forwardRef(SvgVegan); export default ForwardRef; diff --git a/packages/iconoir-react/src/VeganCircle.tsx b/packages/iconoir-react/src/VeganCircle.tsx index b447affa..9f4934c6 100644 --- a/packages/iconoir-react/src/VeganCircle.tsx +++ b/packages/iconoir-react/src/VeganCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVeganCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVeganCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgVeganCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVeganCircle); +}; +const ForwardRef = forwardRef(SvgVeganCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/VeganSquare.tsx b/packages/iconoir-react/src/VeganSquare.tsx index 290d5ada..8c4498ba 100644 --- a/packages/iconoir-react/src/VeganSquare.tsx +++ b/packages/iconoir-react/src/VeganSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVeganSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVeganSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgVeganSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVeganSquare); +}; +const ForwardRef = forwardRef(SvgVeganSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/VerifiedBadge.tsx b/packages/iconoir-react/src/VerifiedBadge.tsx index addd7585..cfa8f3ea 100644 --- a/packages/iconoir-react/src/VerifiedBadge.tsx +++ b/packages/iconoir-react/src/VerifiedBadge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVerifiedBadge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVerifiedBadge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgVerifiedBadge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVerifiedBadge); +}; +const ForwardRef = forwardRef(SvgVerifiedBadge); export default ForwardRef; diff --git a/packages/iconoir-react/src/VerifiedUser.tsx b/packages/iconoir-react/src/VerifiedUser.tsx index 570f0197..2dd119d3 100644 --- a/packages/iconoir-react/src/VerifiedUser.tsx +++ b/packages/iconoir-react/src/VerifiedUser.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVerifiedUser( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVerifiedUser = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgVerifiedUser( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVerifiedUser); +}; +const ForwardRef = forwardRef(SvgVerifiedUser); export default ForwardRef; diff --git a/packages/iconoir-react/src/VerticalMerge.tsx b/packages/iconoir-react/src/VerticalMerge.tsx index 13e66174..baeea6b4 100644 --- a/packages/iconoir-react/src/VerticalMerge.tsx +++ b/packages/iconoir-react/src/VerticalMerge.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVerticalMerge( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVerticalMerge = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVerticalMerge( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVerticalMerge); +}; +const ForwardRef = forwardRef(SvgVerticalMerge); export default ForwardRef; diff --git a/packages/iconoir-react/src/VerticalSplit.tsx b/packages/iconoir-react/src/VerticalSplit.tsx index f3044a83..8772cb7a 100644 --- a/packages/iconoir-react/src/VerticalSplit.tsx +++ b/packages/iconoir-react/src/VerticalSplit.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVerticalSplit( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVerticalSplit = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVerticalSplit( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVerticalSplit); +}; +const ForwardRef = forwardRef(SvgVerticalSplit); export default ForwardRef; diff --git a/packages/iconoir-react/src/Vials.tsx b/packages/iconoir-react/src/Vials.tsx index 7ab08c2f..ea85c7cf 100644 --- a/packages/iconoir-react/src/Vials.tsx +++ b/packages/iconoir-react/src/Vials.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVials( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVials = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVials( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVials); +}; +const ForwardRef = forwardRef(SvgVials); export default ForwardRef; diff --git a/packages/iconoir-react/src/VideoCamera.tsx b/packages/iconoir-react/src/VideoCamera.tsx index 35d9de2c..18ba6ae2 100644 --- a/packages/iconoir-react/src/VideoCamera.tsx +++ b/packages/iconoir-react/src/VideoCamera.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVideoCamera( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVideoCamera = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVideoCamera( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVideoCamera); +}; +const ForwardRef = forwardRef(SvgVideoCamera); export default ForwardRef; diff --git a/packages/iconoir-react/src/VideoCameraOff.tsx b/packages/iconoir-react/src/VideoCameraOff.tsx index 25f865be..1feab41d 100644 --- a/packages/iconoir-react/src/VideoCameraOff.tsx +++ b/packages/iconoir-react/src/VideoCameraOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVideoCameraOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVideoCameraOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVideoCameraOff( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVideoCameraOff); +}; +const ForwardRef = forwardRef(SvgVideoCameraOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/VideoProjector.tsx b/packages/iconoir-react/src/VideoProjector.tsx index 34379765..1cb59088 100644 --- a/packages/iconoir-react/src/VideoProjector.tsx +++ b/packages/iconoir-react/src/VideoProjector.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVideoProjector( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVideoProjector = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,34 +13,34 @@ function SvgVideoProjector( }; return ( + + - - ); -} -const ForwardRef = React.forwardRef(SvgVideoProjector); +}; +const ForwardRef = forwardRef(SvgVideoProjector); export default ForwardRef; diff --git a/packages/iconoir-react/src/View360.tsx b/packages/iconoir-react/src/View360.tsx index a34d2994..0ecdfb15 100644 --- a/packages/iconoir-react/src/View360.tsx +++ b/packages/iconoir-react/src/View360.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgView360( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgView360 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgView360( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgView360); +}; +const ForwardRef = forwardRef(SvgView360); export default ForwardRef; diff --git a/packages/iconoir-react/src/ViewColumns2.tsx b/packages/iconoir-react/src/ViewColumns2.tsx index 54ece6f7..42ee1584 100644 --- a/packages/iconoir-react/src/ViewColumns2.tsx +++ b/packages/iconoir-react/src/ViewColumns2.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgViewColumns2( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgViewColumns2 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgViewColumns2( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgViewColumns2); +}; +const ForwardRef = forwardRef(SvgViewColumns2); export default ForwardRef; diff --git a/packages/iconoir-react/src/ViewColumns3.tsx b/packages/iconoir-react/src/ViewColumns3.tsx index 3981295f..48c37df2 100644 --- a/packages/iconoir-react/src/ViewColumns3.tsx +++ b/packages/iconoir-react/src/ViewColumns3.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgViewColumns3( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgViewColumns3 = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgViewColumns3( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgViewColumns3); +}; +const ForwardRef = forwardRef(SvgViewColumns3); export default ForwardRef; diff --git a/packages/iconoir-react/src/ViewGrid.tsx b/packages/iconoir-react/src/ViewGrid.tsx index 0f0278d2..51642535 100644 --- a/packages/iconoir-react/src/ViewGrid.tsx +++ b/packages/iconoir-react/src/ViewGrid.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgViewGrid( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgViewGrid = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgViewGrid( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgViewGrid); +}; +const ForwardRef = forwardRef(SvgViewGrid); export default ForwardRef; diff --git a/packages/iconoir-react/src/ViewStructureDown.tsx b/packages/iconoir-react/src/ViewStructureDown.tsx index d9edf82f..971d3d94 100644 --- a/packages/iconoir-react/src/ViewStructureDown.tsx +++ b/packages/iconoir-react/src/ViewStructureDown.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgViewStructureDown( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgViewStructureDown = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgViewStructureDown( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgViewStructureDown); +}; +const ForwardRef = forwardRef(SvgViewStructureDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/ViewStructureUp.tsx b/packages/iconoir-react/src/ViewStructureUp.tsx index 8d6f29a7..ac3c35a0 100644 --- a/packages/iconoir-react/src/ViewStructureUp.tsx +++ b/packages/iconoir-react/src/ViewStructureUp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgViewStructureUp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgViewStructureUp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgViewStructureUp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgViewStructureUp); +}; +const ForwardRef = forwardRef(SvgViewStructureUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/Voice.tsx b/packages/iconoir-react/src/Voice.tsx index 05aae83e..05a58095 100644 --- a/packages/iconoir-react/src/Voice.tsx +++ b/packages/iconoir-react/src/Voice.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoice( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVoice = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVoice( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVoice); +}; +const ForwardRef = forwardRef(SvgVoice); export default ForwardRef; diff --git a/packages/iconoir-react/src/VoiceCircle.tsx b/packages/iconoir-react/src/VoiceCircle.tsx index e8442311..f7b339f3 100644 --- a/packages/iconoir-react/src/VoiceCircle.tsx +++ b/packages/iconoir-react/src/VoiceCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVoiceCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVoiceCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVoiceCircle); +}; +const ForwardRef = forwardRef(SvgVoiceCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/VoiceError.tsx b/packages/iconoir-react/src/VoiceError.tsx index 60606eba..3f1659c8 100644 --- a/packages/iconoir-react/src/VoiceError.tsx +++ b/packages/iconoir-react/src/VoiceError.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceError( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVoiceError = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVoiceError( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVoiceError); +}; +const ForwardRef = forwardRef(SvgVoiceError); export default ForwardRef; diff --git a/packages/iconoir-react/src/VoiceLockCircle.tsx b/packages/iconoir-react/src/VoiceLockCircle.tsx index 3ff7de94..0cbdffe2 100644 --- a/packages/iconoir-react/src/VoiceLockCircle.tsx +++ b/packages/iconoir-react/src/VoiceLockCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceLockCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVoiceLockCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgVoiceLockCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVoiceLockCircle); +}; +const ForwardRef = forwardRef(SvgVoiceLockCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/VoiceOk.tsx b/packages/iconoir-react/src/VoiceOk.tsx index 542d75f8..e69f736e 100644 --- a/packages/iconoir-react/src/VoiceOk.tsx +++ b/packages/iconoir-react/src/VoiceOk.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceOk( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVoiceOk = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVoiceOk( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVoiceOk); +}; +const ForwardRef = forwardRef(SvgVoiceOk); export default ForwardRef; diff --git a/packages/iconoir-react/src/VoicePhone.tsx b/packages/iconoir-react/src/VoicePhone.tsx index 6ee6ec8d..29d53879 100644 --- a/packages/iconoir-react/src/VoicePhone.tsx +++ b/packages/iconoir-react/src/VoicePhone.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoicePhone( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVoicePhone = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVoicePhone( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVoicePhone); +}; +const ForwardRef = forwardRef(SvgVoicePhone); export default ForwardRef; diff --git a/packages/iconoir-react/src/VoiceScan.tsx b/packages/iconoir-react/src/VoiceScan.tsx index 10f40067..ef1f22b3 100644 --- a/packages/iconoir-react/src/VoiceScan.tsx +++ b/packages/iconoir-react/src/VoiceScan.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceScan( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVoiceScan = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVoiceScan( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVoiceScan); +}; +const ForwardRef = forwardRef(SvgVoiceScan); export default ForwardRef; diff --git a/packages/iconoir-react/src/VoiceSquare.tsx b/packages/iconoir-react/src/VoiceSquare.tsx index 019eb691..aef369c1 100644 --- a/packages/iconoir-react/src/VoiceSquare.tsx +++ b/packages/iconoir-react/src/VoiceSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVoiceSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVoiceSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgVoiceSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVoiceSquare); +}; +const ForwardRef = forwardRef(SvgVoiceSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/VrSymbol.tsx b/packages/iconoir-react/src/VrSymbol.tsx index fb60eb3e..209eb231 100644 --- a/packages/iconoir-react/src/VrSymbol.tsx +++ b/packages/iconoir-react/src/VrSymbol.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVrSymbol( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVrSymbol = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgVrSymbol( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVrSymbol); +}; +const ForwardRef = forwardRef(SvgVrSymbol); export default ForwardRef; diff --git a/packages/iconoir-react/src/VueJs.tsx b/packages/iconoir-react/src/VueJs.tsx index ce81b619..58eb51d2 100644 --- a/packages/iconoir-react/src/VueJs.tsx +++ b/packages/iconoir-react/src/VueJs.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgVueJs( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgVueJs = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgVueJs( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgVueJs); +}; +const ForwardRef = forwardRef(SvgVueJs); export default ForwardRef; diff --git a/packages/iconoir-react/src/Waist.tsx b/packages/iconoir-react/src/Waist.tsx index e167ffe1..f5fb5838 100644 --- a/packages/iconoir-react/src/Waist.tsx +++ b/packages/iconoir-react/src/Waist.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWaist( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWaist = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgWaist( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWaist); +}; +const ForwardRef = forwardRef(SvgWaist); export default ForwardRef; diff --git a/packages/iconoir-react/src/Walking.tsx b/packages/iconoir-react/src/Walking.tsx index 9375b720..c5e886ab 100644 --- a/packages/iconoir-react/src/Walking.tsx +++ b/packages/iconoir-react/src/Walking.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWalking( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWalking = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgWalking( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWalking); +}; +const ForwardRef = forwardRef(SvgWalking); export default ForwardRef; diff --git a/packages/iconoir-react/src/Wallet.tsx b/packages/iconoir-react/src/Wallet.tsx index 963fcec6..76f6e580 100644 --- a/packages/iconoir-react/src/Wallet.tsx +++ b/packages/iconoir-react/src/Wallet.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWallet( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWallet = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,33 +13,33 @@ function SvgWallet( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWallet); +}; +const ForwardRef = forwardRef(SvgWallet); export default ForwardRef; diff --git a/packages/iconoir-react/src/WarningCircle.tsx b/packages/iconoir-react/src/WarningCircle.tsx index 58852fe6..569eb0d4 100644 --- a/packages/iconoir-react/src/WarningCircle.tsx +++ b/packages/iconoir-react/src/WarningCircle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWarningCircle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWarningCircle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgWarningCircle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWarningCircle); +}; +const ForwardRef = forwardRef(SvgWarningCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/WarningHexagon.tsx b/packages/iconoir-react/src/WarningHexagon.tsx index fe5cd5ef..2fc93ac8 100644 --- a/packages/iconoir-react/src/WarningHexagon.tsx +++ b/packages/iconoir-react/src/WarningHexagon.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWarningHexagon( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWarningHexagon = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgWarningHexagon( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWarningHexagon); +}; +const ForwardRef = forwardRef(SvgWarningHexagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/WarningSquare.tsx b/packages/iconoir-react/src/WarningSquare.tsx index aacf0d3b..a4621bd2 100644 --- a/packages/iconoir-react/src/WarningSquare.tsx +++ b/packages/iconoir-react/src/WarningSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWarningSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWarningSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgWarningSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWarningSquare); +}; +const ForwardRef = forwardRef(SvgWarningSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/WarningTriangle.tsx b/packages/iconoir-react/src/WarningTriangle.tsx index 29752532..94a3369e 100644 --- a/packages/iconoir-react/src/WarningTriangle.tsx +++ b/packages/iconoir-react/src/WarningTriangle.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWarningTriangle( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWarningTriangle = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgWarningTriangle( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWarningTriangle); +}; +const ForwardRef = forwardRef(SvgWarningTriangle); export default ForwardRef; diff --git a/packages/iconoir-react/src/WarningWindow.tsx b/packages/iconoir-react/src/WarningWindow.tsx index 01ad79a8..6ee14316 100644 --- a/packages/iconoir-react/src/WarningWindow.tsx +++ b/packages/iconoir-react/src/WarningWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWarningWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWarningWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgWarningWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWarningWindow); +}; +const ForwardRef = forwardRef(SvgWarningWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/Wash.tsx b/packages/iconoir-react/src/Wash.tsx index 8dfe3398..10816c83 100644 --- a/packages/iconoir-react/src/Wash.tsx +++ b/packages/iconoir-react/src/Wash.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWash( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWash = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgWash( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWash); +}; +const ForwardRef = forwardRef(SvgWash); export default ForwardRef; diff --git a/packages/iconoir-react/src/WashingMachine.tsx b/packages/iconoir-react/src/WashingMachine.tsx index 200292bc..5fbd9945 100644 --- a/packages/iconoir-react/src/WashingMachine.tsx +++ b/packages/iconoir-react/src/WashingMachine.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWashingMachine( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWashingMachine = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,36 @@ function SvgWashingMachine( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgWashingMachine); +}; +const ForwardRef = forwardRef(SvgWashingMachine); export default ForwardRef; diff --git a/packages/iconoir-react/src/WateringSoil.tsx b/packages/iconoir-react/src/WateringSoil.tsx index 407ad5ca..28c9875a 100644 --- a/packages/iconoir-react/src/WateringSoil.tsx +++ b/packages/iconoir-react/src/WateringSoil.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWateringSoil( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWateringSoil = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgWateringSoil( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWateringSoil); +}; +const ForwardRef = forwardRef(SvgWateringSoil); export default ForwardRef; diff --git a/packages/iconoir-react/src/WebWindow.tsx b/packages/iconoir-react/src/WebWindow.tsx index d92f8b5a..6e5b4a7c 100644 --- a/packages/iconoir-react/src/WebWindow.tsx +++ b/packages/iconoir-react/src/WebWindow.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWebWindow( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWebWindow = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgWebWindow( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWebWindow); +}; +const ForwardRef = forwardRef(SvgWebWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/WebWindowClose.tsx b/packages/iconoir-react/src/WebWindowClose.tsx index 5c3bc0b2..a498e0f1 100644 --- a/packages/iconoir-react/src/WebWindowClose.tsx +++ b/packages/iconoir-react/src/WebWindowClose.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWebWindowClose( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWebWindowClose = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgWebWindowClose( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWebWindowClose); +}; +const ForwardRef = forwardRef(SvgWebWindowClose); export default ForwardRef; diff --git a/packages/iconoir-react/src/WebWindowEnergyConsumption.tsx b/packages/iconoir-react/src/WebWindowEnergyConsumption.tsx index 3815c7a5..7292c064 100644 --- a/packages/iconoir-react/src/WebWindowEnergyConsumption.tsx +++ b/packages/iconoir-react/src/WebWindowEnergyConsumption.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWebWindowEnergyConsumption( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWebWindowEnergyConsumption = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgWebWindowEnergyConsumption( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWebWindowEnergyConsumption); +}; +const ForwardRef = forwardRef(SvgWebWindowEnergyConsumption); export default ForwardRef; diff --git a/packages/iconoir-react/src/WebpFormat.tsx b/packages/iconoir-react/src/WebpFormat.tsx index 3bf080af..7275c1a4 100644 --- a/packages/iconoir-react/src/WebpFormat.tsx +++ b/packages/iconoir-react/src/WebpFormat.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWebpFormat( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWebpFormat = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,35 +13,35 @@ function SvgWebpFormat( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWebpFormat); +}; +const ForwardRef = forwardRef(SvgWebpFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/Weight.tsx b/packages/iconoir-react/src/Weight.tsx index d139407f..ea6ce838 100644 --- a/packages/iconoir-react/src/Weight.tsx +++ b/packages/iconoir-react/src/Weight.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWeight( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWeight = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgWeight( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWeight); +}; +const ForwardRef = forwardRef(SvgWeight); export default ForwardRef; diff --git a/packages/iconoir-react/src/WeightAlt.tsx b/packages/iconoir-react/src/WeightAlt.tsx index b6277da3..f521f457 100644 --- a/packages/iconoir-react/src/WeightAlt.tsx +++ b/packages/iconoir-react/src/WeightAlt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWeightAlt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWeightAlt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgWeightAlt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWeightAlt); +}; +const ForwardRef = forwardRef(SvgWeightAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/WhiteFlag.tsx b/packages/iconoir-react/src/WhiteFlag.tsx index fee81f62..c6de70cc 100644 --- a/packages/iconoir-react/src/WhiteFlag.tsx +++ b/packages/iconoir-react/src/WhiteFlag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWhiteFlag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWhiteFlag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgWhiteFlag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWhiteFlag); +}; +const ForwardRef = forwardRef(SvgWhiteFlag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Wifi.tsx b/packages/iconoir-react/src/Wifi.tsx index dd4023c3..5f8d026c 100644 --- a/packages/iconoir-react/src/Wifi.tsx +++ b/packages/iconoir-react/src/Wifi.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifi( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWifi = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgWifi( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWifi); +}; +const ForwardRef = forwardRef(SvgWifi); export default ForwardRef; diff --git a/packages/iconoir-react/src/WifiError.tsx b/packages/iconoir-react/src/WifiError.tsx index 3a452bf4..7c9e009c 100644 --- a/packages/iconoir-react/src/WifiError.tsx +++ b/packages/iconoir-react/src/WifiError.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifiError( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWifiError = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgWifiError( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWifiError); +}; +const ForwardRef = forwardRef(SvgWifiError); export default ForwardRef; diff --git a/packages/iconoir-react/src/WifiIssue.tsx b/packages/iconoir-react/src/WifiIssue.tsx index 19637b6d..e1af2678 100644 --- a/packages/iconoir-react/src/WifiIssue.tsx +++ b/packages/iconoir-react/src/WifiIssue.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifiIssue( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWifiIssue = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgWifiIssue( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWifiIssue); +}; +const ForwardRef = forwardRef(SvgWifiIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/WifiOff.tsx b/packages/iconoir-react/src/WifiOff.tsx index 6b4e3fdf..1838b040 100644 --- a/packages/iconoir-react/src/WifiOff.tsx +++ b/packages/iconoir-react/src/WifiOff.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifiOff( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWifiOff = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgWifiOff( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWifiOff); +}; +const ForwardRef = forwardRef(SvgWifiOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/WifiSignalNone.tsx b/packages/iconoir-react/src/WifiSignalNone.tsx index beed4124..cad60846 100644 --- a/packages/iconoir-react/src/WifiSignalNone.tsx +++ b/packages/iconoir-react/src/WifiSignalNone.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifiSignalNone( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWifiSignalNone = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgWifiSignalNone( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWifiSignalNone); +}; +const ForwardRef = forwardRef(SvgWifiSignalNone); export default ForwardRef; diff --git a/packages/iconoir-react/src/WifiTag.tsx b/packages/iconoir-react/src/WifiTag.tsx index 3df8b922..a93b3490 100644 --- a/packages/iconoir-react/src/WifiTag.tsx +++ b/packages/iconoir-react/src/WifiTag.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWifiTag( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWifiTag = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgWifiTag( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWifiTag); +}; +const ForwardRef = forwardRef(SvgWifiTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/Wind.tsx b/packages/iconoir-react/src/Wind.tsx index 91d338c3..a3995060 100644 --- a/packages/iconoir-react/src/Wind.tsx +++ b/packages/iconoir-react/src/Wind.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWind( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWind = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgWind( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWind); +}; +const ForwardRef = forwardRef(SvgWind); export default ForwardRef; diff --git a/packages/iconoir-react/src/Windows.tsx b/packages/iconoir-react/src/Windows.tsx index 95e9b444..9499bac1 100644 --- a/packages/iconoir-react/src/Windows.tsx +++ b/packages/iconoir-react/src/Windows.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWindows( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWindows = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,22 +13,22 @@ function SvgWindows( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWindows); +}; +const ForwardRef = forwardRef(SvgWindows); export default ForwardRef; diff --git a/packages/iconoir-react/src/Wolf.tsx b/packages/iconoir-react/src/Wolf.tsx index c77fdfd1..46048bfa 100644 --- a/packages/iconoir-react/src/Wolf.tsx +++ b/packages/iconoir-react/src/Wolf.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWolf( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWolf = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgWolf( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWolf); +}; +const ForwardRef = forwardRef(SvgWolf); export default ForwardRef; diff --git a/packages/iconoir-react/src/WomenTShirt.tsx b/packages/iconoir-react/src/WomenTShirt.tsx index 69558fea..5b5dbab1 100644 --- a/packages/iconoir-react/src/WomenTShirt.tsx +++ b/packages/iconoir-react/src/WomenTShirt.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWomenTShirt( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWomenTShirt = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgWomenTShirt( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWomenTShirt); +}; +const ForwardRef = forwardRef(SvgWomenTShirt); export default ForwardRef; diff --git a/packages/iconoir-react/src/WrapText.tsx b/packages/iconoir-react/src/WrapText.tsx index 676e3f5f..3bef23d5 100644 --- a/packages/iconoir-react/src/WrapText.tsx +++ b/packages/iconoir-react/src/WrapText.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWrapText( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWrapText = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgWrapText( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWrapText); +}; +const ForwardRef = forwardRef(SvgWrapText); export default ForwardRef; diff --git a/packages/iconoir-react/src/Wrench.tsx b/packages/iconoir-react/src/Wrench.tsx index ef5f374a..cdc693b3 100644 --- a/packages/iconoir-react/src/Wrench.tsx +++ b/packages/iconoir-react/src/Wrench.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWrench( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWrench = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,31 +13,31 @@ function SvgWrench( }; return ( - + - + ); -} -const ForwardRef = React.forwardRef(SvgWrench); +}; +const ForwardRef = forwardRef(SvgWrench); export default ForwardRef; diff --git a/packages/iconoir-react/src/Wristwatch.tsx b/packages/iconoir-react/src/Wristwatch.tsx index bfa7387a..221d15bb 100644 --- a/packages/iconoir-react/src/Wristwatch.tsx +++ b/packages/iconoir-react/src/Wristwatch.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWristwatch( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWristwatch = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgWristwatch( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgWristwatch); +}; +const ForwardRef = forwardRef(SvgWristwatch); export default ForwardRef; diff --git a/packages/iconoir-react/src/Www.tsx b/packages/iconoir-react/src/Www.tsx index cad516f7..93958534 100644 --- a/packages/iconoir-react/src/Www.tsx +++ b/packages/iconoir-react/src/Www.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgWww( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgWww = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,30 @@ function SvgWww( }; return ( + ); -} -const ForwardRef = React.forwardRef(SvgWww); +}; +const ForwardRef = forwardRef(SvgWww); export default ForwardRef; diff --git a/packages/iconoir-react/src/XCoordinate.tsx b/packages/iconoir-react/src/XCoordinate.tsx index 33f85e0b..135701d5 100644 --- a/packages/iconoir-react/src/XCoordinate.tsx +++ b/packages/iconoir-react/src/XCoordinate.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXCoordinate( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgXCoordinate = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgXCoordinate( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgXCoordinate); +}; +const ForwardRef = forwardRef(SvgXCoordinate); export default ForwardRef; diff --git a/packages/iconoir-react/src/XboxA.tsx b/packages/iconoir-react/src/XboxA.tsx index ee9ac218..649cc76f 100644 --- a/packages/iconoir-react/src/XboxA.tsx +++ b/packages/iconoir-react/src/XboxA.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXboxA( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgXboxA = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgXboxA( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgXboxA); +}; +const ForwardRef = forwardRef(SvgXboxA); export default ForwardRef; diff --git a/packages/iconoir-react/src/XboxB.tsx b/packages/iconoir-react/src/XboxB.tsx index 6311af40..fe0e2879 100644 --- a/packages/iconoir-react/src/XboxB.tsx +++ b/packages/iconoir-react/src/XboxB.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXboxB( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgXboxB = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgXboxB( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgXboxB); +}; +const ForwardRef = forwardRef(SvgXboxB); export default ForwardRef; diff --git a/packages/iconoir-react/src/XboxX.tsx b/packages/iconoir-react/src/XboxX.tsx index dcad1d33..d9a1e3ae 100644 --- a/packages/iconoir-react/src/XboxX.tsx +++ b/packages/iconoir-react/src/XboxX.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXboxX( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgXboxX = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgXboxX( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgXboxX); +}; +const ForwardRef = forwardRef(SvgXboxX); export default ForwardRef; diff --git a/packages/iconoir-react/src/XboxY.tsx b/packages/iconoir-react/src/XboxY.tsx index bbf67a5e..e128676e 100644 --- a/packages/iconoir-react/src/XboxY.tsx +++ b/packages/iconoir-react/src/XboxY.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXboxY( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgXboxY = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgXboxY( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgXboxY); +}; +const ForwardRef = forwardRef(SvgXboxY); export default ForwardRef; diff --git a/packages/iconoir-react/src/XrayView.tsx b/packages/iconoir-react/src/XrayView.tsx index 73022e04..d3360748 100644 --- a/packages/iconoir-react/src/XrayView.tsx +++ b/packages/iconoir-react/src/XrayView.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgXrayView( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgXrayView = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgXrayView( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgXrayView); +}; +const ForwardRef = forwardRef(SvgXrayView); export default ForwardRef; diff --git a/packages/iconoir-react/src/YCoordinate.tsx b/packages/iconoir-react/src/YCoordinate.tsx index abee1486..1e6f5466 100644 --- a/packages/iconoir-react/src/YCoordinate.tsx +++ b/packages/iconoir-react/src/YCoordinate.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYCoordinate( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgYCoordinate = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgYCoordinate( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgYCoordinate); +}; +const ForwardRef = forwardRef(SvgYCoordinate); export default ForwardRef; diff --git a/packages/iconoir-react/src/Yelp.tsx b/packages/iconoir-react/src/Yelp.tsx index 0aa1b773..9b5e1a28 100644 --- a/packages/iconoir-react/src/Yelp.tsx +++ b/packages/iconoir-react/src/Yelp.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYelp( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgYelp = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgYelp( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgYelp); +}; +const ForwardRef = forwardRef(SvgYelp); export default ForwardRef; diff --git a/packages/iconoir-react/src/Yen.tsx b/packages/iconoir-react/src/Yen.tsx index 5d4273e3..b5c2c707 100644 --- a/packages/iconoir-react/src/Yen.tsx +++ b/packages/iconoir-react/src/Yen.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYen( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgYen = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgYen( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgYen); +}; +const ForwardRef = forwardRef(SvgYen); export default ForwardRef; diff --git a/packages/iconoir-react/src/YenSquare.tsx b/packages/iconoir-react/src/YenSquare.tsx index f310ab5f..434343d5 100644 --- a/packages/iconoir-react/src/YenSquare.tsx +++ b/packages/iconoir-react/src/YenSquare.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYenSquare( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgYenSquare = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,28 +13,28 @@ function SvgYenSquare( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgYenSquare); +}; +const ForwardRef = forwardRef(SvgYenSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/Yoga.tsx b/packages/iconoir-react/src/Yoga.tsx index 447992ee..35877918 100644 --- a/packages/iconoir-react/src/Yoga.tsx +++ b/packages/iconoir-react/src/Yoga.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYoga( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgYoga = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,36 +13,36 @@ function SvgYoga( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgYoga); +}; +const ForwardRef = forwardRef(SvgYoga); export default ForwardRef; diff --git a/packages/iconoir-react/src/YouTube.tsx b/packages/iconoir-react/src/YouTube.tsx index 34262898..ac503dac 100644 --- a/packages/iconoir-react/src/YouTube.tsx +++ b/packages/iconoir-react/src/YouTube.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgYouTube( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgYouTube = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,29 +13,29 @@ function SvgYouTube( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgYouTube); +}; +const ForwardRef = forwardRef(SvgYouTube); export default ForwardRef; diff --git a/packages/iconoir-react/src/ZCoordinate.tsx b/packages/iconoir-react/src/ZCoordinate.tsx index 3cfb0a9f..722f6faa 100644 --- a/packages/iconoir-react/src/ZCoordinate.tsx +++ b/packages/iconoir-react/src/ZCoordinate.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgZCoordinate( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgZCoordinate = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,30 +13,30 @@ function SvgZCoordinate( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgZCoordinate); +}; +const ForwardRef = forwardRef(SvgZCoordinate); export default ForwardRef; diff --git a/packages/iconoir-react/src/ZoomIn.tsx b/packages/iconoir-react/src/ZoomIn.tsx index 10d99e78..986b360d 100644 --- a/packages/iconoir-react/src/ZoomIn.tsx +++ b/packages/iconoir-react/src/ZoomIn.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgZoomIn( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgZoomIn = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgZoomIn( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgZoomIn); +}; +const ForwardRef = forwardRef(SvgZoomIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/ZoomOut.tsx b/packages/iconoir-react/src/ZoomOut.tsx index 13472e5d..9469e346 100644 --- a/packages/iconoir-react/src/ZoomOut.tsx +++ b/packages/iconoir-react/src/ZoomOut.tsx @@ -1,9 +1,11 @@ import * as React from "react"; +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; import { IconoirContext } from "./IconoirContext"; -function SvgZoomOut( - passedProps: React.SVGProps, - svgRef?: React.Ref -) { +const SvgZoomOut = ( + passedProps: SVGProps, + ref: Ref +) => { const context = React.useContext(IconoirContext); const props = { ...context, @@ -11,24 +13,24 @@ function SvgZoomOut( }; return ( ); -} -const ForwardRef = React.forwardRef(SvgZoomOut); +}; +const ForwardRef = forwardRef(SvgZoomOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/index.ts b/packages/iconoir-react/src/index.ts new file mode 100644 index 00000000..efb2c8d5 --- /dev/null +++ b/packages/iconoir-react/src/index.ts @@ -0,0 +1,1376 @@ +export { default as Svg3DAddHole } from './3DAddHole'; +export { default as Svg3DArcCenterPt } from './3DArcCenterPt'; +export { default as Svg3DArc } from './3DArc'; +export { default as Svg3DBridge } from './3DBridge'; +export { default as Svg3DCenterBox } from './3DCenterBox'; +export { default as Svg3DDraftFace } from './3DDraftFace'; +export { default as Svg3DEllipseThreePts } from './3DEllipseThreePts'; +export { default as Svg3DEllipse } from './3DEllipse'; +export { default as Svg3DPtBox } from './3DPtBox'; +export { default as Svg3DRectCornerToCorner } from './3DRectCornerToCorner'; +export { default as Svg3DRectFromCenter } from './3DRectFromCenter'; +export { default as Svg3DRectThreePts } from './3DRectThreePts'; +export { default as Svg3DSelectEdge } from './3DSelectEdge'; +export { default as Svg3DSelectFace } from './3DSelectFace'; +export { default as Svg3DSelectPoint } from './3DSelectPoint'; +export { default as Svg3DSelectSolid } from './3DSelectSolid'; +export { default as Svg3DThreePtsBox } from './3DThreePtsBox'; +export { default as AccessibilitySign } from './AccessibilitySign'; +export { default as AccessibilityTech } from './AccessibilityTech'; +export { default as Accessibility } from './Accessibility'; +export { default as Activity } from './Activity'; +export { default as AddCircle } from './AddCircle'; +export { default as AddDatabaseScript } from './AddDatabaseScript'; +export { default as AddFolder } from './AddFolder'; +export { default as AddFrame } from './AddFrame'; +export { default as AddHexagon } from './AddHexagon'; +export { default as AddKeyframeAlt } from './AddKeyframeAlt'; +export { default as AddKeyframe } from './AddKeyframe'; +export { default as AddKeyframes } from './AddKeyframes'; +export { default as AddLens } from './AddLens'; +export { default as AddMediaImage } from './AddMediaImage'; +export { default as AddMediaVideo } from './AddMediaVideo'; +export { default as AddPageAlt } from './AddPageAlt'; +export { default as AddPage } from './AddPage'; +export { default as AddPinAlt } from './AddPinAlt'; +export { default as AddSelection } from './AddSelection'; +export { default as AddSquare } from './AddSquare'; +export { default as AddToCart } from './AddToCart'; +export { default as AddUser } from './AddUser'; +export { default as AdobeAfterEffects } from './AdobeAfterEffects'; +export { default as AdobeIllustrator } from './AdobeIllustrator'; +export { default as AdobeIndesign } from './AdobeIndesign'; +export { default as AdobeLightroom } from './AdobeLightroom'; +export { default as AdobePhotoshop } from './AdobePhotoshop'; +export { default as AdobeXd } from './AdobeXd'; +export { default as AfricanTree } from './AfricanTree'; +export { default as Agile } from './Agile'; +export { default as AirConditioner } from './AirConditioner'; +export { default as AirplaneHelix45Deg } from './AirplaneHelix45Deg'; +export { default as AirplaneHelix } from './AirplaneHelix'; +export { default as AirplaneOff } from './AirplaneOff'; +export { default as AirplaneRotation } from './AirplaneRotation'; +export { default as Airplane } from './Airplane'; +export { default as Airplay } from './Airplay'; +export { default as Alarm } from './Alarm'; +export { default as AlbumCarousel } from './AlbumCarousel'; +export { default as AlbumList } from './AlbumList'; +export { default as AlbumOpen } from './AlbumOpen'; +export { default as Album } from './Album'; +export { default as AlignBottomBox } from './AlignBottomBox'; +export { default as AlignCenter } from './AlignCenter'; +export { default as AlignHorizontalCenters } from './AlignHorizontalCenters'; +export { default as AlignHorizontalSpacing } from './AlignHorizontalSpacing'; +export { default as AlignJustify } from './AlignJustify'; +export { default as AlignLeftBox } from './AlignLeftBox'; +export { default as AlignLeft } from './AlignLeft'; +export { default as AlignRightBox } from './AlignRightBox'; +export { default as AlignRight } from './AlignRight'; +export { default as AlignTopBox } from './AlignTopBox'; +export { default as AlignVerticalCenters } from './AlignVerticalCenters'; +export { default as AlignVerticalSpacing } from './AlignVerticalSpacing'; +export { default as AngleTool } from './AngleTool'; +export { default as AntennaOff } from './AntennaOff'; +export { default as AntennaSignalTag } from './AntennaSignalTag'; +export { default as AntennaSignal } from './AntennaSignal'; +export { default as Antenna } from './Antenna'; +export { default as AppNotification } from './AppNotification'; +export { default as AppStore } from './AppStore'; +export { default as AppWindow } from './AppWindow'; +export { default as AppleHalfAlt } from './AppleHalfAlt'; +export { default as AppleHalf } from './AppleHalf'; +export { default as AppleImac2021Side } from './AppleImac2021Side'; +export { default as AppleImac2021 } from './AppleImac2021'; +export { default as AppleMac } from './AppleMac'; +export { default as AppleShortcuts } from './AppleShortcuts'; +export { default as AppleSwift } from './AppleSwift'; +export { default as AppleWallet } from './AppleWallet'; +export { default as Apple } from './Apple'; +export { default as ArSymbol } from './ArSymbol'; +export { default as Arcade } from './Arcade'; +export { default as ArcheryMatch } from './ArcheryMatch'; +export { default as Archery } from './Archery'; +export { default as Archive } from './Archive'; +export { default as AreaSearch } from './AreaSearch'; +export { default as ArrowArchery } from './ArrowArchery'; +export { default as ArrowBlCircle } from './ArrowBlCircle'; +export { default as ArrowBlSquare } from './ArrowBlSquare'; +export { default as ArrowBl } from './ArrowBl'; +export { default as ArrowBrCircle } from './ArrowBrCircle'; +export { default as ArrowBrSquare } from './ArrowBrSquare'; +export { default as ArrowBr } from './ArrowBr'; +export { default as ArrowDownCircle } from './ArrowDownCircle'; +export { default as ArrowDown } from './ArrowDown'; +export { default as ArrowEmailForward } from './ArrowEmailForward'; +export { default as ArrowLeftCircle } from './ArrowLeftCircle'; +export { default as ArrowLeft } from './ArrowLeft'; +export { default as ArrowRightCircle } from './ArrowRightCircle'; +export { default as ArrowRight } from './ArrowRight'; +export { default as ArrowSeparateVertical } from './ArrowSeparateVertical'; +export { default as ArrowSeparate } from './ArrowSeparate'; +export { default as ArrowTlCircle } from './ArrowTlCircle'; +export { default as ArrowTlSquare } from './ArrowTlSquare'; +export { default as ArrowTl } from './ArrowTl'; +export { default as ArrowTrCircle } from './ArrowTrCircle'; +export { default as ArrowTrSquare } from './ArrowTrSquare'; +export { default as ArrowTr } from './ArrowTr'; +export { default as ArrowUnionVertical } from './ArrowUnionVertical'; +export { default as ArrowUnion } from './ArrowUnion'; +export { default as ArrowUpCircle } from './ArrowUpCircle'; +export { default as ArrowUp } from './ArrowUp'; +export { default as ArrowsUpFromLine } from './ArrowsUpFromLine'; +export { default as Asana } from './Asana'; +export { default as AtSignCircle } from './AtSignCircle'; +export { default as AtSign } from './AtSign'; +export { default as Atom } from './Atom'; +export { default as Attachment } from './Attachment'; +export { default as AugmentedReality } from './AugmentedReality'; +export { default as AutoFlash } from './AutoFlash'; +export { default as AviFormat } from './AviFormat'; +export { default as Axes } from './Axes'; +export { default as Backward15Seconds } from './Backward15Seconds'; +export { default as Bag } from './Bag'; +export { default as Balcony } from './Balcony'; +export { default as Bank } from './Bank'; +export { default as Barcode } from './Barcode'; +export { default as BasketballAlt } from './BasketballAlt'; +export { default as BasketballField } from './BasketballField'; +export { default as Basketball } from './Basketball'; +export { default as Bathroom } from './Bathroom'; +export { default as Battery25 } from './Battery25'; +export { default as Battery50 } from './Battery50'; +export { default as Battery75 } from './Battery75'; +export { default as BatteryCharging } from './BatteryCharging'; +export { default as BatteryEmpty } from './BatteryEmpty'; +export { default as BatteryFull } from './BatteryFull'; +export { default as BatteryIndicator } from './BatteryIndicator'; +export { default as BatteryWarning } from './BatteryWarning'; +export { default as Bbq } from './Bbq'; +export { default as BeachBagBig } from './BeachBagBig'; +export { default as BeachBag } from './BeachBag'; +export { default as BedReady } from './BedReady'; +export { default as Bed } from './Bed'; +export { default as BehanceTag } from './BehanceTag'; +export { default as Behance } from './Behance'; +export { default as BellNotification } from './BellNotification'; +export { default as BellOff } from './BellOff'; +export { default as Bell } from './Bell'; +export { default as Bicycle } from './Bicycle'; +export { default as BinAdd } from './BinAdd'; +export { default as BinFull } from './BinFull'; +export { default as BinHalf } from './BinHalf'; +export { default as BinMinus } from './BinMinus'; +export { default as Bin } from './Bin'; +export { default as Binocular } from './Binocular'; +export { default as BirthdayCake } from './BirthdayCake'; +export { default as Bishop } from './Bishop'; +export { default as Bitbucket } from './Bitbucket'; +export { default as BitcoinCircle } from './BitcoinCircle'; +export { default as BitcoinRotateOut } from './BitcoinRotateOut'; +export { default as BluetoothTag } from './BluetoothTag'; +export { default as Bluetooth } from './Bluetooth'; +export { default as BoldSquare } from './BoldSquare'; +export { default as Bold } from './Bold'; +export { default as Bonfire } from './Bonfire'; +export { default as BookStack } from './BookStack'; +export { default as Book } from './Book'; +export { default as BookmarkBook } from './BookmarkBook'; +export { default as BookmarkCircle } from './BookmarkCircle'; +export { default as BookmarkEmpty } from './BookmarkEmpty'; +export { default as BorderBl } from './BorderBl'; +export { default as BorderBottom } from './BorderBottom'; +export { default as BorderBr } from './BorderBr'; +export { default as BorderInner } from './BorderInner'; +export { default as BorderLeft } from './BorderLeft'; +export { default as BorderOut } from './BorderOut'; +export { default as BorderRight } from './BorderRight'; +export { default as BorderTl } from './BorderTl'; +export { default as BorderTop } from './BorderTop'; +export { default as BorderTr } from './BorderTr'; +export { default as BounceLeft } from './BounceLeft'; +export { default as BounceRight } from './BounceRight'; +export { default as BowlingBall } from './BowlingBall'; +export { default as BoxIso } from './BoxIso'; +export { default as Box } from './Box'; +export { default as BoxingGlove } from './BoxingGlove'; +export { default as BrainElectricity } from './BrainElectricity'; +export { default as BrainResearch } from './BrainResearch'; +export { default as BrainWarning } from './BrainWarning'; +export { default as Brain } from './Brain'; +export { default as BreadSlice } from './BreadSlice'; +export { default as BridgeSurface } from './BridgeSurface'; +export { default as BrightCrown } from './BrightCrown'; +export { default as BrightStar } from './BrightStar'; +export { default as BrightnessWindow } from './BrightnessWindow'; +export { default as Brightness } from './Brightness'; +export { default as BubbleDownload } from './BubbleDownload'; +export { default as BubbleError } from './BubbleError'; +export { default as BubbleIncome } from './BubbleIncome'; +export { default as BubbleOutcome } from './BubbleOutcome'; +export { default as BubbleSearch } from './BubbleSearch'; +export { default as BubbleStar } from './BubbleStar'; +export { default as BubbleUpload } from './BubbleUpload'; +export { default as BubbleWarning } from './BubbleWarning'; +export { default as Building } from './Building'; +export { default as BusStop } from './BusStop'; +export { default as Bus } from './Bus'; +export { default as CableTag } from './CableTag'; +export { default as Calculator } from './Calculator'; +export { default as CalendarMinus } from './CalendarMinus'; +export { default as CalendarPlus } from './CalendarPlus'; +export { default as Calendar } from './Calendar'; +export { default as Camera } from './Camera'; +export { default as Cancel } from './Cancel'; +export { default as CandlestickChart } from './CandlestickChart'; +export { default as Car } from './Car'; +export { default as Carbon } from './Carbon'; +export { default as CardIssue } from './CardIssue'; +export { default as CardLocked } from './CardLocked'; +export { default as CardReader } from './CardReader'; +export { default as CardSecurity } from './CardSecurity'; +export { default as CardWallet } from './CardWallet'; +export { default as CartAlt } from './CartAlt'; +export { default as Cart } from './Cart'; +export { default as Cash } from './Cash'; +export { default as Cell2X2 } from './Cell2X2'; +export { default as Cellar } from './Cellar'; +export { default as CenterAlign } from './CenterAlign'; +export { default as ChatAdd } from './ChatAdd'; +export { default as ChatBubbleCheck1 } from './ChatBubbleCheck1'; +export { default as ChatBubbleCheck } from './ChatBubbleCheck'; +export { default as ChatBubbleEmpty } from './ChatBubbleEmpty'; +export { default as ChatBubbleError } from './ChatBubbleError'; +export { default as ChatBubbleQuestion } from './ChatBubbleQuestion'; +export { default as ChatBubbleTranslate } from './ChatBubbleTranslate'; +export { default as ChatBubbleWarning } from './ChatBubbleWarning'; +export { default as ChatBubble } from './ChatBubble'; +export { default as ChatLines } from './ChatLines'; +export { default as ChatRemove } from './ChatRemove'; +export { default as CheckCircle } from './CheckCircle'; +export { default as CheckWindow } from './CheckWindow'; +export { default as Check } from './Check'; +export { default as Chocolate } from './Chocolate'; +export { default as ChromecastActive } from './ChromecastActive'; +export { default as Chromecast } from './Chromecast'; +export { default as ChurchAlt } from './ChurchAlt'; +export { default as Church } from './Church'; +export { default as CinemaOld } from './CinemaOld'; +export { default as CircleSpark } from './CircleSpark'; +export { default as Circle } from './Circle'; +export { default as City } from './City'; +export { default as CleanWater } from './CleanWater'; +export { default as ClipboardCheck } from './ClipboardCheck'; +export { default as ClockRotateRight } from './ClockRotateRight'; +export { default as Clock } from './Clock'; +export { default as ClosedCaptions } from './ClosedCaptions'; +export { default as Closet } from './Closet'; +export { default as CloudBookAlt } from './CloudBookAlt'; +export { default as CloudCheck } from './CloudCheck'; +export { default as CloudDesync } from './CloudDesync'; +export { default as CloudDownload } from './CloudDownload'; +export { default as CloudError } from './CloudError'; +export { default as CloudSunny } from './CloudSunny'; +export { default as CloudSync } from './CloudSync'; +export { default as CloudUpload } from './CloudUpload'; +export { default as Cloud } from './Cloud'; +export { default as Clutery } from './Clutery'; +export { default as CodeBracketsSquare } from './CodeBracketsSquare'; +export { default as CodeBrackets } from './CodeBrackets'; +export { default as Code } from './Code'; +export { default as Codepen } from './Codepen'; +export { default as CoffeeCup } from './CoffeeCup'; +export { default as Coin } from './Coin'; +export { default as CoinsSwap } from './CoinsSwap'; +export { default as Coins } from './Coins'; +export { default as CollageFrame } from './CollageFrame'; +export { default as Collapse } from './Collapse'; +export { default as ColorFilter } from './ColorFilter'; +export { default as ColorPickerEmpty } from './ColorPickerEmpty'; +export { default as ColorPicker } from './ColorPicker'; +export { default as ColorWheel } from './ColorWheel'; +export { default as Combine } from './Combine'; +export { default as Commodity } from './Commodity'; +export { default as Community } from './Community'; +export { default as CompAlignBottom } from './CompAlignBottom'; +export { default as CompAlignLeft } from './CompAlignLeft'; +export { default as CompAlignRight } from './CompAlignRight'; +export { default as CompAlignTop } from './CompAlignTop'; +export { default as CompactDisc } from './CompactDisc'; +export { default as Compass } from './Compass'; +export { default as Component } from './Component'; +export { default as CompressLines } from './CompressLines'; +export { default as Compress } from './Compress'; +export { default as Computer } from './Computer'; +export { default as ConstrainedSurface } from './ConstrainedSurface'; +export { default as Consumable } from './Consumable'; +export { default as Contactless } from './Contactless'; +export { default as ControlSlider } from './ControlSlider'; +export { default as Cookie } from './Cookie'; +export { default as Cooling } from './Cooling'; +export { default as Copy } from './Copy'; +export { default as Copyright } from './Copyright'; +export { default as CornerBottomLeft } from './CornerBottomLeft'; +export { default as CornerBottomRight } from './CornerBottomRight'; +export { default as CornerTopLeft } from './CornerTopLeft'; +export { default as CornerTopRight } from './CornerTopRight'; +export { default as CpuWarning } from './CpuWarning'; +export { default as Cpu } from './Cpu'; +export { default as CrackedEgg } from './CrackedEgg'; +export { default as CreativeCommons } from './CreativeCommons'; +export { default as CreditCard } from './CreditCard'; +export { default as CreditCards } from './CreditCards'; +export { default as Crib } from './Crib'; +export { default as CropRotateBl } from './CropRotateBl'; +export { default as CropRotateBr } from './CropRotateBr'; +export { default as CropRotateTl } from './CropRotateTl'; +export { default as CropRotateTr } from './CropRotateTr'; +export { default as Crop } from './Crop'; +export { default as CrownCircle } from './CrownCircle'; +export { default as Crown } from './Crown'; +export { default as Css3 } from './Css3'; +export { default as CubeReplaceFace } from './CubeReplaceFace'; +export { default as CursorPointer } from './CursorPointer'; +export { default as CurveArray } from './CurveArray'; +export { default as CutAlt } from './CutAlt'; +export { default as CutSolidWithCurve } from './CutSolidWithCurve'; +export { default as Cut } from './Cut'; +export { default as Cycling } from './Cycling'; +export { default as Cylinder } from './Cylinder'; +export { default as DashFlag } from './DashFlag'; +export { default as DashboardDots } from './DashboardDots'; +export { default as DashboardSpeed } from './DashboardSpeed'; +export { default as Dashboard } from './Dashboard'; +export { default as DataTransferBoth } from './DataTransferBoth'; +export { default as DataTransferCheck } from './DataTransferCheck'; +export { default as DataTransferDown } from './DataTransferDown'; +export { default as DataTransferUp } from './DataTransferUp'; +export { default as DataTransferWarning } from './DataTransferWarning'; +export { default as DatabaseBackup } from './DatabaseBackup'; +export { default as DatabaseExport } from './DatabaseExport'; +export { default as DatabaseMonitor } from './DatabaseMonitor'; +export { default as DatabaseRestore } from './DatabaseRestore'; +export { default as DatabaseScript } from './DatabaseScript'; +export { default as DatabaseSettings } from './DatabaseSettings'; +export { default as DatabaseStar } from './DatabaseStar'; +export { default as DatabaseStats } from './DatabaseStats'; +export { default as DatabaseTag } from './DatabaseTag'; +export { default as DbCheck } from './DbCheck'; +export { default as DbError } from './DbError'; +export { default as DbSearch } from './DbSearch'; +export { default as DbStar } from './DbStar'; +export { default as DbWarning } from './DbWarning'; +export { default as Db } from './Db'; +export { default as DeCompress } from './DeCompress'; +export { default as DeleteCircle } from './DeleteCircle'; +export { default as DeliveryTruck } from './DeliveryTruck'; +export { default as Delivery } from './Delivery'; +export { default as Depth } from './Depth'; +export { default as DesignNib } from './DesignNib'; +export { default as DesignPencil } from './DesignPencil'; +export { default as Desk } from './Desk'; +export { default as DevModeLaptop } from './DevModeLaptop'; +export { default as DevModePhone } from './DevModePhone'; +export { default as Developer } from './Developer'; +export { default as DewPoint } from './DewPoint'; +export { default as Dialpad } from './Dialpad'; +export { default as Diameter } from './Diameter'; +export { default as DiceFive } from './DiceFive'; +export { default as DiceFour } from './DiceFour'; +export { default as DiceOne } from './DiceOne'; +export { default as DiceSix } from './DiceSix'; +export { default as DiceThree } from './DiceThree'; +export { default as DiceTwo } from './DiceTwo'; +export { default as DimmerSwitch } from './DimmerSwitch'; +export { default as DirectorChair } from './DirectorChair'; +export { default as Discord } from './Discord'; +export { default as Dishwasher } from './Dishwasher'; +export { default as Display4K } from './Display4K'; +export { default as DivideSelection1 } from './DivideSelection1'; +export { default as DivideSelection2 } from './DivideSelection2'; +export { default as DivideThree } from './DivideThree'; +export { default as Divide } from './Divide'; +export { default as Dna } from './Dna'; +export { default as DocSearchAlt } from './DocSearchAlt'; +export { default as DocSearch } from './DocSearch'; +export { default as DocStarAlt } from './DocStarAlt'; +export { default as DocStar } from './DocStar'; +export { default as DogecoinCircle } from './DogecoinCircle'; +export { default as DogecoinRotateOut } from './DogecoinRotateOut'; +export { default as Dollar } from './Dollar'; +export { default as DomoticIssue } from './DomoticIssue'; +export { default as Donate } from './Donate'; +export { default as DoubleCheck } from './DoubleCheck'; +export { default as DownRoundArrow } from './DownRoundArrow'; +export { default as DownloadCircle } from './DownloadCircle'; +export { default as DownloadDataWindow } from './DownloadDataWindow'; +export { default as DownloadSquare } from './DownloadSquare'; +export { default as Download } from './Download'; +export { default as DragHandGesture } from './DragHandGesture'; +export { default as Drag } from './Drag'; +export { default as Drawer } from './Drawer'; +export { default as Dribbble } from './Dribbble'; +export { default as DroneChargeFull } from './DroneChargeFull'; +export { default as DroneChargeHalf } from './DroneChargeHalf'; +export { default as DroneChargeLow } from './DroneChargeLow'; +export { default as DroneCheck } from './DroneCheck'; +export { default as DroneError } from './DroneError'; +export { default as DroneLanding } from './DroneLanding'; +export { default as DroneRefresh } from './DroneRefresh'; +export { default as DroneTakeOff } from './DroneTakeOff'; +export { default as Drone } from './Drone'; +export { default as DropletHalf } from './DropletHalf'; +export { default as Droplet } from './Droplet'; +export { default as EaseCurveControlPoints } from './EaseCurveControlPoints'; +export { default as EaseInControlPoint } from './EaseInControlPoint'; +export { default as EaseInOut } from './EaseInOut'; +export { default as EaseIn } from './EaseIn'; +export { default as EaseOutControlPoint } from './EaseOutControlPoint'; +export { default as EaseOut } from './EaseOut'; +export { default as EcologyBook } from './EcologyBook'; +export { default as EditPencil } from './EditPencil'; +export { default as Edit } from './Edit'; +export { default as Egg } from './Egg'; +export { default as Eject } from './Eject'; +export { default as ElectronicsChip } from './ElectronicsChip'; +export { default as ElectronicsTransistor } from './ElectronicsTransistor'; +export { default as Elevator } from './Elevator'; +export { default as EmojiBall } from './EmojiBall'; +export { default as EmojiBlinkLeft } from './EmojiBlinkLeft'; +export { default as EmojiBlinkRight } from './EmojiBlinkRight'; +export { default as EmojiLookDown } from './EmojiLookDown'; +export { default as EmojiLookLeft } from './EmojiLookLeft'; +export { default as EmojiLookRight } from './EmojiLookRight'; +export { default as EmojiLookUp } from './EmojiLookUp'; +export { default as EmojiPuzzled } from './EmojiPuzzled'; +export { default as EmojiQuite } from './EmojiQuite'; +export { default as EmojiReally } from './EmojiReally'; +export { default as EmojiSad } from './EmojiSad'; +export { default as EmojiSatisfied } from './EmojiSatisfied'; +export { default as EmojiSingLeftNote } from './EmojiSingLeftNote'; +export { default as EmojiSingLeft } from './EmojiSingLeft'; +export { default as EmojiSingRightNote } from './EmojiSingRightNote'; +export { default as EmojiSingRight } from './EmojiSingRight'; +export { default as EmojiSurpriseAlt } from './EmojiSurpriseAlt'; +export { default as EmojiSurprise } from './EmojiSurprise'; +export { default as EmojiTalkingAngry } from './EmojiTalkingAngry'; +export { default as EmojiTalkingHappy } from './EmojiTalkingHappy'; +export { default as EmojiThinkLeft } from './EmojiThinkLeft'; +export { default as EmojiThinkRight } from './EmojiThinkRight'; +export { default as Emoji } from './Emoji'; +export { default as EmptyPage } from './EmptyPage'; +export { default as EnergyUsageWindow } from './EnergyUsageWindow'; +export { default as EnlargeRoundArrow } from './EnlargeRoundArrow'; +export { default as Enlarge } from './Enlarge'; +export { default as Erase } from './Erase'; +export { default as ErrorWindow } from './ErrorWindow'; +export { default as EthereumCircle } from './EthereumCircle'; +export { default as EthereumRotateOut } from './EthereumRotateOut'; +export { default as EuroSquare } from './EuroSquare'; +export { default as Euro } from './Euro'; +export { default as EvChargeAlt } from './EvChargeAlt'; +export { default as EvCharge } from './EvCharge'; +export { default as EvPlugCharging } from './EvPlugCharging'; +export { default as EvPlugError } from './EvPlugError'; +export { default as EvPlug } from './EvPlug'; +export { default as EvStation } from './EvStation'; +export { default as EvTag } from './EvTag'; +export { default as Exclude } from './Exclude'; +export { default as ExpandLines } from './ExpandLines'; +export { default as Expand } from './Expand'; +export { default as Extrude } from './Extrude'; +export { default as EyeAlt } from './EyeAlt'; +export { default as EyeClose } from './EyeClose'; +export { default as EyeEmpty } from './EyeEmpty'; +export { default as EyeOff } from './EyeOff'; +export { default as FaceId } from './FaceId'; +export { default as FacebookTag } from './FacebookTag'; +export { default as Facebook } from './Facebook'; +export { default as Facetime } from './Facetime'; +export { default as Farm } from './Farm'; +export { default as FastArrowDownBox } from './FastArrowDownBox'; +export { default as FastArrowDown } from './FastArrowDown'; +export { default as FastArrowLeftBox } from './FastArrowLeftBox'; +export { default as FastArrowLeft } from './FastArrowLeft'; +export { default as FastArrowRightBox } from './FastArrowRightBox'; +export { default as FastArrowRight } from './FastArrowRight'; +export { default as FastArrowUpBox } from './FastArrowUpBox'; +export { default as FastArrowUp } from './FastArrowUp'; +export { default as FastDownCircle } from './FastDownCircle'; +export { default as FastLeftCircle } from './FastLeftCircle'; +export { default as FastRightCircle } from './FastRightCircle'; +export { default as FastUpCircle } from './FastUpCircle'; +export { default as FavouriteBook } from './FavouriteBook'; +export { default as FavouriteWindow } from './FavouriteWindow'; +export { default as Female } from './Female'; +export { default as Figma } from './Figma'; +export { default as FileNotFound } from './FileNotFound'; +export { default as FillColor } from './FillColor'; +export { default as Fillet3D } from './Fillet3D'; +export { default as FilterAlt } from './FilterAlt'; +export { default as FilterListCircle } from './FilterListCircle'; +export { default as FilterList } from './FilterList'; +export { default as Filter } from './Filter'; +export { default as Finder } from './Finder'; +export { default as FingerprintCheckCircle } from './FingerprintCheckCircle'; +export { default as FingerprintCircle } from './FingerprintCircle'; +export { default as FingerprintErrorCircle } from './FingerprintErrorCircle'; +export { default as FingerprintLockCircle } from './FingerprintLockCircle'; +export { default as FingerprintPhone } from './FingerprintPhone'; +export { default as FingerprintScan } from './FingerprintScan'; +export { default as FingerprintSquare } from './FingerprintSquare'; +export { default as FingerprintWindow } from './FingerprintWindow'; +export { default as Fingerprint } from './Fingerprint'; +export { default as FireFlame } from './FireFlame'; +export { default as Fish } from './Fish'; +export { default as Fishing } from './Fishing'; +export { default as Flare } from './Flare'; +export { default as FlashOff } from './FlashOff'; +export { default as Flash } from './Flash'; +export { default as Flask } from './Flask'; +export { default as FlipReverse } from './FlipReverse'; +export { default as Flip } from './Flip'; +export { default as Flower } from './Flower'; +export { default as Fluorine } from './Fluorine'; +export { default as Fog } from './Fog'; +export { default as FolderAlert } from './FolderAlert'; +export { default as FolderSettings } from './FolderSettings'; +export { default as Folder } from './Folder'; +export { default as FontSize } from './FontSize'; +export { default as FootballBall } from './FootballBall'; +export { default as Football } from './Football'; +export { default as Forward15Seconds } from './Forward15Seconds'; +export { default as ForwardMessage } from './ForwardMessage'; +export { default as Forward } from './Forward'; +export { default as FrameAltEmpty } from './FrameAltEmpty'; +export { default as FrameAlt } from './FrameAlt'; +export { default as FrameSelect } from './FrameSelect'; +export { default as FrameSimple } from './FrameSimple'; +export { default as FrameTool } from './FrameTool'; +export { default as Frame } from './Frame'; +export { default as Fridge } from './Fridge'; +export { default as FxTag } from './FxTag'; +export { default as Fx } from './Fx'; +export { default as Gamepad } from './Gamepad'; +export { default as Garage } from './Garage'; +export { default as GasTankDrop } from './GasTankDrop'; +export { default as GasTank } from './GasTank'; +export { default as Gas } from './Gas'; +export { default as GifFormat } from './GifFormat'; +export { default as Gift } from './Gift'; +export { default as GitBranch } from './GitBranch'; +export { default as GitCherryPickCommit } from './GitCherryPickCommit'; +export { default as GitCommand } from './GitCommand'; +export { default as GitCommit } from './GitCommit'; +export { default as GitCompare } from './GitCompare'; +export { default as GitFork } from './GitFork'; +export { default as GitMerge } from './GitMerge'; +export { default as GitPullRequestClosed } from './GitPullRequestClosed'; +export { default as GitPullRequest } from './GitPullRequest'; +export { default as GitHub } from './GitHub'; +export { default as GitLabFull } from './GitLabFull'; +export { default as GithubCircle } from './GithubCircle'; +export { default as GlassEmpty } from './GlassEmpty'; +export { default as GlassFragile } from './GlassFragile'; +export { default as GlassHalfAlt } from './GlassHalfAlt'; +export { default as GlassHalf } from './GlassHalf'; +export { default as Glasses } from './Glasses'; +export { default as Globe } from './Globe'; +export { default as Golf } from './Golf'; +export { default as GoogleCircle } from './GoogleCircle'; +export { default as GoogleDocs } from './GoogleDocs'; +export { default as GoogleDriveCheck } from './GoogleDriveCheck'; +export { default as GoogleDriveSync } from './GoogleDriveSync'; +export { default as GoogleDriveWarning } from './GoogleDriveWarning'; +export { default as GoogleDrive } from './GoogleDrive'; +export { default as GoogleHome } from './GoogleHome'; +export { default as GoogleOne } from './GoogleOne'; +export { default as Google } from './Google'; +export { default as Gps } from './Gps'; +export { default as GraduationCap } from './GraduationCap'; +export { default as GraphDown } from './GraphDown'; +export { default as GraphUp } from './GraphUp'; +export { default as GreenBus } from './GreenBus'; +export { default as GreenTruck } from './GreenTruck'; +export { default as GreenVehicle } from './GreenVehicle'; +export { default as GridAdd } from './GridAdd'; +export { default as GridMinus } from './GridMinus'; +export { default as GridRemove } from './GridRemove'; +export { default as Group } from './Group'; +export { default as Gym } from './Gym'; +export { default as HalfCookie } from './HalfCookie'; +export { default as HalfMoon } from './HalfMoon'; +export { default as Hammer } from './Hammer'; +export { default as HandBrake } from './HandBrake'; +export { default as HandCard } from './HandCard'; +export { default as HandCash } from './HandCash'; +export { default as HandContactless } from './HandContactless'; +export { default as Handbag } from './Handbag'; +export { default as HardDrive } from './HardDrive'; +export { default as Hat } from './Hat'; +export { default as HdDisplay } from './HdDisplay'; +export { default as Hd } from './Hd'; +export { default as Hdr } from './Hdr'; +export { default as HeadsetCharge } from './HeadsetCharge'; +export { default as HeadsetHelp } from './HeadsetHelp'; +export { default as HeadsetIssue } from './HeadsetIssue'; +export { default as Headset } from './Headset'; +export { default as HealthShield } from './HealthShield'; +export { default as Healthcare } from './Healthcare'; +export { default as HeartArrowDown } from './HeartArrowDown'; +export { default as Heart } from './Heart'; +export { default as Heating } from './Heating'; +export { default as HeavyRain } from './HeavyRain'; +export { default as HelpCircle } from './HelpCircle'; +export { default as HelpSquare } from './HelpSquare'; +export { default as Heptagon } from './Heptagon'; +export { default as HerSlips } from './HerSlips'; +export { default as HexagonAlt } from './HexagonAlt'; +export { default as HexagonDice } from './HexagonDice'; +export { default as Hexagon } from './Hexagon'; +export { default as HighPriority } from './HighPriority'; +export { default as HistoricShieldAlt } from './HistoricShieldAlt'; +export { default as HistoricShield } from './HistoricShield'; +export { default as HomeAltSlimHoriz } from './HomeAltSlimHoriz'; +export { default as HomeAltSlim } from './HomeAltSlim'; +export { default as HomeAlt } from './HomeAlt'; +export { default as HomeHospital } from './HomeHospital'; +export { default as HomeSale } from './HomeSale'; +export { default as HomeSecure } from './HomeSecure'; +export { default as HomeShield } from './HomeShield'; +export { default as HomeSimpleDoor } from './HomeSimpleDoor'; +export { default as HomeSimple } from './HomeSimple'; +export { default as HomeTable } from './HomeTable'; +export { default as HomeTemperatureIn } from './HomeTemperatureIn'; +export { default as HomeTemperatureOut } from './HomeTemperatureOut'; +export { default as HomeUser } from './HomeUser'; +export { default as Home } from './Home'; +export { default as HorizDistributionLeft } from './HorizDistributionLeft'; +export { default as HorizDistributionRight } from './HorizDistributionRight'; +export { default as HorizontalMerge } from './HorizontalMerge'; +export { default as HorizontalSplit } from './HorizontalSplit'; +export { default as HospitalSign } from './HospitalSign'; +export { default as Hospital } from './Hospital'; +export { default as HotAirBalloon } from './HotAirBalloon'; +export { default as Hourglass } from './Hourglass'; +export { default as HouseRooms } from './HouseRooms'; +export { default as Html5 } from './Html5'; +export { default as Hydrogen } from './Hydrogen'; +export { default as Iconoir } from './Iconoir'; +export { default as Import } from './Import'; +export { default as Inclination } from './Inclination'; +export { default as Industry } from './Industry'; +export { default as Infinite } from './Infinite'; +export { default as InfoEmpty } from './InfoEmpty'; +export { default as InputField } from './InputField'; +export { default as InputOutput } from './InputOutput'; +export { default as InputSearch } from './InputSearch'; +export { default as Instagram } from './Instagram'; +export { default as Internet } from './Internet'; +export { default as IntersectAlt } from './IntersectAlt'; +export { default as Intersect } from './Intersect'; +export { default as IosSettings } from './IosSettings'; +export { default as IpAddress } from './IpAddress'; +export { default as IrisScan } from './IrisScan'; +export { default as ItalicSquare } from './ItalicSquare'; +export { default as Italic } from './Italic'; +export { default as Jellyfish } from './Jellyfish'; +export { default as JournalPage } from './JournalPage'; +export { default as Journal } from './Journal'; +export { default as JpegFormat } from './JpegFormat'; +export { default as JpgFormat } from './JpgFormat'; +export { default as KanbanBoard } from './KanbanBoard'; +export { default as KeyAltBack } from './KeyAltBack'; +export { default as KeyAltMinus } from './KeyAltMinus'; +export { default as KeyAltPlus } from './KeyAltPlus'; +export { default as KeyAltRemove } from './KeyAltRemove'; +export { default as KeyAlt } from './KeyAlt'; +export { default as KeyCommand } from './KeyCommand'; +export { default as KeyframeAlignCenter } from './KeyframeAlignCenter'; +export { default as KeyframeAlignHorizontal } from './KeyframeAlignHorizontal'; +export { default as KeyframeAlignVertical } from './KeyframeAlignVertical'; +export { default as KeyframePosition } from './KeyframePosition'; +export { default as Keyframe } from './Keyframe'; +export { default as KeyframesCouple } from './KeyframesCouple'; +export { default as Keyframes } from './Keyframes'; +export { default as Label } from './Label'; +export { default as Lamp } from './Lamp'; +export { default as Language } from './Language'; +export { default as LaptopCharging } from './LaptopCharging'; +export { default as LaptopFix } from './LaptopFix'; +export { default as LaptopIssue } from './LaptopIssue'; +export { default as Laptop } from './Laptop'; +export { default as LargeSuitcase } from './LargeSuitcase'; +export { default as LayoutLeft } from './LayoutLeft'; +export { default as LayoutRight } from './LayoutRight'; +export { default as LeaderboardStar } from './LeaderboardStar'; +export { default as Leaderboard } from './Leaderboard'; +export { default as Leaf } from './Leaf'; +export { default as Learning } from './Learning'; +export { default as LeftRoundArrow } from './LeftRoundArrow'; +export { default as Lens } from './Lens'; +export { default as Lifebelt } from './Lifebelt'; +export { default as LightBulbOff } from './LightBulbOff'; +export { default as LightBulbOn } from './LightBulbOn'; +export { default as LightBulb } from './LightBulb'; +export { default as LineSpace } from './LineSpace'; +export { default as Linear } from './Linear'; +export { default as Link } from './Link'; +export { default as LinkedIn } from './LinkedIn'; +export { default as Linux } from './Linux'; +export { default as ListSelect } from './ListSelect'; +export { default as List } from './List'; +export { default as LitecoinCircle } from './LitecoinCircle'; +export { default as LitecoinRotateOut } from './LitecoinRotateOut'; +export { default as LoadActionFloppy } from './LoadActionFloppy'; +export { default as LockKey } from './LockKey'; +export { default as Lock } from './Lock'; +export { default as LockedBook } from './LockedBook'; +export { default as LockedWindow } from './LockedWindow'; +export { default as Loft3D } from './Loft3D'; +export { default as LogDenied } from './LogDenied'; +export { default as LogIn } from './LogIn'; +export { default as LogOut } from './LogOut'; +export { default as LongArrowDownLeft } from './LongArrowDownLeft'; +export { default as LongArrowDownRight } from './LongArrowDownRight'; +export { default as LongArrowLeftDown } from './LongArrowLeftDown'; +export { default as LongArrowLeftUp } from './LongArrowLeftUp'; +export { default as LongArrowRightDown } from './LongArrowRightDown'; +export { default as LongArrowRightUp1 } from './LongArrowRightUp1'; +export { default as LongArrowRightUp } from './LongArrowRightUp'; +export { default as LongArrowUpLeft } from './LongArrowUpLeft'; +export { default as LongArrowUpRight } from './LongArrowUpRight'; +export { default as LotOfCash } from './LotOfCash'; +export { default as Lullaby } from './Lullaby'; +export { default as MacControlKey } from './MacControlKey'; +export { default as MacDock } from './MacDock'; +export { default as MacOptionKey } from './MacOptionKey'; +export { default as MacOsWindow } from './MacOsWindow'; +export { default as MagicWand } from './MagicWand'; +export { default as MagnetEnergy } from './MagnetEnergy'; +export { default as Magnet } from './Magnet'; +export { default as MailIn } from './MailIn'; +export { default as MailOpened } from './MailOpened'; +export { default as MailOut } from './MailOut'; +export { default as Mail } from './Mail'; +export { default as Male } from './Male'; +export { default as MapIssue } from './MapIssue'; +export { default as Map } from './Map'; +export { default as MapsArrowDiagonal } from './MapsArrowDiagonal'; +export { default as MapsArrowIssue } from './MapsArrowIssue'; +export { default as MapsArrow } from './MapsArrow'; +export { default as MapsGoStraight } from './MapsGoStraight'; +export { default as MapsTurnBack } from './MapsTurnBack'; +export { default as MapsTurnLeft } from './MapsTurnLeft'; +export { default as MapsTurnRight } from './MapsTurnRight'; +export { default as MaskSquare } from './MaskSquare'; +export { default as MastercardCard } from './MastercardCard'; +export { default as MathBook } from './MathBook'; +export { default as Maximize } from './Maximize'; +export { default as Medal1St } from './Medal1St'; +export { default as Medal } from './Medal'; +export { default as MediaImageFolder } from './MediaImageFolder'; +export { default as MediaImageList } from './MediaImageList'; +export { default as MediaImage } from './MediaImage'; +export { default as MediaVideoFolder } from './MediaVideoFolder'; +export { default as MediaVideoList } from './MediaVideoList'; +export { default as MediaVideo } from './MediaVideo'; +export { default as MediumPriority } from './MediumPriority'; +export { default as Medium } from './Medium'; +export { default as Megaphone } from './Megaphone'; +export { default as MenuScale } from './MenuScale'; +export { default as Menu } from './Menu'; +export { default as MessageAlert } from './MessageAlert'; +export { default as MessageText } from './MessageText'; +export { default as Message } from './Message'; +export { default as Metro } from './Metro'; +export { default as MicAdd } from './MicAdd'; +export { default as MicCheck } from './MicCheck'; +export { default as MicMute } from './MicMute'; +export { default as MicRemove } from './MicRemove'; +export { default as MicSpeaking } from './MicSpeaking'; +export { default as MicWarning } from './MicWarning'; +export { default as Mic } from './Mic'; +export { default as Microscope } from './Microscope'; +export { default as Minus1 } from './Minus1'; +export { default as MinusCircle } from './MinusCircle'; +export { default as MinusHexagon } from './MinusHexagon'; +export { default as MinusPinAlt } from './MinusPinAlt'; +export { default as MinusSquare } from './MinusSquare'; +export { default as Minus } from './Minus'; +export { default as Mirror } from './Mirror'; +export { default as MissingFont } from './MissingFont'; +export { default as ModernTv4K } from './ModernTv4K'; +export { default as ModernTv } from './ModernTv'; +export { default as MoneySquare } from './MoneySquare'; +export { default as MoonSat } from './MoonSat'; +export { default as MoreHorizCircle } from './MoreHorizCircle'; +export { default as MoreHoriz } from './MoreHoriz'; +export { default as MoreVertCircle } from './MoreVertCircle'; +export { default as MoreVert } from './MoreVert'; +export { default as Motorcycle } from './Motorcycle'; +export { default as MouseButtonLeft } from './MouseButtonLeft'; +export { default as MouseButtonRight } from './MouseButtonRight'; +export { default as MouseScrollWheel } from './MouseScrollWheel'; +export { default as MoveDown } from './MoveDown'; +export { default as MoveLeft } from './MoveLeft'; +export { default as MoveRight } from './MoveRight'; +export { default as MoveRuler } from './MoveRuler'; +export { default as MoveUp } from './MoveUp'; +export { default as Movie } from './Movie'; +export { default as MpegFormat } from './MpegFormat'; +export { default as MultiBubble } from './MultiBubble'; +export { default as MultiMacOsWindow } from './MultiMacOsWindow'; +export { default as MultiWindow } from './MultiWindow'; +export { default as MultiplePagesAdd } from './MultiplePagesAdd'; +export { default as MultiplePagesDelete } from './MultiplePagesDelete'; +export { default as MultiplePagesEmpty } from './MultiplePagesEmpty'; +export { default as MultiplePagesRemove } from './MultiplePagesRemove'; +export { default as MultiplePages } from './MultiplePages'; +export { default as MusicDoubleNoteAdd } from './MusicDoubleNoteAdd'; +export { default as MusicDoubleNote } from './MusicDoubleNote'; +export { default as MusicNoteAdd } from './MusicNoteAdd'; +export { default as MusicNote } from './MusicNote'; +export { default as NavArrowDown } from './NavArrowDown'; +export { default as NavArrowLeft } from './NavArrowLeft'; +export { default as NavArrowRight } from './NavArrowRight'; +export { default as NavArrowUp } from './NavArrowUp'; +export { default as NavigatorAlt } from './NavigatorAlt'; +export { default as Navigator } from './Navigator'; +export { default as Neighbourhood } from './Neighbourhood'; +export { default as NetworkAlt } from './NetworkAlt'; +export { default as NetworkLeft } from './NetworkLeft'; +export { default as NetworkRight } from './NetworkRight'; +export { default as Network } from './Network'; +export { default as NewTab } from './NewTab'; +export { default as NintendoSwitch } from './NintendoSwitch'; +export { default as Nitrogen } from './Nitrogen'; +export { default as NoAccessWindow } from './NoAccessWindow'; +export { default as NoBattery } from './NoBattery'; +export { default as NoCoin } from './NoCoin'; +export { default as NoCreditCard } from './NoCreditCard'; +export { default as NoLink } from './NoLink'; +export { default as NoLock } from './NoLock'; +export { default as NoSmokingCircle } from './NoSmokingCircle'; +export { default as NoSmoking } from './NoSmoking'; +export { default as NonBinary } from './NonBinary'; +export { default as Notes } from './Notes'; +export { default as NpmSquare } from './NpmSquare'; +export { default as Npm } from './Npm'; +export { default as Number0Square } from './Number0Square'; +export { default as Number1Square } from './Number1Square'; +export { default as Number2Square } from './Number2Square'; +export { default as Number3Square } from './Number3Square'; +export { default as Number4Square } from './Number4Square'; +export { default as Number5Square } from './Number5Square'; +export { default as Number6Square } from './Number6Square'; +export { default as Number7Square } from './Number7Square'; +export { default as Number8Square } from './Number8Square'; +export { default as Number9Square } from './Number9Square'; +export { default as NumberedListLeft } from './NumberedListLeft'; +export { default as NumberedListRight } from './NumberedListRight'; +export { default as Octagon } from './Octagon'; +export { default as OffTag } from './OffTag'; +export { default as OilIndustry } from './OilIndustry'; +export { default as Okrs } from './Okrs'; +export { default as OnTag } from './OnTag'; +export { default as OneFingerSelectHandGesture } from './OneFingerSelectHandGesture'; +export { default as OnePointCircle } from './OnePointCircle'; +export { default as OpenBook } from './OpenBook'; +export { default as OpenInBrowser } from './OpenInBrowser'; +export { default as OpenInWindow } from './OpenInWindow'; +export { default as OpenNewWindow } from './OpenNewWindow'; +export { default as OpenSelectHandGesture } from './OpenSelectHandGesture'; +export { default as OpenVpn } from './OpenVpn'; +export { default as OrangeHalf } from './OrangeHalf'; +export { default as OrangeSliceAlt } from './OrangeSliceAlt'; +export { default as OrangeSlice } from './OrangeSlice'; +export { default as OrganicFoodSquare } from './OrganicFoodSquare'; +export { default as OrganicFood } from './OrganicFood'; +export { default as OrthogonalView } from './OrthogonalView'; +export { default as Oxygen } from './Oxygen'; +export { default as PackageLock } from './PackageLock'; +export { default as Package } from './Package'; +export { default as Packages } from './Packages'; +export { default as Pacman } from './Pacman'; +export { default as PageDown } from './PageDown'; +export { default as PageEdit } from './PageEdit'; +export { default as PageFlip } from './PageFlip'; +export { default as PageLeft } from './PageLeft'; +export { default as PageRight } from './PageRight'; +export { default as PageSearch } from './PageSearch'; +export { default as PageStar } from './PageStar'; +export { default as PageUp } from './PageUp'; +export { default as Page } from './Page'; +export { default as Palette } from './Palette'; +export { default as PanoramaEnlarge } from './PanoramaEnlarge'; +export { default as PanoramaReduce } from './PanoramaReduce'; +export { default as PantsAlt } from './PantsAlt'; +export { default as Pants } from './Pants'; +export { default as Parking } from './Parking'; +export { default as PasswordCursor } from './PasswordCursor'; +export { default as PasswordError } from './PasswordError'; +export { default as PasswordPass } from './PasswordPass'; +export { default as PasteClipboard } from './PasteClipboard'; +export { default as PatchHoles3D } from './PatchHoles3D'; +export { default as PathArrow } from './PathArrow'; +export { default as PauseWindow } from './PauseWindow'; +export { default as Pause } from './Pause'; +export { default as Paypal } from './Paypal'; +export { default as PcCheck } from './PcCheck'; +export { default as PcFirewall } from './PcFirewall'; +export { default as PcMouse } from './PcMouse'; +export { default as PcNoEntry } from './PcNoEntry'; +export { default as PcWarning } from './PcWarning'; +export { default as PeaceHand } from './PeaceHand'; +export { default as PenConnectBluetooth } from './PenConnectBluetooth'; +export { default as PenConnectWifi } from './PenConnectWifi'; +export { default as PenTabletConnectUsb } from './PenTabletConnectUsb'; +export { default as PenTabletConnectWifi } from './PenTabletConnectWifi'; +export { default as PenTablet } from './PenTablet'; +export { default as Pentagon } from './Pentagon'; +export { default as PeopleTag } from './PeopleTag'; +export { default as PercentRotateOut } from './PercentRotateOut'; +export { default as PercentageCircle } from './PercentageCircle'; +export { default as PercentageSquare } from './PercentageSquare'; +export { default as Percentage } from './Percentage'; +export { default as PerspectiveView } from './PerspectiveView'; +export { default as PharmacyCrossCircle } from './PharmacyCrossCircle'; +export { default as PharmacyCrossSquare } from './PharmacyCrossSquare'; +export { default as PhoneAdd } from './PhoneAdd'; +export { default as PhoneDelete } from './PhoneDelete'; +export { default as PhoneDisabled } from './PhoneDisabled'; +export { default as PhoneIncome } from './PhoneIncome'; +export { default as PhoneOutcome } from './PhoneOutcome'; +export { default as PhonePaused } from './PhonePaused'; +export { default as PhoneRemove } from './PhoneRemove'; +export { default as Phone } from './Phone'; +export { default as PiggyBank } from './PiggyBank'; +export { default as Pillow } from './Pillow'; +export { default as PinAlt } from './PinAlt'; +export { default as Pin } from './Pin'; +export { default as PineTree } from './PineTree'; +export { default as Pinterest } from './Pinterest'; +export { default as Pipe3D } from './Pipe3D'; +export { default as PizzaSlice } from './PizzaSlice'; +export { default as PlanetAlt } from './PlanetAlt'; +export { default as PlanetSat } from './PlanetSat'; +export { default as Planet } from './Planet'; +export { default as Planimetry } from './Planimetry'; +export { default as Play } from './Play'; +export { default as PlaylistAdd } from './PlaylistAdd'; +export { default as PlaylistPlay } from './PlaylistPlay'; +export { default as Playlist } from './Playlist'; +export { default as PlaystationGamepad } from './PlaystationGamepad'; +export { default as PlugTypeA } from './PlugTypeA'; +export { default as PlugTypeC } from './PlugTypeC'; +export { default as PlugTypeG } from './PlugTypeG'; +export { default as PlugTypeL } from './PlugTypeL'; +export { default as Plus } from './Plus'; +export { default as PngFormat } from './PngFormat'; +export { default as Pocket } from './Pocket'; +export { default as Podcast } from './Podcast'; +export { default as Pokeball } from './Pokeball'; +export { default as PositionAlign } from './PositionAlign'; +export { default as Position } from './Position'; +export { default as Post } from './Post'; +export { default as Potion } from './Potion'; +export { default as Pound } from './Pound'; +export { default as PrecisionTool } from './PrecisionTool'; +export { default as Presentation } from './Presentation'; +export { default as PrinterAlt } from './PrinterAlt'; +export { default as Printer } from './Printer'; +export { default as PrintingPage } from './PrintingPage'; +export { default as PriorityDown } from './PriorityDown'; +export { default as PriorityUp } from './PriorityUp'; +export { default as PrivacyPolicy } from './PrivacyPolicy'; +export { default as PrivateWifi } from './PrivateWifi'; +export { default as ProfileCircle } from './ProfileCircle'; +export { default as Prohibition } from './Prohibition'; +export { default as ProjectCurve3D } from './ProjectCurve3D'; +export { default as Puzzle } from './Puzzle'; +export { default as QrCode } from './QrCode'; +export { default as QuestionMark } from './QuestionMark'; +export { default as QuoteMessage } from './QuoteMessage'; +export { default as Quote } from './Quote'; +export { default as Radiation } from './Radiation'; +export { default as Radius } from './Radius'; +export { default as Rain } from './Rain'; +export { default as RawFormat } from './RawFormat'; +export { default as ReceiveDollars } from './ReceiveDollars'; +export { default as ReceiveEuros } from './ReceiveEuros'; +export { default as ReceivePounds } from './ReceivePounds'; +export { default as ReceiveYens } from './ReceiveYens'; +export { default as RedoAction } from './RedoAction'; +export { default as RedoCircle } from './RedoCircle'; +export { default as Redo } from './Redo'; +export { default as ReduceRoundArrow } from './ReduceRoundArrow'; +export { default as Reduce } from './Reduce'; +export { default as RefreshCircular } from './RefreshCircular'; +export { default as RefreshDouble } from './RefreshDouble'; +export { default as Refresh } from './Refresh'; +export { default as ReloadWindow } from './ReloadWindow'; +export { default as ReminderHandGesture } from './ReminderHandGesture'; +export { default as RemoveDatabaseScript } from './RemoveDatabaseScript'; +export { default as RemoveFolder } from './RemoveFolder'; +export { default as RemoveFrame } from './RemoveFrame'; +export { default as RemoveFromCart } from './RemoveFromCart'; +export { default as RemoveKeyframeAlt } from './RemoveKeyframeAlt'; +export { default as RemoveKeyframe } from './RemoveKeyframe'; +export { default as RemoveKeyframes } from './RemoveKeyframes'; +export { default as RemoveLink } from './RemoveLink'; +export { default as RemoveMediaImage } from './RemoveMediaImage'; +export { default as RemoveMediaVideo } from './RemoveMediaVideo'; +export { default as RemovePageAlt } from './RemovePageAlt'; +export { default as RemovePage } from './RemovePage'; +export { default as RemovePinAlt } from './RemovePinAlt'; +export { default as RemovePin } from './RemovePin'; +export { default as RemoveSelection } from './RemoveSelection'; +export { default as RemoveSquare } from './RemoveSquare'; +export { default as RemoveUser } from './RemoveUser'; +export { default as RepeatOnce } from './RepeatOnce'; +export { default as Repeat } from './Repeat'; +export { default as ReplyToMessage } from './ReplyToMessage'; +export { default as Reply } from './Reply'; +export { default as ReportColumns } from './ReportColumns'; +export { default as Reports } from './Reports'; +export { default as Repository } from './Repository'; +export { default as Restart } from './Restart'; +export { default as Rewind } from './Rewind'; +export { default as Rhombus } from './Rhombus'; +export { default as RightRoundArrow } from './RightRoundArrow'; +export { default as Rings } from './Rings'; +export { default as Rocket } from './Rocket'; +export { default as Rook } from './Rook'; +export { default as RotateCameraLeft } from './RotateCameraLeft'; +export { default as RotateCameraRight } from './RotateCameraRight'; +export { default as RoundFlask } from './RoundFlask'; +export { default as RoundedMirror } from './RoundedMirror'; +export { default as RssFeedTag } from './RssFeedTag'; +export { default as RssFeed } from './RssFeed'; +export { default as RubikCube } from './RubikCube'; +export { default as RulerAdd } from './RulerAdd'; +export { default as RulerCombine } from './RulerCombine'; +export { default as RulerRemove } from './RulerRemove'; +export { default as Ruler } from './Ruler'; +export { default as Running } from './Running'; +export { default as Safari } from './Safari'; +export { default as SafeArrowLeft } from './SafeArrowLeft'; +export { default as SafeArrowRight } from './SafeArrowRight'; +export { default as SafeOpen } from './SafeOpen'; +export { default as Safe } from './Safe'; +export { default as Sandals } from './Sandals'; +export { default as SaveActionFloppy } from './SaveActionFloppy'; +export { default as SaveFloppyDisk } from './SaveFloppyDisk'; +export { default as ScaleFrameEnlarge } from './ScaleFrameEnlarge'; +export { default as ScaleFrameReduce } from './ScaleFrameReduce'; +export { default as ScanBarcode } from './ScanBarcode'; +export { default as ScanQrCode } from './ScanQrCode'; +export { default as Scanning } from './Scanning'; +export { default as Scarf } from './Scarf'; +export { default as ScissorAlt } from './ScissorAlt'; +export { default as Scissor } from './Scissor'; +export { default as Screenshot } from './Screenshot'; +export { default as SeaAndSun } from './SeaAndSun'; +export { default as SeaWaves } from './SeaWaves'; +export { default as SearchEngine } from './SearchEngine'; +export { default as SearchFont } from './SearchFont'; +export { default as SearchWindow } from './SearchWindow'; +export { default as Search } from './Search'; +export { default as SecureWindow } from './SecureWindow'; +export { default as SecurityPass } from './SecurityPass'; +export { default as SelectWindow } from './SelectWindow'; +export { default as Selection } from './Selection'; +export { default as SelectiveTool } from './SelectiveTool'; +export { default as SendDiagonal } from './SendDiagonal'; +export { default as SendDollars } from './SendDollars'; +export { default as SendEuros } from './SendEuros'; +export { default as SendMail } from './SendMail'; +export { default as SendPounds } from './SendPounds'; +export { default as SendYens } from './SendYens'; +export { default as Send } from './Send'; +export { default as ServerConnection } from './ServerConnection'; +export { default as Server } from './Server'; +export { default as SettingsCloud } from './SettingsCloud'; +export { default as SettingsProfiles } from './SettingsProfiles'; +export { default as Settings } from './Settings'; +export { default as ShareAndroid } from './ShareAndroid'; +export { default as ShareIos } from './ShareIos'; +export { default as ShieldAdd } from './ShieldAdd'; +export { default as ShieldAlert } from './ShieldAlert'; +export { default as ShieldAlt } from './ShieldAlt'; +export { default as ShieldBroken } from './ShieldBroken'; +export { default as ShieldCheck } from './ShieldCheck'; +export { default as ShieldCross } from './ShieldCross'; +export { default as ShieldDownload } from './ShieldDownload'; +export { default as ShieldEye } from './ShieldEye'; +export { default as ShieldLoading } from './ShieldLoading'; +export { default as ShieldMinus } from './ShieldMinus'; +export { default as ShieldQuestion } from './ShieldQuestion'; +export { default as ShieldSearch } from './ShieldSearch'; +export { default as ShieldUpload } from './ShieldUpload'; +export { default as Shield } from './Shield'; +export { default as ShopAlt } from './ShopAlt'; +export { default as Shop } from './Shop'; +export { default as ShoppingBagAdd } from './ShoppingBagAdd'; +export { default as ShoppingBagAlt } from './ShoppingBagAlt'; +export { default as ShoppingBagArrowDown } from './ShoppingBagArrowDown'; +export { default as ShoppingBagArrowUp } from './ShoppingBagArrowUp'; +export { default as ShoppingBagCheck } from './ShoppingBagCheck'; +export { default as ShoppingBagIssue } from './ShoppingBagIssue'; +export { default as ShoppingBagRemove } from './ShoppingBagRemove'; +export { default as ShoppingBag } from './ShoppingBag'; +export { default as ShoppingCodeCheck } from './ShoppingCodeCheck'; +export { default as ShoppingCodeError } from './ShoppingCodeError'; +export { default as ShoppingCode } from './ShoppingCode'; +export { default as ShortPantsAlt } from './ShortPantsAlt'; +export { default as ShortPants } from './ShortPants'; +export { default as Shortcut } from './Shortcut'; +export { default as Shuffle } from './Shuffle'; +export { default as SidebarCollapse } from './SidebarCollapse'; +export { default as SidebarExpand } from './SidebarExpand'; +export { default as SigmaFunction } from './SigmaFunction'; +export { default as SimpleCart } from './SimpleCart'; +export { default as SineWave } from './SineWave'; +export { default as SingleTapGesture } from './SingleTapGesture'; +export { default as Skateboard } from './Skateboard'; +export { default as Skateboarding } from './Skateboarding'; +export { default as SkipNext } from './SkipNext'; +export { default as SkipPrev } from './SkipPrev'; +export { default as Slash } from './Slash'; +export { default as SleeperChair } from './SleeperChair'; +export { default as SmallLampAlt } from './SmallLampAlt'; +export { default as SmallLamp } from './SmallLamp'; +export { default as SmallShopAlt } from './SmallShopAlt'; +export { default as SmallShop } from './SmallShop'; +export { default as SmartphoneDevice } from './SmartphoneDevice'; +export { default as Smoking } from './Smoking'; +export { default as Snapchat } from './Snapchat'; +export { default as SnowFlake } from './SnowFlake'; +export { default as Snow } from './Snow'; +export { default as Soap } from './Soap'; +export { default as SoccerBall } from './SoccerBall'; +export { default as Sofa } from './Sofa'; +export { default as SoilAlt } from './SoilAlt'; +export { default as Soil } from './Soil'; +export { default as SortDown } from './SortDown'; +export { default as SortUp } from './SortUp'; +export { default as Sort } from './Sort'; +export { default as SoundHigh } from './SoundHigh'; +export { default as SoundLow } from './SoundLow'; +export { default as SoundMin } from './SoundMin'; +export { default as SoundOff } from './SoundOff'; +export { default as Spades } from './Spades'; +export { default as Spark } from './Spark'; +export { default as Sparks } from './Sparks'; +export { default as Sphere } from './Sphere'; +export { default as Spiral } from './Spiral'; +export { default as SpockHandGesture } from './SpockHandGesture'; +export { default as Spotify } from './Spotify'; +export { default as SquareCursor } from './SquareCursor'; +export { default as SquareWave } from './SquareWave'; +export { default as Square } from './Square'; +export { default as Stackoverflow } from './Stackoverflow'; +export { default as StarDashed } from './StarDashed'; +export { default as StarHalfDashed } from './StarHalfDashed'; +export { default as Star } from './Star'; +export { default as StatDown } from './StatDown'; +export { default as StatUp } from './StatUp'; +export { default as StatsDownSquare } from './StatsDownSquare'; +export { default as StatsReport } from './StatsReport'; +export { default as StatsUpSquare } from './StatsUpSquare'; +export { default as Strategy } from './Strategy'; +export { default as Stretching } from './Stretching'; +export { default as Strikethrough } from './Strikethrough'; +export { default as Stroller } from './Stroller'; +export { default as StyleBorder } from './StyleBorder'; +export { default as SubmitDocument } from './SubmitDocument'; +export { default as Substract } from './Substract'; +export { default as Suggestion } from './Suggestion'; +export { default as SunLight } from './SunLight'; +export { default as SvgFormat } from './SvgFormat'; +export { default as Sweep3D } from './Sweep3D'; +export { default as Swimming } from './Swimming'; +export { default as SwipeDownGesture } from './SwipeDownGesture'; +export { default as SwipeLeftGesture } from './SwipeLeftGesture'; +export { default as SwipeRightGesture } from './SwipeRightGesture'; +export { default as SwipeTwoFingersDownGesture } from './SwipeTwoFingersDownGesture'; +export { default as SwipeTwoFingersLeftGesture } from './SwipeTwoFingersLeftGesture'; +export { default as SwipeTwoFingersRightGesture } from './SwipeTwoFingersRightGesture'; +export { default as SwipeTwoFingersUpGesture } from './SwipeTwoFingersUpGesture'; +export { default as SwipeUpGesture } from './SwipeUpGesture'; +export { default as SwitchOff } from './SwitchOff'; +export { default as SwitchOn } from './SwitchOn'; +export { default as SystemRestart } from './SystemRestart'; +export { default as SystemShut } from './SystemShut'; +export { default as TShirt } from './TShirt'; +export { default as Table2Columns } from './Table2Columns'; +export { default as TableRows } from './TableRows'; +export { default as Table } from './Table'; +export { default as TaskList } from './TaskList'; +export { default as TelegramCircle } from './TelegramCircle'; +export { default as Telegram } from './Telegram'; +export { default as TemperatureDown } from './TemperatureDown'; +export { default as TemperatureHigh } from './TemperatureHigh'; +export { default as TemperatureLow } from './TemperatureLow'; +export { default as TemperatureUp } from './TemperatureUp'; +export { default as TennisBallAlt } from './TennisBallAlt'; +export { default as TennisBall } from './TennisBall'; +export { default as TerminalTag } from './TerminalTag'; +export { default as Terminal } from './Terminal'; +export { default as TestTube } from './TestTube'; +export { default as TextAlt } from './TextAlt'; +export { default as TextBox } from './TextBox'; +export { default as TextSize } from './TextSize'; +export { default as Text } from './Text'; +export { default as Threads } from './Threads'; +export { default as ThreePointsCircle } from './ThreePointsCircle'; +export { default as ThreeStars } from './ThreeStars'; +export { default as ThumbsDown } from './ThumbsDown'; +export { default as ThumbsUp } from './ThumbsUp'; +export { default as Thunderstorm } from './Thunderstorm'; +export { default as TifFormat } from './TifFormat'; +export { default as TiffFormat } from './TiffFormat'; +export { default as TikTok } from './TikTok'; +export { default as TimeZone } from './TimeZone'; +export { default as TimerOff } from './TimerOff'; +export { default as Timer } from './Timer'; +export { default as Tools } from './Tools'; +export { default as Tournament } from './Tournament'; +export { default as TowerCheck } from './TowerCheck'; +export { default as TowerNoAccess } from './TowerNoAccess'; +export { default as TowerWarning } from './TowerWarning'; +export { default as Tower } from './Tower'; +export { default as Trademark } from './Trademark'; +export { default as Train } from './Train'; +export { default as Tram } from './Tram'; +export { default as TransitionDown } from './TransitionDown'; +export { default as TransitionLeft } from './TransitionLeft'; +export { default as TransitionRight } from './TransitionRight'; +export { default as TransitionUp } from './TransitionUp'; +export { default as Translate } from './Translate'; +export { default as Trash } from './Trash'; +export { default as Treadmill } from './Treadmill'; +export { default as Tree } from './Tree'; +export { default as Trekking } from './Trekking'; +export { default as Trello } from './Trello'; +export { default as TriangleFlagCircle } from './TriangleFlagCircle'; +export { default as TriangleFlagTwoStripes } from './TriangleFlagTwoStripes'; +export { default as TriangleFlag } from './TriangleFlag'; +export { default as Triangle } from './Triangle'; +export { default as Trophy } from './Trophy'; +export { default as TruckLength } from './TruckLength'; +export { default as Truck } from './Truck'; +export { default as Tunnel } from './Tunnel'; +export { default as TvFix } from './TvFix'; +export { default as TvIssue } from './TvIssue'; +export { default as Tv } from './Tv'; +export { default as TwitterVerifiedBadge } from './TwitterVerifiedBadge'; +export { default as Twitter } from './Twitter'; +export { default as TwoPointsCircle } from './TwoPointsCircle'; +export { default as TwoSeaterSofa } from './TwoSeaterSofa'; +export { default as Type } from './Type'; +export { default as UmbrellaFull } from './UmbrellaFull'; +export { default as UnderlineSquare } from './UnderlineSquare'; +export { default as Underline } from './Underline'; +export { default as UndoAction } from './UndoAction'; +export { default as UndoCircle } from './UndoCircle'; +export { default as Undo } from './Undo'; +export { default as UnionAlt } from './UnionAlt'; +export { default as UnionHorizAlt } from './UnionHorizAlt'; +export { default as Union } from './Union'; +export { default as Unity5 } from './Unity5'; +export { default as Unity } from './Unity'; +export { default as Unjoin3D } from './Unjoin3D'; +export { default as UpRoundArrow } from './UpRoundArrow'; +export { default as UploadDataWindow } from './UploadDataWindow'; +export { default as UploadSquare } from './UploadSquare'; +export { default as Upload } from './Upload'; +export { default as Usb } from './Usb'; +export { default as UserBag } from './UserBag'; +export { default as UserCart } from './UserCart'; +export { default as UserCircle } from './UserCircle'; +export { default as UserCrown } from './UserCrown'; +export { default as UserLove } from './UserLove'; +export { default as UserScan } from './UserScan'; +export { default as UserSquare } from './UserSquare'; +export { default as UserStar } from './UserStar'; +export { default as User } from './User'; +export { default as VeganCircle } from './VeganCircle'; +export { default as VeganSquare } from './VeganSquare'; +export { default as Vegan } from './Vegan'; +export { default as VerifiedBadge } from './VerifiedBadge'; +export { default as VerifiedUser } from './VerifiedUser'; +export { default as VerticalMerge } from './VerticalMerge'; +export { default as VerticalSplit } from './VerticalSplit'; +export { default as Vials } from './Vials'; +export { default as VideoCameraOff } from './VideoCameraOff'; +export { default as VideoCamera } from './VideoCamera'; +export { default as VideoProjector } from './VideoProjector'; +export { default as ViewColumns2 } from './ViewColumns2'; +export { default as ViewColumns3 } from './ViewColumns3'; +export { default as ViewGrid } from './ViewGrid'; +export { default as ViewStructureDown } from './ViewStructureDown'; +export { default as ViewStructureUp } from './ViewStructureUp'; +export { default as View360 } from './View360'; +export { default as VoiceCircle } from './VoiceCircle'; +export { default as VoiceError } from './VoiceError'; +export { default as VoiceLockCircle } from './VoiceLockCircle'; +export { default as VoiceOk } from './VoiceOk'; +export { default as VoicePhone } from './VoicePhone'; +export { default as VoiceScan } from './VoiceScan'; +export { default as VoiceSquare } from './VoiceSquare'; +export { default as Voice } from './Voice'; +export { default as VrSymbol } from './VrSymbol'; +export { default as VueJs } from './VueJs'; +export { default as Waist } from './Waist'; +export { default as Walking } from './Walking'; +export { default as Wallet } from './Wallet'; +export { default as WarningCircle } from './WarningCircle'; +export { default as WarningHexagon } from './WarningHexagon'; +export { default as WarningSquare } from './WarningSquare'; +export { default as WarningTriangle } from './WarningTriangle'; +export { default as WarningWindow } from './WarningWindow'; +export { default as Wash } from './Wash'; +export { default as WashingMachine } from './WashingMachine'; +export { default as WateringSoil } from './WateringSoil'; +export { default as WebWindowClose } from './WebWindowClose'; +export { default as WebWindowEnergyConsumption } from './WebWindowEnergyConsumption'; +export { default as WebWindow } from './WebWindow'; +export { default as WebpFormat } from './WebpFormat'; +export { default as WeightAlt } from './WeightAlt'; +export { default as Weight } from './Weight'; +export { default as WhiteFlag } from './WhiteFlag'; +export { default as WifiError } from './WifiError'; +export { default as WifiIssue } from './WifiIssue'; +export { default as WifiOff } from './WifiOff'; +export { default as WifiSignalNone } from './WifiSignalNone'; +export { default as WifiTag } from './WifiTag'; +export { default as Wifi } from './Wifi'; +export { default as Wind } from './Wind'; +export { default as Windows } from './Windows'; +export { default as Wolf } from './Wolf'; +export { default as WomenTShirt } from './WomenTShirt'; +export { default as WrapText } from './WrapText'; +export { default as Wrench } from './Wrench'; +export { default as Wristwatch } from './Wristwatch'; +export { default as Www } from './Www'; +export { default as XCoordinate } from './XCoordinate'; +export { default as XboxA } from './XboxA'; +export { default as XboxB } from './XboxB'; +export { default as XboxX } from './XboxX'; +export { default as XboxY } from './XboxY'; +export { default as XrayView } from './XrayView'; +export { default as YCoordinate } from './YCoordinate'; +export { default as Yelp } from './Yelp'; +export { default as YenSquare } from './YenSquare'; +export { default as Yen } from './Yen'; +export { default as Yoga } from './Yoga'; +export { default as YouTube } from './YouTube'; +export { default as ZCoordinate } from './ZCoordinate'; +export { default as ZoomIn } from './ZoomIn'; +export { default as ZoomOut } from './ZoomOut'; +export { + IconoirProvider, + IconoirContext, + IconoirContextValue, +} from './IconoirContext'; diff --git a/packages/iconoir-react/src/index.tsx b/packages/iconoir-react/src/index.tsx deleted file mode 100644 index dc0b8f81..00000000 --- a/packages/iconoir-react/src/index.tsx +++ /dev/null @@ -1,1372 +0,0 @@ -export { default as Svg3DAddHole } from './3DAddHole' -export { default as Svg3DArcCenterPt } from './3DArcCenterPt' -export { default as Svg3DArc } from './3DArc' -export { default as Svg3DBridge } from './3DBridge' -export { default as Svg3DCenterBox } from './3DCenterBox' -export { default as Svg3DDraftFace } from './3DDraftFace' -export { default as Svg3DEllipseThreePts } from './3DEllipseThreePts' -export { default as Svg3DEllipse } from './3DEllipse' -export { default as Svg3DPtBox } from './3DPtBox' -export { default as Svg3DRectCornerToCorner } from './3DRectCornerToCorner' -export { default as Svg3DRectFromCenter } from './3DRectFromCenter' -export { default as Svg3DRectThreePts } from './3DRectThreePts' -export { default as Svg3DSelectEdge } from './3DSelectEdge' -export { default as Svg3DSelectFace } from './3DSelectFace' -export { default as Svg3DSelectPoint } from './3DSelectPoint' -export { default as Svg3DSelectSolid } from './3DSelectSolid' -export { default as Svg3DThreePtsBox } from './3DThreePtsBox' -export { default as AccessibilitySign } from './AccessibilitySign' -export { default as AccessibilityTech } from './AccessibilityTech' -export { default as Accessibility } from './Accessibility' -export { default as Activity } from './Activity' -export { default as AddCircle } from './AddCircle' -export { default as AddDatabaseScript } from './AddDatabaseScript' -export { default as AddFolder } from './AddFolder' -export { default as AddFrame } from './AddFrame' -export { default as AddHexagon } from './AddHexagon' -export { default as AddKeyframeAlt } from './AddKeyframeAlt' -export { default as AddKeyframe } from './AddKeyframe' -export { default as AddKeyframes } from './AddKeyframes' -export { default as AddLens } from './AddLens' -export { default as AddMediaImage } from './AddMediaImage' -export { default as AddMediaVideo } from './AddMediaVideo' -export { default as AddPageAlt } from './AddPageAlt' -export { default as AddPage } from './AddPage' -export { default as AddPinAlt } from './AddPinAlt' -export { default as AddSelection } from './AddSelection' -export { default as AddSquare } from './AddSquare' -export { default as AddToCart } from './AddToCart' -export { default as AddUser } from './AddUser' -export { default as AdobeAfterEffects } from './AdobeAfterEffects' -export { default as AdobeIllustrator } from './AdobeIllustrator' -export { default as AdobeIndesign } from './AdobeIndesign' -export { default as AdobeLightroom } from './AdobeLightroom' -export { default as AdobePhotoshop } from './AdobePhotoshop' -export { default as AdobeXd } from './AdobeXd' -export { default as AfricanTree } from './AfricanTree' -export { default as Agile } from './Agile' -export { default as AirConditioner } from './AirConditioner' -export { default as AirplaneHelix45Deg } from './AirplaneHelix45Deg' -export { default as AirplaneHelix } from './AirplaneHelix' -export { default as AirplaneOff } from './AirplaneOff' -export { default as AirplaneRotation } from './AirplaneRotation' -export { default as Airplane } from './Airplane' -export { default as Airplay } from './Airplay' -export { default as Alarm } from './Alarm' -export { default as AlbumCarousel } from './AlbumCarousel' -export { default as AlbumList } from './AlbumList' -export { default as AlbumOpen } from './AlbumOpen' -export { default as Album } from './Album' -export { default as AlignBottomBox } from './AlignBottomBox' -export { default as AlignCenter } from './AlignCenter' -export { default as AlignHorizontalCenters } from './AlignHorizontalCenters' -export { default as AlignHorizontalSpacing } from './AlignHorizontalSpacing' -export { default as AlignJustify } from './AlignJustify' -export { default as AlignLeftBox } from './AlignLeftBox' -export { default as AlignLeft } from './AlignLeft' -export { default as AlignRightBox } from './AlignRightBox' -export { default as AlignRight } from './AlignRight' -export { default as AlignTopBox } from './AlignTopBox' -export { default as AlignVerticalCenters } from './AlignVerticalCenters' -export { default as AlignVerticalSpacing } from './AlignVerticalSpacing' -export { default as AngleTool } from './AngleTool' -export { default as AntennaOff } from './AntennaOff' -export { default as AntennaSignalTag } from './AntennaSignalTag' -export { default as AntennaSignal } from './AntennaSignal' -export { default as Antenna } from './Antenna' -export { default as AppNotification } from './AppNotification' -export { default as AppStore } from './AppStore' -export { default as AppWindow } from './AppWindow' -export { default as AppleHalfAlt } from './AppleHalfAlt' -export { default as AppleHalf } from './AppleHalf' -export { default as AppleImac2021Side } from './AppleImac2021Side' -export { default as AppleImac2021 } from './AppleImac2021' -export { default as AppleMac } from './AppleMac' -export { default as AppleShortcuts } from './AppleShortcuts' -export { default as AppleSwift } from './AppleSwift' -export { default as AppleWallet } from './AppleWallet' -export { default as Apple } from './Apple' -export { default as ArSymbol } from './ArSymbol' -export { default as Arcade } from './Arcade' -export { default as ArcheryMatch } from './ArcheryMatch' -export { default as Archery } from './Archery' -export { default as Archive } from './Archive' -export { default as AreaSearch } from './AreaSearch' -export { default as ArrowArchery } from './ArrowArchery' -export { default as ArrowBlCircle } from './ArrowBlCircle' -export { default as ArrowBlSquare } from './ArrowBlSquare' -export { default as ArrowBl } from './ArrowBl' -export { default as ArrowBrCircle } from './ArrowBrCircle' -export { default as ArrowBrSquare } from './ArrowBrSquare' -export { default as ArrowBr } from './ArrowBr' -export { default as ArrowDownCircle } from './ArrowDownCircle' -export { default as ArrowDown } from './ArrowDown' -export { default as ArrowEmailForward } from './ArrowEmailForward' -export { default as ArrowLeftCircle } from './ArrowLeftCircle' -export { default as ArrowLeft } from './ArrowLeft' -export { default as ArrowRightCircle } from './ArrowRightCircle' -export { default as ArrowRight } from './ArrowRight' -export { default as ArrowSeparateVertical } from './ArrowSeparateVertical' -export { default as ArrowSeparate } from './ArrowSeparate' -export { default as ArrowTlCircle } from './ArrowTlCircle' -export { default as ArrowTlSquare } from './ArrowTlSquare' -export { default as ArrowTl } from './ArrowTl' -export { default as ArrowTrCircle } from './ArrowTrCircle' -export { default as ArrowTrSquare } from './ArrowTrSquare' -export { default as ArrowTr } from './ArrowTr' -export { default as ArrowUnionVertical } from './ArrowUnionVertical' -export { default as ArrowUnion } from './ArrowUnion' -export { default as ArrowUpCircle } from './ArrowUpCircle' -export { default as ArrowUp } from './ArrowUp' -export { default as ArrowsUpFromLine } from './ArrowsUpFromLine' -export { default as Asana } from './Asana' -export { default as AtSignCircle } from './AtSignCircle' -export { default as AtSign } from './AtSign' -export { default as Atom } from './Atom' -export { default as Attachment } from './Attachment' -export { default as AugmentedReality } from './AugmentedReality' -export { default as AutoFlash } from './AutoFlash' -export { default as AviFormat } from './AviFormat' -export { default as Axes } from './Axes' -export { default as Backward15Seconds } from './Backward15Seconds' -export { default as Bag } from './Bag' -export { default as Balcony } from './Balcony' -export { default as Bank } from './Bank' -export { default as Barcode } from './Barcode' -export { default as BasketballAlt } from './BasketballAlt' -export { default as BasketballField } from './BasketballField' -export { default as Basketball } from './Basketball' -export { default as Bathroom } from './Bathroom' -export { default as Battery25 } from './Battery25' -export { default as Battery50 } from './Battery50' -export { default as Battery75 } from './Battery75' -export { default as BatteryCharging } from './BatteryCharging' -export { default as BatteryEmpty } from './BatteryEmpty' -export { default as BatteryFull } from './BatteryFull' -export { default as BatteryIndicator } from './BatteryIndicator' -export { default as BatteryWarning } from './BatteryWarning' -export { default as Bbq } from './Bbq' -export { default as BeachBagBig } from './BeachBagBig' -export { default as BeachBag } from './BeachBag' -export { default as BedReady } from './BedReady' -export { default as Bed } from './Bed' -export { default as BehanceTag } from './BehanceTag' -export { default as Behance } from './Behance' -export { default as BellNotification } from './BellNotification' -export { default as BellOff } from './BellOff' -export { default as Bell } from './Bell' -export { default as Bicycle } from './Bicycle' -export { default as BinAdd } from './BinAdd' -export { default as BinFull } from './BinFull' -export { default as BinHalf } from './BinHalf' -export { default as BinMinus } from './BinMinus' -export { default as Bin } from './Bin' -export { default as Binocular } from './Binocular' -export { default as BirthdayCake } from './BirthdayCake' -export { default as Bishop } from './Bishop' -export { default as Bitbucket } from './Bitbucket' -export { default as BitcoinCircle } from './BitcoinCircle' -export { default as BitcoinRotateOut } from './BitcoinRotateOut' -export { default as BluetoothTag } from './BluetoothTag' -export { default as Bluetooth } from './Bluetooth' -export { default as BoldSquare } from './BoldSquare' -export { default as Bold } from './Bold' -export { default as Bonfire } from './Bonfire' -export { default as BookStack } from './BookStack' -export { default as Book } from './Book' -export { default as BookmarkBook } from './BookmarkBook' -export { default as BookmarkCircle } from './BookmarkCircle' -export { default as BookmarkEmpty } from './BookmarkEmpty' -export { default as BorderBl } from './BorderBl' -export { default as BorderBottom } from './BorderBottom' -export { default as BorderBr } from './BorderBr' -export { default as BorderInner } from './BorderInner' -export { default as BorderLeft } from './BorderLeft' -export { default as BorderOut } from './BorderOut' -export { default as BorderRight } from './BorderRight' -export { default as BorderTl } from './BorderTl' -export { default as BorderTop } from './BorderTop' -export { default as BorderTr } from './BorderTr' -export { default as BounceLeft } from './BounceLeft' -export { default as BounceRight } from './BounceRight' -export { default as BowlingBall } from './BowlingBall' -export { default as BoxIso } from './BoxIso' -export { default as Box } from './Box' -export { default as BoxingGlove } from './BoxingGlove' -export { default as BrainElectricity } from './BrainElectricity' -export { default as BrainResearch } from './BrainResearch' -export { default as BrainWarning } from './BrainWarning' -export { default as Brain } from './Brain' -export { default as BreadSlice } from './BreadSlice' -export { default as BridgeSurface } from './BridgeSurface' -export { default as BrightCrown } from './BrightCrown' -export { default as BrightStar } from './BrightStar' -export { default as BrightnessWindow } from './BrightnessWindow' -export { default as Brightness } from './Brightness' -export { default as BubbleDownload } from './BubbleDownload' -export { default as BubbleError } from './BubbleError' -export { default as BubbleIncome } from './BubbleIncome' -export { default as BubbleOutcome } from './BubbleOutcome' -export { default as BubbleSearch } from './BubbleSearch' -export { default as BubbleStar } from './BubbleStar' -export { default as BubbleUpload } from './BubbleUpload' -export { default as BubbleWarning } from './BubbleWarning' -export { default as Building } from './Building' -export { default as BusStop } from './BusStop' -export { default as Bus } from './Bus' -export { default as CableTag } from './CableTag' -export { default as Calculator } from './Calculator' -export { default as CalendarMinus } from './CalendarMinus' -export { default as CalendarPlus } from './CalendarPlus' -export { default as Calendar } from './Calendar' -export { default as Camera } from './Camera' -export { default as Cancel } from './Cancel' -export { default as CandlestickChart } from './CandlestickChart' -export { default as Car } from './Car' -export { default as Carbon } from './Carbon' -export { default as CardIssue } from './CardIssue' -export { default as CardLocked } from './CardLocked' -export { default as CardReader } from './CardReader' -export { default as CardSecurity } from './CardSecurity' -export { default as CardWallet } from './CardWallet' -export { default as CartAlt } from './CartAlt' -export { default as Cart } from './Cart' -export { default as Cash } from './Cash' -export { default as Cell2X2 } from './Cell2X2' -export { default as Cellar } from './Cellar' -export { default as CenterAlign } from './CenterAlign' -export { default as ChatAdd } from './ChatAdd' -export { default as ChatBubbleCheck1 } from './ChatBubbleCheck1' -export { default as ChatBubbleCheck } from './ChatBubbleCheck' -export { default as ChatBubbleEmpty } from './ChatBubbleEmpty' -export { default as ChatBubbleError } from './ChatBubbleError' -export { default as ChatBubbleQuestion } from './ChatBubbleQuestion' -export { default as ChatBubbleTranslate } from './ChatBubbleTranslate' -export { default as ChatBubbleWarning } from './ChatBubbleWarning' -export { default as ChatBubble } from './ChatBubble' -export { default as ChatLines } from './ChatLines' -export { default as ChatRemove } from './ChatRemove' -export { default as CheckCircle } from './CheckCircle' -export { default as CheckWindow } from './CheckWindow' -export { default as Check } from './Check' -export { default as Chocolate } from './Chocolate' -export { default as ChromecastActive } from './ChromecastActive' -export { default as Chromecast } from './Chromecast' -export { default as ChurchAlt } from './ChurchAlt' -export { default as Church } from './Church' -export { default as CinemaOld } from './CinemaOld' -export { default as CircleSpark } from './CircleSpark' -export { default as Circle } from './Circle' -export { default as City } from './City' -export { default as CleanWater } from './CleanWater' -export { default as ClipboardCheck } from './ClipboardCheck' -export { default as ClockRotateRight } from './ClockRotateRight' -export { default as Clock } from './Clock' -export { default as ClosedCaptions } from './ClosedCaptions' -export { default as Closet } from './Closet' -export { default as CloudBookAlt } from './CloudBookAlt' -export { default as CloudCheck } from './CloudCheck' -export { default as CloudDesync } from './CloudDesync' -export { default as CloudDownload } from './CloudDownload' -export { default as CloudError } from './CloudError' -export { default as CloudSunny } from './CloudSunny' -export { default as CloudSync } from './CloudSync' -export { default as CloudUpload } from './CloudUpload' -export { default as Cloud } from './Cloud' -export { default as Clutery } from './Clutery' -export { default as CodeBracketsSquare } from './CodeBracketsSquare' -export { default as CodeBrackets } from './CodeBrackets' -export { default as Code } from './Code' -export { default as Codepen } from './Codepen' -export { default as CoffeeCup } from './CoffeeCup' -export { default as Coin } from './Coin' -export { default as CoinsSwap } from './CoinsSwap' -export { default as Coins } from './Coins' -export { default as CollageFrame } from './CollageFrame' -export { default as Collapse } from './Collapse' -export { default as ColorFilter } from './ColorFilter' -export { default as ColorPickerEmpty } from './ColorPickerEmpty' -export { default as ColorPicker } from './ColorPicker' -export { default as ColorWheel } from './ColorWheel' -export { default as Combine } from './Combine' -export { default as Commodity } from './Commodity' -export { default as Community } from './Community' -export { default as CompAlignBottom } from './CompAlignBottom' -export { default as CompAlignLeft } from './CompAlignLeft' -export { default as CompAlignRight } from './CompAlignRight' -export { default as CompAlignTop } from './CompAlignTop' -export { default as CompactDisc } from './CompactDisc' -export { default as Compass } from './Compass' -export { default as Component } from './Component' -export { default as CompressLines } from './CompressLines' -export { default as Compress } from './Compress' -export { default as Computer } from './Computer' -export { default as ConstrainedSurface } from './ConstrainedSurface' -export { default as Consumable } from './Consumable' -export { default as Contactless } from './Contactless' -export { default as ControlSlider } from './ControlSlider' -export { default as Cookie } from './Cookie' -export { default as Cooling } from './Cooling' -export { default as Copy } from './Copy' -export { default as Copyright } from './Copyright' -export { default as CornerBottomLeft } from './CornerBottomLeft' -export { default as CornerBottomRight } from './CornerBottomRight' -export { default as CornerTopLeft } from './CornerTopLeft' -export { default as CornerTopRight } from './CornerTopRight' -export { default as CpuWarning } from './CpuWarning' -export { default as Cpu } from './Cpu' -export { default as CrackedEgg } from './CrackedEgg' -export { default as CreativeCommons } from './CreativeCommons' -export { default as CreditCard } from './CreditCard' -export { default as CreditCards } from './CreditCards' -export { default as Crib } from './Crib' -export { default as CropRotateBl } from './CropRotateBl' -export { default as CropRotateBr } from './CropRotateBr' -export { default as CropRotateTl } from './CropRotateTl' -export { default as CropRotateTr } from './CropRotateTr' -export { default as Crop } from './Crop' -export { default as CrownCircle } from './CrownCircle' -export { default as Crown } from './Crown' -export { default as Css3 } from './Css3' -export { default as CubeReplaceFace } from './CubeReplaceFace' -export { default as CursorPointer } from './CursorPointer' -export { default as CurveArray } from './CurveArray' -export { default as CutAlt } from './CutAlt' -export { default as CutSolidWithCurve } from './CutSolidWithCurve' -export { default as Cut } from './Cut' -export { default as Cycling } from './Cycling' -export { default as Cylinder } from './Cylinder' -export { default as DashFlag } from './DashFlag' -export { default as DashboardDots } from './DashboardDots' -export { default as DashboardSpeed } from './DashboardSpeed' -export { default as Dashboard } from './Dashboard' -export { default as DataTransferBoth } from './DataTransferBoth' -export { default as DataTransferCheck } from './DataTransferCheck' -export { default as DataTransferDown } from './DataTransferDown' -export { default as DataTransferUp } from './DataTransferUp' -export { default as DataTransferWarning } from './DataTransferWarning' -export { default as DatabaseBackup } from './DatabaseBackup' -export { default as DatabaseExport } from './DatabaseExport' -export { default as DatabaseMonitor } from './DatabaseMonitor' -export { default as DatabaseRestore } from './DatabaseRestore' -export { default as DatabaseScript } from './DatabaseScript' -export { default as DatabaseSettings } from './DatabaseSettings' -export { default as DatabaseStar } from './DatabaseStar' -export { default as DatabaseStats } from './DatabaseStats' -export { default as DatabaseTag } from './DatabaseTag' -export { default as DbCheck } from './DbCheck' -export { default as DbError } from './DbError' -export { default as DbSearch } from './DbSearch' -export { default as DbStar } from './DbStar' -export { default as DbWarning } from './DbWarning' -export { default as Db } from './Db' -export { default as DeCompress } from './DeCompress' -export { default as DeleteCircle } from './DeleteCircle' -export { default as DeliveryTruck } from './DeliveryTruck' -export { default as Delivery } from './Delivery' -export { default as Depth } from './Depth' -export { default as DesignNib } from './DesignNib' -export { default as DesignPencil } from './DesignPencil' -export { default as Desk } from './Desk' -export { default as DevModeLaptop } from './DevModeLaptop' -export { default as DevModePhone } from './DevModePhone' -export { default as Developer } from './Developer' -export { default as DewPoint } from './DewPoint' -export { default as Dialpad } from './Dialpad' -export { default as Diameter } from './Diameter' -export { default as DiceFive } from './DiceFive' -export { default as DiceFour } from './DiceFour' -export { default as DiceOne } from './DiceOne' -export { default as DiceSix } from './DiceSix' -export { default as DiceThree } from './DiceThree' -export { default as DiceTwo } from './DiceTwo' -export { default as DimmerSwitch } from './DimmerSwitch' -export { default as DirectorChair } from './DirectorChair' -export { default as Discord } from './Discord' -export { default as Dishwasher } from './Dishwasher' -export { default as Display4K } from './Display4K' -export { default as DivideSelection1 } from './DivideSelection1' -export { default as DivideSelection2 } from './DivideSelection2' -export { default as DivideThree } from './DivideThree' -export { default as Divide } from './Divide' -export { default as Dna } from './Dna' -export { default as DocSearchAlt } from './DocSearchAlt' -export { default as DocSearch } from './DocSearch' -export { default as DocStarAlt } from './DocStarAlt' -export { default as DocStar } from './DocStar' -export { default as DogecoinCircle } from './DogecoinCircle' -export { default as DogecoinRotateOut } from './DogecoinRotateOut' -export { default as Dollar } from './Dollar' -export { default as DomoticIssue } from './DomoticIssue' -export { default as Donate } from './Donate' -export { default as DoubleCheck } from './DoubleCheck' -export { default as DownRoundArrow } from './DownRoundArrow' -export { default as DownloadCircle } from './DownloadCircle' -export { default as DownloadDataWindow } from './DownloadDataWindow' -export { default as DownloadSquare } from './DownloadSquare' -export { default as Download } from './Download' -export { default as DragHandGesture } from './DragHandGesture' -export { default as Drag } from './Drag' -export { default as Drawer } from './Drawer' -export { default as Dribbble } from './Dribbble' -export { default as DroneChargeFull } from './DroneChargeFull' -export { default as DroneChargeHalf } from './DroneChargeHalf' -export { default as DroneChargeLow } from './DroneChargeLow' -export { default as DroneCheck } from './DroneCheck' -export { default as DroneError } from './DroneError' -export { default as DroneLanding } from './DroneLanding' -export { default as DroneRefresh } from './DroneRefresh' -export { default as DroneTakeOff } from './DroneTakeOff' -export { default as Drone } from './Drone' -export { default as DropletHalf } from './DropletHalf' -export { default as Droplet } from './Droplet' -export { default as EaseCurveControlPoints } from './EaseCurveControlPoints' -export { default as EaseInControlPoint } from './EaseInControlPoint' -export { default as EaseInOut } from './EaseInOut' -export { default as EaseIn } from './EaseIn' -export { default as EaseOutControlPoint } from './EaseOutControlPoint' -export { default as EaseOut } from './EaseOut' -export { default as EcologyBook } from './EcologyBook' -export { default as EditPencil } from './EditPencil' -export { default as Edit } from './Edit' -export { default as Egg } from './Egg' -export { default as Eject } from './Eject' -export { default as ElectronicsChip } from './ElectronicsChip' -export { default as ElectronicsTransistor } from './ElectronicsTransistor' -export { default as Elevator } from './Elevator' -export { default as EmojiBall } from './EmojiBall' -export { default as EmojiBlinkLeft } from './EmojiBlinkLeft' -export { default as EmojiBlinkRight } from './EmojiBlinkRight' -export { default as EmojiLookDown } from './EmojiLookDown' -export { default as EmojiLookLeft } from './EmojiLookLeft' -export { default as EmojiLookRight } from './EmojiLookRight' -export { default as EmojiLookUp } from './EmojiLookUp' -export { default as EmojiPuzzled } from './EmojiPuzzled' -export { default as EmojiQuite } from './EmojiQuite' -export { default as EmojiReally } from './EmojiReally' -export { default as EmojiSad } from './EmojiSad' -export { default as EmojiSatisfied } from './EmojiSatisfied' -export { default as EmojiSingLeftNote } from './EmojiSingLeftNote' -export { default as EmojiSingLeft } from './EmojiSingLeft' -export { default as EmojiSingRightNote } from './EmojiSingRightNote' -export { default as EmojiSingRight } from './EmojiSingRight' -export { default as EmojiSurpriseAlt } from './EmojiSurpriseAlt' -export { default as EmojiSurprise } from './EmojiSurprise' -export { default as EmojiTalkingAngry } from './EmojiTalkingAngry' -export { default as EmojiTalkingHappy } from './EmojiTalkingHappy' -export { default as EmojiThinkLeft } from './EmojiThinkLeft' -export { default as EmojiThinkRight } from './EmojiThinkRight' -export { default as Emoji } from './Emoji' -export { default as EmptyPage } from './EmptyPage' -export { default as EnergyUsageWindow } from './EnergyUsageWindow' -export { default as EnlargeRoundArrow } from './EnlargeRoundArrow' -export { default as Enlarge } from './Enlarge' -export { default as Erase } from './Erase' -export { default as ErrorWindow } from './ErrorWindow' -export { default as EthereumCircle } from './EthereumCircle' -export { default as EthereumRotateOut } from './EthereumRotateOut' -export { default as EuroSquare } from './EuroSquare' -export { default as Euro } from './Euro' -export { default as EvChargeAlt } from './EvChargeAlt' -export { default as EvCharge } from './EvCharge' -export { default as EvPlugCharging } from './EvPlugCharging' -export { default as EvPlugError } from './EvPlugError' -export { default as EvPlug } from './EvPlug' -export { default as EvStation } from './EvStation' -export { default as EvTag } from './EvTag' -export { default as Exclude } from './Exclude' -export { default as ExpandLines } from './ExpandLines' -export { default as Expand } from './Expand' -export { default as Extrude } from './Extrude' -export { default as EyeAlt } from './EyeAlt' -export { default as EyeClose } from './EyeClose' -export { default as EyeEmpty } from './EyeEmpty' -export { default as EyeOff } from './EyeOff' -export { default as FaceId } from './FaceId' -export { default as FacebookTag } from './FacebookTag' -export { default as Facebook } from './Facebook' -export { default as Facetime } from './Facetime' -export { default as Farm } from './Farm' -export { default as FastArrowDownBox } from './FastArrowDownBox' -export { default as FastArrowDown } from './FastArrowDown' -export { default as FastArrowLeftBox } from './FastArrowLeftBox' -export { default as FastArrowLeft } from './FastArrowLeft' -export { default as FastArrowRightBox } from './FastArrowRightBox' -export { default as FastArrowRight } from './FastArrowRight' -export { default as FastArrowUpBox } from './FastArrowUpBox' -export { default as FastArrowUp } from './FastArrowUp' -export { default as FastDownCircle } from './FastDownCircle' -export { default as FastLeftCircle } from './FastLeftCircle' -export { default as FastRightCircle } from './FastRightCircle' -export { default as FastUpCircle } from './FastUpCircle' -export { default as FavouriteBook } from './FavouriteBook' -export { default as FavouriteWindow } from './FavouriteWindow' -export { default as Female } from './Female' -export { default as Figma } from './Figma' -export { default as FileNotFound } from './FileNotFound' -export { default as FillColor } from './FillColor' -export { default as Fillet3D } from './Fillet3D' -export { default as FilterAlt } from './FilterAlt' -export { default as FilterListCircle } from './FilterListCircle' -export { default as FilterList } from './FilterList' -export { default as Filter } from './Filter' -export { default as Finder } from './Finder' -export { default as FingerprintCheckCircle } from './FingerprintCheckCircle' -export { default as FingerprintCircle } from './FingerprintCircle' -export { default as FingerprintErrorCircle } from './FingerprintErrorCircle' -export { default as FingerprintLockCircle } from './FingerprintLockCircle' -export { default as FingerprintPhone } from './FingerprintPhone' -export { default as FingerprintScan } from './FingerprintScan' -export { default as FingerprintSquare } from './FingerprintSquare' -export { default as FingerprintWindow } from './FingerprintWindow' -export { default as Fingerprint } from './Fingerprint' -export { default as FireFlame } from './FireFlame' -export { default as Fish } from './Fish' -export { default as Fishing } from './Fishing' -export { default as Flare } from './Flare' -export { default as FlashOff } from './FlashOff' -export { default as Flash } from './Flash' -export { default as Flask } from './Flask' -export { default as FlipReverse } from './FlipReverse' -export { default as Flip } from './Flip' -export { default as Flower } from './Flower' -export { default as Fluorine } from './Fluorine' -export { default as Fog } from './Fog' -export { default as FolderAlert } from './FolderAlert' -export { default as FolderSettings } from './FolderSettings' -export { default as Folder } from './Folder' -export { default as FontSize } from './FontSize' -export { default as FootballBall } from './FootballBall' -export { default as Football } from './Football' -export { default as Forward15Seconds } from './Forward15Seconds' -export { default as ForwardMessage } from './ForwardMessage' -export { default as Forward } from './Forward' -export { default as FrameAltEmpty } from './FrameAltEmpty' -export { default as FrameAlt } from './FrameAlt' -export { default as FrameSelect } from './FrameSelect' -export { default as FrameSimple } from './FrameSimple' -export { default as FrameTool } from './FrameTool' -export { default as Frame } from './Frame' -export { default as Fridge } from './Fridge' -export { default as FxTag } from './FxTag' -export { default as Fx } from './Fx' -export { default as Gamepad } from './Gamepad' -export { default as Garage } from './Garage' -export { default as GasTankDrop } from './GasTankDrop' -export { default as GasTank } from './GasTank' -export { default as Gas } from './Gas' -export { default as GifFormat } from './GifFormat' -export { default as Gift } from './Gift' -export { default as GitBranch } from './GitBranch' -export { default as GitCherryPickCommit } from './GitCherryPickCommit' -export { default as GitCommand } from './GitCommand' -export { default as GitCommit } from './GitCommit' -export { default as GitCompare } from './GitCompare' -export { default as GitFork } from './GitFork' -export { default as GitMerge } from './GitMerge' -export { default as GitPullRequestClosed } from './GitPullRequestClosed' -export { default as GitPullRequest } from './GitPullRequest' -export { default as GitHub } from './GitHub' -export { default as GitLabFull } from './GitLabFull' -export { default as GithubCircle } from './GithubCircle' -export { default as GlassEmpty } from './GlassEmpty' -export { default as GlassFragile } from './GlassFragile' -export { default as GlassHalfAlt } from './GlassHalfAlt' -export { default as GlassHalf } from './GlassHalf' -export { default as Glasses } from './Glasses' -export { default as Globe } from './Globe' -export { default as Golf } from './Golf' -export { default as GoogleCircle } from './GoogleCircle' -export { default as GoogleDocs } from './GoogleDocs' -export { default as GoogleDriveCheck } from './GoogleDriveCheck' -export { default as GoogleDriveSync } from './GoogleDriveSync' -export { default as GoogleDriveWarning } from './GoogleDriveWarning' -export { default as GoogleDrive } from './GoogleDrive' -export { default as GoogleHome } from './GoogleHome' -export { default as GoogleOne } from './GoogleOne' -export { default as Google } from './Google' -export { default as Gps } from './Gps' -export { default as GraduationCap } from './GraduationCap' -export { default as GraphDown } from './GraphDown' -export { default as GraphUp } from './GraphUp' -export { default as GreenBus } from './GreenBus' -export { default as GreenTruck } from './GreenTruck' -export { default as GreenVehicle } from './GreenVehicle' -export { default as GridAdd } from './GridAdd' -export { default as GridMinus } from './GridMinus' -export { default as GridRemove } from './GridRemove' -export { default as Group } from './Group' -export { default as Gym } from './Gym' -export { default as HalfCookie } from './HalfCookie' -export { default as HalfMoon } from './HalfMoon' -export { default as Hammer } from './Hammer' -export { default as HandBrake } from './HandBrake' -export { default as HandCard } from './HandCard' -export { default as HandCash } from './HandCash' -export { default as HandContactless } from './HandContactless' -export { default as Handbag } from './Handbag' -export { default as HardDrive } from './HardDrive' -export { default as Hat } from './Hat' -export { default as HdDisplay } from './HdDisplay' -export { default as Hd } from './Hd' -export { default as Hdr } from './Hdr' -export { default as HeadsetCharge } from './HeadsetCharge' -export { default as HeadsetHelp } from './HeadsetHelp' -export { default as HeadsetIssue } from './HeadsetIssue' -export { default as Headset } from './Headset' -export { default as HealthShield } from './HealthShield' -export { default as Healthcare } from './Healthcare' -export { default as HeartArrowDown } from './HeartArrowDown' -export { default as Heart } from './Heart' -export { default as Heating } from './Heating' -export { default as HeavyRain } from './HeavyRain' -export { default as HelpCircle } from './HelpCircle' -export { default as HelpSquare } from './HelpSquare' -export { default as Heptagon } from './Heptagon' -export { default as HerSlips } from './HerSlips' -export { default as HexagonAlt } from './HexagonAlt' -export { default as HexagonDice } from './HexagonDice' -export { default as Hexagon } from './Hexagon' -export { default as HighPriority } from './HighPriority' -export { default as HistoricShieldAlt } from './HistoricShieldAlt' -export { default as HistoricShield } from './HistoricShield' -export { default as HomeAltSlimHoriz } from './HomeAltSlimHoriz' -export { default as HomeAltSlim } from './HomeAltSlim' -export { default as HomeAlt } from './HomeAlt' -export { default as HomeHospital } from './HomeHospital' -export { default as HomeSale } from './HomeSale' -export { default as HomeSecure } from './HomeSecure' -export { default as HomeShield } from './HomeShield' -export { default as HomeSimpleDoor } from './HomeSimpleDoor' -export { default as HomeSimple } from './HomeSimple' -export { default as HomeTable } from './HomeTable' -export { default as HomeTemperatureIn } from './HomeTemperatureIn' -export { default as HomeTemperatureOut } from './HomeTemperatureOut' -export { default as HomeUser } from './HomeUser' -export { default as Home } from './Home' -export { default as HorizDistributionLeft } from './HorizDistributionLeft' -export { default as HorizDistributionRight } from './HorizDistributionRight' -export { default as HorizontalMerge } from './HorizontalMerge' -export { default as HorizontalSplit } from './HorizontalSplit' -export { default as HospitalSign } from './HospitalSign' -export { default as Hospital } from './Hospital' -export { default as HotAirBalloon } from './HotAirBalloon' -export { default as Hourglass } from './Hourglass' -export { default as HouseRooms } from './HouseRooms' -export { default as Html5 } from './Html5' -export { default as Hydrogen } from './Hydrogen' -export { default as Iconoir } from './Iconoir' -export { default as Import } from './Import' -export { default as Inclination } from './Inclination' -export { default as Industry } from './Industry' -export { default as Infinite } from './Infinite' -export { default as InfoEmpty } from './InfoEmpty' -export { default as InputField } from './InputField' -export { default as InputOutput } from './InputOutput' -export { default as InputSearch } from './InputSearch' -export { default as Instagram } from './Instagram' -export { default as Internet } from './Internet' -export { default as IntersectAlt } from './IntersectAlt' -export { default as Intersect } from './Intersect' -export { default as IosSettings } from './IosSettings' -export { default as IpAddress } from './IpAddress' -export { default as IrisScan } from './IrisScan' -export { default as ItalicSquare } from './ItalicSquare' -export { default as Italic } from './Italic' -export { default as Jellyfish } from './Jellyfish' -export { default as JournalPage } from './JournalPage' -export { default as Journal } from './Journal' -export { default as JpegFormat } from './JpegFormat' -export { default as JpgFormat } from './JpgFormat' -export { default as KanbanBoard } from './KanbanBoard' -export { default as KeyAltBack } from './KeyAltBack' -export { default as KeyAltMinus } from './KeyAltMinus' -export { default as KeyAltPlus } from './KeyAltPlus' -export { default as KeyAltRemove } from './KeyAltRemove' -export { default as KeyAlt } from './KeyAlt' -export { default as KeyCommand } from './KeyCommand' -export { default as KeyframeAlignCenter } from './KeyframeAlignCenter' -export { default as KeyframeAlignHorizontal } from './KeyframeAlignHorizontal' -export { default as KeyframeAlignVertical } from './KeyframeAlignVertical' -export { default as KeyframePosition } from './KeyframePosition' -export { default as Keyframe } from './Keyframe' -export { default as KeyframesCouple } from './KeyframesCouple' -export { default as Keyframes } from './Keyframes' -export { default as Label } from './Label' -export { default as Lamp } from './Lamp' -export { default as Language } from './Language' -export { default as LaptopCharging } from './LaptopCharging' -export { default as LaptopFix } from './LaptopFix' -export { default as LaptopIssue } from './LaptopIssue' -export { default as Laptop } from './Laptop' -export { default as LargeSuitcase } from './LargeSuitcase' -export { default as LayoutLeft } from './LayoutLeft' -export { default as LayoutRight } from './LayoutRight' -export { default as LeaderboardStar } from './LeaderboardStar' -export { default as Leaderboard } from './Leaderboard' -export { default as Leaf } from './Leaf' -export { default as Learning } from './Learning' -export { default as LeftRoundArrow } from './LeftRoundArrow' -export { default as Lens } from './Lens' -export { default as Lifebelt } from './Lifebelt' -export { default as LightBulbOff } from './LightBulbOff' -export { default as LightBulbOn } from './LightBulbOn' -export { default as LightBulb } from './LightBulb' -export { default as LineSpace } from './LineSpace' -export { default as Linear } from './Linear' -export { default as Link } from './Link' -export { default as LinkedIn } from './LinkedIn' -export { default as Linux } from './Linux' -export { default as ListSelect } from './ListSelect' -export { default as List } from './List' -export { default as LitecoinCircle } from './LitecoinCircle' -export { default as LitecoinRotateOut } from './LitecoinRotateOut' -export { default as LoadActionFloppy } from './LoadActionFloppy' -export { default as LockKey } from './LockKey' -export { default as Lock } from './Lock' -export { default as LockedBook } from './LockedBook' -export { default as LockedWindow } from './LockedWindow' -export { default as Loft3D } from './Loft3D' -export { default as LogDenied } from './LogDenied' -export { default as LogIn } from './LogIn' -export { default as LogOut } from './LogOut' -export { default as LongArrowDownLeft } from './LongArrowDownLeft' -export { default as LongArrowDownRight } from './LongArrowDownRight' -export { default as LongArrowLeftDown } from './LongArrowLeftDown' -export { default as LongArrowLeftUp } from './LongArrowLeftUp' -export { default as LongArrowRightDown } from './LongArrowRightDown' -export { default as LongArrowRightUp1 } from './LongArrowRightUp1' -export { default as LongArrowRightUp } from './LongArrowRightUp' -export { default as LongArrowUpLeft } from './LongArrowUpLeft' -export { default as LongArrowUpRight } from './LongArrowUpRight' -export { default as LotOfCash } from './LotOfCash' -export { default as Lullaby } from './Lullaby' -export { default as MacControlKey } from './MacControlKey' -export { default as MacDock } from './MacDock' -export { default as MacOptionKey } from './MacOptionKey' -export { default as MacOsWindow } from './MacOsWindow' -export { default as MagicWand } from './MagicWand' -export { default as MagnetEnergy } from './MagnetEnergy' -export { default as Magnet } from './Magnet' -export { default as MailIn } from './MailIn' -export { default as MailOpened } from './MailOpened' -export { default as MailOut } from './MailOut' -export { default as Mail } from './Mail' -export { default as Male } from './Male' -export { default as MapIssue } from './MapIssue' -export { default as Map } from './Map' -export { default as MapsArrowDiagonal } from './MapsArrowDiagonal' -export { default as MapsArrowIssue } from './MapsArrowIssue' -export { default as MapsArrow } from './MapsArrow' -export { default as MapsGoStraight } from './MapsGoStraight' -export { default as MapsTurnBack } from './MapsTurnBack' -export { default as MapsTurnLeft } from './MapsTurnLeft' -export { default as MapsTurnRight } from './MapsTurnRight' -export { default as MaskSquare } from './MaskSquare' -export { default as MastercardCard } from './MastercardCard' -export { default as MathBook } from './MathBook' -export { default as Maximize } from './Maximize' -export { default as Medal1St } from './Medal1St' -export { default as Medal } from './Medal' -export { default as MediaImageFolder } from './MediaImageFolder' -export { default as MediaImageList } from './MediaImageList' -export { default as MediaImage } from './MediaImage' -export { default as MediaVideoFolder } from './MediaVideoFolder' -export { default as MediaVideoList } from './MediaVideoList' -export { default as MediaVideo } from './MediaVideo' -export { default as MediumPriority } from './MediumPriority' -export { default as Medium } from './Medium' -export { default as Megaphone } from './Megaphone' -export { default as MenuScale } from './MenuScale' -export { default as Menu } from './Menu' -export { default as MessageAlert } from './MessageAlert' -export { default as MessageText } from './MessageText' -export { default as Message } from './Message' -export { default as Metro } from './Metro' -export { default as MicAdd } from './MicAdd' -export { default as MicCheck } from './MicCheck' -export { default as MicMute } from './MicMute' -export { default as MicRemove } from './MicRemove' -export { default as MicSpeaking } from './MicSpeaking' -export { default as MicWarning } from './MicWarning' -export { default as Mic } from './Mic' -export { default as Microscope } from './Microscope' -export { default as Minus1 } from './Minus1' -export { default as MinusCircle } from './MinusCircle' -export { default as MinusHexagon } from './MinusHexagon' -export { default as MinusPinAlt } from './MinusPinAlt' -export { default as MinusSquare } from './MinusSquare' -export { default as Minus } from './Minus' -export { default as Mirror } from './Mirror' -export { default as MissingFont } from './MissingFont' -export { default as ModernTv4K } from './ModernTv4K' -export { default as ModernTv } from './ModernTv' -export { default as MoneySquare } from './MoneySquare' -export { default as MoonSat } from './MoonSat' -export { default as MoreHorizCircle } from './MoreHorizCircle' -export { default as MoreHoriz } from './MoreHoriz' -export { default as MoreVertCircle } from './MoreVertCircle' -export { default as MoreVert } from './MoreVert' -export { default as Motorcycle } from './Motorcycle' -export { default as MouseButtonLeft } from './MouseButtonLeft' -export { default as MouseButtonRight } from './MouseButtonRight' -export { default as MouseScrollWheel } from './MouseScrollWheel' -export { default as MoveDown } from './MoveDown' -export { default as MoveLeft } from './MoveLeft' -export { default as MoveRight } from './MoveRight' -export { default as MoveRuler } from './MoveRuler' -export { default as MoveUp } from './MoveUp' -export { default as Movie } from './Movie' -export { default as MpegFormat } from './MpegFormat' -export { default as MultiBubble } from './MultiBubble' -export { default as MultiMacOsWindow } from './MultiMacOsWindow' -export { default as MultiWindow } from './MultiWindow' -export { default as MultiplePagesAdd } from './MultiplePagesAdd' -export { default as MultiplePagesDelete } from './MultiplePagesDelete' -export { default as MultiplePagesEmpty } from './MultiplePagesEmpty' -export { default as MultiplePagesRemove } from './MultiplePagesRemove' -export { default as MultiplePages } from './MultiplePages' -export { default as MusicDoubleNoteAdd } from './MusicDoubleNoteAdd' -export { default as MusicDoubleNote } from './MusicDoubleNote' -export { default as MusicNoteAdd } from './MusicNoteAdd' -export { default as MusicNote } from './MusicNote' -export { default as NavArrowDown } from './NavArrowDown' -export { default as NavArrowLeft } from './NavArrowLeft' -export { default as NavArrowRight } from './NavArrowRight' -export { default as NavArrowUp } from './NavArrowUp' -export { default as NavigatorAlt } from './NavigatorAlt' -export { default as Navigator } from './Navigator' -export { default as Neighbourhood } from './Neighbourhood' -export { default as NetworkAlt } from './NetworkAlt' -export { default as NetworkLeft } from './NetworkLeft' -export { default as NetworkRight } from './NetworkRight' -export { default as Network } from './Network' -export { default as NewTab } from './NewTab' -export { default as NintendoSwitch } from './NintendoSwitch' -export { default as Nitrogen } from './Nitrogen' -export { default as NoAccessWindow } from './NoAccessWindow' -export { default as NoBattery } from './NoBattery' -export { default as NoCoin } from './NoCoin' -export { default as NoCreditCard } from './NoCreditCard' -export { default as NoLink } from './NoLink' -export { default as NoLock } from './NoLock' -export { default as NoSmokingCircle } from './NoSmokingCircle' -export { default as NoSmoking } from './NoSmoking' -export { default as NonBinary } from './NonBinary' -export { default as Notes } from './Notes' -export { default as NpmSquare } from './NpmSquare' -export { default as Npm } from './Npm' -export { default as Number0Square } from './Number0Square' -export { default as Number1Square } from './Number1Square' -export { default as Number2Square } from './Number2Square' -export { default as Number3Square } from './Number3Square' -export { default as Number4Square } from './Number4Square' -export { default as Number5Square } from './Number5Square' -export { default as Number6Square } from './Number6Square' -export { default as Number7Square } from './Number7Square' -export { default as Number8Square } from './Number8Square' -export { default as Number9Square } from './Number9Square' -export { default as NumberedListLeft } from './NumberedListLeft' -export { default as NumberedListRight } from './NumberedListRight' -export { default as Octagon } from './Octagon' -export { default as OffTag } from './OffTag' -export { default as OilIndustry } from './OilIndustry' -export { default as Okrs } from './Okrs' -export { default as OnTag } from './OnTag' -export { default as OneFingerSelectHandGesture } from './OneFingerSelectHandGesture' -export { default as OnePointCircle } from './OnePointCircle' -export { default as OpenBook } from './OpenBook' -export { default as OpenInBrowser } from './OpenInBrowser' -export { default as OpenInWindow } from './OpenInWindow' -export { default as OpenNewWindow } from './OpenNewWindow' -export { default as OpenSelectHandGesture } from './OpenSelectHandGesture' -export { default as OpenVpn } from './OpenVpn' -export { default as OrangeHalf } from './OrangeHalf' -export { default as OrangeSliceAlt } from './OrangeSliceAlt' -export { default as OrangeSlice } from './OrangeSlice' -export { default as OrganicFoodSquare } from './OrganicFoodSquare' -export { default as OrganicFood } from './OrganicFood' -export { default as OrthogonalView } from './OrthogonalView' -export { default as Oxygen } from './Oxygen' -export { default as PackageLock } from './PackageLock' -export { default as Package } from './Package' -export { default as Packages } from './Packages' -export { default as Pacman } from './Pacman' -export { default as PageDown } from './PageDown' -export { default as PageEdit } from './PageEdit' -export { default as PageFlip } from './PageFlip' -export { default as PageLeft } from './PageLeft' -export { default as PageRight } from './PageRight' -export { default as PageSearch } from './PageSearch' -export { default as PageStar } from './PageStar' -export { default as PageUp } from './PageUp' -export { default as Page } from './Page' -export { default as Palette } from './Palette' -export { default as PanoramaEnlarge } from './PanoramaEnlarge' -export { default as PanoramaReduce } from './PanoramaReduce' -export { default as PantsAlt } from './PantsAlt' -export { default as Pants } from './Pants' -export { default as Parking } from './Parking' -export { default as PasswordCursor } from './PasswordCursor' -export { default as PasswordError } from './PasswordError' -export { default as PasswordPass } from './PasswordPass' -export { default as PasteClipboard } from './PasteClipboard' -export { default as PatchHoles3D } from './PatchHoles3D' -export { default as PathArrow } from './PathArrow' -export { default as PauseWindow } from './PauseWindow' -export { default as Pause } from './Pause' -export { default as Paypal } from './Paypal' -export { default as PcCheck } from './PcCheck' -export { default as PcFirewall } from './PcFirewall' -export { default as PcMouse } from './PcMouse' -export { default as PcNoEntry } from './PcNoEntry' -export { default as PcWarning } from './PcWarning' -export { default as PeaceHand } from './PeaceHand' -export { default as PenConnectBluetooth } from './PenConnectBluetooth' -export { default as PenConnectWifi } from './PenConnectWifi' -export { default as PenTabletConnectUsb } from './PenTabletConnectUsb' -export { default as PenTabletConnectWifi } from './PenTabletConnectWifi' -export { default as PenTablet } from './PenTablet' -export { default as Pentagon } from './Pentagon' -export { default as PeopleTag } from './PeopleTag' -export { default as PercentRotateOut } from './PercentRotateOut' -export { default as PercentageCircle } from './PercentageCircle' -export { default as PercentageSquare } from './PercentageSquare' -export { default as Percentage } from './Percentage' -export { default as PerspectiveView } from './PerspectiveView' -export { default as PharmacyCrossCircle } from './PharmacyCrossCircle' -export { default as PharmacyCrossSquare } from './PharmacyCrossSquare' -export { default as PhoneAdd } from './PhoneAdd' -export { default as PhoneDelete } from './PhoneDelete' -export { default as PhoneDisabled } from './PhoneDisabled' -export { default as PhoneIncome } from './PhoneIncome' -export { default as PhoneOutcome } from './PhoneOutcome' -export { default as PhonePaused } from './PhonePaused' -export { default as PhoneRemove } from './PhoneRemove' -export { default as Phone } from './Phone' -export { default as PiggyBank } from './PiggyBank' -export { default as Pillow } from './Pillow' -export { default as PinAlt } from './PinAlt' -export { default as Pin } from './Pin' -export { default as PineTree } from './PineTree' -export { default as Pinterest } from './Pinterest' -export { default as Pipe3D } from './Pipe3D' -export { default as PizzaSlice } from './PizzaSlice' -export { default as PlanetAlt } from './PlanetAlt' -export { default as PlanetSat } from './PlanetSat' -export { default as Planet } from './Planet' -export { default as Planimetry } from './Planimetry' -export { default as Play } from './Play' -export { default as PlaylistAdd } from './PlaylistAdd' -export { default as PlaylistPlay } from './PlaylistPlay' -export { default as Playlist } from './Playlist' -export { default as PlaystationGamepad } from './PlaystationGamepad' -export { default as PlugTypeA } from './PlugTypeA' -export { default as PlugTypeC } from './PlugTypeC' -export { default as PlugTypeG } from './PlugTypeG' -export { default as PlugTypeL } from './PlugTypeL' -export { default as Plus } from './Plus' -export { default as PngFormat } from './PngFormat' -export { default as Pocket } from './Pocket' -export { default as Podcast } from './Podcast' -export { default as Pokeball } from './Pokeball' -export { default as PositionAlign } from './PositionAlign' -export { default as Position } from './Position' -export { default as Post } from './Post' -export { default as Potion } from './Potion' -export { default as Pound } from './Pound' -export { default as PrecisionTool } from './PrecisionTool' -export { default as Presentation } from './Presentation' -export { default as PrinterAlt } from './PrinterAlt' -export { default as Printer } from './Printer' -export { default as PrintingPage } from './PrintingPage' -export { default as PriorityDown } from './PriorityDown' -export { default as PriorityUp } from './PriorityUp' -export { default as PrivacyPolicy } from './PrivacyPolicy' -export { default as PrivateWifi } from './PrivateWifi' -export { default as ProfileCircle } from './ProfileCircle' -export { default as Prohibition } from './Prohibition' -export { default as ProjectCurve3D } from './ProjectCurve3D' -export { default as Puzzle } from './Puzzle' -export { default as QrCode } from './QrCode' -export { default as QuestionMark } from './QuestionMark' -export { default as QuoteMessage } from './QuoteMessage' -export { default as Quote } from './Quote' -export { default as Radiation } from './Radiation' -export { default as Radius } from './Radius' -export { default as Rain } from './Rain' -export { default as RawFormat } from './RawFormat' -export { default as ReceiveDollars } from './ReceiveDollars' -export { default as ReceiveEuros } from './ReceiveEuros' -export { default as ReceivePounds } from './ReceivePounds' -export { default as ReceiveYens } from './ReceiveYens' -export { default as RedoAction } from './RedoAction' -export { default as RedoCircle } from './RedoCircle' -export { default as Redo } from './Redo' -export { default as ReduceRoundArrow } from './ReduceRoundArrow' -export { default as Reduce } from './Reduce' -export { default as RefreshCircular } from './RefreshCircular' -export { default as RefreshDouble } from './RefreshDouble' -export { default as Refresh } from './Refresh' -export { default as ReloadWindow } from './ReloadWindow' -export { default as ReminderHandGesture } from './ReminderHandGesture' -export { default as RemoveDatabaseScript } from './RemoveDatabaseScript' -export { default as RemoveFolder } from './RemoveFolder' -export { default as RemoveFrame } from './RemoveFrame' -export { default as RemoveFromCart } from './RemoveFromCart' -export { default as RemoveKeyframeAlt } from './RemoveKeyframeAlt' -export { default as RemoveKeyframe } from './RemoveKeyframe' -export { default as RemoveKeyframes } from './RemoveKeyframes' -export { default as RemoveLink } from './RemoveLink' -export { default as RemoveMediaImage } from './RemoveMediaImage' -export { default as RemoveMediaVideo } from './RemoveMediaVideo' -export { default as RemovePageAlt } from './RemovePageAlt' -export { default as RemovePage } from './RemovePage' -export { default as RemovePinAlt } from './RemovePinAlt' -export { default as RemovePin } from './RemovePin' -export { default as RemoveSelection } from './RemoveSelection' -export { default as RemoveSquare } from './RemoveSquare' -export { default as RemoveUser } from './RemoveUser' -export { default as RepeatOnce } from './RepeatOnce' -export { default as Repeat } from './Repeat' -export { default as ReplyToMessage } from './ReplyToMessage' -export { default as Reply } from './Reply' -export { default as ReportColumns } from './ReportColumns' -export { default as Reports } from './Reports' -export { default as Repository } from './Repository' -export { default as Restart } from './Restart' -export { default as Rewind } from './Rewind' -export { default as Rhombus } from './Rhombus' -export { default as RightRoundArrow } from './RightRoundArrow' -export { default as Rings } from './Rings' -export { default as Rocket } from './Rocket' -export { default as Rook } from './Rook' -export { default as RotateCameraLeft } from './RotateCameraLeft' -export { default as RotateCameraRight } from './RotateCameraRight' -export { default as RoundFlask } from './RoundFlask' -export { default as RoundedMirror } from './RoundedMirror' -export { default as RssFeedTag } from './RssFeedTag' -export { default as RssFeed } from './RssFeed' -export { default as RubikCube } from './RubikCube' -export { default as RulerAdd } from './RulerAdd' -export { default as RulerCombine } from './RulerCombine' -export { default as RulerRemove } from './RulerRemove' -export { default as Ruler } from './Ruler' -export { default as Running } from './Running' -export { default as Safari } from './Safari' -export { default as SafeArrowLeft } from './SafeArrowLeft' -export { default as SafeArrowRight } from './SafeArrowRight' -export { default as SafeOpen } from './SafeOpen' -export { default as Safe } from './Safe' -export { default as Sandals } from './Sandals' -export { default as SaveActionFloppy } from './SaveActionFloppy' -export { default as SaveFloppyDisk } from './SaveFloppyDisk' -export { default as ScaleFrameEnlarge } from './ScaleFrameEnlarge' -export { default as ScaleFrameReduce } from './ScaleFrameReduce' -export { default as ScanBarcode } from './ScanBarcode' -export { default as ScanQrCode } from './ScanQrCode' -export { default as Scanning } from './Scanning' -export { default as Scarf } from './Scarf' -export { default as ScissorAlt } from './ScissorAlt' -export { default as Scissor } from './Scissor' -export { default as Screenshot } from './Screenshot' -export { default as SeaAndSun } from './SeaAndSun' -export { default as SeaWaves } from './SeaWaves' -export { default as SearchEngine } from './SearchEngine' -export { default as SearchFont } from './SearchFont' -export { default as SearchWindow } from './SearchWindow' -export { default as Search } from './Search' -export { default as SecureWindow } from './SecureWindow' -export { default as SecurityPass } from './SecurityPass' -export { default as SelectWindow } from './SelectWindow' -export { default as Selection } from './Selection' -export { default as SelectiveTool } from './SelectiveTool' -export { default as SendDiagonal } from './SendDiagonal' -export { default as SendDollars } from './SendDollars' -export { default as SendEuros } from './SendEuros' -export { default as SendMail } from './SendMail' -export { default as SendPounds } from './SendPounds' -export { default as SendYens } from './SendYens' -export { default as Send } from './Send' -export { default as ServerConnection } from './ServerConnection' -export { default as Server } from './Server' -export { default as SettingsCloud } from './SettingsCloud' -export { default as SettingsProfiles } from './SettingsProfiles' -export { default as Settings } from './Settings' -export { default as ShareAndroid } from './ShareAndroid' -export { default as ShareIos } from './ShareIos' -export { default as ShieldAdd } from './ShieldAdd' -export { default as ShieldAlert } from './ShieldAlert' -export { default as ShieldAlt } from './ShieldAlt' -export { default as ShieldBroken } from './ShieldBroken' -export { default as ShieldCheck } from './ShieldCheck' -export { default as ShieldCross } from './ShieldCross' -export { default as ShieldDownload } from './ShieldDownload' -export { default as ShieldEye } from './ShieldEye' -export { default as ShieldLoading } from './ShieldLoading' -export { default as ShieldMinus } from './ShieldMinus' -export { default as ShieldQuestion } from './ShieldQuestion' -export { default as ShieldSearch } from './ShieldSearch' -export { default as ShieldUpload } from './ShieldUpload' -export { default as Shield } from './Shield' -export { default as ShopAlt } from './ShopAlt' -export { default as Shop } from './Shop' -export { default as ShoppingBagAdd } from './ShoppingBagAdd' -export { default as ShoppingBagAlt } from './ShoppingBagAlt' -export { default as ShoppingBagArrowDown } from './ShoppingBagArrowDown' -export { default as ShoppingBagArrowUp } from './ShoppingBagArrowUp' -export { default as ShoppingBagCheck } from './ShoppingBagCheck' -export { default as ShoppingBagIssue } from './ShoppingBagIssue' -export { default as ShoppingBagRemove } from './ShoppingBagRemove' -export { default as ShoppingBag } from './ShoppingBag' -export { default as ShoppingCodeCheck } from './ShoppingCodeCheck' -export { default as ShoppingCodeError } from './ShoppingCodeError' -export { default as ShoppingCode } from './ShoppingCode' -export { default as ShortPantsAlt } from './ShortPantsAlt' -export { default as ShortPants } from './ShortPants' -export { default as Shortcut } from './Shortcut' -export { default as Shuffle } from './Shuffle' -export { default as SidebarCollapse } from './SidebarCollapse' -export { default as SidebarExpand } from './SidebarExpand' -export { default as SigmaFunction } from './SigmaFunction' -export { default as SimpleCart } from './SimpleCart' -export { default as SineWave } from './SineWave' -export { default as SingleTapGesture } from './SingleTapGesture' -export { default as Skateboard } from './Skateboard' -export { default as Skateboarding } from './Skateboarding' -export { default as SkipNext } from './SkipNext' -export { default as SkipPrev } from './SkipPrev' -export { default as Slash } from './Slash' -export { default as SleeperChair } from './SleeperChair' -export { default as SmallLampAlt } from './SmallLampAlt' -export { default as SmallLamp } from './SmallLamp' -export { default as SmallShopAlt } from './SmallShopAlt' -export { default as SmallShop } from './SmallShop' -export { default as SmartphoneDevice } from './SmartphoneDevice' -export { default as Smoking } from './Smoking' -export { default as Snapchat } from './Snapchat' -export { default as SnowFlake } from './SnowFlake' -export { default as Snow } from './Snow' -export { default as Soap } from './Soap' -export { default as SoccerBall } from './SoccerBall' -export { default as Sofa } from './Sofa' -export { default as SoilAlt } from './SoilAlt' -export { default as Soil } from './Soil' -export { default as SortDown } from './SortDown' -export { default as SortUp } from './SortUp' -export { default as Sort } from './Sort' -export { default as SoundHigh } from './SoundHigh' -export { default as SoundLow } from './SoundLow' -export { default as SoundMin } from './SoundMin' -export { default as SoundOff } from './SoundOff' -export { default as Spades } from './Spades' -export { default as Spark } from './Spark' -export { default as Sparks } from './Sparks' -export { default as Sphere } from './Sphere' -export { default as Spiral } from './Spiral' -export { default as SpockHandGesture } from './SpockHandGesture' -export { default as Spotify } from './Spotify' -export { default as SquareCursor } from './SquareCursor' -export { default as SquareWave } from './SquareWave' -export { default as Square } from './Square' -export { default as Stackoverflow } from './Stackoverflow' -export { default as StarDashed } from './StarDashed' -export { default as StarHalfDashed } from './StarHalfDashed' -export { default as Star } from './Star' -export { default as StatDown } from './StatDown' -export { default as StatUp } from './StatUp' -export { default as StatsDownSquare } from './StatsDownSquare' -export { default as StatsReport } from './StatsReport' -export { default as StatsUpSquare } from './StatsUpSquare' -export { default as Strategy } from './Strategy' -export { default as Stretching } from './Stretching' -export { default as Strikethrough } from './Strikethrough' -export { default as Stroller } from './Stroller' -export { default as StyleBorder } from './StyleBorder' -export { default as SubmitDocument } from './SubmitDocument' -export { default as Substract } from './Substract' -export { default as Suggestion } from './Suggestion' -export { default as SunLight } from './SunLight' -export { default as SvgFormat } from './SvgFormat' -export { default as Sweep3D } from './Sweep3D' -export { default as Swimming } from './Swimming' -export { default as SwipeDownGesture } from './SwipeDownGesture' -export { default as SwipeLeftGesture } from './SwipeLeftGesture' -export { default as SwipeRightGesture } from './SwipeRightGesture' -export { default as SwipeTwoFingersDownGesture } from './SwipeTwoFingersDownGesture' -export { default as SwipeTwoFingersLeftGesture } from './SwipeTwoFingersLeftGesture' -export { default as SwipeTwoFingersRightGesture } from './SwipeTwoFingersRightGesture' -export { default as SwipeTwoFingersUpGesture } from './SwipeTwoFingersUpGesture' -export { default as SwipeUpGesture } from './SwipeUpGesture' -export { default as SwitchOff } from './SwitchOff' -export { default as SwitchOn } from './SwitchOn' -export { default as SystemRestart } from './SystemRestart' -export { default as SystemShut } from './SystemShut' -export { default as TShirt } from './TShirt' -export { default as Table2Columns } from './Table2Columns' -export { default as TableRows } from './TableRows' -export { default as Table } from './Table' -export { default as TaskList } from './TaskList' -export { default as TelegramCircle } from './TelegramCircle' -export { default as Telegram } from './Telegram' -export { default as TemperatureDown } from './TemperatureDown' -export { default as TemperatureHigh } from './TemperatureHigh' -export { default as TemperatureLow } from './TemperatureLow' -export { default as TemperatureUp } from './TemperatureUp' -export { default as TennisBallAlt } from './TennisBallAlt' -export { default as TennisBall } from './TennisBall' -export { default as TerminalTag } from './TerminalTag' -export { default as Terminal } from './Terminal' -export { default as TestTube } from './TestTube' -export { default as TextAlt } from './TextAlt' -export { default as TextBox } from './TextBox' -export { default as TextSize } from './TextSize' -export { default as Text } from './Text' -export { default as Threads } from './Threads' -export { default as ThreePointsCircle } from './ThreePointsCircle' -export { default as ThreeStars } from './ThreeStars' -export { default as ThumbsDown } from './ThumbsDown' -export { default as ThumbsUp } from './ThumbsUp' -export { default as Thunderstorm } from './Thunderstorm' -export { default as TifFormat } from './TifFormat' -export { default as TiffFormat } from './TiffFormat' -export { default as TikTok } from './TikTok' -export { default as TimeZone } from './TimeZone' -export { default as TimerOff } from './TimerOff' -export { default as Timer } from './Timer' -export { default as Tools } from './Tools' -export { default as Tournament } from './Tournament' -export { default as TowerCheck } from './TowerCheck' -export { default as TowerNoAccess } from './TowerNoAccess' -export { default as TowerWarning } from './TowerWarning' -export { default as Tower } from './Tower' -export { default as Trademark } from './Trademark' -export { default as Train } from './Train' -export { default as Tram } from './Tram' -export { default as TransitionDown } from './TransitionDown' -export { default as TransitionLeft } from './TransitionLeft' -export { default as TransitionRight } from './TransitionRight' -export { default as TransitionUp } from './TransitionUp' -export { default as Translate } from './Translate' -export { default as Trash } from './Trash' -export { default as Treadmill } from './Treadmill' -export { default as Tree } from './Tree' -export { default as Trekking } from './Trekking' -export { default as Trello } from './Trello' -export { default as TriangleFlagCircle } from './TriangleFlagCircle' -export { default as TriangleFlagTwoStripes } from './TriangleFlagTwoStripes' -export { default as TriangleFlag } from './TriangleFlag' -export { default as Triangle } from './Triangle' -export { default as Trophy } from './Trophy' -export { default as TruckLength } from './TruckLength' -export { default as Truck } from './Truck' -export { default as Tunnel } from './Tunnel' -export { default as TvFix } from './TvFix' -export { default as TvIssue } from './TvIssue' -export { default as Tv } from './Tv' -export { default as TwitterVerifiedBadge } from './TwitterVerifiedBadge' -export { default as Twitter } from './Twitter' -export { default as TwoPointsCircle } from './TwoPointsCircle' -export { default as TwoSeaterSofa } from './TwoSeaterSofa' -export { default as Type } from './Type' -export { default as UmbrellaFull } from './UmbrellaFull' -export { default as UnderlineSquare } from './UnderlineSquare' -export { default as Underline } from './Underline' -export { default as UndoAction } from './UndoAction' -export { default as UndoCircle } from './UndoCircle' -export { default as Undo } from './Undo' -export { default as UnionAlt } from './UnionAlt' -export { default as UnionHorizAlt } from './UnionHorizAlt' -export { default as Union } from './Union' -export { default as Unity5 } from './Unity5' -export { default as Unity } from './Unity' -export { default as Unjoin3D } from './Unjoin3D' -export { default as UpRoundArrow } from './UpRoundArrow' -export { default as UploadDataWindow } from './UploadDataWindow' -export { default as UploadSquare } from './UploadSquare' -export { default as Upload } from './Upload' -export { default as Usb } from './Usb' -export { default as UserBag } from './UserBag' -export { default as UserCart } from './UserCart' -export { default as UserCircle } from './UserCircle' -export { default as UserCrown } from './UserCrown' -export { default as UserLove } from './UserLove' -export { default as UserScan } from './UserScan' -export { default as UserSquare } from './UserSquare' -export { default as UserStar } from './UserStar' -export { default as User } from './User' -export { default as VeganCircle } from './VeganCircle' -export { default as VeganSquare } from './VeganSquare' -export { default as Vegan } from './Vegan' -export { default as VerifiedBadge } from './VerifiedBadge' -export { default as VerifiedUser } from './VerifiedUser' -export { default as VerticalMerge } from './VerticalMerge' -export { default as VerticalSplit } from './VerticalSplit' -export { default as Vials } from './Vials' -export { default as VideoCameraOff } from './VideoCameraOff' -export { default as VideoCamera } from './VideoCamera' -export { default as VideoProjector } from './VideoProjector' -export { default as ViewColumns2 } from './ViewColumns2' -export { default as ViewColumns3 } from './ViewColumns3' -export { default as ViewGrid } from './ViewGrid' -export { default as ViewStructureDown } from './ViewStructureDown' -export { default as ViewStructureUp } from './ViewStructureUp' -export { default as View360 } from './View360' -export { default as VoiceCircle } from './VoiceCircle' -export { default as VoiceError } from './VoiceError' -export { default as VoiceLockCircle } from './VoiceLockCircle' -export { default as VoiceOk } from './VoiceOk' -export { default as VoicePhone } from './VoicePhone' -export { default as VoiceScan } from './VoiceScan' -export { default as VoiceSquare } from './VoiceSquare' -export { default as Voice } from './Voice' -export { default as VrSymbol } from './VrSymbol' -export { default as VueJs } from './VueJs' -export { default as Waist } from './Waist' -export { default as Walking } from './Walking' -export { default as Wallet } from './Wallet' -export { default as WarningCircle } from './WarningCircle' -export { default as WarningHexagon } from './WarningHexagon' -export { default as WarningSquare } from './WarningSquare' -export { default as WarningTriangle } from './WarningTriangle' -export { default as WarningWindow } from './WarningWindow' -export { default as Wash } from './Wash' -export { default as WashingMachine } from './WashingMachine' -export { default as WateringSoil } from './WateringSoil' -export { default as WebWindowClose } from './WebWindowClose' -export { default as WebWindowEnergyConsumption } from './WebWindowEnergyConsumption' -export { default as WebWindow } from './WebWindow' -export { default as WebpFormat } from './WebpFormat' -export { default as WeightAlt } from './WeightAlt' -export { default as Weight } from './Weight' -export { default as WhiteFlag } from './WhiteFlag' -export { default as WifiError } from './WifiError' -export { default as WifiIssue } from './WifiIssue' -export { default as WifiOff } from './WifiOff' -export { default as WifiSignalNone } from './WifiSignalNone' -export { default as WifiTag } from './WifiTag' -export { default as Wifi } from './Wifi' -export { default as Wind } from './Wind' -export { default as Windows } from './Windows' -export { default as Wolf } from './Wolf' -export { default as WomenTShirt } from './WomenTShirt' -export { default as WrapText } from './WrapText' -export { default as Wrench } from './Wrench' -export { default as Wristwatch } from './Wristwatch' -export { default as Www } from './Www' -export { default as XCoordinate } from './XCoordinate' -export { default as XboxA } from './XboxA' -export { default as XboxB } from './XboxB' -export { default as XboxX } from './XboxX' -export { default as XboxY } from './XboxY' -export { default as XrayView } from './XrayView' -export { default as YCoordinate } from './YCoordinate' -export { default as Yelp } from './Yelp' -export { default as YenSquare } from './YenSquare' -export { default as Yen } from './Yen' -export { default as Yoga } from './Yoga' -export { default as YouTube } from './YouTube' -export { default as ZCoordinate } from './ZCoordinate' -export { default as ZoomIn } from './ZoomIn' -export { default as ZoomOut } from './ZoomOut' -export { IconoirProvider, IconoirContext, IconoirContextValue } from './IconoirContext' \ No newline at end of file diff --git a/packages/iconoir-react/src/server/3DAddHole.tsx b/packages/iconoir-react/src/server/3DAddHole.tsx index 5179f93d..b86f7ec1 100644 --- a/packages/iconoir-react/src/server/3DAddHole.tsx +++ b/packages/iconoir-react/src/server/3DAddHole.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function Svg3DAddHole( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DAddHole); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DAddHole = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(Svg3DAddHole); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DArc.tsx b/packages/iconoir-react/src/server/3DArc.tsx index 51c10860..4f408f29 100644 --- a/packages/iconoir-react/src/server/3DArc.tsx +++ b/packages/iconoir-react/src/server/3DArc.tsx @@ -1,35 +1,32 @@ import * as React from "react"; -function Svg3DArc( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DArc); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DArc = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(Svg3DArc); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DArcCenterPt.tsx b/packages/iconoir-react/src/server/3DArcCenterPt.tsx index bc6dce2d..0632361e 100644 --- a/packages/iconoir-react/src/server/3DArcCenterPt.tsx +++ b/packages/iconoir-react/src/server/3DArcCenterPt.tsx @@ -1,49 +1,49 @@ import * as React from "react"; -function Svg3DArcCenterPt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DArcCenterPt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DArcCenterPt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(Svg3DArcCenterPt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DBridge.tsx b/packages/iconoir-react/src/server/3DBridge.tsx index 8c99e162..a389fb5d 100644 --- a/packages/iconoir-react/src/server/3DBridge.tsx +++ b/packages/iconoir-react/src/server/3DBridge.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function Svg3DBridge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DBridge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DBridge = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(Svg3DBridge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DCenterBox.tsx b/packages/iconoir-react/src/server/3DCenterBox.tsx index 6978952b..20a991a6 100644 --- a/packages/iconoir-react/src/server/3DCenterBox.tsx +++ b/packages/iconoir-react/src/server/3DCenterBox.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function Svg3DCenterBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DCenterBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DCenterBox = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(Svg3DCenterBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DDraftFace.tsx b/packages/iconoir-react/src/server/3DDraftFace.tsx index e9e2d1df..3c822548 100644 --- a/packages/iconoir-react/src/server/3DDraftFace.tsx +++ b/packages/iconoir-react/src/server/3DDraftFace.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function Svg3DDraftFace( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DDraftFace); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DDraftFace = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(Svg3DDraftFace); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DEllipse.tsx b/packages/iconoir-react/src/server/3DEllipse.tsx index 011944ff..978cb33c 100644 --- a/packages/iconoir-react/src/server/3DEllipse.tsx +++ b/packages/iconoir-react/src/server/3DEllipse.tsx @@ -1,42 +1,42 @@ import * as React from "react"; -function Svg3DEllipse( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DEllipse); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DEllipse = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(Svg3DEllipse); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DEllipseThreePts.tsx b/packages/iconoir-react/src/server/3DEllipseThreePts.tsx index 0af27231..e4924c5d 100644 --- a/packages/iconoir-react/src/server/3DEllipseThreePts.tsx +++ b/packages/iconoir-react/src/server/3DEllipseThreePts.tsx @@ -1,62 +1,62 @@ import * as React from "react"; -function Svg3DEllipseThreePts( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DEllipseThreePts); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DEllipseThreePts = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + + +); +const ForwardRef = forwardRef(Svg3DEllipseThreePts); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DPtBox.tsx b/packages/iconoir-react/src/server/3DPtBox.tsx index 81cfe7d6..302494e8 100644 --- a/packages/iconoir-react/src/server/3DPtBox.tsx +++ b/packages/iconoir-react/src/server/3DPtBox.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function Svg3DPtBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DPtBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DPtBox = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(Svg3DPtBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DRectCornerToCorner.tsx b/packages/iconoir-react/src/server/3DRectCornerToCorner.tsx index 2e02d247..ab7eee21 100644 --- a/packages/iconoir-react/src/server/3DRectCornerToCorner.tsx +++ b/packages/iconoir-react/src/server/3DRectCornerToCorner.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function Svg3DRectCornerToCorner( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DRectCornerToCorner); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DRectCornerToCorner = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(Svg3DRectCornerToCorner); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DRectFromCenter.tsx b/packages/iconoir-react/src/server/3DRectFromCenter.tsx index c8bdbe77..c54285a7 100644 --- a/packages/iconoir-react/src/server/3DRectFromCenter.tsx +++ b/packages/iconoir-react/src/server/3DRectFromCenter.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function Svg3DRectFromCenter( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DRectFromCenter); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DRectFromCenter = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(Svg3DRectFromCenter); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DRectThreePts.tsx b/packages/iconoir-react/src/server/3DRectThreePts.tsx index 86389695..1fa218a2 100644 --- a/packages/iconoir-react/src/server/3DRectThreePts.tsx +++ b/packages/iconoir-react/src/server/3DRectThreePts.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function Svg3DRectThreePts( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DRectThreePts); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DRectThreePts = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(Svg3DRectThreePts); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DSelectEdge.tsx b/packages/iconoir-react/src/server/3DSelectEdge.tsx index ca65e2b8..5f289a6a 100644 --- a/packages/iconoir-react/src/server/3DSelectEdge.tsx +++ b/packages/iconoir-react/src/server/3DSelectEdge.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function Svg3DSelectEdge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DSelectEdge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DSelectEdge = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(Svg3DSelectEdge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DSelectFace.tsx b/packages/iconoir-react/src/server/3DSelectFace.tsx index caa930a0..13f33301 100644 --- a/packages/iconoir-react/src/server/3DSelectFace.tsx +++ b/packages/iconoir-react/src/server/3DSelectFace.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function Svg3DSelectFace( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DSelectFace); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DSelectFace = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(Svg3DSelectFace); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DSelectPoint.tsx b/packages/iconoir-react/src/server/3DSelectPoint.tsx index a7eee3d0..c0df38be 100644 --- a/packages/iconoir-react/src/server/3DSelectPoint.tsx +++ b/packages/iconoir-react/src/server/3DSelectPoint.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function Svg3DSelectPoint( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DSelectPoint); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DSelectPoint = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(Svg3DSelectPoint); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DSelectSolid.tsx b/packages/iconoir-react/src/server/3DSelectSolid.tsx index beafb92e..de38febc 100644 --- a/packages/iconoir-react/src/server/3DSelectSolid.tsx +++ b/packages/iconoir-react/src/server/3DSelectSolid.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function Svg3DSelectSolid( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DSelectSolid); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DSelectSolid = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(Svg3DSelectSolid); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/3DThreePtsBox.tsx b/packages/iconoir-react/src/server/3DThreePtsBox.tsx index 67bbf64e..451c6ae3 100644 --- a/packages/iconoir-react/src/server/3DThreePtsBox.tsx +++ b/packages/iconoir-react/src/server/3DThreePtsBox.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function Svg3DThreePtsBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(Svg3DThreePtsBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const Svg3DThreePtsBox = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(Svg3DThreePtsBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Accessibility.tsx b/packages/iconoir-react/src/server/Accessibility.tsx index c88ec928..f1f7c436 100644 --- a/packages/iconoir-react/src/server/Accessibility.tsx +++ b/packages/iconoir-react/src/server/Accessibility.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgAccessibility( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAccessibility); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAccessibility = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAccessibility); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AccessibilitySign.tsx b/packages/iconoir-react/src/server/AccessibilitySign.tsx index 1eea439c..da29257d 100644 --- a/packages/iconoir-react/src/server/AccessibilitySign.tsx +++ b/packages/iconoir-react/src/server/AccessibilitySign.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAccessibilitySign( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAccessibilitySign); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAccessibilitySign = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAccessibilitySign); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AccessibilityTech.tsx b/packages/iconoir-react/src/server/AccessibilityTech.tsx index 52b4b6d8..7f852595 100644 --- a/packages/iconoir-react/src/server/AccessibilityTech.tsx +++ b/packages/iconoir-react/src/server/AccessibilityTech.tsx @@ -1,45 +1,45 @@ import * as React from "react"; -function SvgAccessibilityTech( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAccessibilityTech); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAccessibilityTech = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgAccessibilityTech); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Activity.tsx b/packages/iconoir-react/src/server/Activity.tsx index 8de6874a..2d2ad267 100644 --- a/packages/iconoir-react/src/server/Activity.tsx +++ b/packages/iconoir-react/src/server/Activity.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgActivity( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgActivity); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgActivity = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgActivity); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddCircle.tsx b/packages/iconoir-react/src/server/AddCircle.tsx index 5ddb1123..5c405b2c 100644 --- a/packages/iconoir-react/src/server/AddCircle.tsx +++ b/packages/iconoir-react/src/server/AddCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAddCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAddCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddDatabaseScript.tsx b/packages/iconoir-react/src/server/AddDatabaseScript.tsx index 3e5ef523..8b28d3bb 100644 --- a/packages/iconoir-react/src/server/AddDatabaseScript.tsx +++ b/packages/iconoir-react/src/server/AddDatabaseScript.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAddDatabaseScript( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddDatabaseScript); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddDatabaseScript = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAddDatabaseScript); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddFolder.tsx b/packages/iconoir-react/src/server/AddFolder.tsx index e5e199c0..74142d93 100644 --- a/packages/iconoir-react/src/server/AddFolder.tsx +++ b/packages/iconoir-react/src/server/AddFolder.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAddFolder( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddFolder); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddFolder = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAddFolder); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddFrame.tsx b/packages/iconoir-react/src/server/AddFrame.tsx index cdad99f7..1331cb6f 100644 --- a/packages/iconoir-react/src/server/AddFrame.tsx +++ b/packages/iconoir-react/src/server/AddFrame.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgAddFrame( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddFrame); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddFrame = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAddFrame); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddHexagon.tsx b/packages/iconoir-react/src/server/AddHexagon.tsx index 594fc0c2..4453dfce 100644 --- a/packages/iconoir-react/src/server/AddHexagon.tsx +++ b/packages/iconoir-react/src/server/AddHexagon.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAddHexagon( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddHexagon); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddHexagon = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAddHexagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddKeyframe.tsx b/packages/iconoir-react/src/server/AddKeyframe.tsx index a65f1fa7..d3d5cb2a 100644 --- a/packages/iconoir-react/src/server/AddKeyframe.tsx +++ b/packages/iconoir-react/src/server/AddKeyframe.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAddKeyframe( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddKeyframe); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddKeyframe = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAddKeyframe); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddKeyframeAlt.tsx b/packages/iconoir-react/src/server/AddKeyframeAlt.tsx index ac9b2240..10c2f0f3 100644 --- a/packages/iconoir-react/src/server/AddKeyframeAlt.tsx +++ b/packages/iconoir-react/src/server/AddKeyframeAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAddKeyframeAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddKeyframeAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddKeyframeAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAddKeyframeAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddKeyframes.tsx b/packages/iconoir-react/src/server/AddKeyframes.tsx index e48fd0d1..a333a793 100644 --- a/packages/iconoir-react/src/server/AddKeyframes.tsx +++ b/packages/iconoir-react/src/server/AddKeyframes.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgAddKeyframes( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddKeyframes); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddKeyframes = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgAddKeyframes); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddLens.tsx b/packages/iconoir-react/src/server/AddLens.tsx index 20079a5e..b933db8e 100644 --- a/packages/iconoir-react/src/server/AddLens.tsx +++ b/packages/iconoir-react/src/server/AddLens.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgAddLens( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddLens); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddLens = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAddLens); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddMediaImage.tsx b/packages/iconoir-react/src/server/AddMediaImage.tsx index a1bc4593..cc18b144 100644 --- a/packages/iconoir-react/src/server/AddMediaImage.tsx +++ b/packages/iconoir-react/src/server/AddMediaImage.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAddMediaImage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddMediaImage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddMediaImage = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAddMediaImage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddMediaVideo.tsx b/packages/iconoir-react/src/server/AddMediaVideo.tsx index ea9efab3..8e31e07a 100644 --- a/packages/iconoir-react/src/server/AddMediaVideo.tsx +++ b/packages/iconoir-react/src/server/AddMediaVideo.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAddMediaVideo( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddMediaVideo); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddMediaVideo = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAddMediaVideo); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddPage.tsx b/packages/iconoir-react/src/server/AddPage.tsx index cfb52ff9..b93df7ba 100644 --- a/packages/iconoir-react/src/server/AddPage.tsx +++ b/packages/iconoir-react/src/server/AddPage.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAddPage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddPage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddPage = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAddPage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddPageAlt.tsx b/packages/iconoir-react/src/server/AddPageAlt.tsx index a7752788..dcea689c 100644 --- a/packages/iconoir-react/src/server/AddPageAlt.tsx +++ b/packages/iconoir-react/src/server/AddPageAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAddPageAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddPageAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddPageAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAddPageAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddPinAlt.tsx b/packages/iconoir-react/src/server/AddPinAlt.tsx index 4933f433..a84fb68e 100644 --- a/packages/iconoir-react/src/server/AddPinAlt.tsx +++ b/packages/iconoir-react/src/server/AddPinAlt.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgAddPinAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddPinAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddPinAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgAddPinAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddSelection.tsx b/packages/iconoir-react/src/server/AddSelection.tsx index 1325ab9e..71f8426c 100644 --- a/packages/iconoir-react/src/server/AddSelection.tsx +++ b/packages/iconoir-react/src/server/AddSelection.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAddSelection( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddSelection); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddSelection = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAddSelection); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddSquare.tsx b/packages/iconoir-react/src/server/AddSquare.tsx index 5db1ae29..83bb8f7d 100644 --- a/packages/iconoir-react/src/server/AddSquare.tsx +++ b/packages/iconoir-react/src/server/AddSquare.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAddSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAddSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddToCart.tsx b/packages/iconoir-react/src/server/AddToCart.tsx index a9a8efab..df5c61b9 100644 --- a/packages/iconoir-react/src/server/AddToCart.tsx +++ b/packages/iconoir-react/src/server/AddToCart.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAddToCart( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddToCart); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddToCart = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAddToCart); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AddUser.tsx b/packages/iconoir-react/src/server/AddUser.tsx index b233d39f..81a3f384 100644 --- a/packages/iconoir-react/src/server/AddUser.tsx +++ b/packages/iconoir-react/src/server/AddUser.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAddUser( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAddUser); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAddUser = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAddUser); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AdobeAfterEffects.tsx b/packages/iconoir-react/src/server/AdobeAfterEffects.tsx index 30975638..ca87d9cc 100644 --- a/packages/iconoir-react/src/server/AdobeAfterEffects.tsx +++ b/packages/iconoir-react/src/server/AdobeAfterEffects.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAdobeAfterEffects( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAdobeAfterEffects); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAdobeAfterEffects = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAdobeAfterEffects); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AdobeIllustrator.tsx b/packages/iconoir-react/src/server/AdobeIllustrator.tsx index bfe9d092..f6c35cad 100644 --- a/packages/iconoir-react/src/server/AdobeIllustrator.tsx +++ b/packages/iconoir-react/src/server/AdobeIllustrator.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAdobeIllustrator( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAdobeIllustrator); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAdobeIllustrator = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAdobeIllustrator); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AdobeIndesign.tsx b/packages/iconoir-react/src/server/AdobeIndesign.tsx index e84ffaff..1d398b04 100644 --- a/packages/iconoir-react/src/server/AdobeIndesign.tsx +++ b/packages/iconoir-react/src/server/AdobeIndesign.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAdobeIndesign( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAdobeIndesign); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAdobeIndesign = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAdobeIndesign); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AdobeLightroom.tsx b/packages/iconoir-react/src/server/AdobeLightroom.tsx index 2db7d483..eb052732 100644 --- a/packages/iconoir-react/src/server/AdobeLightroom.tsx +++ b/packages/iconoir-react/src/server/AdobeLightroom.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAdobeLightroom( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAdobeLightroom); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAdobeLightroom = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAdobeLightroom); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AdobePhotoshop.tsx b/packages/iconoir-react/src/server/AdobePhotoshop.tsx index f111151c..825a553d 100644 --- a/packages/iconoir-react/src/server/AdobePhotoshop.tsx +++ b/packages/iconoir-react/src/server/AdobePhotoshop.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAdobePhotoshop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAdobePhotoshop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAdobePhotoshop = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAdobePhotoshop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AdobeXd.tsx b/packages/iconoir-react/src/server/AdobeXd.tsx index 96b6d5b3..e45ee5e2 100644 --- a/packages/iconoir-react/src/server/AdobeXd.tsx +++ b/packages/iconoir-react/src/server/AdobeXd.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgAdobeXd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAdobeXd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAdobeXd = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAdobeXd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AfricanTree.tsx b/packages/iconoir-react/src/server/AfricanTree.tsx index e9d0490e..ee377131 100644 --- a/packages/iconoir-react/src/server/AfricanTree.tsx +++ b/packages/iconoir-react/src/server/AfricanTree.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgAfricanTree( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAfricanTree); + + + + + + + + +); +const ForwardRef = forwardRef(SvgAfricanTree); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Agile.tsx b/packages/iconoir-react/src/server/Agile.tsx index 63644733..7c841029 100644 --- a/packages/iconoir-react/src/server/Agile.tsx +++ b/packages/iconoir-react/src/server/Agile.tsx @@ -1,40 +1,37 @@ import * as React from "react"; -function SvgAgile( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAgile); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAgile = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgAgile); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AirConditioner.tsx b/packages/iconoir-react/src/server/AirConditioner.tsx index a66376de..74940ef5 100644 --- a/packages/iconoir-react/src/server/AirConditioner.tsx +++ b/packages/iconoir-react/src/server/AirConditioner.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAirConditioner( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAirConditioner); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAirConditioner = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAirConditioner); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Airplane.tsx b/packages/iconoir-react/src/server/Airplane.tsx index de1a2e03..d13f6602 100644 --- a/packages/iconoir-react/src/server/Airplane.tsx +++ b/packages/iconoir-react/src/server/Airplane.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAirplane( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAirplane); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAirplane = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAirplane); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AirplaneHelix.tsx b/packages/iconoir-react/src/server/AirplaneHelix.tsx index abbbc15c..a69e1ded 100644 --- a/packages/iconoir-react/src/server/AirplaneHelix.tsx +++ b/packages/iconoir-react/src/server/AirplaneHelix.tsx @@ -1,37 +1,37 @@ import * as React from "react"; -function SvgAirplaneHelix( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAirplaneHelix); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAirplaneHelix = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAirplaneHelix); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AirplaneHelix45Deg.tsx b/packages/iconoir-react/src/server/AirplaneHelix45Deg.tsx index 83388549..21892fe0 100644 --- a/packages/iconoir-react/src/server/AirplaneHelix45Deg.tsx +++ b/packages/iconoir-react/src/server/AirplaneHelix45Deg.tsx @@ -1,37 +1,37 @@ import * as React from "react"; -function SvgAirplaneHelix45Deg( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAirplaneHelix45Deg); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAirplaneHelix45Deg = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAirplaneHelix45Deg); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AirplaneOff.tsx b/packages/iconoir-react/src/server/AirplaneOff.tsx index fe3f8280..b3000259 100644 --- a/packages/iconoir-react/src/server/AirplaneOff.tsx +++ b/packages/iconoir-react/src/server/AirplaneOff.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAirplaneOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAirplaneOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAirplaneOff = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAirplaneOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AirplaneRotation.tsx b/packages/iconoir-react/src/server/AirplaneRotation.tsx index c37d4005..a6659125 100644 --- a/packages/iconoir-react/src/server/AirplaneRotation.tsx +++ b/packages/iconoir-react/src/server/AirplaneRotation.tsx @@ -1,44 +1,44 @@ import * as React from "react"; -function SvgAirplaneRotation( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAirplaneRotation); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAirplaneRotation = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgAirplaneRotation); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Airplay.tsx b/packages/iconoir-react/src/server/Airplay.tsx index 1b1233be..0680bd51 100644 --- a/packages/iconoir-react/src/server/Airplay.tsx +++ b/packages/iconoir-react/src/server/Airplay.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgAirplay( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAirplay); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAirplay = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAirplay); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Alarm.tsx b/packages/iconoir-react/src/server/Alarm.tsx index e3fe0083..93999aa9 100644 --- a/packages/iconoir-react/src/server/Alarm.tsx +++ b/packages/iconoir-react/src/server/Alarm.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgAlarm( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlarm); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlarm = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgAlarm); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Album.tsx b/packages/iconoir-react/src/server/Album.tsx index 171acc98..d3cc9c7e 100644 --- a/packages/iconoir-react/src/server/Album.tsx +++ b/packages/iconoir-react/src/server/Album.tsx @@ -1,31 +1,28 @@ import * as React from "react"; -function SvgAlbum( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlbum); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlbum = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgAlbum); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlbumCarousel.tsx b/packages/iconoir-react/src/server/AlbumCarousel.tsx index 940e05a0..f03ec0b3 100644 --- a/packages/iconoir-react/src/server/AlbumCarousel.tsx +++ b/packages/iconoir-react/src/server/AlbumCarousel.tsx @@ -1,31 +1,31 @@ import * as React from "react"; -function SvgAlbumCarousel( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlbumCarousel); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlbumCarousel = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAlbumCarousel); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlbumList.tsx b/packages/iconoir-react/src/server/AlbumList.tsx index dfa2b81c..2510818e 100644 --- a/packages/iconoir-react/src/server/AlbumList.tsx +++ b/packages/iconoir-react/src/server/AlbumList.tsx @@ -1,31 +1,31 @@ import * as React from "react"; -function SvgAlbumList( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlbumList); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlbumList = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAlbumList); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlbumOpen.tsx b/packages/iconoir-react/src/server/AlbumOpen.tsx index 9af976ac..ded4b194 100644 --- a/packages/iconoir-react/src/server/AlbumOpen.tsx +++ b/packages/iconoir-react/src/server/AlbumOpen.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgAlbumOpen( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlbumOpen); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlbumOpen = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgAlbumOpen); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignBottomBox.tsx b/packages/iconoir-react/src/server/AlignBottomBox.tsx index e0f44c18..3b88c700 100644 --- a/packages/iconoir-react/src/server/AlignBottomBox.tsx +++ b/packages/iconoir-react/src/server/AlignBottomBox.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAlignBottomBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignBottomBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignBottomBox = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAlignBottomBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignCenter.tsx b/packages/iconoir-react/src/server/AlignCenter.tsx index 43ef613f..ec855cfc 100644 --- a/packages/iconoir-react/src/server/AlignCenter.tsx +++ b/packages/iconoir-react/src/server/AlignCenter.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAlignCenter( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignCenter); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignCenter = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAlignCenter); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignHorizontalCenters.tsx b/packages/iconoir-react/src/server/AlignHorizontalCenters.tsx index f0371421..99bbbba8 100644 --- a/packages/iconoir-react/src/server/AlignHorizontalCenters.tsx +++ b/packages/iconoir-react/src/server/AlignHorizontalCenters.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgAlignHorizontalCenters( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignHorizontalCenters); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignHorizontalCenters = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAlignHorizontalCenters); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignHorizontalSpacing.tsx b/packages/iconoir-react/src/server/AlignHorizontalSpacing.tsx index dbf96e68..bfd20102 100644 --- a/packages/iconoir-react/src/server/AlignHorizontalSpacing.tsx +++ b/packages/iconoir-react/src/server/AlignHorizontalSpacing.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgAlignHorizontalSpacing( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignHorizontalSpacing); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignHorizontalSpacing = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAlignHorizontalSpacing); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignJustify.tsx b/packages/iconoir-react/src/server/AlignJustify.tsx index 355566ad..a35f7882 100644 --- a/packages/iconoir-react/src/server/AlignJustify.tsx +++ b/packages/iconoir-react/src/server/AlignJustify.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAlignJustify( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignJustify); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignJustify = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAlignJustify); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignLeft.tsx b/packages/iconoir-react/src/server/AlignLeft.tsx index d3458082..6f570d50 100644 --- a/packages/iconoir-react/src/server/AlignLeft.tsx +++ b/packages/iconoir-react/src/server/AlignLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAlignLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAlignLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignLeftBox.tsx b/packages/iconoir-react/src/server/AlignLeftBox.tsx index d060dc13..729bd996 100644 --- a/packages/iconoir-react/src/server/AlignLeftBox.tsx +++ b/packages/iconoir-react/src/server/AlignLeftBox.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAlignLeftBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignLeftBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignLeftBox = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAlignLeftBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignRight.tsx b/packages/iconoir-react/src/server/AlignRight.tsx index 4fc54ab0..9af52f38 100644 --- a/packages/iconoir-react/src/server/AlignRight.tsx +++ b/packages/iconoir-react/src/server/AlignRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAlignRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAlignRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignRightBox.tsx b/packages/iconoir-react/src/server/AlignRightBox.tsx index ea8a3041..479ca7b1 100644 --- a/packages/iconoir-react/src/server/AlignRightBox.tsx +++ b/packages/iconoir-react/src/server/AlignRightBox.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAlignRightBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignRightBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignRightBox = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAlignRightBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignTopBox.tsx b/packages/iconoir-react/src/server/AlignTopBox.tsx index b34431fe..fc7f499e 100644 --- a/packages/iconoir-react/src/server/AlignTopBox.tsx +++ b/packages/iconoir-react/src/server/AlignTopBox.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAlignTopBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignTopBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignTopBox = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAlignTopBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignVerticalCenters.tsx b/packages/iconoir-react/src/server/AlignVerticalCenters.tsx index bb1d598a..169916ac 100644 --- a/packages/iconoir-react/src/server/AlignVerticalCenters.tsx +++ b/packages/iconoir-react/src/server/AlignVerticalCenters.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgAlignVerticalCenters( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignVerticalCenters); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignVerticalCenters = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAlignVerticalCenters); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AlignVerticalSpacing.tsx b/packages/iconoir-react/src/server/AlignVerticalSpacing.tsx index 43c7c5e4..9f1f873e 100644 --- a/packages/iconoir-react/src/server/AlignVerticalSpacing.tsx +++ b/packages/iconoir-react/src/server/AlignVerticalSpacing.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgAlignVerticalSpacing( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAlignVerticalSpacing); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAlignVerticalSpacing = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAlignVerticalSpacing); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AngleTool.tsx b/packages/iconoir-react/src/server/AngleTool.tsx index 9db5acd2..b5ae630f 100644 --- a/packages/iconoir-react/src/server/AngleTool.tsx +++ b/packages/iconoir-react/src/server/AngleTool.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgAngleTool( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAngleTool); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAngleTool = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAngleTool); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Antenna.tsx b/packages/iconoir-react/src/server/Antenna.tsx index 2d00ebab..c7362a58 100644 --- a/packages/iconoir-react/src/server/Antenna.tsx +++ b/packages/iconoir-react/src/server/Antenna.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgAntenna( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAntenna); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAntenna = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAntenna); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AntennaOff.tsx b/packages/iconoir-react/src/server/AntennaOff.tsx index f3d41440..d4f53970 100644 --- a/packages/iconoir-react/src/server/AntennaOff.tsx +++ b/packages/iconoir-react/src/server/AntennaOff.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgAntennaOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAntennaOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAntennaOff = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAntennaOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AntennaSignal.tsx b/packages/iconoir-react/src/server/AntennaSignal.tsx index e4f90fa7..35d0c85d 100644 --- a/packages/iconoir-react/src/server/AntennaSignal.tsx +++ b/packages/iconoir-react/src/server/AntennaSignal.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgAntennaSignal( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAntennaSignal); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAntennaSignal = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAntennaSignal); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AntennaSignalTag.tsx b/packages/iconoir-react/src/server/AntennaSignalTag.tsx index f51fb54c..3069e337 100644 --- a/packages/iconoir-react/src/server/AntennaSignalTag.tsx +++ b/packages/iconoir-react/src/server/AntennaSignalTag.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgAntennaSignalTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAntennaSignalTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAntennaSignalTag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAntennaSignalTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppNotification.tsx b/packages/iconoir-react/src/server/AppNotification.tsx index 037e9994..0f92389c 100644 --- a/packages/iconoir-react/src/server/AppNotification.tsx +++ b/packages/iconoir-react/src/server/AppNotification.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAppNotification( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppNotification); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppNotification = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAppNotification); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppStore.tsx b/packages/iconoir-react/src/server/AppStore.tsx index cb3bb4c3..92817a10 100644 --- a/packages/iconoir-react/src/server/AppStore.tsx +++ b/packages/iconoir-react/src/server/AppStore.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAppStore( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppStore); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppStore = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAppStore); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppWindow.tsx b/packages/iconoir-react/src/server/AppWindow.tsx index 345a62e5..85151949 100644 --- a/packages/iconoir-react/src/server/AppWindow.tsx +++ b/packages/iconoir-react/src/server/AppWindow.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgAppWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAppWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Apple.tsx b/packages/iconoir-react/src/server/Apple.tsx index b999931e..4ef98070 100644 --- a/packages/iconoir-react/src/server/Apple.tsx +++ b/packages/iconoir-react/src/server/Apple.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgApple( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgApple); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgApple = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgApple); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppleHalf.tsx b/packages/iconoir-react/src/server/AppleHalf.tsx index 005a4a34..0137a12d 100644 --- a/packages/iconoir-react/src/server/AppleHalf.tsx +++ b/packages/iconoir-react/src/server/AppleHalf.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgAppleHalf( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppleHalf); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppleHalf = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgAppleHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppleHalfAlt.tsx b/packages/iconoir-react/src/server/AppleHalfAlt.tsx index 3533cd63..38645257 100644 --- a/packages/iconoir-react/src/server/AppleHalfAlt.tsx +++ b/packages/iconoir-react/src/server/AppleHalfAlt.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgAppleHalfAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppleHalfAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppleHalfAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgAppleHalfAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppleImac2021.tsx b/packages/iconoir-react/src/server/AppleImac2021.tsx index 972a7a41..a79f574c 100644 --- a/packages/iconoir-react/src/server/AppleImac2021.tsx +++ b/packages/iconoir-react/src/server/AppleImac2021.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAppleImac2021( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppleImac2021); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppleImac2021 = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAppleImac2021); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppleImac2021Side.tsx b/packages/iconoir-react/src/server/AppleImac2021Side.tsx index 27605d9d..0aa648c7 100644 --- a/packages/iconoir-react/src/server/AppleImac2021Side.tsx +++ b/packages/iconoir-react/src/server/AppleImac2021Side.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAppleImac2021Side( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppleImac2021Side); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppleImac2021Side = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAppleImac2021Side); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppleMac.tsx b/packages/iconoir-react/src/server/AppleMac.tsx index 4b697428..816a9216 100644 --- a/packages/iconoir-react/src/server/AppleMac.tsx +++ b/packages/iconoir-react/src/server/AppleMac.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgAppleMac( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppleMac); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppleMac = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAppleMac); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppleShortcuts.tsx b/packages/iconoir-react/src/server/AppleShortcuts.tsx index 541daf53..cfdf9718 100644 --- a/packages/iconoir-react/src/server/AppleShortcuts.tsx +++ b/packages/iconoir-react/src/server/AppleShortcuts.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgAppleShortcuts( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppleShortcuts); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppleShortcuts = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + + + + + +); +const ForwardRef = forwardRef(SvgAppleShortcuts); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppleSwift.tsx b/packages/iconoir-react/src/server/AppleSwift.tsx index 9b9288ed..cd3b0f7f 100644 --- a/packages/iconoir-react/src/server/AppleSwift.tsx +++ b/packages/iconoir-react/src/server/AppleSwift.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAppleSwift( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppleSwift); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppleSwift = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAppleSwift); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AppleWallet.tsx b/packages/iconoir-react/src/server/AppleWallet.tsx index e7d02669..fe16ac9e 100644 --- a/packages/iconoir-react/src/server/AppleWallet.tsx +++ b/packages/iconoir-react/src/server/AppleWallet.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgAppleWallet( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAppleWallet); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAppleWallet = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAppleWallet); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArSymbol.tsx b/packages/iconoir-react/src/server/ArSymbol.tsx index 7402157e..4210cee7 100644 --- a/packages/iconoir-react/src/server/ArSymbol.tsx +++ b/packages/iconoir-react/src/server/ArSymbol.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgArSymbol( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgArSymbol); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArSymbol = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgArSymbol); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Arcade.tsx b/packages/iconoir-react/src/server/Arcade.tsx index a5557a49..1a4d5f37 100644 --- a/packages/iconoir-react/src/server/Arcade.tsx +++ b/packages/iconoir-react/src/server/Arcade.tsx @@ -1,43 +1,40 @@ import * as React from "react"; -function SvgArcade( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgArcade); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArcade = (props: SVGProps, ref: Ref) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgArcade); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Archery.tsx b/packages/iconoir-react/src/server/Archery.tsx index 1ca1b7c8..537d2169 100644 --- a/packages/iconoir-react/src/server/Archery.tsx +++ b/packages/iconoir-react/src/server/Archery.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArchery( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArchery); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArchery = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArchery); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArcheryMatch.tsx b/packages/iconoir-react/src/server/ArcheryMatch.tsx index d6aca6d6..8df42c9c 100644 --- a/packages/iconoir-react/src/server/ArcheryMatch.tsx +++ b/packages/iconoir-react/src/server/ArcheryMatch.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArcheryMatch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArcheryMatch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArcheryMatch = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArcheryMatch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Archive.tsx b/packages/iconoir-react/src/server/Archive.tsx index fb2d3bce..23fe3d16 100644 --- a/packages/iconoir-react/src/server/Archive.tsx +++ b/packages/iconoir-react/src/server/Archive.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgArchive( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgArchive); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArchive = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgArchive); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AreaSearch.tsx b/packages/iconoir-react/src/server/AreaSearch.tsx index d4efdc98..0dfe2c35 100644 --- a/packages/iconoir-react/src/server/AreaSearch.tsx +++ b/packages/iconoir-react/src/server/AreaSearch.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAreaSearch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAreaSearch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAreaSearch = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAreaSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowArchery.tsx b/packages/iconoir-react/src/server/ArrowArchery.tsx index 71f9da52..aea171f5 100644 --- a/packages/iconoir-react/src/server/ArrowArchery.tsx +++ b/packages/iconoir-react/src/server/ArrowArchery.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowArchery( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowArchery); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowArchery = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowArchery); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowBl.tsx b/packages/iconoir-react/src/server/ArrowBl.tsx index 5ba4ea34..e6e560e7 100644 --- a/packages/iconoir-react/src/server/ArrowBl.tsx +++ b/packages/iconoir-react/src/server/ArrowBl.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowBl( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowBl); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowBl = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowBl); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowBlCircle.tsx b/packages/iconoir-react/src/server/ArrowBlCircle.tsx index feb6888b..d517ab54 100644 --- a/packages/iconoir-react/src/server/ArrowBlCircle.tsx +++ b/packages/iconoir-react/src/server/ArrowBlCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowBlCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowBlCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowBlCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowBlCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowBlSquare.tsx b/packages/iconoir-react/src/server/ArrowBlSquare.tsx index 8cecfe54..39a434b7 100644 --- a/packages/iconoir-react/src/server/ArrowBlSquare.tsx +++ b/packages/iconoir-react/src/server/ArrowBlSquare.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowBlSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowBlSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowBlSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowBlSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowBr.tsx b/packages/iconoir-react/src/server/ArrowBr.tsx index 96225505..b1593566 100644 --- a/packages/iconoir-react/src/server/ArrowBr.tsx +++ b/packages/iconoir-react/src/server/ArrowBr.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowBr( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowBr); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowBr = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowBr); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowBrCircle.tsx b/packages/iconoir-react/src/server/ArrowBrCircle.tsx index 42dd6f2b..8151deca 100644 --- a/packages/iconoir-react/src/server/ArrowBrCircle.tsx +++ b/packages/iconoir-react/src/server/ArrowBrCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowBrCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowBrCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowBrCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowBrCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowBrSquare.tsx b/packages/iconoir-react/src/server/ArrowBrSquare.tsx index 734271fa..d77a97a5 100644 --- a/packages/iconoir-react/src/server/ArrowBrSquare.tsx +++ b/packages/iconoir-react/src/server/ArrowBrSquare.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowBrSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowBrSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowBrSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowBrSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowDown.tsx b/packages/iconoir-react/src/server/ArrowDown.tsx index 752b0dee..752cb532 100644 --- a/packages/iconoir-react/src/server/ArrowDown.tsx +++ b/packages/iconoir-react/src/server/ArrowDown.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowDownCircle.tsx b/packages/iconoir-react/src/server/ArrowDownCircle.tsx index 13886dbe..c8a00f26 100644 --- a/packages/iconoir-react/src/server/ArrowDownCircle.tsx +++ b/packages/iconoir-react/src/server/ArrowDownCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowDownCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowDownCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowDownCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowDownCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowEmailForward.tsx b/packages/iconoir-react/src/server/ArrowEmailForward.tsx index 634b0736..de5328cc 100644 --- a/packages/iconoir-react/src/server/ArrowEmailForward.tsx +++ b/packages/iconoir-react/src/server/ArrowEmailForward.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowEmailForward( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowEmailForward); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowEmailForward = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowEmailForward); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowLeft.tsx b/packages/iconoir-react/src/server/ArrowLeft.tsx index 672c5fdf..b8bd776f 100644 --- a/packages/iconoir-react/src/server/ArrowLeft.tsx +++ b/packages/iconoir-react/src/server/ArrowLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowLeftCircle.tsx b/packages/iconoir-react/src/server/ArrowLeftCircle.tsx index 2114e69e..c36ca232 100644 --- a/packages/iconoir-react/src/server/ArrowLeftCircle.tsx +++ b/packages/iconoir-react/src/server/ArrowLeftCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowLeftCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowLeftCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowLeftCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowLeftCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowRight.tsx b/packages/iconoir-react/src/server/ArrowRight.tsx index a28e3ac7..496489d1 100644 --- a/packages/iconoir-react/src/server/ArrowRight.tsx +++ b/packages/iconoir-react/src/server/ArrowRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowRightCircle.tsx b/packages/iconoir-react/src/server/ArrowRightCircle.tsx index 53d40018..20291377 100644 --- a/packages/iconoir-react/src/server/ArrowRightCircle.tsx +++ b/packages/iconoir-react/src/server/ArrowRightCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowRightCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowRightCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowRightCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowRightCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowSeparate.tsx b/packages/iconoir-react/src/server/ArrowSeparate.tsx index 911ad3ba..ee26369f 100644 --- a/packages/iconoir-react/src/server/ArrowSeparate.tsx +++ b/packages/iconoir-react/src/server/ArrowSeparate.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowSeparate( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowSeparate); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowSeparate = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowSeparate); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowSeparateVertical.tsx b/packages/iconoir-react/src/server/ArrowSeparateVertical.tsx index 2e113696..f10138f4 100644 --- a/packages/iconoir-react/src/server/ArrowSeparateVertical.tsx +++ b/packages/iconoir-react/src/server/ArrowSeparateVertical.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowSeparateVertical( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowSeparateVertical); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowSeparateVertical = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowSeparateVertical); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowTl.tsx b/packages/iconoir-react/src/server/ArrowTl.tsx index bd0e247d..0d2908fa 100644 --- a/packages/iconoir-react/src/server/ArrowTl.tsx +++ b/packages/iconoir-react/src/server/ArrowTl.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowTl( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowTl); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowTl = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowTl); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowTlCircle.tsx b/packages/iconoir-react/src/server/ArrowTlCircle.tsx index 63b8b408..81d904ff 100644 --- a/packages/iconoir-react/src/server/ArrowTlCircle.tsx +++ b/packages/iconoir-react/src/server/ArrowTlCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowTlCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowTlCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowTlCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowTlCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowTlSquare.tsx b/packages/iconoir-react/src/server/ArrowTlSquare.tsx index 20c569a3..e6f7f205 100644 --- a/packages/iconoir-react/src/server/ArrowTlSquare.tsx +++ b/packages/iconoir-react/src/server/ArrowTlSquare.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowTlSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowTlSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowTlSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowTlSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowTr.tsx b/packages/iconoir-react/src/server/ArrowTr.tsx index f57caaa8..fe5e8a5e 100644 --- a/packages/iconoir-react/src/server/ArrowTr.tsx +++ b/packages/iconoir-react/src/server/ArrowTr.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowTr( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowTr); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowTr = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowTr); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowTrCircle.tsx b/packages/iconoir-react/src/server/ArrowTrCircle.tsx index 105db8a9..666f943b 100644 --- a/packages/iconoir-react/src/server/ArrowTrCircle.tsx +++ b/packages/iconoir-react/src/server/ArrowTrCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowTrCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowTrCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowTrCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowTrCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowTrSquare.tsx b/packages/iconoir-react/src/server/ArrowTrSquare.tsx index 7ea3e8f1..4e79384f 100644 --- a/packages/iconoir-react/src/server/ArrowTrSquare.tsx +++ b/packages/iconoir-react/src/server/ArrowTrSquare.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowTrSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowTrSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowTrSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowTrSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowUnion.tsx b/packages/iconoir-react/src/server/ArrowUnion.tsx index 79f206f3..0c46e7ad 100644 --- a/packages/iconoir-react/src/server/ArrowUnion.tsx +++ b/packages/iconoir-react/src/server/ArrowUnion.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowUnion( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowUnion); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowUnion = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowUnion); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowUnionVertical.tsx b/packages/iconoir-react/src/server/ArrowUnionVertical.tsx index c8bc8e84..fe1292d7 100644 --- a/packages/iconoir-react/src/server/ArrowUnionVertical.tsx +++ b/packages/iconoir-react/src/server/ArrowUnionVertical.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowUnionVertical( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowUnionVertical); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowUnionVertical = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowUnionVertical); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowUp.tsx b/packages/iconoir-react/src/server/ArrowUp.tsx index dfab60ae..55ea80f4 100644 --- a/packages/iconoir-react/src/server/ArrowUp.tsx +++ b/packages/iconoir-react/src/server/ArrowUp.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowUp = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowUpCircle.tsx b/packages/iconoir-react/src/server/ArrowUpCircle.tsx index f63be79e..c4d9bd21 100644 --- a/packages/iconoir-react/src/server/ArrowUpCircle.tsx +++ b/packages/iconoir-react/src/server/ArrowUpCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowUpCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowUpCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowUpCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowUpCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ArrowsUpFromLine.tsx b/packages/iconoir-react/src/server/ArrowsUpFromLine.tsx index 4fb172a0..5b702f63 100644 --- a/packages/iconoir-react/src/server/ArrowsUpFromLine.tsx +++ b/packages/iconoir-react/src/server/ArrowsUpFromLine.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgArrowsUpFromLine( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgArrowsUpFromLine); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgArrowsUpFromLine = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgArrowsUpFromLine); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Asana.tsx b/packages/iconoir-react/src/server/Asana.tsx index 4c1428f1..83fb1850 100644 --- a/packages/iconoir-react/src/server/Asana.tsx +++ b/packages/iconoir-react/src/server/Asana.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgAsana( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAsana); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAsana = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgAsana); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AtSign.tsx b/packages/iconoir-react/src/server/AtSign.tsx index d7e81d8b..4ff05827 100644 --- a/packages/iconoir-react/src/server/AtSign.tsx +++ b/packages/iconoir-react/src/server/AtSign.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgAtSign( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAtSign); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAtSign = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgAtSign); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AtSignCircle.tsx b/packages/iconoir-react/src/server/AtSignCircle.tsx index cc90bfb2..1d2b74ed 100644 --- a/packages/iconoir-react/src/server/AtSignCircle.tsx +++ b/packages/iconoir-react/src/server/AtSignCircle.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgAtSignCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAtSignCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAtSignCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgAtSignCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Atom.tsx b/packages/iconoir-react/src/server/Atom.tsx index eae29c34..efae6dbe 100644 --- a/packages/iconoir-react/src/server/Atom.tsx +++ b/packages/iconoir-react/src/server/Atom.tsx @@ -1,40 +1,37 @@ import * as React from "react"; -function SvgAtom( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAtom); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAtom = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgAtom); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Attachment.tsx b/packages/iconoir-react/src/server/Attachment.tsx index 63546e1a..85ef544d 100644 --- a/packages/iconoir-react/src/server/Attachment.tsx +++ b/packages/iconoir-react/src/server/Attachment.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAttachment( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAttachment); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAttachment = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAttachment); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AugmentedReality.tsx b/packages/iconoir-react/src/server/AugmentedReality.tsx index dd2d5121..40210ac2 100644 --- a/packages/iconoir-react/src/server/AugmentedReality.tsx +++ b/packages/iconoir-react/src/server/AugmentedReality.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgAugmentedReality( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAugmentedReality); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAugmentedReality = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgAugmentedReality); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AutoFlash.tsx b/packages/iconoir-react/src/server/AutoFlash.tsx index 5bb5c71d..cef81880 100644 --- a/packages/iconoir-react/src/server/AutoFlash.tsx +++ b/packages/iconoir-react/src/server/AutoFlash.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgAutoFlash( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAutoFlash); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAutoFlash = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgAutoFlash); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/AviFormat.tsx b/packages/iconoir-react/src/server/AviFormat.tsx index 58d266e4..a3de2b23 100644 --- a/packages/iconoir-react/src/server/AviFormat.tsx +++ b/packages/iconoir-react/src/server/AviFormat.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgAviFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgAviFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAviFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgAviFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Axes.tsx b/packages/iconoir-react/src/server/Axes.tsx index dfb9aa3d..8a5a91cd 100644 --- a/packages/iconoir-react/src/server/Axes.tsx +++ b/packages/iconoir-react/src/server/Axes.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgAxes( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgAxes); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgAxes = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgAxes); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Backward15Seconds.tsx b/packages/iconoir-react/src/server/Backward15Seconds.tsx index f7882c09..9da8e22c 100644 --- a/packages/iconoir-react/src/server/Backward15Seconds.tsx +++ b/packages/iconoir-react/src/server/Backward15Seconds.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgBackward15Seconds( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBackward15Seconds); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBackward15Seconds = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBackward15Seconds); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bag.tsx b/packages/iconoir-react/src/server/Bag.tsx index 30967570..d3b61927 100644 --- a/packages/iconoir-react/src/server/Bag.tsx +++ b/packages/iconoir-react/src/server/Bag.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgBag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBag = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgBag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Balcony.tsx b/packages/iconoir-react/src/server/Balcony.tsx index 393551e5..2ef1ac20 100644 --- a/packages/iconoir-react/src/server/Balcony.tsx +++ b/packages/iconoir-react/src/server/Balcony.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBalcony( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBalcony); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBalcony = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBalcony); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bank.tsx b/packages/iconoir-react/src/server/Bank.tsx index 37915922..ea66e383 100644 --- a/packages/iconoir-react/src/server/Bank.tsx +++ b/packages/iconoir-react/src/server/Bank.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgBank( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBank); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBank = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgBank); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Barcode.tsx b/packages/iconoir-react/src/server/Barcode.tsx index 2376c4b3..1fd85ecf 100644 --- a/packages/iconoir-react/src/server/Barcode.tsx +++ b/packages/iconoir-react/src/server/Barcode.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBarcode( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBarcode); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBarcode = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBarcode); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Basketball.tsx b/packages/iconoir-react/src/server/Basketball.tsx index 11ccb6ab..3350bead 100644 --- a/packages/iconoir-react/src/server/Basketball.tsx +++ b/packages/iconoir-react/src/server/Basketball.tsx @@ -1,28 +1,40 @@ import * as React from "react"; -function SvgBasketball( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBasketball); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBasketball = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBasketball); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BasketballAlt.tsx b/packages/iconoir-react/src/server/BasketballAlt.tsx index c931e5f7..3e0dc43e 100644 --- a/packages/iconoir-react/src/server/BasketballAlt.tsx +++ b/packages/iconoir-react/src/server/BasketballAlt.tsx @@ -1,35 +1,37 @@ import * as React from "react"; -function SvgBasketballAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBasketballAlt); + + + + + + + + + + +); +const ForwardRef = forwardRef(SvgBasketballAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BasketballField.tsx b/packages/iconoir-react/src/server/BasketballField.tsx index ab7557d4..f1e5654c 100644 --- a/packages/iconoir-react/src/server/BasketballField.tsx +++ b/packages/iconoir-react/src/server/BasketballField.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgBasketballField( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBasketballField); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBasketballField = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBasketballField); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bathroom.tsx b/packages/iconoir-react/src/server/Bathroom.tsx index 95220af8..975dd074 100644 --- a/packages/iconoir-react/src/server/Bathroom.tsx +++ b/packages/iconoir-react/src/server/Bathroom.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgBathroom( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBathroom); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBathroom = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBathroom); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Battery25.tsx b/packages/iconoir-react/src/server/Battery25.tsx index a8b67bf1..b6b95b10 100644 --- a/packages/iconoir-react/src/server/Battery25.tsx +++ b/packages/iconoir-react/src/server/Battery25.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgBattery25( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBattery25); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBattery25 = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBattery25); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Battery50.tsx b/packages/iconoir-react/src/server/Battery50.tsx index a0df6586..29264b54 100644 --- a/packages/iconoir-react/src/server/Battery50.tsx +++ b/packages/iconoir-react/src/server/Battery50.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgBattery50( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBattery50); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBattery50 = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBattery50); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Battery75.tsx b/packages/iconoir-react/src/server/Battery75.tsx index 748865d4..2c1ceade 100644 --- a/packages/iconoir-react/src/server/Battery75.tsx +++ b/packages/iconoir-react/src/server/Battery75.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgBattery75( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBattery75); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBattery75 = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBattery75); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BatteryCharging.tsx b/packages/iconoir-react/src/server/BatteryCharging.tsx index 385f7d26..ce1dc500 100644 --- a/packages/iconoir-react/src/server/BatteryCharging.tsx +++ b/packages/iconoir-react/src/server/BatteryCharging.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgBatteryCharging( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBatteryCharging); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBatteryCharging = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBatteryCharging); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BatteryEmpty.tsx b/packages/iconoir-react/src/server/BatteryEmpty.tsx index c2a9c63d..9b0809f3 100644 --- a/packages/iconoir-react/src/server/BatteryEmpty.tsx +++ b/packages/iconoir-react/src/server/BatteryEmpty.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgBatteryEmpty( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBatteryEmpty); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBatteryEmpty = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBatteryEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BatteryFull.tsx b/packages/iconoir-react/src/server/BatteryFull.tsx index 5466fba2..8ead35a0 100644 --- a/packages/iconoir-react/src/server/BatteryFull.tsx +++ b/packages/iconoir-react/src/server/BatteryFull.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgBatteryFull( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBatteryFull); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBatteryFull = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBatteryFull); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BatteryIndicator.tsx b/packages/iconoir-react/src/server/BatteryIndicator.tsx index d2f64658..e47342f5 100644 --- a/packages/iconoir-react/src/server/BatteryIndicator.tsx +++ b/packages/iconoir-react/src/server/BatteryIndicator.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBatteryIndicator( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBatteryIndicator); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBatteryIndicator = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBatteryIndicator); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BatteryWarning.tsx b/packages/iconoir-react/src/server/BatteryWarning.tsx index 9f85280a..c952b6ab 100644 --- a/packages/iconoir-react/src/server/BatteryWarning.tsx +++ b/packages/iconoir-react/src/server/BatteryWarning.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgBatteryWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBatteryWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBatteryWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBatteryWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bbq.tsx b/packages/iconoir-react/src/server/Bbq.tsx index e2c3db6c..a1a5dd16 100644 --- a/packages/iconoir-react/src/server/Bbq.tsx +++ b/packages/iconoir-react/src/server/Bbq.tsx @@ -1,39 +1,36 @@ import * as React from "react"; -function SvgBbq( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBbq); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBbq = (props: SVGProps, ref: Ref) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgBbq); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BeachBag.tsx b/packages/iconoir-react/src/server/BeachBag.tsx index 1977ca62..f546f03d 100644 --- a/packages/iconoir-react/src/server/BeachBag.tsx +++ b/packages/iconoir-react/src/server/BeachBag.tsx @@ -1,27 +1,27 @@ import * as React from "react"; -function SvgBeachBag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBeachBag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBeachBag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBeachBag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BeachBagBig.tsx b/packages/iconoir-react/src/server/BeachBagBig.tsx index 8ed645cb..01cac0f2 100644 --- a/packages/iconoir-react/src/server/BeachBagBig.tsx +++ b/packages/iconoir-react/src/server/BeachBagBig.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgBeachBagBig( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBeachBagBig); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBeachBagBig = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBeachBagBig); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bed.tsx b/packages/iconoir-react/src/server/Bed.tsx index 412dd6d6..614d88e8 100644 --- a/packages/iconoir-react/src/server/Bed.tsx +++ b/packages/iconoir-react/src/server/Bed.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgBed( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBed); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBed = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgBed); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BedReady.tsx b/packages/iconoir-react/src/server/BedReady.tsx index cefbaf82..c9dcc5e3 100644 --- a/packages/iconoir-react/src/server/BedReady.tsx +++ b/packages/iconoir-react/src/server/BedReady.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgBedReady( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBedReady); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBedReady = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBedReady); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Behance.tsx b/packages/iconoir-react/src/server/Behance.tsx index 949be26b..48c506af 100644 --- a/packages/iconoir-react/src/server/Behance.tsx +++ b/packages/iconoir-react/src/server/Behance.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBehance( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBehance); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBehance = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBehance); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BehanceTag.tsx b/packages/iconoir-react/src/server/BehanceTag.tsx index f32e0865..cf8fd523 100644 --- a/packages/iconoir-react/src/server/BehanceTag.tsx +++ b/packages/iconoir-react/src/server/BehanceTag.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgBehanceTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBehanceTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBehanceTag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBehanceTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bell.tsx b/packages/iconoir-react/src/server/Bell.tsx index 63df0555..40009205 100644 --- a/packages/iconoir-react/src/server/Bell.tsx +++ b/packages/iconoir-react/src/server/Bell.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgBell( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBell); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBell = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgBell); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BellNotification.tsx b/packages/iconoir-react/src/server/BellNotification.tsx index 1ae044ef..3cbff39e 100644 --- a/packages/iconoir-react/src/server/BellNotification.tsx +++ b/packages/iconoir-react/src/server/BellNotification.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBellNotification( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBellNotification); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBellNotification = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBellNotification); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BellOff.tsx b/packages/iconoir-react/src/server/BellOff.tsx index 15a10bed..c8756d06 100644 --- a/packages/iconoir-react/src/server/BellOff.tsx +++ b/packages/iconoir-react/src/server/BellOff.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBellOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBellOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBellOff = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBellOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bicycle.tsx b/packages/iconoir-react/src/server/Bicycle.tsx index 79008451..e9f1e23f 100644 --- a/packages/iconoir-react/src/server/Bicycle.tsx +++ b/packages/iconoir-react/src/server/Bicycle.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgBicycle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBicycle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBicycle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBicycle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bin.tsx b/packages/iconoir-react/src/server/Bin.tsx index 83f9feab..03831ed9 100644 --- a/packages/iconoir-react/src/server/Bin.tsx +++ b/packages/iconoir-react/src/server/Bin.tsx @@ -1,26 +1,24 @@ import * as React from "react"; -function SvgBin( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBin); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBin = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgBin); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BinAdd.tsx b/packages/iconoir-react/src/server/BinAdd.tsx index efae1b2d..be37fc7b 100644 --- a/packages/iconoir-react/src/server/BinAdd.tsx +++ b/packages/iconoir-react/src/server/BinAdd.tsx @@ -1,32 +1,30 @@ import * as React from "react"; -function SvgBinAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBinAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBinAdd = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBinAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BinFull.tsx b/packages/iconoir-react/src/server/BinFull.tsx index 97055b78..23e80ced 100644 --- a/packages/iconoir-react/src/server/BinFull.tsx +++ b/packages/iconoir-react/src/server/BinFull.tsx @@ -1,26 +1,27 @@ import * as React from "react"; -function SvgBinFull( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBinFull); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBinFull = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBinFull); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BinHalf.tsx b/packages/iconoir-react/src/server/BinHalf.tsx index c9b19882..703b2834 100644 --- a/packages/iconoir-react/src/server/BinHalf.tsx +++ b/packages/iconoir-react/src/server/BinHalf.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgBinHalf( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBinHalf); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBinHalf = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBinHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BinMinus.tsx b/packages/iconoir-react/src/server/BinMinus.tsx index f447891e..5fe03595 100644 --- a/packages/iconoir-react/src/server/BinMinus.tsx +++ b/packages/iconoir-react/src/server/BinMinus.tsx @@ -1,32 +1,33 @@ import * as React from "react"; -function SvgBinMinus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBinMinus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBinMinus = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBinMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Binocular.tsx b/packages/iconoir-react/src/server/Binocular.tsx index 74013691..ff09fe74 100644 --- a/packages/iconoir-react/src/server/Binocular.tsx +++ b/packages/iconoir-react/src/server/Binocular.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgBinocular( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBinocular); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBinocular = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBinocular); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BirthdayCake.tsx b/packages/iconoir-react/src/server/BirthdayCake.tsx index a9dabbf9..91d59e4d 100644 --- a/packages/iconoir-react/src/server/BirthdayCake.tsx +++ b/packages/iconoir-react/src/server/BirthdayCake.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgBirthdayCake( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBirthdayCake); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBirthdayCake = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBirthdayCake); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bishop.tsx b/packages/iconoir-react/src/server/Bishop.tsx index 4ed14a31..dc20827f 100644 --- a/packages/iconoir-react/src/server/Bishop.tsx +++ b/packages/iconoir-react/src/server/Bishop.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgBishop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBishop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBishop = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgBishop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bitbucket.tsx b/packages/iconoir-react/src/server/Bitbucket.tsx index 11cc2717..f664689b 100644 --- a/packages/iconoir-react/src/server/Bitbucket.tsx +++ b/packages/iconoir-react/src/server/Bitbucket.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgBitbucket( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBitbucket); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBitbucket = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBitbucket); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BitcoinCircle.tsx b/packages/iconoir-react/src/server/BitcoinCircle.tsx index 272a33f2..8bbc28f4 100644 --- a/packages/iconoir-react/src/server/BitcoinCircle.tsx +++ b/packages/iconoir-react/src/server/BitcoinCircle.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgBitcoinCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBitcoinCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBitcoinCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBitcoinCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BitcoinRotateOut.tsx b/packages/iconoir-react/src/server/BitcoinRotateOut.tsx index d0a5f8fe..3a5f2ef1 100644 --- a/packages/iconoir-react/src/server/BitcoinRotateOut.tsx +++ b/packages/iconoir-react/src/server/BitcoinRotateOut.tsx @@ -1,50 +1,50 @@ import * as React from "react"; -function SvgBitcoinRotateOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBitcoinRotateOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBitcoinRotateOut = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgBitcoinRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bluetooth.tsx b/packages/iconoir-react/src/server/Bluetooth.tsx index abe9df9f..278558ba 100644 --- a/packages/iconoir-react/src/server/Bluetooth.tsx +++ b/packages/iconoir-react/src/server/Bluetooth.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBluetooth( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBluetooth); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBluetooth = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBluetooth); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BluetoothTag.tsx b/packages/iconoir-react/src/server/BluetoothTag.tsx index 23e18d5b..449308c7 100644 --- a/packages/iconoir-react/src/server/BluetoothTag.tsx +++ b/packages/iconoir-react/src/server/BluetoothTag.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgBluetoothTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBluetoothTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBluetoothTag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBluetoothTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bold.tsx b/packages/iconoir-react/src/server/Bold.tsx index 49b549ee..5e0b71e8 100644 --- a/packages/iconoir-react/src/server/Bold.tsx +++ b/packages/iconoir-react/src/server/Bold.tsx @@ -1,26 +1,23 @@ import * as React from "react"; -function SvgBold( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBold); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBold = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgBold); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BoldSquare.tsx b/packages/iconoir-react/src/server/BoldSquare.tsx index c365133a..d9e136eb 100644 --- a/packages/iconoir-react/src/server/BoldSquare.tsx +++ b/packages/iconoir-react/src/server/BoldSquare.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgBoldSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBoldSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBoldSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBoldSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bonfire.tsx b/packages/iconoir-react/src/server/Bonfire.tsx index c4d228eb..c2c69252 100644 --- a/packages/iconoir-react/src/server/Bonfire.tsx +++ b/packages/iconoir-react/src/server/Bonfire.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgBonfire( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBonfire); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBonfire = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBonfire); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Book.tsx b/packages/iconoir-react/src/server/Book.tsx index bea65474..572e58cf 100644 --- a/packages/iconoir-react/src/server/Book.tsx +++ b/packages/iconoir-react/src/server/Book.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgBook( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBook); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBook = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BookStack.tsx b/packages/iconoir-react/src/server/BookStack.tsx index 6fea4c0f..a36ed1ab 100644 --- a/packages/iconoir-react/src/server/BookStack.tsx +++ b/packages/iconoir-react/src/server/BookStack.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgBookStack( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBookStack); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBookStack = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBookStack); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BookmarkBook.tsx b/packages/iconoir-react/src/server/BookmarkBook.tsx index 7613a3c7..75cd9479 100644 --- a/packages/iconoir-react/src/server/BookmarkBook.tsx +++ b/packages/iconoir-react/src/server/BookmarkBook.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgBookmarkBook( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBookmarkBook); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBookmarkBook = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgBookmarkBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BookmarkCircle.tsx b/packages/iconoir-react/src/server/BookmarkCircle.tsx index 6a1d005a..c239ed1e 100644 --- a/packages/iconoir-react/src/server/BookmarkCircle.tsx +++ b/packages/iconoir-react/src/server/BookmarkCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgBookmarkCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBookmarkCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBookmarkCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBookmarkCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BookmarkEmpty.tsx b/packages/iconoir-react/src/server/BookmarkEmpty.tsx index 9a0aee92..5009c323 100644 --- a/packages/iconoir-react/src/server/BookmarkEmpty.tsx +++ b/packages/iconoir-react/src/server/BookmarkEmpty.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBookmarkEmpty( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBookmarkEmpty); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBookmarkEmpty = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBookmarkEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BorderBl.tsx b/packages/iconoir-react/src/server/BorderBl.tsx index 9729588f..1b7a64ba 100644 --- a/packages/iconoir-react/src/server/BorderBl.tsx +++ b/packages/iconoir-react/src/server/BorderBl.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBorderBl( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBorderBl); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBorderBl = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBorderBl); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BorderBottom.tsx b/packages/iconoir-react/src/server/BorderBottom.tsx index b23b9276..c695563b 100644 --- a/packages/iconoir-react/src/server/BorderBottom.tsx +++ b/packages/iconoir-react/src/server/BorderBottom.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBorderBottom( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBorderBottom); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBorderBottom = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBorderBottom); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BorderBr.tsx b/packages/iconoir-react/src/server/BorderBr.tsx index 5cf2fc25..b64d0726 100644 --- a/packages/iconoir-react/src/server/BorderBr.tsx +++ b/packages/iconoir-react/src/server/BorderBr.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBorderBr( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBorderBr); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBorderBr = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBorderBr); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BorderInner.tsx b/packages/iconoir-react/src/server/BorderInner.tsx index 84c18946..0ad4e315 100644 --- a/packages/iconoir-react/src/server/BorderInner.tsx +++ b/packages/iconoir-react/src/server/BorderInner.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBorderInner( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBorderInner); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBorderInner = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBorderInner); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BorderLeft.tsx b/packages/iconoir-react/src/server/BorderLeft.tsx index 2fc62ddc..6fa6a7e2 100644 --- a/packages/iconoir-react/src/server/BorderLeft.tsx +++ b/packages/iconoir-react/src/server/BorderLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBorderLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBorderLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBorderLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBorderLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BorderOut.tsx b/packages/iconoir-react/src/server/BorderOut.tsx index 3a42bfa9..4265cf41 100644 --- a/packages/iconoir-react/src/server/BorderOut.tsx +++ b/packages/iconoir-react/src/server/BorderOut.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBorderOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBorderOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBorderOut = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBorderOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BorderRight.tsx b/packages/iconoir-react/src/server/BorderRight.tsx index 53087d6d..f906ccbc 100644 --- a/packages/iconoir-react/src/server/BorderRight.tsx +++ b/packages/iconoir-react/src/server/BorderRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBorderRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBorderRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBorderRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBorderRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BorderTl.tsx b/packages/iconoir-react/src/server/BorderTl.tsx index 4ef3a4e0..764abaea 100644 --- a/packages/iconoir-react/src/server/BorderTl.tsx +++ b/packages/iconoir-react/src/server/BorderTl.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBorderTl( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBorderTl); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBorderTl = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBorderTl); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BorderTop.tsx b/packages/iconoir-react/src/server/BorderTop.tsx index ec4dcae1..4d6d5432 100644 --- a/packages/iconoir-react/src/server/BorderTop.tsx +++ b/packages/iconoir-react/src/server/BorderTop.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBorderTop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBorderTop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBorderTop = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBorderTop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BorderTr.tsx b/packages/iconoir-react/src/server/BorderTr.tsx index 7f194af8..ff526532 100644 --- a/packages/iconoir-react/src/server/BorderTr.tsx +++ b/packages/iconoir-react/src/server/BorderTr.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBorderTr( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBorderTr); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBorderTr = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBorderTr); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BounceLeft.tsx b/packages/iconoir-react/src/server/BounceLeft.tsx index d8038694..dc2e8881 100644 --- a/packages/iconoir-react/src/server/BounceLeft.tsx +++ b/packages/iconoir-react/src/server/BounceLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBounceLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBounceLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBounceLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBounceLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BounceRight.tsx b/packages/iconoir-react/src/server/BounceRight.tsx index 5575028f..3dc56787 100644 --- a/packages/iconoir-react/src/server/BounceRight.tsx +++ b/packages/iconoir-react/src/server/BounceRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBounceRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBounceRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBounceRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBounceRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BowlingBall.tsx b/packages/iconoir-react/src/server/BowlingBall.tsx index ad07e71a..2f176c24 100644 --- a/packages/iconoir-react/src/server/BowlingBall.tsx +++ b/packages/iconoir-react/src/server/BowlingBall.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgBowlingBall( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBowlingBall); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBowlingBall = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBowlingBall); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Box.tsx b/packages/iconoir-react/src/server/Box.tsx index 34333478..74da7e7c 100644 --- a/packages/iconoir-react/src/server/Box.tsx +++ b/packages/iconoir-react/src/server/Box.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBox = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BoxIso.tsx b/packages/iconoir-react/src/server/BoxIso.tsx index 8cb03b0f..b8341c99 100644 --- a/packages/iconoir-react/src/server/BoxIso.tsx +++ b/packages/iconoir-react/src/server/BoxIso.tsx @@ -1,38 +1,35 @@ import * as React from "react"; -function SvgBoxIso( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBoxIso); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBoxIso = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBoxIso); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BoxingGlove.tsx b/packages/iconoir-react/src/server/BoxingGlove.tsx index b3afb876..377e722e 100644 --- a/packages/iconoir-react/src/server/BoxingGlove.tsx +++ b/packages/iconoir-react/src/server/BoxingGlove.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgBoxingGlove( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBoxingGlove); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBoxingGlove = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBoxingGlove); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Brain.tsx b/packages/iconoir-react/src/server/Brain.tsx index 8f6b2916..530018d8 100644 --- a/packages/iconoir-react/src/server/Brain.tsx +++ b/packages/iconoir-react/src/server/Brain.tsx @@ -1,28 +1,37 @@ import * as React from "react"; -function SvgBrain( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBrain); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBrain = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBrain); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BrainElectricity.tsx b/packages/iconoir-react/src/server/BrainElectricity.tsx index 96cf019b..22a4087c 100644 --- a/packages/iconoir-react/src/server/BrainElectricity.tsx +++ b/packages/iconoir-react/src/server/BrainElectricity.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgBrainElectricity( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBrainElectricity); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBrainElectricity = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBrainElectricity); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BrainResearch.tsx b/packages/iconoir-react/src/server/BrainResearch.tsx index 2ac086aa..6981e201 100644 --- a/packages/iconoir-react/src/server/BrainResearch.tsx +++ b/packages/iconoir-react/src/server/BrainResearch.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgBrainResearch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBrainResearch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBrainResearch = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBrainResearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BrainWarning.tsx b/packages/iconoir-react/src/server/BrainWarning.tsx index 51bebfe4..6bca08e4 100644 --- a/packages/iconoir-react/src/server/BrainWarning.tsx +++ b/packages/iconoir-react/src/server/BrainWarning.tsx @@ -1,28 +1,40 @@ import * as React from "react"; -function SvgBrainWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBrainWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBrainWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBrainWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BreadSlice.tsx b/packages/iconoir-react/src/server/BreadSlice.tsx index a2d0719f..988702a6 100644 --- a/packages/iconoir-react/src/server/BreadSlice.tsx +++ b/packages/iconoir-react/src/server/BreadSlice.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgBreadSlice( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBreadSlice); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBreadSlice = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBreadSlice); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BridgeSurface.tsx b/packages/iconoir-react/src/server/BridgeSurface.tsx index edadfbb3..631d5b0a 100644 --- a/packages/iconoir-react/src/server/BridgeSurface.tsx +++ b/packages/iconoir-react/src/server/BridgeSurface.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBridgeSurface( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBridgeSurface); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBridgeSurface = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBridgeSurface); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BrightCrown.tsx b/packages/iconoir-react/src/server/BrightCrown.tsx index 7bb6cd1a..c632741f 100644 --- a/packages/iconoir-react/src/server/BrightCrown.tsx +++ b/packages/iconoir-react/src/server/BrightCrown.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgBrightCrown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBrightCrown); + + + + + + + + +); +const ForwardRef = forwardRef(SvgBrightCrown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BrightStar.tsx b/packages/iconoir-react/src/server/BrightStar.tsx index 3a74c18c..cf1049b4 100644 --- a/packages/iconoir-react/src/server/BrightStar.tsx +++ b/packages/iconoir-react/src/server/BrightStar.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgBrightStar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBrightStar); + + + + + + + + +); +const ForwardRef = forwardRef(SvgBrightStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Brightness.tsx b/packages/iconoir-react/src/server/Brightness.tsx index 2ec388ed..38e3d1b5 100644 --- a/packages/iconoir-react/src/server/Brightness.tsx +++ b/packages/iconoir-react/src/server/Brightness.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgBrightness( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBrightness); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBrightness = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgBrightness); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BrightnessWindow.tsx b/packages/iconoir-react/src/server/BrightnessWindow.tsx index f5530e42..3745d3f3 100644 --- a/packages/iconoir-react/src/server/BrightnessWindow.tsx +++ b/packages/iconoir-react/src/server/BrightnessWindow.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgBrightnessWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBrightnessWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBrightnessWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgBrightnessWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BubbleDownload.tsx b/packages/iconoir-react/src/server/BubbleDownload.tsx index f13988c9..fdc66519 100644 --- a/packages/iconoir-react/src/server/BubbleDownload.tsx +++ b/packages/iconoir-react/src/server/BubbleDownload.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBubbleDownload( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBubbleDownload); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBubbleDownload = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBubbleDownload); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BubbleError.tsx b/packages/iconoir-react/src/server/BubbleError.tsx index 074c0d73..e0bf73fc 100644 --- a/packages/iconoir-react/src/server/BubbleError.tsx +++ b/packages/iconoir-react/src/server/BubbleError.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBubbleError( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBubbleError); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBubbleError = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBubbleError); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BubbleIncome.tsx b/packages/iconoir-react/src/server/BubbleIncome.tsx index 0af2d216..2a7d677b 100644 --- a/packages/iconoir-react/src/server/BubbleIncome.tsx +++ b/packages/iconoir-react/src/server/BubbleIncome.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBubbleIncome( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBubbleIncome); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBubbleIncome = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBubbleIncome); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BubbleOutcome.tsx b/packages/iconoir-react/src/server/BubbleOutcome.tsx index bc11f58a..8c05aa6c 100644 --- a/packages/iconoir-react/src/server/BubbleOutcome.tsx +++ b/packages/iconoir-react/src/server/BubbleOutcome.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBubbleOutcome( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBubbleOutcome); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBubbleOutcome = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBubbleOutcome); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BubbleSearch.tsx b/packages/iconoir-react/src/server/BubbleSearch.tsx index e2519b27..0571d0bb 100644 --- a/packages/iconoir-react/src/server/BubbleSearch.tsx +++ b/packages/iconoir-react/src/server/BubbleSearch.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgBubbleSearch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBubbleSearch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBubbleSearch = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBubbleSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BubbleStar.tsx b/packages/iconoir-react/src/server/BubbleStar.tsx index a4b84d55..379819da 100644 --- a/packages/iconoir-react/src/server/BubbleStar.tsx +++ b/packages/iconoir-react/src/server/BubbleStar.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgBubbleStar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBubbleStar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBubbleStar = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBubbleStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BubbleUpload.tsx b/packages/iconoir-react/src/server/BubbleUpload.tsx index a518f956..70dab88b 100644 --- a/packages/iconoir-react/src/server/BubbleUpload.tsx +++ b/packages/iconoir-react/src/server/BubbleUpload.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBubbleUpload( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBubbleUpload); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBubbleUpload = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBubbleUpload); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BubbleWarning.tsx b/packages/iconoir-react/src/server/BubbleWarning.tsx index 41d84a40..8285d33a 100644 --- a/packages/iconoir-react/src/server/BubbleWarning.tsx +++ b/packages/iconoir-react/src/server/BubbleWarning.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBubbleWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBubbleWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBubbleWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBubbleWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Building.tsx b/packages/iconoir-react/src/server/Building.tsx index 0279e9ed..be6efa42 100644 --- a/packages/iconoir-react/src/server/Building.tsx +++ b/packages/iconoir-react/src/server/Building.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgBuilding( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgBuilding); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBuilding = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgBuilding); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Bus.tsx b/packages/iconoir-react/src/server/Bus.tsx index 16f322ce..530767e8 100644 --- a/packages/iconoir-react/src/server/Bus.tsx +++ b/packages/iconoir-react/src/server/Bus.tsx @@ -1,33 +1,30 @@ import * as React from "react"; -function SvgBus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBus = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgBus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/BusStop.tsx b/packages/iconoir-react/src/server/BusStop.tsx index d6fc7c52..fc47b41e 100644 --- a/packages/iconoir-react/src/server/BusStop.tsx +++ b/packages/iconoir-react/src/server/BusStop.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgBusStop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgBusStop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgBusStop = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgBusStop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CableTag.tsx b/packages/iconoir-react/src/server/CableTag.tsx index 98d32eb7..a64c5ad6 100644 --- a/packages/iconoir-react/src/server/CableTag.tsx +++ b/packages/iconoir-react/src/server/CableTag.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgCableTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCableTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCableTag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCableTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Calculator.tsx b/packages/iconoir-react/src/server/Calculator.tsx index 4d9c331d..7424ebe3 100644 --- a/packages/iconoir-react/src/server/Calculator.tsx +++ b/packages/iconoir-react/src/server/Calculator.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgCalculator( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCalculator); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCalculator = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCalculator); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Calendar.tsx b/packages/iconoir-react/src/server/Calendar.tsx index 0f88727e..62d46b6e 100644 --- a/packages/iconoir-react/src/server/Calendar.tsx +++ b/packages/iconoir-react/src/server/Calendar.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCalendar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCalendar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCalendar = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCalendar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CalendarMinus.tsx b/packages/iconoir-react/src/server/CalendarMinus.tsx index 279ea571..f4bd2594 100644 --- a/packages/iconoir-react/src/server/CalendarMinus.tsx +++ b/packages/iconoir-react/src/server/CalendarMinus.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCalendarMinus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCalendarMinus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCalendarMinus = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCalendarMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CalendarPlus.tsx b/packages/iconoir-react/src/server/CalendarPlus.tsx index e739487b..dcff7fa1 100644 --- a/packages/iconoir-react/src/server/CalendarPlus.tsx +++ b/packages/iconoir-react/src/server/CalendarPlus.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCalendarPlus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCalendarPlus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCalendarPlus = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCalendarPlus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Camera.tsx b/packages/iconoir-react/src/server/Camera.tsx index f808cb86..8ea8ab80 100644 --- a/packages/iconoir-react/src/server/Camera.tsx +++ b/packages/iconoir-react/src/server/Camera.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgCamera( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCamera); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCamera = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCamera); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cancel.tsx b/packages/iconoir-react/src/server/Cancel.tsx index 424f2e84..4b807b75 100644 --- a/packages/iconoir-react/src/server/Cancel.tsx +++ b/packages/iconoir-react/src/server/Cancel.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgCancel( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCancel); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCancel = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgCancel); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CandlestickChart.tsx b/packages/iconoir-react/src/server/CandlestickChart.tsx index f987fc4a..ce9179f4 100644 --- a/packages/iconoir-react/src/server/CandlestickChart.tsx +++ b/packages/iconoir-react/src/server/CandlestickChart.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCandlestickChart( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCandlestickChart); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCandlestickChart = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCandlestickChart); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Car.tsx b/packages/iconoir-react/src/server/Car.tsx index 1f8d69ed..f0d2481d 100644 --- a/packages/iconoir-react/src/server/Car.tsx +++ b/packages/iconoir-react/src/server/Car.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgCar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCar = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Carbon.tsx b/packages/iconoir-react/src/server/Carbon.tsx index b461a6e5..5efecbc5 100644 --- a/packages/iconoir-react/src/server/Carbon.tsx +++ b/packages/iconoir-react/src/server/Carbon.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgCarbon( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCarbon); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCarbon = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCarbon); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CardIssue.tsx b/packages/iconoir-react/src/server/CardIssue.tsx index c0e43a00..d52142a2 100644 --- a/packages/iconoir-react/src/server/CardIssue.tsx +++ b/packages/iconoir-react/src/server/CardIssue.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCardIssue( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCardIssue); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCardIssue = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCardIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CardLocked.tsx b/packages/iconoir-react/src/server/CardLocked.tsx index 6e654fb2..4e0ae9df 100644 --- a/packages/iconoir-react/src/server/CardLocked.tsx +++ b/packages/iconoir-react/src/server/CardLocked.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCardLocked( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCardLocked); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCardLocked = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCardLocked); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CardReader.tsx b/packages/iconoir-react/src/server/CardReader.tsx index 2e7ef0cb..39c287f7 100644 --- a/packages/iconoir-react/src/server/CardReader.tsx +++ b/packages/iconoir-react/src/server/CardReader.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgCardReader( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCardReader); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCardReader = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgCardReader); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CardSecurity.tsx b/packages/iconoir-react/src/server/CardSecurity.tsx index c144ff2e..23ebe7bd 100644 --- a/packages/iconoir-react/src/server/CardSecurity.tsx +++ b/packages/iconoir-react/src/server/CardSecurity.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCardSecurity( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCardSecurity); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCardSecurity = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCardSecurity); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CardWallet.tsx b/packages/iconoir-react/src/server/CardWallet.tsx index 13fa39a9..2f0b80a1 100644 --- a/packages/iconoir-react/src/server/CardWallet.tsx +++ b/packages/iconoir-react/src/server/CardWallet.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgCardWallet( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCardWallet); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCardWallet = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCardWallet); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cart.tsx b/packages/iconoir-react/src/server/Cart.tsx index 7616d10c..ba6b0be8 100644 --- a/packages/iconoir-react/src/server/Cart.tsx +++ b/packages/iconoir-react/src/server/Cart.tsx @@ -1,35 +1,32 @@ import * as React from "react"; -function SvgCart( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCart); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCart = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCart); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CartAlt.tsx b/packages/iconoir-react/src/server/CartAlt.tsx index e3600fcb..521321cc 100644 --- a/packages/iconoir-react/src/server/CartAlt.tsx +++ b/packages/iconoir-react/src/server/CartAlt.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgCartAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCartAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCartAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCartAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cash.tsx b/packages/iconoir-react/src/server/Cash.tsx index e76e3b67..cb6f4966 100644 --- a/packages/iconoir-react/src/server/Cash.tsx +++ b/packages/iconoir-react/src/server/Cash.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgCash( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCash); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCash = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCash); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cell2X2.tsx b/packages/iconoir-react/src/server/Cell2X2.tsx index ad1cb6f0..0d4da7f8 100644 --- a/packages/iconoir-react/src/server/Cell2X2.tsx +++ b/packages/iconoir-react/src/server/Cell2X2.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgCell2X2( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCell2X2); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCell2X2 = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCell2X2); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cellar.tsx b/packages/iconoir-react/src/server/Cellar.tsx index 806aa531..7c7f0f2e 100644 --- a/packages/iconoir-react/src/server/Cellar.tsx +++ b/packages/iconoir-react/src/server/Cellar.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgCellar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCellar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCellar = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCellar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CenterAlign.tsx b/packages/iconoir-react/src/server/CenterAlign.tsx index 9a8b5f22..6fde16e2 100644 --- a/packages/iconoir-react/src/server/CenterAlign.tsx +++ b/packages/iconoir-react/src/server/CenterAlign.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCenterAlign( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCenterAlign); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCenterAlign = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCenterAlign); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatAdd.tsx b/packages/iconoir-react/src/server/ChatAdd.tsx index 46685da6..88921031 100644 --- a/packages/iconoir-react/src/server/ChatAdd.tsx +++ b/packages/iconoir-react/src/server/ChatAdd.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgChatAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatAdd = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgChatAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatBubble.tsx b/packages/iconoir-react/src/server/ChatBubble.tsx index 6cefd3f4..970f4e4d 100644 --- a/packages/iconoir-react/src/server/ChatBubble.tsx +++ b/packages/iconoir-react/src/server/ChatBubble.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgChatBubble( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatBubble); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatBubble = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgChatBubble); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatBubbleCheck.tsx b/packages/iconoir-react/src/server/ChatBubbleCheck.tsx index b606c4dd..c9c9d24f 100644 --- a/packages/iconoir-react/src/server/ChatBubbleCheck.tsx +++ b/packages/iconoir-react/src/server/ChatBubbleCheck.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgChatBubbleCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatBubbleCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgChatBubbleCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatBubbleCheck1.tsx b/packages/iconoir-react/src/server/ChatBubbleCheck1.tsx index e54a0ae4..6f83aa5a 100644 --- a/packages/iconoir-react/src/server/ChatBubbleCheck1.tsx +++ b/packages/iconoir-react/src/server/ChatBubbleCheck1.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgChatBubbleCheck1( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleCheck1); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatBubbleCheck1 = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgChatBubbleCheck1); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatBubbleEmpty.tsx b/packages/iconoir-react/src/server/ChatBubbleEmpty.tsx index 5dce2b03..ee3f1996 100644 --- a/packages/iconoir-react/src/server/ChatBubbleEmpty.tsx +++ b/packages/iconoir-react/src/server/ChatBubbleEmpty.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgChatBubbleEmpty( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleEmpty); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatBubbleEmpty = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgChatBubbleEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatBubbleError.tsx b/packages/iconoir-react/src/server/ChatBubbleError.tsx index 561fb9e7..8f4b72f8 100644 --- a/packages/iconoir-react/src/server/ChatBubbleError.tsx +++ b/packages/iconoir-react/src/server/ChatBubbleError.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgChatBubbleError( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleError); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatBubbleError = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgChatBubbleError); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatBubbleQuestion.tsx b/packages/iconoir-react/src/server/ChatBubbleQuestion.tsx index 5da438a9..81e2f89a 100644 --- a/packages/iconoir-react/src/server/ChatBubbleQuestion.tsx +++ b/packages/iconoir-react/src/server/ChatBubbleQuestion.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgChatBubbleQuestion( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleQuestion); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatBubbleQuestion = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgChatBubbleQuestion); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatBubbleTranslate.tsx b/packages/iconoir-react/src/server/ChatBubbleTranslate.tsx index 9322b747..b1f7d35c 100644 --- a/packages/iconoir-react/src/server/ChatBubbleTranslate.tsx +++ b/packages/iconoir-react/src/server/ChatBubbleTranslate.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgChatBubbleTranslate( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleTranslate); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatBubbleTranslate = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgChatBubbleTranslate); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatBubbleWarning.tsx b/packages/iconoir-react/src/server/ChatBubbleWarning.tsx index 73e0ac22..567b1459 100644 --- a/packages/iconoir-react/src/server/ChatBubbleWarning.tsx +++ b/packages/iconoir-react/src/server/ChatBubbleWarning.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgChatBubbleWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatBubbleWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatBubbleWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgChatBubbleWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatLines.tsx b/packages/iconoir-react/src/server/ChatLines.tsx index cd523447..d2f9bace 100644 --- a/packages/iconoir-react/src/server/ChatLines.tsx +++ b/packages/iconoir-react/src/server/ChatLines.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgChatLines( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatLines); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatLines = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgChatLines); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChatRemove.tsx b/packages/iconoir-react/src/server/ChatRemove.tsx index d3326cbe..83fd6e70 100644 --- a/packages/iconoir-react/src/server/ChatRemove.tsx +++ b/packages/iconoir-react/src/server/ChatRemove.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgChatRemove( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgChatRemove); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChatRemove = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgChatRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Check.tsx b/packages/iconoir-react/src/server/Check.tsx index 84b6b29f..97a5fcea 100644 --- a/packages/iconoir-react/src/server/Check.tsx +++ b/packages/iconoir-react/src/server/Check.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCheck = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CheckCircle.tsx b/packages/iconoir-react/src/server/CheckCircle.tsx index 74f04e1b..a0393f6d 100644 --- a/packages/iconoir-react/src/server/CheckCircle.tsx +++ b/packages/iconoir-react/src/server/CheckCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCheckCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCheckCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCheckCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCheckCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CheckWindow.tsx b/packages/iconoir-react/src/server/CheckWindow.tsx index 0326c8c1..8faf39ac 100644 --- a/packages/iconoir-react/src/server/CheckWindow.tsx +++ b/packages/iconoir-react/src/server/CheckWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgCheckWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCheckWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCheckWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCheckWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Chocolate.tsx b/packages/iconoir-react/src/server/Chocolate.tsx index c4887dcd..a3f3b643 100644 --- a/packages/iconoir-react/src/server/Chocolate.tsx +++ b/packages/iconoir-react/src/server/Chocolate.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgChocolate( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgChocolate); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChocolate = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgChocolate); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Chromecast.tsx b/packages/iconoir-react/src/server/Chromecast.tsx index 4557b9a6..b02c77bd 100644 --- a/packages/iconoir-react/src/server/Chromecast.tsx +++ b/packages/iconoir-react/src/server/Chromecast.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgChromecast( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgChromecast); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChromecast = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgChromecast); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChromecastActive.tsx b/packages/iconoir-react/src/server/ChromecastActive.tsx index 10000535..77555665 100644 --- a/packages/iconoir-react/src/server/ChromecastActive.tsx +++ b/packages/iconoir-react/src/server/ChromecastActive.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgChromecastActive( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgChromecastActive); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChromecastActive = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgChromecastActive); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Church.tsx b/packages/iconoir-react/src/server/Church.tsx index e25559c6..b44014c7 100644 --- a/packages/iconoir-react/src/server/Church.tsx +++ b/packages/iconoir-react/src/server/Church.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgChurch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgChurch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChurch = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgChurch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ChurchAlt.tsx b/packages/iconoir-react/src/server/ChurchAlt.tsx index 07ba7f6d..821ef91c 100644 --- a/packages/iconoir-react/src/server/ChurchAlt.tsx +++ b/packages/iconoir-react/src/server/ChurchAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgChurchAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgChurchAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgChurchAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgChurchAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CinemaOld.tsx b/packages/iconoir-react/src/server/CinemaOld.tsx index 86990831..19338bc7 100644 --- a/packages/iconoir-react/src/server/CinemaOld.tsx +++ b/packages/iconoir-react/src/server/CinemaOld.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCinemaOld( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCinemaOld); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCinemaOld = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCinemaOld); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Circle.tsx b/packages/iconoir-react/src/server/Circle.tsx index 412ff729..f03acbf3 100644 --- a/packages/iconoir-react/src/server/Circle.tsx +++ b/packages/iconoir-react/src/server/Circle.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCircle = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CircleSpark.tsx b/packages/iconoir-react/src/server/CircleSpark.tsx index 5b3c3c23..77d99589 100644 --- a/packages/iconoir-react/src/server/CircleSpark.tsx +++ b/packages/iconoir-react/src/server/CircleSpark.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgCircleSpark( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCircleSpark); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCircleSpark = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCircleSpark); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/City.tsx b/packages/iconoir-react/src/server/City.tsx index d28559b4..1386b07a 100644 --- a/packages/iconoir-react/src/server/City.tsx +++ b/packages/iconoir-react/src/server/City.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgCity( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCity); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCity = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgCity); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CleanWater.tsx b/packages/iconoir-react/src/server/CleanWater.tsx index ab229e77..ae7e9038 100644 --- a/packages/iconoir-react/src/server/CleanWater.tsx +++ b/packages/iconoir-react/src/server/CleanWater.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgCleanWater( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCleanWater); + + + + + + + + +); +const ForwardRef = forwardRef(SvgCleanWater); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ClipboardCheck.tsx b/packages/iconoir-react/src/server/ClipboardCheck.tsx index 26a2b008..c9eed422 100644 --- a/packages/iconoir-react/src/server/ClipboardCheck.tsx +++ b/packages/iconoir-react/src/server/ClipboardCheck.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgClipboardCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgClipboardCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgClipboardCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgClipboardCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Clock.tsx b/packages/iconoir-react/src/server/Clock.tsx index 3455e8b4..344bd37d 100644 --- a/packages/iconoir-react/src/server/Clock.tsx +++ b/packages/iconoir-react/src/server/Clock.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgClock( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgClock); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgClock = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgClock); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ClockRotateRight.tsx b/packages/iconoir-react/src/server/ClockRotateRight.tsx index dff81df3..a3ef9051 100644 --- a/packages/iconoir-react/src/server/ClockRotateRight.tsx +++ b/packages/iconoir-react/src/server/ClockRotateRight.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgClockRotateRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgClockRotateRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgClockRotateRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgClockRotateRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ClosedCaptions.tsx b/packages/iconoir-react/src/server/ClosedCaptions.tsx index 327bb583..6fc03205 100644 --- a/packages/iconoir-react/src/server/ClosedCaptions.tsx +++ b/packages/iconoir-react/src/server/ClosedCaptions.tsx @@ -1,31 +1,31 @@ import * as React from "react"; -function SvgClosedCaptions( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgClosedCaptions); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgClosedCaptions = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgClosedCaptions); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Closet.tsx b/packages/iconoir-react/src/server/Closet.tsx index efaa58fa..7c82b08e 100644 --- a/packages/iconoir-react/src/server/Closet.tsx +++ b/packages/iconoir-react/src/server/Closet.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgCloset( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCloset); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCloset = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCloset); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cloud.tsx b/packages/iconoir-react/src/server/Cloud.tsx index 762bc193..c5087562 100644 --- a/packages/iconoir-react/src/server/Cloud.tsx +++ b/packages/iconoir-react/src/server/Cloud.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgCloud( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCloud); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCloud = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgCloud); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CloudBookAlt.tsx b/packages/iconoir-react/src/server/CloudBookAlt.tsx index 84bdc3f4..50177972 100644 --- a/packages/iconoir-react/src/server/CloudBookAlt.tsx +++ b/packages/iconoir-react/src/server/CloudBookAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCloudBookAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCloudBookAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCloudBookAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCloudBookAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CloudCheck.tsx b/packages/iconoir-react/src/server/CloudCheck.tsx index 9b1530d8..365e875e 100644 --- a/packages/iconoir-react/src/server/CloudCheck.tsx +++ b/packages/iconoir-react/src/server/CloudCheck.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCloudCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCloudCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCloudCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCloudCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CloudDesync.tsx b/packages/iconoir-react/src/server/CloudDesync.tsx index 0e86110d..e0b315da 100644 --- a/packages/iconoir-react/src/server/CloudDesync.tsx +++ b/packages/iconoir-react/src/server/CloudDesync.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgCloudDesync( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCloudDesync); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCloudDesync = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgCloudDesync); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CloudDownload.tsx b/packages/iconoir-react/src/server/CloudDownload.tsx index 2d452e28..2aaca0c7 100644 --- a/packages/iconoir-react/src/server/CloudDownload.tsx +++ b/packages/iconoir-react/src/server/CloudDownload.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCloudDownload( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCloudDownload); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCloudDownload = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCloudDownload); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CloudError.tsx b/packages/iconoir-react/src/server/CloudError.tsx index be860a69..a49ddbd6 100644 --- a/packages/iconoir-react/src/server/CloudError.tsx +++ b/packages/iconoir-react/src/server/CloudError.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCloudError( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCloudError); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCloudError = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCloudError); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CloudSunny.tsx b/packages/iconoir-react/src/server/CloudSunny.tsx index e8eb59dd..6756eca3 100644 --- a/packages/iconoir-react/src/server/CloudSunny.tsx +++ b/packages/iconoir-react/src/server/CloudSunny.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCloudSunny( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCloudSunny); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCloudSunny = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCloudSunny); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CloudSync.tsx b/packages/iconoir-react/src/server/CloudSync.tsx index 85ec2ff3..663a04ab 100644 --- a/packages/iconoir-react/src/server/CloudSync.tsx +++ b/packages/iconoir-react/src/server/CloudSync.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgCloudSync( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCloudSync); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCloudSync = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgCloudSync); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CloudUpload.tsx b/packages/iconoir-react/src/server/CloudUpload.tsx index d0689be0..ba50174f 100644 --- a/packages/iconoir-react/src/server/CloudUpload.tsx +++ b/packages/iconoir-react/src/server/CloudUpload.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCloudUpload( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCloudUpload); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCloudUpload = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCloudUpload); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Clutery.tsx b/packages/iconoir-react/src/server/Clutery.tsx index b624a387..f600777e 100644 --- a/packages/iconoir-react/src/server/Clutery.tsx +++ b/packages/iconoir-react/src/server/Clutery.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgClutery( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgClutery); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgClutery = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgClutery); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Code.tsx b/packages/iconoir-react/src/server/Code.tsx index fdc910cf..4a65ad60 100644 --- a/packages/iconoir-react/src/server/Code.tsx +++ b/packages/iconoir-react/src/server/Code.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgCode( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCode); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCode = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgCode); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CodeBrackets.tsx b/packages/iconoir-react/src/server/CodeBrackets.tsx index 566d8704..930aae5b 100644 --- a/packages/iconoir-react/src/server/CodeBrackets.tsx +++ b/packages/iconoir-react/src/server/CodeBrackets.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCodeBrackets( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCodeBrackets); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCodeBrackets = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCodeBrackets); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CodeBracketsSquare.tsx b/packages/iconoir-react/src/server/CodeBracketsSquare.tsx index b6c4a099..89b2ef4c 100644 --- a/packages/iconoir-react/src/server/CodeBracketsSquare.tsx +++ b/packages/iconoir-react/src/server/CodeBracketsSquare.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCodeBracketsSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCodeBracketsSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCodeBracketsSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCodeBracketsSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Codepen.tsx b/packages/iconoir-react/src/server/Codepen.tsx index 4ca4f633..cfa5e0a5 100644 --- a/packages/iconoir-react/src/server/Codepen.tsx +++ b/packages/iconoir-react/src/server/Codepen.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCodepen( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCodepen); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCodepen = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCodepen); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CoffeeCup.tsx b/packages/iconoir-react/src/server/CoffeeCup.tsx index 513e2a11..5919f707 100644 --- a/packages/iconoir-react/src/server/CoffeeCup.tsx +++ b/packages/iconoir-react/src/server/CoffeeCup.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCoffeeCup( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCoffeeCup); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCoffeeCup = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCoffeeCup); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Coin.tsx b/packages/iconoir-react/src/server/Coin.tsx index 8b9e0f16..d1841f94 100644 --- a/packages/iconoir-react/src/server/Coin.tsx +++ b/packages/iconoir-react/src/server/Coin.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgCoin( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCoin); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCoin = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCoin); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Coins.tsx b/packages/iconoir-react/src/server/Coins.tsx index 110d9db7..b65573d2 100644 --- a/packages/iconoir-react/src/server/Coins.tsx +++ b/packages/iconoir-react/src/server/Coins.tsx @@ -1,40 +1,37 @@ import * as React from "react"; -function SvgCoins( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCoins); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCoins = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgCoins); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CoinsSwap.tsx b/packages/iconoir-react/src/server/CoinsSwap.tsx index f5b07759..6487f3fb 100644 --- a/packages/iconoir-react/src/server/CoinsSwap.tsx +++ b/packages/iconoir-react/src/server/CoinsSwap.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgCoinsSwap( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCoinsSwap); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCoinsSwap = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCoinsSwap); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CollageFrame.tsx b/packages/iconoir-react/src/server/CollageFrame.tsx index 4bcf131a..25e12000 100644 --- a/packages/iconoir-react/src/server/CollageFrame.tsx +++ b/packages/iconoir-react/src/server/CollageFrame.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgCollageFrame( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCollageFrame); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCollageFrame = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCollageFrame); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Collapse.tsx b/packages/iconoir-react/src/server/Collapse.tsx index d63807e7..e8257b59 100644 --- a/packages/iconoir-react/src/server/Collapse.tsx +++ b/packages/iconoir-react/src/server/Collapse.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCollapse( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCollapse); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCollapse = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCollapse); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ColorFilter.tsx b/packages/iconoir-react/src/server/ColorFilter.tsx index 3e8dad99..67f635c0 100644 --- a/packages/iconoir-react/src/server/ColorFilter.tsx +++ b/packages/iconoir-react/src/server/ColorFilter.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgColorFilter( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgColorFilter); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgColorFilter = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgColorFilter); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ColorPicker.tsx b/packages/iconoir-react/src/server/ColorPicker.tsx index 17cddc59..dc75e8c1 100644 --- a/packages/iconoir-react/src/server/ColorPicker.tsx +++ b/packages/iconoir-react/src/server/ColorPicker.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgColorPicker( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgColorPicker); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgColorPicker = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgColorPicker); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ColorPickerEmpty.tsx b/packages/iconoir-react/src/server/ColorPickerEmpty.tsx index 058e01c1..111eaa01 100644 --- a/packages/iconoir-react/src/server/ColorPickerEmpty.tsx +++ b/packages/iconoir-react/src/server/ColorPickerEmpty.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgColorPickerEmpty( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgColorPickerEmpty); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgColorPickerEmpty = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgColorPickerEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ColorWheel.tsx b/packages/iconoir-react/src/server/ColorWheel.tsx index 4aa899bc..ff90ab01 100644 --- a/packages/iconoir-react/src/server/ColorWheel.tsx +++ b/packages/iconoir-react/src/server/ColorWheel.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgColorWheel( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgColorWheel); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgColorWheel = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgColorWheel); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Combine.tsx b/packages/iconoir-react/src/server/Combine.tsx index a6f8d7dd..d93c0e17 100644 --- a/packages/iconoir-react/src/server/Combine.tsx +++ b/packages/iconoir-react/src/server/Combine.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCombine( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCombine); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCombine = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCombine); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Commodity.tsx b/packages/iconoir-react/src/server/Commodity.tsx index d6fd119b..dab351c1 100644 --- a/packages/iconoir-react/src/server/Commodity.tsx +++ b/packages/iconoir-react/src/server/Commodity.tsx @@ -1,37 +1,37 @@ import * as React from "react"; -function SvgCommodity( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCommodity); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCommodity = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgCommodity); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Community.tsx b/packages/iconoir-react/src/server/Community.tsx index b006953c..d6f5359f 100644 --- a/packages/iconoir-react/src/server/Community.tsx +++ b/packages/iconoir-react/src/server/Community.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCommunity( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCommunity); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCommunity = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCommunity); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CompAlignBottom.tsx b/packages/iconoir-react/src/server/CompAlignBottom.tsx index d831db0c..4ad94df8 100644 --- a/packages/iconoir-react/src/server/CompAlignBottom.tsx +++ b/packages/iconoir-react/src/server/CompAlignBottom.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgCompAlignBottom( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCompAlignBottom); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCompAlignBottom = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCompAlignBottom); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CompAlignLeft.tsx b/packages/iconoir-react/src/server/CompAlignLeft.tsx index efd736b4..9408312d 100644 --- a/packages/iconoir-react/src/server/CompAlignLeft.tsx +++ b/packages/iconoir-react/src/server/CompAlignLeft.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgCompAlignLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCompAlignLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCompAlignLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCompAlignLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CompAlignRight.tsx b/packages/iconoir-react/src/server/CompAlignRight.tsx index 0d24c7d8..5b289f32 100644 --- a/packages/iconoir-react/src/server/CompAlignRight.tsx +++ b/packages/iconoir-react/src/server/CompAlignRight.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgCompAlignRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCompAlignRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCompAlignRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCompAlignRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CompAlignTop.tsx b/packages/iconoir-react/src/server/CompAlignTop.tsx index 8ffcaa7c..e36c2522 100644 --- a/packages/iconoir-react/src/server/CompAlignTop.tsx +++ b/packages/iconoir-react/src/server/CompAlignTop.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgCompAlignTop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCompAlignTop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCompAlignTop = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCompAlignTop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CompactDisc.tsx b/packages/iconoir-react/src/server/CompactDisc.tsx index b4f965ee..879e65c9 100644 --- a/packages/iconoir-react/src/server/CompactDisc.tsx +++ b/packages/iconoir-react/src/server/CompactDisc.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCompactDisc( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCompactDisc); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCompactDisc = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCompactDisc); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Compass.tsx b/packages/iconoir-react/src/server/Compass.tsx index f20e8bea..da2f73d5 100644 --- a/packages/iconoir-react/src/server/Compass.tsx +++ b/packages/iconoir-react/src/server/Compass.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCompass( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCompass); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCompass = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCompass); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Component.tsx b/packages/iconoir-react/src/server/Component.tsx index 35fbb478..e0d470a0 100644 --- a/packages/iconoir-react/src/server/Component.tsx +++ b/packages/iconoir-react/src/server/Component.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgComponent( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgComponent); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgComponent = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgComponent); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Compress.tsx b/packages/iconoir-react/src/server/Compress.tsx index 7c7f1c68..223cf1bb 100644 --- a/packages/iconoir-react/src/server/Compress.tsx +++ b/packages/iconoir-react/src/server/Compress.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCompress( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCompress); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCompress = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCompress); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CompressLines.tsx b/packages/iconoir-react/src/server/CompressLines.tsx index 1ef48261..e9534a4f 100644 --- a/packages/iconoir-react/src/server/CompressLines.tsx +++ b/packages/iconoir-react/src/server/CompressLines.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCompressLines( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCompressLines); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCompressLines = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCompressLines); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Computer.tsx b/packages/iconoir-react/src/server/Computer.tsx index 9108cc07..144b5ff8 100644 --- a/packages/iconoir-react/src/server/Computer.tsx +++ b/packages/iconoir-react/src/server/Computer.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgComputer( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgComputer); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgComputer = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgComputer); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ConstrainedSurface.tsx b/packages/iconoir-react/src/server/ConstrainedSurface.tsx index c322c23d..414c175a 100644 --- a/packages/iconoir-react/src/server/ConstrainedSurface.tsx +++ b/packages/iconoir-react/src/server/ConstrainedSurface.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgConstrainedSurface( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgConstrainedSurface); + + + + + + + + + +); +const ForwardRef = forwardRef(SvgConstrainedSurface); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Consumable.tsx b/packages/iconoir-react/src/server/Consumable.tsx index 16457116..613c313d 100644 --- a/packages/iconoir-react/src/server/Consumable.tsx +++ b/packages/iconoir-react/src/server/Consumable.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgConsumable( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgConsumable); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgConsumable = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgConsumable); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Contactless.tsx b/packages/iconoir-react/src/server/Contactless.tsx index 79b6521c..12539c67 100644 --- a/packages/iconoir-react/src/server/Contactless.tsx +++ b/packages/iconoir-react/src/server/Contactless.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgContactless( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgContactless); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgContactless = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgContactless); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ControlSlider.tsx b/packages/iconoir-react/src/server/ControlSlider.tsx index a383d038..1746dcda 100644 --- a/packages/iconoir-react/src/server/ControlSlider.tsx +++ b/packages/iconoir-react/src/server/ControlSlider.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgControlSlider( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgControlSlider); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgControlSlider = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgControlSlider); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cookie.tsx b/packages/iconoir-react/src/server/Cookie.tsx index 0f038cc7..b22e999b 100644 --- a/packages/iconoir-react/src/server/Cookie.tsx +++ b/packages/iconoir-react/src/server/Cookie.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgCookie( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCookie); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCookie = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCookie); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cooling.tsx b/packages/iconoir-react/src/server/Cooling.tsx index 770792a3..aa7c7aaa 100644 --- a/packages/iconoir-react/src/server/Cooling.tsx +++ b/packages/iconoir-react/src/server/Cooling.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCooling( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCooling); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCooling = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCooling); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Copy.tsx b/packages/iconoir-react/src/server/Copy.tsx index 9110f3f6..5937cd6b 100644 --- a/packages/iconoir-react/src/server/Copy.tsx +++ b/packages/iconoir-react/src/server/Copy.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgCopy( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCopy); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCopy = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCopy); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Copyright.tsx b/packages/iconoir-react/src/server/Copyright.tsx index 0afbf16b..a60a4e07 100644 --- a/packages/iconoir-react/src/server/Copyright.tsx +++ b/packages/iconoir-react/src/server/Copyright.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgCopyright( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCopyright); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCopyright = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCopyright); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CornerBottomLeft.tsx b/packages/iconoir-react/src/server/CornerBottomLeft.tsx index 54418c5c..50a0114a 100644 --- a/packages/iconoir-react/src/server/CornerBottomLeft.tsx +++ b/packages/iconoir-react/src/server/CornerBottomLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCornerBottomLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCornerBottomLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCornerBottomLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCornerBottomLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CornerBottomRight.tsx b/packages/iconoir-react/src/server/CornerBottomRight.tsx index a921c8fa..e4b5afbc 100644 --- a/packages/iconoir-react/src/server/CornerBottomRight.tsx +++ b/packages/iconoir-react/src/server/CornerBottomRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCornerBottomRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCornerBottomRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCornerBottomRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCornerBottomRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CornerTopLeft.tsx b/packages/iconoir-react/src/server/CornerTopLeft.tsx index a6ac540c..6f9c9eea 100644 --- a/packages/iconoir-react/src/server/CornerTopLeft.tsx +++ b/packages/iconoir-react/src/server/CornerTopLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCornerTopLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCornerTopLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCornerTopLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCornerTopLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CornerTopRight.tsx b/packages/iconoir-react/src/server/CornerTopRight.tsx index c52801e3..947b4e27 100644 --- a/packages/iconoir-react/src/server/CornerTopRight.tsx +++ b/packages/iconoir-react/src/server/CornerTopRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCornerTopRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCornerTopRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCornerTopRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCornerTopRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cpu.tsx b/packages/iconoir-react/src/server/Cpu.tsx index c2b8501f..6c460c86 100644 --- a/packages/iconoir-react/src/server/Cpu.tsx +++ b/packages/iconoir-react/src/server/Cpu.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgCpu( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCpu); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCpu = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCpu); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CpuWarning.tsx b/packages/iconoir-react/src/server/CpuWarning.tsx index c606ca58..832f3a17 100644 --- a/packages/iconoir-react/src/server/CpuWarning.tsx +++ b/packages/iconoir-react/src/server/CpuWarning.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCpuWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCpuWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCpuWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCpuWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CrackedEgg.tsx b/packages/iconoir-react/src/server/CrackedEgg.tsx index 8e8f3217..d26cc8d2 100644 --- a/packages/iconoir-react/src/server/CrackedEgg.tsx +++ b/packages/iconoir-react/src/server/CrackedEgg.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCrackedEgg( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCrackedEgg); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCrackedEgg = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCrackedEgg); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CreativeCommons.tsx b/packages/iconoir-react/src/server/CreativeCommons.tsx index 546992c8..a1f14b53 100644 --- a/packages/iconoir-react/src/server/CreativeCommons.tsx +++ b/packages/iconoir-react/src/server/CreativeCommons.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgCreativeCommons( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCreativeCommons); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCreativeCommons = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCreativeCommons); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CreditCard.tsx b/packages/iconoir-react/src/server/CreditCard.tsx index c3e2f696..493c5e2b 100644 --- a/packages/iconoir-react/src/server/CreditCard.tsx +++ b/packages/iconoir-react/src/server/CreditCard.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCreditCard( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCreditCard); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCreditCard = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCreditCard); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CreditCards.tsx b/packages/iconoir-react/src/server/CreditCards.tsx index 4142cf4e..027c2d85 100644 --- a/packages/iconoir-react/src/server/CreditCards.tsx +++ b/packages/iconoir-react/src/server/CreditCards.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCreditCards( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCreditCards); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCreditCards = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCreditCards); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Crib.tsx b/packages/iconoir-react/src/server/Crib.tsx index 5464ef5f..6a8f2923 100644 --- a/packages/iconoir-react/src/server/Crib.tsx +++ b/packages/iconoir-react/src/server/Crib.tsx @@ -1,39 +1,36 @@ import * as React from "react"; -function SvgCrib( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCrib); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCrib = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgCrib); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Crop.tsx b/packages/iconoir-react/src/server/Crop.tsx index 3d63eaae..44f50c57 100644 --- a/packages/iconoir-react/src/server/Crop.tsx +++ b/packages/iconoir-react/src/server/Crop.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgCrop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCrop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCrop = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCrop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CropRotateBl.tsx b/packages/iconoir-react/src/server/CropRotateBl.tsx index 93c5c074..24a2bd7c 100644 --- a/packages/iconoir-react/src/server/CropRotateBl.tsx +++ b/packages/iconoir-react/src/server/CropRotateBl.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCropRotateBl( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCropRotateBl); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCropRotateBl = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCropRotateBl); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CropRotateBr.tsx b/packages/iconoir-react/src/server/CropRotateBr.tsx index 7a05c7af..d6d72638 100644 --- a/packages/iconoir-react/src/server/CropRotateBr.tsx +++ b/packages/iconoir-react/src/server/CropRotateBr.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCropRotateBr( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCropRotateBr); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCropRotateBr = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCropRotateBr); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CropRotateTl.tsx b/packages/iconoir-react/src/server/CropRotateTl.tsx index d3a7eaa4..16622781 100644 --- a/packages/iconoir-react/src/server/CropRotateTl.tsx +++ b/packages/iconoir-react/src/server/CropRotateTl.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCropRotateTl( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCropRotateTl); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCropRotateTl = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCropRotateTl); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CropRotateTr.tsx b/packages/iconoir-react/src/server/CropRotateTr.tsx index 850ade82..45eee711 100644 --- a/packages/iconoir-react/src/server/CropRotateTr.tsx +++ b/packages/iconoir-react/src/server/CropRotateTr.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCropRotateTr( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCropRotateTr); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCropRotateTr = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCropRotateTr); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Crown.tsx b/packages/iconoir-react/src/server/Crown.tsx index 75a043a8..7e4b56f4 100644 --- a/packages/iconoir-react/src/server/Crown.tsx +++ b/packages/iconoir-react/src/server/Crown.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgCrown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCrown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCrown = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgCrown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CrownCircle.tsx b/packages/iconoir-react/src/server/CrownCircle.tsx index 85050b58..bedadb4d 100644 --- a/packages/iconoir-react/src/server/CrownCircle.tsx +++ b/packages/iconoir-react/src/server/CrownCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCrownCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCrownCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCrownCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCrownCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Css3.tsx b/packages/iconoir-react/src/server/Css3.tsx index df8efd8f..9db80924 100644 --- a/packages/iconoir-react/src/server/Css3.tsx +++ b/packages/iconoir-react/src/server/Css3.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgCss3( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCss3); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCss3 = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgCss3); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CubeReplaceFace.tsx b/packages/iconoir-react/src/server/CubeReplaceFace.tsx index 52d958dd..e6e87970 100644 --- a/packages/iconoir-react/src/server/CubeReplaceFace.tsx +++ b/packages/iconoir-react/src/server/CubeReplaceFace.tsx @@ -1,35 +1,36 @@ import * as React from "react"; -function SvgCubeReplaceFace( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCubeReplaceFace); + + + + + + + + + +); +const ForwardRef = forwardRef(SvgCubeReplaceFace); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CursorPointer.tsx b/packages/iconoir-react/src/server/CursorPointer.tsx index 4f357aea..48f55ed7 100644 --- a/packages/iconoir-react/src/server/CursorPointer.tsx +++ b/packages/iconoir-react/src/server/CursorPointer.tsx @@ -1,27 +1,27 @@ import * as React from "react"; -function SvgCursorPointer( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCursorPointer); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCursorPointer = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCursorPointer); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CurveArray.tsx b/packages/iconoir-react/src/server/CurveArray.tsx index 712e695f..142fb739 100644 --- a/packages/iconoir-react/src/server/CurveArray.tsx +++ b/packages/iconoir-react/src/server/CurveArray.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCurveArray( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCurveArray); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCurveArray = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCurveArray); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cut.tsx b/packages/iconoir-react/src/server/Cut.tsx index 94b7207b..f93ff45d 100644 --- a/packages/iconoir-react/src/server/Cut.tsx +++ b/packages/iconoir-react/src/server/Cut.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgCut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCut = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgCut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CutAlt.tsx b/packages/iconoir-react/src/server/CutAlt.tsx index d8b208cc..0552bf4d 100644 --- a/packages/iconoir-react/src/server/CutAlt.tsx +++ b/packages/iconoir-react/src/server/CutAlt.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgCutAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCutAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCutAlt = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgCutAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/CutSolidWithCurve.tsx b/packages/iconoir-react/src/server/CutSolidWithCurve.tsx index 3a7f243b..92a4e951 100644 --- a/packages/iconoir-react/src/server/CutSolidWithCurve.tsx +++ b/packages/iconoir-react/src/server/CutSolidWithCurve.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgCutSolidWithCurve( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCutSolidWithCurve); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCutSolidWithCurve = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCutSolidWithCurve); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cycling.tsx b/packages/iconoir-react/src/server/Cycling.tsx index 71ccc741..9ba680c3 100644 --- a/packages/iconoir-react/src/server/Cycling.tsx +++ b/packages/iconoir-react/src/server/Cycling.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgCycling( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgCycling); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCycling = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgCycling); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Cylinder.tsx b/packages/iconoir-react/src/server/Cylinder.tsx index efd6f812..9a29cbb9 100644 --- a/packages/iconoir-react/src/server/Cylinder.tsx +++ b/packages/iconoir-react/src/server/Cylinder.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgCylinder( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgCylinder); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgCylinder = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgCylinder); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DashFlag.tsx b/packages/iconoir-react/src/server/DashFlag.tsx index 89c5778f..ee9d2ea2 100644 --- a/packages/iconoir-react/src/server/DashFlag.tsx +++ b/packages/iconoir-react/src/server/DashFlag.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDashFlag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDashFlag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDashFlag = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDashFlag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Dashboard.tsx b/packages/iconoir-react/src/server/Dashboard.tsx index eadee50e..13b94be9 100644 --- a/packages/iconoir-react/src/server/Dashboard.tsx +++ b/packages/iconoir-react/src/server/Dashboard.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgDashboard( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDashboard); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDashboard = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDashboard); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DashboardDots.tsx b/packages/iconoir-react/src/server/DashboardDots.tsx index 09ea953c..82b4b031 100644 --- a/packages/iconoir-react/src/server/DashboardDots.tsx +++ b/packages/iconoir-react/src/server/DashboardDots.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDashboardDots( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDashboardDots); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDashboardDots = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDashboardDots); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DashboardSpeed.tsx b/packages/iconoir-react/src/server/DashboardSpeed.tsx index c3e1d220..dd1ff328 100644 --- a/packages/iconoir-react/src/server/DashboardSpeed.tsx +++ b/packages/iconoir-react/src/server/DashboardSpeed.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDashboardSpeed( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDashboardSpeed); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDashboardSpeed = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDashboardSpeed); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DataTransferBoth.tsx b/packages/iconoir-react/src/server/DataTransferBoth.tsx index 4d58b74a..39283eab 100644 --- a/packages/iconoir-react/src/server/DataTransferBoth.tsx +++ b/packages/iconoir-react/src/server/DataTransferBoth.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDataTransferBoth( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDataTransferBoth); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDataTransferBoth = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDataTransferBoth); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DataTransferCheck.tsx b/packages/iconoir-react/src/server/DataTransferCheck.tsx index 1899a764..fac4f19e 100644 --- a/packages/iconoir-react/src/server/DataTransferCheck.tsx +++ b/packages/iconoir-react/src/server/DataTransferCheck.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDataTransferCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDataTransferCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDataTransferCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDataTransferCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DataTransferDown.tsx b/packages/iconoir-react/src/server/DataTransferDown.tsx index f8893179..e0baed14 100644 --- a/packages/iconoir-react/src/server/DataTransferDown.tsx +++ b/packages/iconoir-react/src/server/DataTransferDown.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDataTransferDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDataTransferDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDataTransferDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDataTransferDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DataTransferUp.tsx b/packages/iconoir-react/src/server/DataTransferUp.tsx index dc6036c9..77656c9e 100644 --- a/packages/iconoir-react/src/server/DataTransferUp.tsx +++ b/packages/iconoir-react/src/server/DataTransferUp.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDataTransferUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDataTransferUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDataTransferUp = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDataTransferUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DataTransferWarning.tsx b/packages/iconoir-react/src/server/DataTransferWarning.tsx index 7f2c8e96..6e93c234 100644 --- a/packages/iconoir-react/src/server/DataTransferWarning.tsx +++ b/packages/iconoir-react/src/server/DataTransferWarning.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDataTransferWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDataTransferWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDataTransferWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDataTransferWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DatabaseBackup.tsx b/packages/iconoir-react/src/server/DatabaseBackup.tsx index ef78542b..ff3b606e 100644 --- a/packages/iconoir-react/src/server/DatabaseBackup.tsx +++ b/packages/iconoir-react/src/server/DatabaseBackup.tsx @@ -1,46 +1,46 @@ import * as React from "react"; -function SvgDatabaseBackup( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseBackup); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDatabaseBackup = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgDatabaseBackup); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DatabaseExport.tsx b/packages/iconoir-react/src/server/DatabaseExport.tsx index 3a7967aa..98e67538 100644 --- a/packages/iconoir-react/src/server/DatabaseExport.tsx +++ b/packages/iconoir-react/src/server/DatabaseExport.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDatabaseExport( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseExport); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDatabaseExport = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDatabaseExport); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DatabaseMonitor.tsx b/packages/iconoir-react/src/server/DatabaseMonitor.tsx index 93ed387d..60523d40 100644 --- a/packages/iconoir-react/src/server/DatabaseMonitor.tsx +++ b/packages/iconoir-react/src/server/DatabaseMonitor.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDatabaseMonitor( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseMonitor); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDatabaseMonitor = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDatabaseMonitor); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DatabaseRestore.tsx b/packages/iconoir-react/src/server/DatabaseRestore.tsx index 25463ab1..b0d501b0 100644 --- a/packages/iconoir-react/src/server/DatabaseRestore.tsx +++ b/packages/iconoir-react/src/server/DatabaseRestore.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDatabaseRestore( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseRestore); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDatabaseRestore = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDatabaseRestore); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DatabaseScript.tsx b/packages/iconoir-react/src/server/DatabaseScript.tsx index 659a2eea..225fecf2 100644 --- a/packages/iconoir-react/src/server/DatabaseScript.tsx +++ b/packages/iconoir-react/src/server/DatabaseScript.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDatabaseScript( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseScript); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDatabaseScript = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDatabaseScript); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DatabaseSettings.tsx b/packages/iconoir-react/src/server/DatabaseSettings.tsx index 0a358458..bb319565 100644 --- a/packages/iconoir-react/src/server/DatabaseSettings.tsx +++ b/packages/iconoir-react/src/server/DatabaseSettings.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgDatabaseSettings( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseSettings); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDatabaseSettings = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDatabaseSettings); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DatabaseStar.tsx b/packages/iconoir-react/src/server/DatabaseStar.tsx index bdfebe02..c60cab8b 100644 --- a/packages/iconoir-react/src/server/DatabaseStar.tsx +++ b/packages/iconoir-react/src/server/DatabaseStar.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDatabaseStar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseStar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDatabaseStar = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDatabaseStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DatabaseStats.tsx b/packages/iconoir-react/src/server/DatabaseStats.tsx index c1ccb1aa..5a1a8ac9 100644 --- a/packages/iconoir-react/src/server/DatabaseStats.tsx +++ b/packages/iconoir-react/src/server/DatabaseStats.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgDatabaseStats( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseStats); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDatabaseStats = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDatabaseStats); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DatabaseTag.tsx b/packages/iconoir-react/src/server/DatabaseTag.tsx index a9bc1c71..1aa3d541 100644 --- a/packages/iconoir-react/src/server/DatabaseTag.tsx +++ b/packages/iconoir-react/src/server/DatabaseTag.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgDatabaseTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDatabaseTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDatabaseTag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDatabaseTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Db.tsx b/packages/iconoir-react/src/server/Db.tsx index c1d7b296..13f31b16 100644 --- a/packages/iconoir-react/src/server/Db.tsx +++ b/packages/iconoir-react/src/server/Db.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgDb( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDb); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDb = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDb); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DbCheck.tsx b/packages/iconoir-react/src/server/DbCheck.tsx index 29bab8f4..49b103c5 100644 --- a/packages/iconoir-react/src/server/DbCheck.tsx +++ b/packages/iconoir-react/src/server/DbCheck.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDbCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDbCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDbCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDbCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DbError.tsx b/packages/iconoir-react/src/server/DbError.tsx index 30427c96..833a9770 100644 --- a/packages/iconoir-react/src/server/DbError.tsx +++ b/packages/iconoir-react/src/server/DbError.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDbError( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDbError); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDbError = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDbError); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DbSearch.tsx b/packages/iconoir-react/src/server/DbSearch.tsx index dd0e4d47..4e8f995c 100644 --- a/packages/iconoir-react/src/server/DbSearch.tsx +++ b/packages/iconoir-react/src/server/DbSearch.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDbSearch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDbSearch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDbSearch = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDbSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DbStar.tsx b/packages/iconoir-react/src/server/DbStar.tsx index 5c47a489..e452e84f 100644 --- a/packages/iconoir-react/src/server/DbStar.tsx +++ b/packages/iconoir-react/src/server/DbStar.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgDbStar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDbStar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDbStar = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgDbStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DbWarning.tsx b/packages/iconoir-react/src/server/DbWarning.tsx index c4566a67..216dfe47 100644 --- a/packages/iconoir-react/src/server/DbWarning.tsx +++ b/packages/iconoir-react/src/server/DbWarning.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDbWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDbWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDbWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDbWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DeCompress.tsx b/packages/iconoir-react/src/server/DeCompress.tsx index 48887d76..2d3ad394 100644 --- a/packages/iconoir-react/src/server/DeCompress.tsx +++ b/packages/iconoir-react/src/server/DeCompress.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDeCompress( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDeCompress); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDeCompress = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDeCompress); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DeleteCircle.tsx b/packages/iconoir-react/src/server/DeleteCircle.tsx index 718c4010..28545dff 100644 --- a/packages/iconoir-react/src/server/DeleteCircle.tsx +++ b/packages/iconoir-react/src/server/DeleteCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDeleteCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDeleteCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDeleteCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDeleteCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Delivery.tsx b/packages/iconoir-react/src/server/Delivery.tsx index 77079760..aac725a1 100644 --- a/packages/iconoir-react/src/server/Delivery.tsx +++ b/packages/iconoir-react/src/server/Delivery.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDelivery( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDelivery); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDelivery = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDelivery); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DeliveryTruck.tsx b/packages/iconoir-react/src/server/DeliveryTruck.tsx index e5b12389..be2b97f7 100644 --- a/packages/iconoir-react/src/server/DeliveryTruck.tsx +++ b/packages/iconoir-react/src/server/DeliveryTruck.tsx @@ -1,45 +1,45 @@ import * as React from "react"; -function SvgDeliveryTruck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDeliveryTruck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDeliveryTruck = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgDeliveryTruck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Depth.tsx b/packages/iconoir-react/src/server/Depth.tsx index 3446c5dd..32ba76a7 100644 --- a/packages/iconoir-react/src/server/Depth.tsx +++ b/packages/iconoir-react/src/server/Depth.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgDepth( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDepth); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDepth = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgDepth); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DesignNib.tsx b/packages/iconoir-react/src/server/DesignNib.tsx index 77f77083..2439a299 100644 --- a/packages/iconoir-react/src/server/DesignNib.tsx +++ b/packages/iconoir-react/src/server/DesignNib.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgDesignNib( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDesignNib); + + + + + + + + + +); +const ForwardRef = forwardRef(SvgDesignNib); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DesignPencil.tsx b/packages/iconoir-react/src/server/DesignPencil.tsx index 30d5213c..63a938bf 100644 --- a/packages/iconoir-react/src/server/DesignPencil.tsx +++ b/packages/iconoir-react/src/server/DesignPencil.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgDesignPencil( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDesignPencil); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDesignPencil = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDesignPencil); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Desk.tsx b/packages/iconoir-react/src/server/Desk.tsx index 069ed5eb..a771a337 100644 --- a/packages/iconoir-react/src/server/Desk.tsx +++ b/packages/iconoir-react/src/server/Desk.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgDesk( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDesk); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDesk = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgDesk); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DevModeLaptop.tsx b/packages/iconoir-react/src/server/DevModeLaptop.tsx index 0ba4de55..27e2f497 100644 --- a/packages/iconoir-react/src/server/DevModeLaptop.tsx +++ b/packages/iconoir-react/src/server/DevModeLaptop.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgDevModeLaptop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDevModeLaptop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDevModeLaptop = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDevModeLaptop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DevModePhone.tsx b/packages/iconoir-react/src/server/DevModePhone.tsx index 920122e4..87d8dec8 100644 --- a/packages/iconoir-react/src/server/DevModePhone.tsx +++ b/packages/iconoir-react/src/server/DevModePhone.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgDevModePhone( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDevModePhone); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDevModePhone = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDevModePhone); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Developer.tsx b/packages/iconoir-react/src/server/Developer.tsx index 161b604b..8ab94d0b 100644 --- a/packages/iconoir-react/src/server/Developer.tsx +++ b/packages/iconoir-react/src/server/Developer.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDeveloper( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDeveloper); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDeveloper = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDeveloper); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DewPoint.tsx b/packages/iconoir-react/src/server/DewPoint.tsx index ae0e3145..1ace61f5 100644 --- a/packages/iconoir-react/src/server/DewPoint.tsx +++ b/packages/iconoir-react/src/server/DewPoint.tsx @@ -1,42 +1,42 @@ import * as React from "react"; -function SvgDewPoint( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDewPoint); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDewPoint = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDewPoint); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Dialpad.tsx b/packages/iconoir-react/src/server/Dialpad.tsx index aa6d5409..448c2b1a 100644 --- a/packages/iconoir-react/src/server/Dialpad.tsx +++ b/packages/iconoir-react/src/server/Dialpad.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgDialpad( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDialpad); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDialpad = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDialpad); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Diameter.tsx b/packages/iconoir-react/src/server/Diameter.tsx index 8eaeab2d..f50aac5a 100644 --- a/packages/iconoir-react/src/server/Diameter.tsx +++ b/packages/iconoir-react/src/server/Diameter.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDiameter( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDiameter); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDiameter = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDiameter); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DiceFive.tsx b/packages/iconoir-react/src/server/DiceFive.tsx index b2b60ab3..31b322db 100644 --- a/packages/iconoir-react/src/server/DiceFive.tsx +++ b/packages/iconoir-react/src/server/DiceFive.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgDiceFive( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDiceFive); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDiceFive = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDiceFive); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DiceFour.tsx b/packages/iconoir-react/src/server/DiceFour.tsx index e098719a..e781115f 100644 --- a/packages/iconoir-react/src/server/DiceFour.tsx +++ b/packages/iconoir-react/src/server/DiceFour.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgDiceFour( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDiceFour); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDiceFour = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDiceFour); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DiceOne.tsx b/packages/iconoir-react/src/server/DiceOne.tsx index 0d78c690..baf2d64d 100644 --- a/packages/iconoir-react/src/server/DiceOne.tsx +++ b/packages/iconoir-react/src/server/DiceOne.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgDiceOne( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDiceOne); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDiceOne = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDiceOne); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DiceSix.tsx b/packages/iconoir-react/src/server/DiceSix.tsx index c5480087..60cba4a6 100644 --- a/packages/iconoir-react/src/server/DiceSix.tsx +++ b/packages/iconoir-react/src/server/DiceSix.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgDiceSix( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDiceSix); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDiceSix = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDiceSix); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DiceThree.tsx b/packages/iconoir-react/src/server/DiceThree.tsx index 742771d7..58a4377b 100644 --- a/packages/iconoir-react/src/server/DiceThree.tsx +++ b/packages/iconoir-react/src/server/DiceThree.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgDiceThree( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDiceThree); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDiceThree = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDiceThree); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DiceTwo.tsx b/packages/iconoir-react/src/server/DiceTwo.tsx index 67c43635..7b49d843 100644 --- a/packages/iconoir-react/src/server/DiceTwo.tsx +++ b/packages/iconoir-react/src/server/DiceTwo.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgDiceTwo( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDiceTwo); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDiceTwo = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDiceTwo); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DimmerSwitch.tsx b/packages/iconoir-react/src/server/DimmerSwitch.tsx index 23026979..723ae96c 100644 --- a/packages/iconoir-react/src/server/DimmerSwitch.tsx +++ b/packages/iconoir-react/src/server/DimmerSwitch.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDimmerSwitch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDimmerSwitch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDimmerSwitch = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDimmerSwitch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DirectorChair.tsx b/packages/iconoir-react/src/server/DirectorChair.tsx index c57e7486..6c31aa19 100644 --- a/packages/iconoir-react/src/server/DirectorChair.tsx +++ b/packages/iconoir-react/src/server/DirectorChair.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgDirectorChair( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDirectorChair); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDirectorChair = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDirectorChair); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Discord.tsx b/packages/iconoir-react/src/server/Discord.tsx index 8dc27086..fcd2e3ab 100644 --- a/packages/iconoir-react/src/server/Discord.tsx +++ b/packages/iconoir-react/src/server/Discord.tsx @@ -1,40 +1,46 @@ import * as React from "react"; -function SvgDiscord( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDiscord); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDiscord = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgDiscord); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Dishwasher.tsx b/packages/iconoir-react/src/server/Dishwasher.tsx index 09878030..cd2dfb42 100644 --- a/packages/iconoir-react/src/server/Dishwasher.tsx +++ b/packages/iconoir-react/src/server/Dishwasher.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDishwasher( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDishwasher); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDishwasher = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDishwasher); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Display4K.tsx b/packages/iconoir-react/src/server/Display4K.tsx index 347d718b..8e978401 100644 --- a/packages/iconoir-react/src/server/Display4K.tsx +++ b/packages/iconoir-react/src/server/Display4K.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgDisplay4K( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDisplay4K); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDisplay4K = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDisplay4K); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Divide.tsx b/packages/iconoir-react/src/server/Divide.tsx index 365ea3c5..f3b385bb 100644 --- a/packages/iconoir-react/src/server/Divide.tsx +++ b/packages/iconoir-react/src/server/Divide.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgDivide( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDivide); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDivide = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgDivide); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DivideSelection1.tsx b/packages/iconoir-react/src/server/DivideSelection1.tsx index 6985e890..8b4c5480 100644 --- a/packages/iconoir-react/src/server/DivideSelection1.tsx +++ b/packages/iconoir-react/src/server/DivideSelection1.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDivideSelection1( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDivideSelection1); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDivideSelection1 = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDivideSelection1); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DivideSelection2.tsx b/packages/iconoir-react/src/server/DivideSelection2.tsx index e8fb391f..571060d1 100644 --- a/packages/iconoir-react/src/server/DivideSelection2.tsx +++ b/packages/iconoir-react/src/server/DivideSelection2.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDivideSelection2( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDivideSelection2); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDivideSelection2 = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDivideSelection2); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DivideThree.tsx b/packages/iconoir-react/src/server/DivideThree.tsx index 5a6952c8..885402e1 100644 --- a/packages/iconoir-react/src/server/DivideThree.tsx +++ b/packages/iconoir-react/src/server/DivideThree.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDivideThree( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDivideThree); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDivideThree = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDivideThree); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Dna.tsx b/packages/iconoir-react/src/server/Dna.tsx index 19b65b38..545a87de 100644 --- a/packages/iconoir-react/src/server/Dna.tsx +++ b/packages/iconoir-react/src/server/Dna.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgDna( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDna); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDna = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgDna); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DocSearch.tsx b/packages/iconoir-react/src/server/DocSearch.tsx index 1ae98525..9d33c1cf 100644 --- a/packages/iconoir-react/src/server/DocSearch.tsx +++ b/packages/iconoir-react/src/server/DocSearch.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgDocSearch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDocSearch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDocSearch = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDocSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DocSearchAlt.tsx b/packages/iconoir-react/src/server/DocSearchAlt.tsx index f13bc487..c3e00979 100644 --- a/packages/iconoir-react/src/server/DocSearchAlt.tsx +++ b/packages/iconoir-react/src/server/DocSearchAlt.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgDocSearchAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDocSearchAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDocSearchAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDocSearchAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DocStar.tsx b/packages/iconoir-react/src/server/DocStar.tsx index c988d481..aa2e0a9c 100644 --- a/packages/iconoir-react/src/server/DocStar.tsx +++ b/packages/iconoir-react/src/server/DocStar.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgDocStar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDocStar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDocStar = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDocStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DocStarAlt.tsx b/packages/iconoir-react/src/server/DocStarAlt.tsx index 7eb2819e..aea04d3b 100644 --- a/packages/iconoir-react/src/server/DocStarAlt.tsx +++ b/packages/iconoir-react/src/server/DocStarAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDocStarAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDocStarAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDocStarAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDocStarAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DogecoinCircle.tsx b/packages/iconoir-react/src/server/DogecoinCircle.tsx index 5e32919a..ecac1e44 100644 --- a/packages/iconoir-react/src/server/DogecoinCircle.tsx +++ b/packages/iconoir-react/src/server/DogecoinCircle.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgDogecoinCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDogecoinCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDogecoinCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDogecoinCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DogecoinRotateOut.tsx b/packages/iconoir-react/src/server/DogecoinRotateOut.tsx index bb896c37..a27aa08d 100644 --- a/packages/iconoir-react/src/server/DogecoinRotateOut.tsx +++ b/packages/iconoir-react/src/server/DogecoinRotateOut.tsx @@ -1,50 +1,50 @@ import * as React from "react"; -function SvgDogecoinRotateOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDogecoinRotateOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDogecoinRotateOut = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgDogecoinRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Dollar.tsx b/packages/iconoir-react/src/server/Dollar.tsx index e684a3d2..dc596694 100644 --- a/packages/iconoir-react/src/server/Dollar.tsx +++ b/packages/iconoir-react/src/server/Dollar.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgDollar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDollar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDollar = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgDollar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DomoticIssue.tsx b/packages/iconoir-react/src/server/DomoticIssue.tsx index c9a820f2..97443939 100644 --- a/packages/iconoir-react/src/server/DomoticIssue.tsx +++ b/packages/iconoir-react/src/server/DomoticIssue.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDomoticIssue( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDomoticIssue); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDomoticIssue = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDomoticIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Donate.tsx b/packages/iconoir-react/src/server/Donate.tsx index 9794902c..d4f2ac36 100644 --- a/packages/iconoir-react/src/server/Donate.tsx +++ b/packages/iconoir-react/src/server/Donate.tsx @@ -1,45 +1,42 @@ import * as React from "react"; -function SvgDonate( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDonate); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDonate = (props: SVGProps, ref: Ref) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgDonate); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DoubleCheck.tsx b/packages/iconoir-react/src/server/DoubleCheck.tsx index e57aa62a..1c604570 100644 --- a/packages/iconoir-react/src/server/DoubleCheck.tsx +++ b/packages/iconoir-react/src/server/DoubleCheck.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgDoubleCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDoubleCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDoubleCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDoubleCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DownRoundArrow.tsx b/packages/iconoir-react/src/server/DownRoundArrow.tsx index 92030e43..426ae384 100644 --- a/packages/iconoir-react/src/server/DownRoundArrow.tsx +++ b/packages/iconoir-react/src/server/DownRoundArrow.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgDownRoundArrow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDownRoundArrow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDownRoundArrow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDownRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Download.tsx b/packages/iconoir-react/src/server/Download.tsx index c8d3ef09..27d52d7c 100644 --- a/packages/iconoir-react/src/server/Download.tsx +++ b/packages/iconoir-react/src/server/Download.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDownload( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDownload); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDownload = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDownload); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DownloadCircle.tsx b/packages/iconoir-react/src/server/DownloadCircle.tsx index 9484676f..459d7e79 100644 --- a/packages/iconoir-react/src/server/DownloadCircle.tsx +++ b/packages/iconoir-react/src/server/DownloadCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgDownloadCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDownloadCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDownloadCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDownloadCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DownloadDataWindow.tsx b/packages/iconoir-react/src/server/DownloadDataWindow.tsx index 0ce0204c..2599f5ea 100644 --- a/packages/iconoir-react/src/server/DownloadDataWindow.tsx +++ b/packages/iconoir-react/src/server/DownloadDataWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgDownloadDataWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDownloadDataWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDownloadDataWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDownloadDataWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DownloadSquare.tsx b/packages/iconoir-react/src/server/DownloadSquare.tsx index 9fbe6cf0..33ba2046 100644 --- a/packages/iconoir-react/src/server/DownloadSquare.tsx +++ b/packages/iconoir-react/src/server/DownloadSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgDownloadSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDownloadSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDownloadSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgDownloadSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Drag.tsx b/packages/iconoir-react/src/server/Drag.tsx index b3352e50..e8e6f971 100644 --- a/packages/iconoir-react/src/server/Drag.tsx +++ b/packages/iconoir-react/src/server/Drag.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgDrag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDrag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDrag = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgDrag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DragHandGesture.tsx b/packages/iconoir-react/src/server/DragHandGesture.tsx index da282ad4..1a558cbe 100644 --- a/packages/iconoir-react/src/server/DragHandGesture.tsx +++ b/packages/iconoir-react/src/server/DragHandGesture.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgDragHandGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDragHandGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDragHandGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDragHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Drawer.tsx b/packages/iconoir-react/src/server/Drawer.tsx index fda0683a..10cc8f45 100644 --- a/packages/iconoir-react/src/server/Drawer.tsx +++ b/packages/iconoir-react/src/server/Drawer.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgDrawer( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDrawer); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDrawer = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgDrawer); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Dribbble.tsx b/packages/iconoir-react/src/server/Dribbble.tsx index 898d2cd2..e2ab8083 100644 --- a/packages/iconoir-react/src/server/Dribbble.tsx +++ b/packages/iconoir-react/src/server/Dribbble.tsx @@ -1,28 +1,40 @@ import * as React from "react"; -function SvgDribbble( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDribbble); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDribbble = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgDribbble); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Drone.tsx b/packages/iconoir-react/src/server/Drone.tsx index be43559a..2eb694e0 100644 --- a/packages/iconoir-react/src/server/Drone.tsx +++ b/packages/iconoir-react/src/server/Drone.tsx @@ -1,47 +1,44 @@ import * as React from "react"; -function SvgDrone( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDrone); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDrone = (props: SVGProps, ref: Ref) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgDrone); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DroneChargeFull.tsx b/packages/iconoir-react/src/server/DroneChargeFull.tsx index 82f2a62e..3fba01a7 100644 --- a/packages/iconoir-react/src/server/DroneChargeFull.tsx +++ b/packages/iconoir-react/src/server/DroneChargeFull.tsx @@ -1,57 +1,57 @@ import * as React from "react"; -function SvgDroneChargeFull( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDroneChargeFull); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDroneChargeFull = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + + +); +const ForwardRef = forwardRef(SvgDroneChargeFull); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DroneChargeHalf.tsx b/packages/iconoir-react/src/server/DroneChargeHalf.tsx index 0022f3c7..868aaa2d 100644 --- a/packages/iconoir-react/src/server/DroneChargeHalf.tsx +++ b/packages/iconoir-react/src/server/DroneChargeHalf.tsx @@ -1,57 +1,57 @@ import * as React from "react"; -function SvgDroneChargeHalf( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDroneChargeHalf); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDroneChargeHalf = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + + +); +const ForwardRef = forwardRef(SvgDroneChargeHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DroneChargeLow.tsx b/packages/iconoir-react/src/server/DroneChargeLow.tsx index b1563fc5..3d52acb5 100644 --- a/packages/iconoir-react/src/server/DroneChargeLow.tsx +++ b/packages/iconoir-react/src/server/DroneChargeLow.tsx @@ -1,57 +1,57 @@ import * as React from "react"; -function SvgDroneChargeLow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDroneChargeLow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDroneChargeLow = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + + +); +const ForwardRef = forwardRef(SvgDroneChargeLow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DroneCheck.tsx b/packages/iconoir-react/src/server/DroneCheck.tsx index 2ad55a1c..9cedcf39 100644 --- a/packages/iconoir-react/src/server/DroneCheck.tsx +++ b/packages/iconoir-react/src/server/DroneCheck.tsx @@ -1,53 +1,53 @@ import * as React from "react"; -function SvgDroneCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDroneCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDroneCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgDroneCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DroneError.tsx b/packages/iconoir-react/src/server/DroneError.tsx index c9d17392..bbdd2f19 100644 --- a/packages/iconoir-react/src/server/DroneError.tsx +++ b/packages/iconoir-react/src/server/DroneError.tsx @@ -1,53 +1,53 @@ import * as React from "react"; -function SvgDroneError( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDroneError); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDroneError = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgDroneError); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DroneLanding.tsx b/packages/iconoir-react/src/server/DroneLanding.tsx index 68a6bde0..10b79529 100644 --- a/packages/iconoir-react/src/server/DroneLanding.tsx +++ b/packages/iconoir-react/src/server/DroneLanding.tsx @@ -1,53 +1,53 @@ import * as React from "react"; -function SvgDroneLanding( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDroneLanding); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDroneLanding = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgDroneLanding); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DroneRefresh.tsx b/packages/iconoir-react/src/server/DroneRefresh.tsx index 2d492234..c3cc455f 100644 --- a/packages/iconoir-react/src/server/DroneRefresh.tsx +++ b/packages/iconoir-react/src/server/DroneRefresh.tsx @@ -1,65 +1,65 @@ import * as React from "react"; -function SvgDroneRefresh( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDroneRefresh); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDroneRefresh = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + + + +); +const ForwardRef = forwardRef(SvgDroneRefresh); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DroneTakeOff.tsx b/packages/iconoir-react/src/server/DroneTakeOff.tsx index 11f22e42..e54a7034 100644 --- a/packages/iconoir-react/src/server/DroneTakeOff.tsx +++ b/packages/iconoir-react/src/server/DroneTakeOff.tsx @@ -1,53 +1,53 @@ import * as React from "react"; -function SvgDroneTakeOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgDroneTakeOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDroneTakeOff = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgDroneTakeOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Droplet.tsx b/packages/iconoir-react/src/server/Droplet.tsx index 7695a117..a9504880 100644 --- a/packages/iconoir-react/src/server/Droplet.tsx +++ b/packages/iconoir-react/src/server/Droplet.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgDroplet( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDroplet); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDroplet = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDroplet); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/DropletHalf.tsx b/packages/iconoir-react/src/server/DropletHalf.tsx index d256cd49..43f6d53b 100644 --- a/packages/iconoir-react/src/server/DropletHalf.tsx +++ b/packages/iconoir-react/src/server/DropletHalf.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgDropletHalf( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgDropletHalf); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgDropletHalf = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgDropletHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EaseCurveControlPoints.tsx b/packages/iconoir-react/src/server/EaseCurveControlPoints.tsx index 95c305fe..f40572bd 100644 --- a/packages/iconoir-react/src/server/EaseCurveControlPoints.tsx +++ b/packages/iconoir-react/src/server/EaseCurveControlPoints.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEaseCurveControlPoints( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEaseCurveControlPoints); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEaseCurveControlPoints = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEaseCurveControlPoints); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EaseIn.tsx b/packages/iconoir-react/src/server/EaseIn.tsx index ee8e8057..c660b038 100644 --- a/packages/iconoir-react/src/server/EaseIn.tsx +++ b/packages/iconoir-react/src/server/EaseIn.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgEaseIn( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEaseIn); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEaseIn = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgEaseIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EaseInControlPoint.tsx b/packages/iconoir-react/src/server/EaseInControlPoint.tsx index f9768b53..d3468725 100644 --- a/packages/iconoir-react/src/server/EaseInControlPoint.tsx +++ b/packages/iconoir-react/src/server/EaseInControlPoint.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEaseInControlPoint( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEaseInControlPoint); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEaseInControlPoint = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEaseInControlPoint); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EaseInOut.tsx b/packages/iconoir-react/src/server/EaseInOut.tsx index c7b0c1e6..5509d469 100644 --- a/packages/iconoir-react/src/server/EaseInOut.tsx +++ b/packages/iconoir-react/src/server/EaseInOut.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEaseInOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEaseInOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEaseInOut = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEaseInOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EaseOut.tsx b/packages/iconoir-react/src/server/EaseOut.tsx index 926190c7..e70cfe18 100644 --- a/packages/iconoir-react/src/server/EaseOut.tsx +++ b/packages/iconoir-react/src/server/EaseOut.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEaseOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEaseOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEaseOut = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEaseOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EaseOutControlPoint.tsx b/packages/iconoir-react/src/server/EaseOutControlPoint.tsx index 21169f06..e47d9b8d 100644 --- a/packages/iconoir-react/src/server/EaseOutControlPoint.tsx +++ b/packages/iconoir-react/src/server/EaseOutControlPoint.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEaseOutControlPoint( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEaseOutControlPoint); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEaseOutControlPoint = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEaseOutControlPoint); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EcologyBook.tsx b/packages/iconoir-react/src/server/EcologyBook.tsx index 784fa5f6..2e416b40 100644 --- a/packages/iconoir-react/src/server/EcologyBook.tsx +++ b/packages/iconoir-react/src/server/EcologyBook.tsx @@ -1,40 +1,46 @@ import * as React from "react"; -function SvgEcologyBook( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEcologyBook); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEcologyBook = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgEcologyBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Edit.tsx b/packages/iconoir-react/src/server/Edit.tsx index e1c75d7d..5b72464f 100644 --- a/packages/iconoir-react/src/server/Edit.tsx +++ b/packages/iconoir-react/src/server/Edit.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgEdit( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEdit); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEdit = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgEdit); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EditPencil.tsx b/packages/iconoir-react/src/server/EditPencil.tsx index c37a2892..9bbb3873 100644 --- a/packages/iconoir-react/src/server/EditPencil.tsx +++ b/packages/iconoir-react/src/server/EditPencil.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEditPencil( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEditPencil); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEditPencil = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEditPencil); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Egg.tsx b/packages/iconoir-react/src/server/Egg.tsx index 0f4a1ed8..f6626825 100644 --- a/packages/iconoir-react/src/server/Egg.tsx +++ b/packages/iconoir-react/src/server/Egg.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgEgg( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEgg); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEgg = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgEgg); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Eject.tsx b/packages/iconoir-react/src/server/Eject.tsx index 353689ef..b27f957d 100644 --- a/packages/iconoir-react/src/server/Eject.tsx +++ b/packages/iconoir-react/src/server/Eject.tsx @@ -1,26 +1,23 @@ import * as React from "react"; -function SvgEject( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEject); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEject = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgEject); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ElectronicsChip.tsx b/packages/iconoir-react/src/server/ElectronicsChip.tsx index 4e916d93..2a855029 100644 --- a/packages/iconoir-react/src/server/ElectronicsChip.tsx +++ b/packages/iconoir-react/src/server/ElectronicsChip.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgElectronicsChip( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgElectronicsChip); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgElectronicsChip = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgElectronicsChip); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ElectronicsTransistor.tsx b/packages/iconoir-react/src/server/ElectronicsTransistor.tsx index 6ed933c2..99b605d0 100644 --- a/packages/iconoir-react/src/server/ElectronicsTransistor.tsx +++ b/packages/iconoir-react/src/server/ElectronicsTransistor.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgElectronicsTransistor( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgElectronicsTransistor); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgElectronicsTransistor = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgElectronicsTransistor); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Elevator.tsx b/packages/iconoir-react/src/server/Elevator.tsx index fdd34ecc..102eadcd 100644 --- a/packages/iconoir-react/src/server/Elevator.tsx +++ b/packages/iconoir-react/src/server/Elevator.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgElevator( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgElevator); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgElevator = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgElevator); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Emoji.tsx b/packages/iconoir-react/src/server/Emoji.tsx index fc0eb4de..7c3b953c 100644 --- a/packages/iconoir-react/src/server/Emoji.tsx +++ b/packages/iconoir-react/src/server/Emoji.tsx @@ -1,41 +1,38 @@ import * as React from "react"; -function SvgEmoji( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmoji); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmoji = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgEmoji); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiBall.tsx b/packages/iconoir-react/src/server/EmojiBall.tsx index 9c687ce6..676ae780 100644 --- a/packages/iconoir-react/src/server/EmojiBall.tsx +++ b/packages/iconoir-react/src/server/EmojiBall.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEmojiBall( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiBall); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiBall = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEmojiBall); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiBlinkLeft.tsx b/packages/iconoir-react/src/server/EmojiBlinkLeft.tsx index 29094262..0554d940 100644 --- a/packages/iconoir-react/src/server/EmojiBlinkLeft.tsx +++ b/packages/iconoir-react/src/server/EmojiBlinkLeft.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgEmojiBlinkLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiBlinkLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiBlinkLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgEmojiBlinkLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiBlinkRight.tsx b/packages/iconoir-react/src/server/EmojiBlinkRight.tsx index eb30e050..3cfdb878 100644 --- a/packages/iconoir-react/src/server/EmojiBlinkRight.tsx +++ b/packages/iconoir-react/src/server/EmojiBlinkRight.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgEmojiBlinkRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiBlinkRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiBlinkRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgEmojiBlinkRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiLookDown.tsx b/packages/iconoir-react/src/server/EmojiLookDown.tsx index ea7fc84b..2d123f0c 100644 --- a/packages/iconoir-react/src/server/EmojiLookDown.tsx +++ b/packages/iconoir-react/src/server/EmojiLookDown.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgEmojiLookDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiLookDown = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEmojiLookDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiLookLeft.tsx b/packages/iconoir-react/src/server/EmojiLookLeft.tsx index 0963404e..dab34eb9 100644 --- a/packages/iconoir-react/src/server/EmojiLookLeft.tsx +++ b/packages/iconoir-react/src/server/EmojiLookLeft.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgEmojiLookLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiLookLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEmojiLookLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiLookRight.tsx b/packages/iconoir-react/src/server/EmojiLookRight.tsx index a76a5f38..8ad8ed5e 100644 --- a/packages/iconoir-react/src/server/EmojiLookRight.tsx +++ b/packages/iconoir-react/src/server/EmojiLookRight.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgEmojiLookRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiLookRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEmojiLookRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiLookUp.tsx b/packages/iconoir-react/src/server/EmojiLookUp.tsx index 8686eb52..3048878e 100644 --- a/packages/iconoir-react/src/server/EmojiLookUp.tsx +++ b/packages/iconoir-react/src/server/EmojiLookUp.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgEmojiLookUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiLookUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiLookUp = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEmojiLookUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiPuzzled.tsx b/packages/iconoir-react/src/server/EmojiPuzzled.tsx index f1b3a630..179a3180 100644 --- a/packages/iconoir-react/src/server/EmojiPuzzled.tsx +++ b/packages/iconoir-react/src/server/EmojiPuzzled.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgEmojiPuzzled( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiPuzzled); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiPuzzled = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgEmojiPuzzled); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiQuite.tsx b/packages/iconoir-react/src/server/EmojiQuite.tsx index c6e3367f..f430ccdf 100644 --- a/packages/iconoir-react/src/server/EmojiQuite.tsx +++ b/packages/iconoir-react/src/server/EmojiQuite.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgEmojiQuite( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiQuite); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiQuite = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEmojiQuite); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiReally.tsx b/packages/iconoir-react/src/server/EmojiReally.tsx index 12847618..37a5a832 100644 --- a/packages/iconoir-react/src/server/EmojiReally.tsx +++ b/packages/iconoir-react/src/server/EmojiReally.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEmojiReally( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiReally); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiReally = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEmojiReally); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiSad.tsx b/packages/iconoir-react/src/server/EmojiSad.tsx index 7b828988..5f3189c7 100644 --- a/packages/iconoir-react/src/server/EmojiSad.tsx +++ b/packages/iconoir-react/src/server/EmojiSad.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgEmojiSad( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiSad); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiSad = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgEmojiSad); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiSatisfied.tsx b/packages/iconoir-react/src/server/EmojiSatisfied.tsx index d1783720..b25b2376 100644 --- a/packages/iconoir-react/src/server/EmojiSatisfied.tsx +++ b/packages/iconoir-react/src/server/EmojiSatisfied.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgEmojiSatisfied( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiSatisfied); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiSatisfied = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEmojiSatisfied); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiSingLeft.tsx b/packages/iconoir-react/src/server/EmojiSingLeft.tsx index 40339188..e4368d39 100644 --- a/packages/iconoir-react/src/server/EmojiSingLeft.tsx +++ b/packages/iconoir-react/src/server/EmojiSingLeft.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgEmojiSingLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiSingLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgEmojiSingLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiSingLeftNote.tsx b/packages/iconoir-react/src/server/EmojiSingLeftNote.tsx index 65f3af62..9eedbfda 100644 --- a/packages/iconoir-react/src/server/EmojiSingLeftNote.tsx +++ b/packages/iconoir-react/src/server/EmojiSingLeftNote.tsx @@ -1,47 +1,47 @@ import * as React from "react"; -function SvgEmojiSingLeftNote( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingLeftNote); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiSingLeftNote = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgEmojiSingLeftNote); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiSingRight.tsx b/packages/iconoir-react/src/server/EmojiSingRight.tsx index fd15c367..e448c8d4 100644 --- a/packages/iconoir-react/src/server/EmojiSingRight.tsx +++ b/packages/iconoir-react/src/server/EmojiSingRight.tsx @@ -1,48 +1,48 @@ import * as React from "react"; -function SvgEmojiSingRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiSingRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgEmojiSingRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiSingRightNote.tsx b/packages/iconoir-react/src/server/EmojiSingRightNote.tsx index e773d31e..b50c8710 100644 --- a/packages/iconoir-react/src/server/EmojiSingRightNote.tsx +++ b/packages/iconoir-react/src/server/EmojiSingRightNote.tsx @@ -1,47 +1,50 @@ import * as React from "react"; -function SvgEmojiSingRightNote( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiSingRightNote); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiSingRightNote = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgEmojiSingRightNote); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiSurprise.tsx b/packages/iconoir-react/src/server/EmojiSurprise.tsx index 9b31d2b9..4e895901 100644 --- a/packages/iconoir-react/src/server/EmojiSurprise.tsx +++ b/packages/iconoir-react/src/server/EmojiSurprise.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgEmojiSurprise( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiSurprise); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiSurprise = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEmojiSurprise); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiSurpriseAlt.tsx b/packages/iconoir-react/src/server/EmojiSurpriseAlt.tsx index 268b4049..8d376598 100644 --- a/packages/iconoir-react/src/server/EmojiSurpriseAlt.tsx +++ b/packages/iconoir-react/src/server/EmojiSurpriseAlt.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgEmojiSurpriseAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiSurpriseAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiSurpriseAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgEmojiSurpriseAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiTalkingAngry.tsx b/packages/iconoir-react/src/server/EmojiTalkingAngry.tsx index 4e19a17e..16e4bef0 100644 --- a/packages/iconoir-react/src/server/EmojiTalkingAngry.tsx +++ b/packages/iconoir-react/src/server/EmojiTalkingAngry.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEmojiTalkingAngry( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiTalkingAngry); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiTalkingAngry = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEmojiTalkingAngry); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiTalkingHappy.tsx b/packages/iconoir-react/src/server/EmojiTalkingHappy.tsx index 7751541f..5efc6ac2 100644 --- a/packages/iconoir-react/src/server/EmojiTalkingHappy.tsx +++ b/packages/iconoir-react/src/server/EmojiTalkingHappy.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEmojiTalkingHappy( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiTalkingHappy); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiTalkingHappy = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEmojiTalkingHappy); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiThinkLeft.tsx b/packages/iconoir-react/src/server/EmojiThinkLeft.tsx index 055f0bbe..77d633f4 100644 --- a/packages/iconoir-react/src/server/EmojiThinkLeft.tsx +++ b/packages/iconoir-react/src/server/EmojiThinkLeft.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgEmojiThinkLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiThinkLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiThinkLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEmojiThinkLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmojiThinkRight.tsx b/packages/iconoir-react/src/server/EmojiThinkRight.tsx index 0170be4d..3980d322 100644 --- a/packages/iconoir-react/src/server/EmojiThinkRight.tsx +++ b/packages/iconoir-react/src/server/EmojiThinkRight.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgEmojiThinkRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmojiThinkRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmojiThinkRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEmojiThinkRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EmptyPage.tsx b/packages/iconoir-react/src/server/EmptyPage.tsx index 0618bfda..78bf5aea 100644 --- a/packages/iconoir-react/src/server/EmptyPage.tsx +++ b/packages/iconoir-react/src/server/EmptyPage.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgEmptyPage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEmptyPage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEmptyPage = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEmptyPage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EnergyUsageWindow.tsx b/packages/iconoir-react/src/server/EnergyUsageWindow.tsx index be3de3cf..d026ef7e 100644 --- a/packages/iconoir-react/src/server/EnergyUsageWindow.tsx +++ b/packages/iconoir-react/src/server/EnergyUsageWindow.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgEnergyUsageWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEnergyUsageWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEnergyUsageWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEnergyUsageWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Enlarge.tsx b/packages/iconoir-react/src/server/Enlarge.tsx index c5d84f14..c0945395 100644 --- a/packages/iconoir-react/src/server/Enlarge.tsx +++ b/packages/iconoir-react/src/server/Enlarge.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEnlarge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEnlarge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEnlarge = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEnlarge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EnlargeRoundArrow.tsx b/packages/iconoir-react/src/server/EnlargeRoundArrow.tsx index 79014029..33d17201 100644 --- a/packages/iconoir-react/src/server/EnlargeRoundArrow.tsx +++ b/packages/iconoir-react/src/server/EnlargeRoundArrow.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgEnlargeRoundArrow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEnlargeRoundArrow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEnlargeRoundArrow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEnlargeRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Erase.tsx b/packages/iconoir-react/src/server/Erase.tsx index 5e9cdaee..3e055407 100644 --- a/packages/iconoir-react/src/server/Erase.tsx +++ b/packages/iconoir-react/src/server/Erase.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgErase( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgErase); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgErase = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgErase); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ErrorWindow.tsx b/packages/iconoir-react/src/server/ErrorWindow.tsx index d4c762b3..d8b9e371 100644 --- a/packages/iconoir-react/src/server/ErrorWindow.tsx +++ b/packages/iconoir-react/src/server/ErrorWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgErrorWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgErrorWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgErrorWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgErrorWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EthereumCircle.tsx b/packages/iconoir-react/src/server/EthereumCircle.tsx index 3aff296c..e57733a7 100644 --- a/packages/iconoir-react/src/server/EthereumCircle.tsx +++ b/packages/iconoir-react/src/server/EthereumCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgEthereumCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEthereumCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEthereumCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEthereumCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EthereumRotateOut.tsx b/packages/iconoir-react/src/server/EthereumRotateOut.tsx index 10dbc3b1..b68284d4 100644 --- a/packages/iconoir-react/src/server/EthereumRotateOut.tsx +++ b/packages/iconoir-react/src/server/EthereumRotateOut.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgEthereumRotateOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEthereumRotateOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEthereumRotateOut = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgEthereumRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Euro.tsx b/packages/iconoir-react/src/server/Euro.tsx index fac37183..bc355e5a 100644 --- a/packages/iconoir-react/src/server/Euro.tsx +++ b/packages/iconoir-react/src/server/Euro.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgEuro( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEuro); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEuro = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgEuro); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EuroSquare.tsx b/packages/iconoir-react/src/server/EuroSquare.tsx index a003658d..30e6d663 100644 --- a/packages/iconoir-react/src/server/EuroSquare.tsx +++ b/packages/iconoir-react/src/server/EuroSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgEuroSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEuroSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEuroSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEuroSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EvCharge.tsx b/packages/iconoir-react/src/server/EvCharge.tsx index a5e9ae34..e374084b 100644 --- a/packages/iconoir-react/src/server/EvCharge.tsx +++ b/packages/iconoir-react/src/server/EvCharge.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgEvCharge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEvCharge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEvCharge = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEvCharge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EvChargeAlt.tsx b/packages/iconoir-react/src/server/EvChargeAlt.tsx index 0648cb74..a8193fd1 100644 --- a/packages/iconoir-react/src/server/EvChargeAlt.tsx +++ b/packages/iconoir-react/src/server/EvChargeAlt.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgEvChargeAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEvChargeAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEvChargeAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEvChargeAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EvPlug.tsx b/packages/iconoir-react/src/server/EvPlug.tsx index 9d30947f..8696f187 100644 --- a/packages/iconoir-react/src/server/EvPlug.tsx +++ b/packages/iconoir-react/src/server/EvPlug.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgEvPlug( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEvPlug); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEvPlug = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgEvPlug); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EvPlugCharging.tsx b/packages/iconoir-react/src/server/EvPlugCharging.tsx index c825882b..2d927304 100644 --- a/packages/iconoir-react/src/server/EvPlugCharging.tsx +++ b/packages/iconoir-react/src/server/EvPlugCharging.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgEvPlugCharging( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEvPlugCharging); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEvPlugCharging = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEvPlugCharging); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EvPlugError.tsx b/packages/iconoir-react/src/server/EvPlugError.tsx index 0f58ed5d..3fede40e 100644 --- a/packages/iconoir-react/src/server/EvPlugError.tsx +++ b/packages/iconoir-react/src/server/EvPlugError.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgEvPlugError( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEvPlugError); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEvPlugError = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEvPlugError); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EvStation.tsx b/packages/iconoir-react/src/server/EvStation.tsx index e51da381..1d6e26f4 100644 --- a/packages/iconoir-react/src/server/EvStation.tsx +++ b/packages/iconoir-react/src/server/EvStation.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgEvStation( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEvStation); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEvStation = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgEvStation); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EvTag.tsx b/packages/iconoir-react/src/server/EvTag.tsx index b0db828a..58e18673 100644 --- a/packages/iconoir-react/src/server/EvTag.tsx +++ b/packages/iconoir-react/src/server/EvTag.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgEvTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEvTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEvTag = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgEvTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Exclude.tsx b/packages/iconoir-react/src/server/Exclude.tsx index 863f6986..ddfeb817 100644 --- a/packages/iconoir-react/src/server/Exclude.tsx +++ b/packages/iconoir-react/src/server/Exclude.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgExclude( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgExclude); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgExclude = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgExclude); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Expand.tsx b/packages/iconoir-react/src/server/Expand.tsx index 254992f7..f006963e 100644 --- a/packages/iconoir-react/src/server/Expand.tsx +++ b/packages/iconoir-react/src/server/Expand.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgExpand( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgExpand); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgExpand = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgExpand); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ExpandLines.tsx b/packages/iconoir-react/src/server/ExpandLines.tsx index 29827969..1df52d27 100644 --- a/packages/iconoir-react/src/server/ExpandLines.tsx +++ b/packages/iconoir-react/src/server/ExpandLines.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgExpandLines( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgExpandLines); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgExpandLines = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgExpandLines); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Extrude.tsx b/packages/iconoir-react/src/server/Extrude.tsx index 4cb96665..f3aafbe6 100644 --- a/packages/iconoir-react/src/server/Extrude.tsx +++ b/packages/iconoir-react/src/server/Extrude.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgExtrude( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgExtrude); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgExtrude = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgExtrude); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EyeAlt.tsx b/packages/iconoir-react/src/server/EyeAlt.tsx index b4e5b690..7e92a045 100644 --- a/packages/iconoir-react/src/server/EyeAlt.tsx +++ b/packages/iconoir-react/src/server/EyeAlt.tsx @@ -1,28 +1,31 @@ import * as React from "react"; -function SvgEyeAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEyeAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEyeAlt = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgEyeAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EyeClose.tsx b/packages/iconoir-react/src/server/EyeClose.tsx index efa9c0a5..a71b1679 100644 --- a/packages/iconoir-react/src/server/EyeClose.tsx +++ b/packages/iconoir-react/src/server/EyeClose.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgEyeClose( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgEyeClose); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEyeClose = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgEyeClose); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EyeEmpty.tsx b/packages/iconoir-react/src/server/EyeEmpty.tsx index 2d3ea06f..934c4c60 100644 --- a/packages/iconoir-react/src/server/EyeEmpty.tsx +++ b/packages/iconoir-react/src/server/EyeEmpty.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgEyeEmpty( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEyeEmpty); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEyeEmpty = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgEyeEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/EyeOff.tsx b/packages/iconoir-react/src/server/EyeOff.tsx index b89b188b..44c97cce 100644 --- a/packages/iconoir-react/src/server/EyeOff.tsx +++ b/packages/iconoir-react/src/server/EyeOff.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgEyeOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgEyeOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgEyeOff = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgEyeOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FaceId.tsx b/packages/iconoir-react/src/server/FaceId.tsx index 09553c5f..5d371232 100644 --- a/packages/iconoir-react/src/server/FaceId.tsx +++ b/packages/iconoir-react/src/server/FaceId.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFaceId( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFaceId); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFaceId = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFaceId); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Facebook.tsx b/packages/iconoir-react/src/server/Facebook.tsx index aece3d64..38ca40d8 100644 --- a/packages/iconoir-react/src/server/Facebook.tsx +++ b/packages/iconoir-react/src/server/Facebook.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFacebook( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFacebook); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFacebook = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFacebook); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FacebookTag.tsx b/packages/iconoir-react/src/server/FacebookTag.tsx index 546dd4a5..5d8f7aed 100644 --- a/packages/iconoir-react/src/server/FacebookTag.tsx +++ b/packages/iconoir-react/src/server/FacebookTag.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFacebookTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFacebookTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFacebookTag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFacebookTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Facetime.tsx b/packages/iconoir-react/src/server/Facetime.tsx index 61a0d21e..fd41419a 100644 --- a/packages/iconoir-react/src/server/Facetime.tsx +++ b/packages/iconoir-react/src/server/Facetime.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgFacetime( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFacetime); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFacetime = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgFacetime); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Farm.tsx b/packages/iconoir-react/src/server/Farm.tsx index bb6b871c..70009eb9 100644 --- a/packages/iconoir-react/src/server/Farm.tsx +++ b/packages/iconoir-react/src/server/Farm.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFarm( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFarm); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFarm = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFarm); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastArrowDown.tsx b/packages/iconoir-react/src/server/FastArrowDown.tsx index 62ceebe4..973c5054 100644 --- a/packages/iconoir-react/src/server/FastArrowDown.tsx +++ b/packages/iconoir-react/src/server/FastArrowDown.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFastArrowDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastArrowDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastArrowDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFastArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastArrowDownBox.tsx b/packages/iconoir-react/src/server/FastArrowDownBox.tsx index f13c19d5..1aa1a783 100644 --- a/packages/iconoir-react/src/server/FastArrowDownBox.tsx +++ b/packages/iconoir-react/src/server/FastArrowDownBox.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgFastArrowDownBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastArrowDownBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastArrowDownBox = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFastArrowDownBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastArrowLeft.tsx b/packages/iconoir-react/src/server/FastArrowLeft.tsx index 48d6fbc1..abee30ca 100644 --- a/packages/iconoir-react/src/server/FastArrowLeft.tsx +++ b/packages/iconoir-react/src/server/FastArrowLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFastArrowLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastArrowLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastArrowLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFastArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastArrowLeftBox.tsx b/packages/iconoir-react/src/server/FastArrowLeftBox.tsx index 6f81e4da..45fd7020 100644 --- a/packages/iconoir-react/src/server/FastArrowLeftBox.tsx +++ b/packages/iconoir-react/src/server/FastArrowLeftBox.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgFastArrowLeftBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastArrowLeftBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastArrowLeftBox = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFastArrowLeftBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastArrowRight.tsx b/packages/iconoir-react/src/server/FastArrowRight.tsx index 5b799078..5c702693 100644 --- a/packages/iconoir-react/src/server/FastArrowRight.tsx +++ b/packages/iconoir-react/src/server/FastArrowRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFastArrowRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastArrowRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastArrowRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFastArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastArrowRightBox.tsx b/packages/iconoir-react/src/server/FastArrowRightBox.tsx index 5e2d9dd9..9cde377c 100644 --- a/packages/iconoir-react/src/server/FastArrowRightBox.tsx +++ b/packages/iconoir-react/src/server/FastArrowRightBox.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgFastArrowRightBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastArrowRightBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastArrowRightBox = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFastArrowRightBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastArrowUp.tsx b/packages/iconoir-react/src/server/FastArrowUp.tsx index 1f67029e..2544653b 100644 --- a/packages/iconoir-react/src/server/FastArrowUp.tsx +++ b/packages/iconoir-react/src/server/FastArrowUp.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFastArrowUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastArrowUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastArrowUp = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFastArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastArrowUpBox.tsx b/packages/iconoir-react/src/server/FastArrowUpBox.tsx index 56eba4ed..cfee40fb 100644 --- a/packages/iconoir-react/src/server/FastArrowUpBox.tsx +++ b/packages/iconoir-react/src/server/FastArrowUpBox.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgFastArrowUpBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastArrowUpBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastArrowUpBox = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFastArrowUpBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastDownCircle.tsx b/packages/iconoir-react/src/server/FastDownCircle.tsx index 87c7c137..0fe548a1 100644 --- a/packages/iconoir-react/src/server/FastDownCircle.tsx +++ b/packages/iconoir-react/src/server/FastDownCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFastDownCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastDownCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastDownCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFastDownCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastLeftCircle.tsx b/packages/iconoir-react/src/server/FastLeftCircle.tsx index 84aed759..65c0c6cc 100644 --- a/packages/iconoir-react/src/server/FastLeftCircle.tsx +++ b/packages/iconoir-react/src/server/FastLeftCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFastLeftCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastLeftCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastLeftCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFastLeftCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastRightCircle.tsx b/packages/iconoir-react/src/server/FastRightCircle.tsx index b6f910f7..c5aa4ed7 100644 --- a/packages/iconoir-react/src/server/FastRightCircle.tsx +++ b/packages/iconoir-react/src/server/FastRightCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFastRightCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastRightCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastRightCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFastRightCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FastUpCircle.tsx b/packages/iconoir-react/src/server/FastUpCircle.tsx index f480509c..39dbcea4 100644 --- a/packages/iconoir-react/src/server/FastUpCircle.tsx +++ b/packages/iconoir-react/src/server/FastUpCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFastUpCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFastUpCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFastUpCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFastUpCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FavouriteBook.tsx b/packages/iconoir-react/src/server/FavouriteBook.tsx index eb1c916c..c6583f76 100644 --- a/packages/iconoir-react/src/server/FavouriteBook.tsx +++ b/packages/iconoir-react/src/server/FavouriteBook.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgFavouriteBook( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFavouriteBook); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFavouriteBook = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgFavouriteBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FavouriteWindow.tsx b/packages/iconoir-react/src/server/FavouriteWindow.tsx index 577071b1..a1111c5f 100644 --- a/packages/iconoir-react/src/server/FavouriteWindow.tsx +++ b/packages/iconoir-react/src/server/FavouriteWindow.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgFavouriteWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFavouriteWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFavouriteWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgFavouriteWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Female.tsx b/packages/iconoir-react/src/server/Female.tsx index b41b75ee..65369710 100644 --- a/packages/iconoir-react/src/server/Female.tsx +++ b/packages/iconoir-react/src/server/Female.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFemale( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFemale); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFemale = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFemale); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Figma.tsx b/packages/iconoir-react/src/server/Figma.tsx index 63c9fb23..a58bf8c5 100644 --- a/packages/iconoir-react/src/server/Figma.tsx +++ b/packages/iconoir-react/src/server/Figma.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgFigma( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFigma); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFigma = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgFigma); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FileNotFound.tsx b/packages/iconoir-react/src/server/FileNotFound.tsx index 6446e190..a275c01c 100644 --- a/packages/iconoir-react/src/server/FileNotFound.tsx +++ b/packages/iconoir-react/src/server/FileNotFound.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFileNotFound( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFileNotFound); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFileNotFound = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFileNotFound); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FillColor.tsx b/packages/iconoir-react/src/server/FillColor.tsx index 945bcb0d..0265c229 100644 --- a/packages/iconoir-react/src/server/FillColor.tsx +++ b/packages/iconoir-react/src/server/FillColor.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgFillColor( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFillColor); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFillColor = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFillColor); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Fillet3D.tsx b/packages/iconoir-react/src/server/Fillet3D.tsx index 76facd8a..4df16a93 100644 --- a/packages/iconoir-react/src/server/Fillet3D.tsx +++ b/packages/iconoir-react/src/server/Fillet3D.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgFillet3D( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFillet3D); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFillet3D = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFillet3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Filter.tsx b/packages/iconoir-react/src/server/Filter.tsx index 02ee74bc..829830cb 100644 --- a/packages/iconoir-react/src/server/Filter.tsx +++ b/packages/iconoir-react/src/server/Filter.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFilter( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFilter); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFilter = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFilter); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FilterAlt.tsx b/packages/iconoir-react/src/server/FilterAlt.tsx index 141ed67c..2a7bee8f 100644 --- a/packages/iconoir-react/src/server/FilterAlt.tsx +++ b/packages/iconoir-react/src/server/FilterAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFilterAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFilterAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFilterAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFilterAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FilterList.tsx b/packages/iconoir-react/src/server/FilterList.tsx index ef1f0529..844c5fa1 100644 --- a/packages/iconoir-react/src/server/FilterList.tsx +++ b/packages/iconoir-react/src/server/FilterList.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFilterList( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFilterList); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFilterList = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFilterList); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FilterListCircle.tsx b/packages/iconoir-react/src/server/FilterListCircle.tsx index f7b664af..4d7bd82e 100644 --- a/packages/iconoir-react/src/server/FilterListCircle.tsx +++ b/packages/iconoir-react/src/server/FilterListCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFilterListCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFilterListCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFilterListCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFilterListCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Finder.tsx b/packages/iconoir-react/src/server/Finder.tsx index 5c50517c..9ec50f5b 100644 --- a/packages/iconoir-react/src/server/Finder.tsx +++ b/packages/iconoir-react/src/server/Finder.tsx @@ -1,40 +1,37 @@ import * as React from "react"; -function SvgFinder( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFinder); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFinder = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgFinder); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Fingerprint.tsx b/packages/iconoir-react/src/server/Fingerprint.tsx index 8965faed..6b12583e 100644 --- a/packages/iconoir-react/src/server/Fingerprint.tsx +++ b/packages/iconoir-react/src/server/Fingerprint.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgFingerprint( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFingerprint); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFingerprint = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgFingerprint); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FingerprintCheckCircle.tsx b/packages/iconoir-react/src/server/FingerprintCheckCircle.tsx index a5714635..407b6dfb 100644 --- a/packages/iconoir-react/src/server/FingerprintCheckCircle.tsx +++ b/packages/iconoir-react/src/server/FingerprintCheckCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFingerprintCheckCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFingerprintCheckCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFingerprintCheckCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFingerprintCheckCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FingerprintCircle.tsx b/packages/iconoir-react/src/server/FingerprintCircle.tsx index aa6d3c53..457bd338 100644 --- a/packages/iconoir-react/src/server/FingerprintCircle.tsx +++ b/packages/iconoir-react/src/server/FingerprintCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFingerprintCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFingerprintCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFingerprintCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFingerprintCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FingerprintErrorCircle.tsx b/packages/iconoir-react/src/server/FingerprintErrorCircle.tsx index c4596afc..aceab159 100644 --- a/packages/iconoir-react/src/server/FingerprintErrorCircle.tsx +++ b/packages/iconoir-react/src/server/FingerprintErrorCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFingerprintErrorCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFingerprintErrorCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFingerprintErrorCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFingerprintErrorCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FingerprintLockCircle.tsx b/packages/iconoir-react/src/server/FingerprintLockCircle.tsx index 908ced35..799c5970 100644 --- a/packages/iconoir-react/src/server/FingerprintLockCircle.tsx +++ b/packages/iconoir-react/src/server/FingerprintLockCircle.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgFingerprintLockCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFingerprintLockCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFingerprintLockCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgFingerprintLockCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FingerprintPhone.tsx b/packages/iconoir-react/src/server/FingerprintPhone.tsx index 4653d15f..407ddaec 100644 --- a/packages/iconoir-react/src/server/FingerprintPhone.tsx +++ b/packages/iconoir-react/src/server/FingerprintPhone.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFingerprintPhone( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFingerprintPhone); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFingerprintPhone = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFingerprintPhone); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FingerprintScan.tsx b/packages/iconoir-react/src/server/FingerprintScan.tsx index 45dd9c71..0d5e0ab8 100644 --- a/packages/iconoir-react/src/server/FingerprintScan.tsx +++ b/packages/iconoir-react/src/server/FingerprintScan.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFingerprintScan( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFingerprintScan); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFingerprintScan = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFingerprintScan); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FingerprintSquare.tsx b/packages/iconoir-react/src/server/FingerprintSquare.tsx index fcfd4920..d39c4ab7 100644 --- a/packages/iconoir-react/src/server/FingerprintSquare.tsx +++ b/packages/iconoir-react/src/server/FingerprintSquare.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFingerprintSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFingerprintSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFingerprintSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFingerprintSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FingerprintWindow.tsx b/packages/iconoir-react/src/server/FingerprintWindow.tsx index 4b03d5f9..d414f0bd 100644 --- a/packages/iconoir-react/src/server/FingerprintWindow.tsx +++ b/packages/iconoir-react/src/server/FingerprintWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgFingerprintWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFingerprintWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFingerprintWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFingerprintWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FireFlame.tsx b/packages/iconoir-react/src/server/FireFlame.tsx index 5edc0bc8..f5b26ec1 100644 --- a/packages/iconoir-react/src/server/FireFlame.tsx +++ b/packages/iconoir-react/src/server/FireFlame.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFireFlame( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFireFlame); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFireFlame = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFireFlame); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Fish.tsx b/packages/iconoir-react/src/server/Fish.tsx index ae7016ac..518a8991 100644 --- a/packages/iconoir-react/src/server/Fish.tsx +++ b/packages/iconoir-react/src/server/Fish.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFish( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFish); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFish = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFish); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Fishing.tsx b/packages/iconoir-react/src/server/Fishing.tsx index 2ed53f20..9b051693 100644 --- a/packages/iconoir-react/src/server/Fishing.tsx +++ b/packages/iconoir-react/src/server/Fishing.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFishing( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFishing); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFishing = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFishing); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Flare.tsx b/packages/iconoir-react/src/server/Flare.tsx index a29eb3d5..b33b34e2 100644 --- a/packages/iconoir-react/src/server/Flare.tsx +++ b/packages/iconoir-react/src/server/Flare.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFlare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFlare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFlare = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFlare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Flash.tsx b/packages/iconoir-react/src/server/Flash.tsx index 8deaa471..f97ca6b2 100644 --- a/packages/iconoir-react/src/server/Flash.tsx +++ b/packages/iconoir-react/src/server/Flash.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFlash( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFlash); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFlash = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFlash); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FlashOff.tsx b/packages/iconoir-react/src/server/FlashOff.tsx index 2c270281..4c0867b0 100644 --- a/packages/iconoir-react/src/server/FlashOff.tsx +++ b/packages/iconoir-react/src/server/FlashOff.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFlashOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFlashOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFlashOff = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFlashOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Flask.tsx b/packages/iconoir-react/src/server/Flask.tsx index 53640741..2c738317 100644 --- a/packages/iconoir-react/src/server/Flask.tsx +++ b/packages/iconoir-react/src/server/Flask.tsx @@ -1,29 +1,26 @@ import * as React from "react"; -function SvgFlask( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFlask); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFlask = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgFlask); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Flip.tsx b/packages/iconoir-react/src/server/Flip.tsx index 1d04b527..55bb10cf 100644 --- a/packages/iconoir-react/src/server/Flip.tsx +++ b/packages/iconoir-react/src/server/Flip.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFlip( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFlip); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFlip = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFlip); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FlipReverse.tsx b/packages/iconoir-react/src/server/FlipReverse.tsx index 86252cb1..8f127282 100644 --- a/packages/iconoir-react/src/server/FlipReverse.tsx +++ b/packages/iconoir-react/src/server/FlipReverse.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFlipReverse( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFlipReverse); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFlipReverse = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFlipReverse); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Flower.tsx b/packages/iconoir-react/src/server/Flower.tsx index 4f3b0907..ce8b7c66 100644 --- a/packages/iconoir-react/src/server/Flower.tsx +++ b/packages/iconoir-react/src/server/Flower.tsx @@ -1,36 +1,33 @@ import * as React from "react"; -function SvgFlower( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFlower); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFlower = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgFlower); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Fluorine.tsx b/packages/iconoir-react/src/server/Fluorine.tsx index 360ad23f..9e4e90a7 100644 --- a/packages/iconoir-react/src/server/Fluorine.tsx +++ b/packages/iconoir-react/src/server/Fluorine.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFluorine( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFluorine); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFluorine = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFluorine); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Fog.tsx b/packages/iconoir-react/src/server/Fog.tsx index 242ea9dc..70d75f78 100644 --- a/packages/iconoir-react/src/server/Fog.tsx +++ b/packages/iconoir-react/src/server/Fog.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFog( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFog); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFog = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFog); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Folder.tsx b/packages/iconoir-react/src/server/Folder.tsx index 7f66670c..0585ee2e 100644 --- a/packages/iconoir-react/src/server/Folder.tsx +++ b/packages/iconoir-react/src/server/Folder.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFolder( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFolder); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFolder = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFolder); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FolderAlert.tsx b/packages/iconoir-react/src/server/FolderAlert.tsx index c46a5f9c..47f12f4e 100644 --- a/packages/iconoir-react/src/server/FolderAlert.tsx +++ b/packages/iconoir-react/src/server/FolderAlert.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFolderAlert( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFolderAlert); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFolderAlert = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFolderAlert); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FolderSettings.tsx b/packages/iconoir-react/src/server/FolderSettings.tsx index e23ab033..c0595b74 100644 --- a/packages/iconoir-react/src/server/FolderSettings.tsx +++ b/packages/iconoir-react/src/server/FolderSettings.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgFolderSettings( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFolderSettings); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFolderSettings = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgFolderSettings); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FontSize.tsx b/packages/iconoir-react/src/server/FontSize.tsx index ef620cbf..ea78fe87 100644 --- a/packages/iconoir-react/src/server/FontSize.tsx +++ b/packages/iconoir-react/src/server/FontSize.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFontSize( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFontSize); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFontSize = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFontSize); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Football.tsx b/packages/iconoir-react/src/server/Football.tsx index ade48616..b6d7cb4b 100644 --- a/packages/iconoir-react/src/server/Football.tsx +++ b/packages/iconoir-react/src/server/Football.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgFootball( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFootball); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFootball = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgFootball); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FootballBall.tsx b/packages/iconoir-react/src/server/FootballBall.tsx index 2afa84f6..1d0a5d10 100644 --- a/packages/iconoir-react/src/server/FootballBall.tsx +++ b/packages/iconoir-react/src/server/FootballBall.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFootballBall( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFootballBall); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFootballBall = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFootballBall); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Forward.tsx b/packages/iconoir-react/src/server/Forward.tsx index 4e9c2674..2d09d690 100644 --- a/packages/iconoir-react/src/server/Forward.tsx +++ b/packages/iconoir-react/src/server/Forward.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgForward( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgForward); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgForward = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgForward); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Forward15Seconds.tsx b/packages/iconoir-react/src/server/Forward15Seconds.tsx index 85da0e2a..417b3ce9 100644 --- a/packages/iconoir-react/src/server/Forward15Seconds.tsx +++ b/packages/iconoir-react/src/server/Forward15Seconds.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgForward15Seconds( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgForward15Seconds); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgForward15Seconds = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgForward15Seconds); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ForwardMessage.tsx b/packages/iconoir-react/src/server/ForwardMessage.tsx index 38c3a770..feff2447 100644 --- a/packages/iconoir-react/src/server/ForwardMessage.tsx +++ b/packages/iconoir-react/src/server/ForwardMessage.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgForwardMessage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgForwardMessage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgForwardMessage = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgForwardMessage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Frame.tsx b/packages/iconoir-react/src/server/Frame.tsx index 882dd744..5e517cd6 100644 --- a/packages/iconoir-react/src/server/Frame.tsx +++ b/packages/iconoir-react/src/server/Frame.tsx @@ -1,57 +1,54 @@ import * as React from "react"; -function SvgFrame( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFrame); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFrame = (props: SVGProps, ref: Ref) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgFrame); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FrameAlt.tsx b/packages/iconoir-react/src/server/FrameAlt.tsx index c06bdedc..e1b812fe 100644 --- a/packages/iconoir-react/src/server/FrameAlt.tsx +++ b/packages/iconoir-react/src/server/FrameAlt.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgFrameAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFrameAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFrameAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgFrameAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FrameAltEmpty.tsx b/packages/iconoir-react/src/server/FrameAltEmpty.tsx index c06522eb..d3298d82 100644 --- a/packages/iconoir-react/src/server/FrameAltEmpty.tsx +++ b/packages/iconoir-react/src/server/FrameAltEmpty.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFrameAltEmpty( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFrameAltEmpty); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFrameAltEmpty = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFrameAltEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FrameSelect.tsx b/packages/iconoir-react/src/server/FrameSelect.tsx index fa7fc7b0..30b896d2 100644 --- a/packages/iconoir-react/src/server/FrameSelect.tsx +++ b/packages/iconoir-react/src/server/FrameSelect.tsx @@ -1,45 +1,45 @@ import * as React from "react"; -function SvgFrameSelect( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFrameSelect); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFrameSelect = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgFrameSelect); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FrameSimple.tsx b/packages/iconoir-react/src/server/FrameSimple.tsx index 8b5956be..417b36da 100644 --- a/packages/iconoir-react/src/server/FrameSimple.tsx +++ b/packages/iconoir-react/src/server/FrameSimple.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgFrameSimple( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFrameSimple); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFrameSimple = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFrameSimple); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FrameTool.tsx b/packages/iconoir-react/src/server/FrameTool.tsx index 1321987d..60680a16 100644 --- a/packages/iconoir-react/src/server/FrameTool.tsx +++ b/packages/iconoir-react/src/server/FrameTool.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgFrameTool( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFrameTool); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFrameTool = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgFrameTool); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Fridge.tsx b/packages/iconoir-react/src/server/Fridge.tsx index 25dd63e4..ba469853 100644 --- a/packages/iconoir-react/src/server/Fridge.tsx +++ b/packages/iconoir-react/src/server/Fridge.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgFridge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFridge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFridge = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgFridge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Fx.tsx b/packages/iconoir-react/src/server/Fx.tsx index f8d6eb64..edc99a82 100644 --- a/packages/iconoir-react/src/server/Fx.tsx +++ b/packages/iconoir-react/src/server/Fx.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgFx( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgFx); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFx = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgFx); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/FxTag.tsx b/packages/iconoir-react/src/server/FxTag.tsx index 80d44f03..b6579621 100644 --- a/packages/iconoir-react/src/server/FxTag.tsx +++ b/packages/iconoir-react/src/server/FxTag.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgFxTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgFxTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgFxTag = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgFxTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Gamepad.tsx b/packages/iconoir-react/src/server/Gamepad.tsx index 712ced14..a2930b1a 100644 --- a/packages/iconoir-react/src/server/Gamepad.tsx +++ b/packages/iconoir-react/src/server/Gamepad.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgGamepad( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGamepad); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGamepad = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGamepad); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Garage.tsx b/packages/iconoir-react/src/server/Garage.tsx index e5bef0e2..9dcde543 100644 --- a/packages/iconoir-react/src/server/Garage.tsx +++ b/packages/iconoir-react/src/server/Garage.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgGarage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGarage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGarage = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgGarage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Gas.tsx b/packages/iconoir-react/src/server/Gas.tsx index e84885be..4d73fa9c 100644 --- a/packages/iconoir-react/src/server/Gas.tsx +++ b/packages/iconoir-react/src/server/Gas.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgGas( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGas); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGas = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgGas); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GasTank.tsx b/packages/iconoir-react/src/server/GasTank.tsx index d3b58327..99e4aded 100644 --- a/packages/iconoir-react/src/server/GasTank.tsx +++ b/packages/iconoir-react/src/server/GasTank.tsx @@ -1,37 +1,37 @@ import * as React from "react"; -function SvgGasTank( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGasTank); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGasTank = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGasTank); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GasTankDrop.tsx b/packages/iconoir-react/src/server/GasTankDrop.tsx index 1cfa4876..49342ab9 100644 --- a/packages/iconoir-react/src/server/GasTankDrop.tsx +++ b/packages/iconoir-react/src/server/GasTankDrop.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgGasTankDrop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGasTankDrop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGasTankDrop = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGasTankDrop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GifFormat.tsx b/packages/iconoir-react/src/server/GifFormat.tsx index bb1ef143..8a7e8a0c 100644 --- a/packages/iconoir-react/src/server/GifFormat.tsx +++ b/packages/iconoir-react/src/server/GifFormat.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgGifFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGifFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGifFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGifFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Gift.tsx b/packages/iconoir-react/src/server/Gift.tsx index 0ef757e1..8fd30ebc 100644 --- a/packages/iconoir-react/src/server/Gift.tsx +++ b/packages/iconoir-react/src/server/Gift.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgGift( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGift); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGift = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgGift); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitBranch.tsx b/packages/iconoir-react/src/server/GitBranch.tsx index f29a6f56..531dd29e 100644 --- a/packages/iconoir-react/src/server/GitBranch.tsx +++ b/packages/iconoir-react/src/server/GitBranch.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgGitBranch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitBranch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitBranch = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGitBranch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitCherryPickCommit.tsx b/packages/iconoir-react/src/server/GitCherryPickCommit.tsx index 277b21b7..316a16a8 100644 --- a/packages/iconoir-react/src/server/GitCherryPickCommit.tsx +++ b/packages/iconoir-react/src/server/GitCherryPickCommit.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgGitCherryPickCommit( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitCherryPickCommit); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitCherryPickCommit = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgGitCherryPickCommit); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitCommand.tsx b/packages/iconoir-react/src/server/GitCommand.tsx index d52b5d68..91c5ee17 100644 --- a/packages/iconoir-react/src/server/GitCommand.tsx +++ b/packages/iconoir-react/src/server/GitCommand.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgGitCommand( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitCommand); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitCommand = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgGitCommand); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitCommit.tsx b/packages/iconoir-react/src/server/GitCommit.tsx index db73edd6..471c07a6 100644 --- a/packages/iconoir-react/src/server/GitCommit.tsx +++ b/packages/iconoir-react/src/server/GitCommit.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgGitCommit( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitCommit); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitCommit = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgGitCommit); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitCompare.tsx b/packages/iconoir-react/src/server/GitCompare.tsx index 29091483..c847c83e 100644 --- a/packages/iconoir-react/src/server/GitCompare.tsx +++ b/packages/iconoir-react/src/server/GitCompare.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgGitCompare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitCompare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitCompare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGitCompare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitFork.tsx b/packages/iconoir-react/src/server/GitFork.tsx index dccd6cf3..f55fb8d1 100644 --- a/packages/iconoir-react/src/server/GitFork.tsx +++ b/packages/iconoir-react/src/server/GitFork.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgGitFork( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitFork); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitFork = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgGitFork); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitHub.tsx b/packages/iconoir-react/src/server/GitHub.tsx index c0b700dc..1f2222af 100644 --- a/packages/iconoir-react/src/server/GitHub.tsx +++ b/packages/iconoir-react/src/server/GitHub.tsx @@ -1,28 +1,31 @@ import * as React from "react"; -function SvgGitHub( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitHub); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitHub = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgGitHub); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitLabFull.tsx b/packages/iconoir-react/src/server/GitLabFull.tsx index b18b888c..9aa672f9 100644 --- a/packages/iconoir-react/src/server/GitLabFull.tsx +++ b/packages/iconoir-react/src/server/GitLabFull.tsx @@ -1,27 +1,27 @@ import * as React from "react"; -function SvgGitLabFull( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitLabFull); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitLabFull = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgGitLabFull); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitMerge.tsx b/packages/iconoir-react/src/server/GitMerge.tsx index 56fa81fe..723af75f 100644 --- a/packages/iconoir-react/src/server/GitMerge.tsx +++ b/packages/iconoir-react/src/server/GitMerge.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgGitMerge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitMerge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitMerge = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGitMerge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitPullRequest.tsx b/packages/iconoir-react/src/server/GitPullRequest.tsx index e72e87ee..84cc3cd6 100644 --- a/packages/iconoir-react/src/server/GitPullRequest.tsx +++ b/packages/iconoir-react/src/server/GitPullRequest.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgGitPullRequest( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitPullRequest); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitPullRequest = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGitPullRequest); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GitPullRequestClosed.tsx b/packages/iconoir-react/src/server/GitPullRequestClosed.tsx index 560850e6..e8ac67af 100644 --- a/packages/iconoir-react/src/server/GitPullRequestClosed.tsx +++ b/packages/iconoir-react/src/server/GitPullRequestClosed.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgGitPullRequestClosed( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGitPullRequestClosed); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGitPullRequestClosed = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgGitPullRequestClosed); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GithubCircle.tsx b/packages/iconoir-react/src/server/GithubCircle.tsx index 9f54c5ad..7c9cc6be 100644 --- a/packages/iconoir-react/src/server/GithubCircle.tsx +++ b/packages/iconoir-react/src/server/GithubCircle.tsx @@ -1,34 +1,40 @@ import * as React from "react"; -function SvgGithubCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGithubCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGithubCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgGithubCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GlassEmpty.tsx b/packages/iconoir-react/src/server/GlassEmpty.tsx index 68139616..a350cdf2 100644 --- a/packages/iconoir-react/src/server/GlassEmpty.tsx +++ b/packages/iconoir-react/src/server/GlassEmpty.tsx @@ -1,32 +1,33 @@ import * as React from "react"; -function SvgGlassEmpty( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGlassEmpty); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGlassEmpty = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgGlassEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GlassFragile.tsx b/packages/iconoir-react/src/server/GlassFragile.tsx index a3d195ca..830f54f4 100644 --- a/packages/iconoir-react/src/server/GlassFragile.tsx +++ b/packages/iconoir-react/src/server/GlassFragile.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgGlassFragile( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGlassFragile); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGlassFragile = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGlassFragile); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GlassHalf.tsx b/packages/iconoir-react/src/server/GlassHalf.tsx index 65108b9f..a352708e 100644 --- a/packages/iconoir-react/src/server/GlassHalf.tsx +++ b/packages/iconoir-react/src/server/GlassHalf.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgGlassHalf( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGlassHalf); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGlassHalf = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGlassHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GlassHalfAlt.tsx b/packages/iconoir-react/src/server/GlassHalfAlt.tsx index 6aa4ecae..4390d71b 100644 --- a/packages/iconoir-react/src/server/GlassHalfAlt.tsx +++ b/packages/iconoir-react/src/server/GlassHalfAlt.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgGlassHalfAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGlassHalfAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGlassHalfAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGlassHalfAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Glasses.tsx b/packages/iconoir-react/src/server/Glasses.tsx index 27e7ec0c..93ca5b86 100644 --- a/packages/iconoir-react/src/server/Glasses.tsx +++ b/packages/iconoir-react/src/server/Glasses.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgGlasses( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGlasses); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGlasses = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgGlasses); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Globe.tsx b/packages/iconoir-react/src/server/Globe.tsx index 1c84532d..a875c1e3 100644 --- a/packages/iconoir-react/src/server/Globe.tsx +++ b/packages/iconoir-react/src/server/Globe.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgGlobe( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGlobe); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGlobe = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgGlobe); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Golf.tsx b/packages/iconoir-react/src/server/Golf.tsx index 740bf74e..29a89302 100644 --- a/packages/iconoir-react/src/server/Golf.tsx +++ b/packages/iconoir-react/src/server/Golf.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgGolf( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGolf); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGolf = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgGolf); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Google.tsx b/packages/iconoir-react/src/server/Google.tsx index 4e95458d..785ae3f8 100644 --- a/packages/iconoir-react/src/server/Google.tsx +++ b/packages/iconoir-react/src/server/Google.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgGoogle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGoogle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGoogle = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgGoogle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GoogleCircle.tsx b/packages/iconoir-react/src/server/GoogleCircle.tsx index 79ad049d..7129bd6b 100644 --- a/packages/iconoir-react/src/server/GoogleCircle.tsx +++ b/packages/iconoir-react/src/server/GoogleCircle.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgGoogleCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGoogleCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGoogleCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGoogleCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GoogleDocs.tsx b/packages/iconoir-react/src/server/GoogleDocs.tsx index b7c5cbcf..df9366d7 100644 --- a/packages/iconoir-react/src/server/GoogleDocs.tsx +++ b/packages/iconoir-react/src/server/GoogleDocs.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgGoogleDocs( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGoogleDocs); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGoogleDocs = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgGoogleDocs); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GoogleDrive.tsx b/packages/iconoir-react/src/server/GoogleDrive.tsx index 86f0e645..32d5b1f4 100644 --- a/packages/iconoir-react/src/server/GoogleDrive.tsx +++ b/packages/iconoir-react/src/server/GoogleDrive.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgGoogleDrive( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGoogleDrive); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGoogleDrive = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgGoogleDrive); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GoogleDriveCheck.tsx b/packages/iconoir-react/src/server/GoogleDriveCheck.tsx index 8bbf68bd..11291a08 100644 --- a/packages/iconoir-react/src/server/GoogleDriveCheck.tsx +++ b/packages/iconoir-react/src/server/GoogleDriveCheck.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgGoogleDriveCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGoogleDriveCheck); + + + + + + + + +); +const ForwardRef = forwardRef(SvgGoogleDriveCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GoogleDriveSync.tsx b/packages/iconoir-react/src/server/GoogleDriveSync.tsx index 50fc8b7c..7a246c17 100644 --- a/packages/iconoir-react/src/server/GoogleDriveSync.tsx +++ b/packages/iconoir-react/src/server/GoogleDriveSync.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgGoogleDriveSync( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGoogleDriveSync); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGoogleDriveSync = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgGoogleDriveSync); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GoogleDriveWarning.tsx b/packages/iconoir-react/src/server/GoogleDriveWarning.tsx index 44b0e68b..2bce8491 100644 --- a/packages/iconoir-react/src/server/GoogleDriveWarning.tsx +++ b/packages/iconoir-react/src/server/GoogleDriveWarning.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgGoogleDriveWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGoogleDriveWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGoogleDriveWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgGoogleDriveWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GoogleHome.tsx b/packages/iconoir-react/src/server/GoogleHome.tsx index 103b542e..55fb2a1e 100644 --- a/packages/iconoir-react/src/server/GoogleHome.tsx +++ b/packages/iconoir-react/src/server/GoogleHome.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgGoogleHome( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGoogleHome); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGoogleHome = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGoogleHome); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GoogleOne.tsx b/packages/iconoir-react/src/server/GoogleOne.tsx index 822f0830..d19d45e3 100644 --- a/packages/iconoir-react/src/server/GoogleOne.tsx +++ b/packages/iconoir-react/src/server/GoogleOne.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgGoogleOne( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGoogleOne); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGoogleOne = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGoogleOne); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Gps.tsx b/packages/iconoir-react/src/server/Gps.tsx index 94dafbe9..0b9214ac 100644 --- a/packages/iconoir-react/src/server/Gps.tsx +++ b/packages/iconoir-react/src/server/Gps.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgGps( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgGps); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGps = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgGps); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GraduationCap.tsx b/packages/iconoir-react/src/server/GraduationCap.tsx index ba6d73f4..dceabe4b 100644 --- a/packages/iconoir-react/src/server/GraduationCap.tsx +++ b/packages/iconoir-react/src/server/GraduationCap.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgGraduationCap( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGraduationCap); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGraduationCap = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGraduationCap); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GraphDown.tsx b/packages/iconoir-react/src/server/GraphDown.tsx index e0ed1c19..2fd5fb79 100644 --- a/packages/iconoir-react/src/server/GraphDown.tsx +++ b/packages/iconoir-react/src/server/GraphDown.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgGraphDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGraphDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGraphDown = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGraphDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GraphUp.tsx b/packages/iconoir-react/src/server/GraphUp.tsx index 444f7a86..b9b90bbb 100644 --- a/packages/iconoir-react/src/server/GraphUp.tsx +++ b/packages/iconoir-react/src/server/GraphUp.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgGraphUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGraphUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGraphUp = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGraphUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GreenBus.tsx b/packages/iconoir-react/src/server/GreenBus.tsx index d526ff4a..f5ebf596 100644 --- a/packages/iconoir-react/src/server/GreenBus.tsx +++ b/packages/iconoir-react/src/server/GreenBus.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgGreenBus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGreenBus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGreenBus = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgGreenBus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GreenTruck.tsx b/packages/iconoir-react/src/server/GreenTruck.tsx index 4458e542..c269401d 100644 --- a/packages/iconoir-react/src/server/GreenTruck.tsx +++ b/packages/iconoir-react/src/server/GreenTruck.tsx @@ -1,40 +1,46 @@ import * as React from "react"; -function SvgGreenTruck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGreenTruck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGreenTruck = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgGreenTruck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GreenVehicle.tsx b/packages/iconoir-react/src/server/GreenVehicle.tsx index 06648b7a..e8ccdc4e 100644 --- a/packages/iconoir-react/src/server/GreenVehicle.tsx +++ b/packages/iconoir-react/src/server/GreenVehicle.tsx @@ -1,39 +1,45 @@ import * as React from "react"; -function SvgGreenVehicle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGreenVehicle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGreenVehicle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgGreenVehicle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GridAdd.tsx b/packages/iconoir-react/src/server/GridAdd.tsx index 1581cea7..5d8256be 100644 --- a/packages/iconoir-react/src/server/GridAdd.tsx +++ b/packages/iconoir-react/src/server/GridAdd.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgGridAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGridAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGridAdd = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGridAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GridMinus.tsx b/packages/iconoir-react/src/server/GridMinus.tsx index bb74cc75..be20788f 100644 --- a/packages/iconoir-react/src/server/GridMinus.tsx +++ b/packages/iconoir-react/src/server/GridMinus.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgGridMinus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGridMinus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGridMinus = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGridMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/GridRemove.tsx b/packages/iconoir-react/src/server/GridRemove.tsx index f7e34f4a..6ac777d0 100644 --- a/packages/iconoir-react/src/server/GridRemove.tsx +++ b/packages/iconoir-react/src/server/GridRemove.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgGridRemove( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGridRemove); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGridRemove = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgGridRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Group.tsx b/packages/iconoir-react/src/server/Group.tsx index e92ef63f..71d0632b 100644 --- a/packages/iconoir-react/src/server/Group.tsx +++ b/packages/iconoir-react/src/server/Group.tsx @@ -1,38 +1,35 @@ import * as React from "react"; -function SvgGroup( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGroup); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGroup = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgGroup); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Gym.tsx b/packages/iconoir-react/src/server/Gym.tsx index c0c0808b..d30ee130 100644 --- a/packages/iconoir-react/src/server/Gym.tsx +++ b/packages/iconoir-react/src/server/Gym.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgGym( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgGym); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgGym = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgGym); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HalfCookie.tsx b/packages/iconoir-react/src/server/HalfCookie.tsx index 5cbf4db6..0ca002de 100644 --- a/packages/iconoir-react/src/server/HalfCookie.tsx +++ b/packages/iconoir-react/src/server/HalfCookie.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHalfCookie( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHalfCookie); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHalfCookie = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHalfCookie); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HalfMoon.tsx b/packages/iconoir-react/src/server/HalfMoon.tsx index ea5b3a6f..f4111537 100644 --- a/packages/iconoir-react/src/server/HalfMoon.tsx +++ b/packages/iconoir-react/src/server/HalfMoon.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHalfMoon( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHalfMoon); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHalfMoon = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHalfMoon); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Hammer.tsx b/packages/iconoir-react/src/server/Hammer.tsx index ff243b1b..45d0a6ee 100644 --- a/packages/iconoir-react/src/server/Hammer.tsx +++ b/packages/iconoir-react/src/server/Hammer.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgHammer( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHammer); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHammer = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgHammer); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HandBrake.tsx b/packages/iconoir-react/src/server/HandBrake.tsx index ed95059c..fbf0aa5b 100644 --- a/packages/iconoir-react/src/server/HandBrake.tsx +++ b/packages/iconoir-react/src/server/HandBrake.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgHandBrake( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHandBrake); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHandBrake = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgHandBrake); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HandCard.tsx b/packages/iconoir-react/src/server/HandCard.tsx index 9c7c2b9a..2dcd1b54 100644 --- a/packages/iconoir-react/src/server/HandCard.tsx +++ b/packages/iconoir-react/src/server/HandCard.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgHandCard( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHandCard); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHandCard = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHandCard); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HandCash.tsx b/packages/iconoir-react/src/server/HandCash.tsx index f1f838c0..acaf8691 100644 --- a/packages/iconoir-react/src/server/HandCash.tsx +++ b/packages/iconoir-react/src/server/HandCash.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgHandCash( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHandCash); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHandCash = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgHandCash); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HandContactless.tsx b/packages/iconoir-react/src/server/HandContactless.tsx index adca7e1d..d15d2589 100644 --- a/packages/iconoir-react/src/server/HandContactless.tsx +++ b/packages/iconoir-react/src/server/HandContactless.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgHandContactless( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHandContactless); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHandContactless = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgHandContactless); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Handbag.tsx b/packages/iconoir-react/src/server/Handbag.tsx index a3564377..a8c2b3e7 100644 --- a/packages/iconoir-react/src/server/Handbag.tsx +++ b/packages/iconoir-react/src/server/Handbag.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHandbag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHandbag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHandbag = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHandbag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HardDrive.tsx b/packages/iconoir-react/src/server/HardDrive.tsx index e9167946..ad4f763d 100644 --- a/packages/iconoir-react/src/server/HardDrive.tsx +++ b/packages/iconoir-react/src/server/HardDrive.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgHardDrive( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHardDrive); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHardDrive = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHardDrive); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Hat.tsx b/packages/iconoir-react/src/server/Hat.tsx index 9511936d..a2320406 100644 --- a/packages/iconoir-react/src/server/Hat.tsx +++ b/packages/iconoir-react/src/server/Hat.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgHat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHat = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgHat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Hd.tsx b/packages/iconoir-react/src/server/Hd.tsx index a0a03540..0a936899 100644 --- a/packages/iconoir-react/src/server/Hd.tsx +++ b/packages/iconoir-react/src/server/Hd.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgHd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHd = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgHd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HdDisplay.tsx b/packages/iconoir-react/src/server/HdDisplay.tsx index 45f68cd0..a50954f4 100644 --- a/packages/iconoir-react/src/server/HdDisplay.tsx +++ b/packages/iconoir-react/src/server/HdDisplay.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgHdDisplay( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHdDisplay); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHdDisplay = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHdDisplay); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Hdr.tsx b/packages/iconoir-react/src/server/Hdr.tsx index 007ef91e..e498406b 100644 --- a/packages/iconoir-react/src/server/Hdr.tsx +++ b/packages/iconoir-react/src/server/Hdr.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgHdr( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHdr); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHdr = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgHdr); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Headset.tsx b/packages/iconoir-react/src/server/Headset.tsx index b7e023d9..6d9d5c1c 100644 --- a/packages/iconoir-react/src/server/Headset.tsx +++ b/packages/iconoir-react/src/server/Headset.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHeadset( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHeadset); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHeadset = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHeadset); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HeadsetCharge.tsx b/packages/iconoir-react/src/server/HeadsetCharge.tsx index 6ee19e69..5f2ac2c3 100644 --- a/packages/iconoir-react/src/server/HeadsetCharge.tsx +++ b/packages/iconoir-react/src/server/HeadsetCharge.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgHeadsetCharge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHeadsetCharge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHeadsetCharge = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgHeadsetCharge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HeadsetHelp.tsx b/packages/iconoir-react/src/server/HeadsetHelp.tsx index 3c8e3a5f..f4e6f1a1 100644 --- a/packages/iconoir-react/src/server/HeadsetHelp.tsx +++ b/packages/iconoir-react/src/server/HeadsetHelp.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgHeadsetHelp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHeadsetHelp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHeadsetHelp = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgHeadsetHelp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HeadsetIssue.tsx b/packages/iconoir-react/src/server/HeadsetIssue.tsx index 84106921..c8393bc1 100644 --- a/packages/iconoir-react/src/server/HeadsetIssue.tsx +++ b/packages/iconoir-react/src/server/HeadsetIssue.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHeadsetIssue( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHeadsetIssue); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHeadsetIssue = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHeadsetIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HealthShield.tsx b/packages/iconoir-react/src/server/HealthShield.tsx index bf5de1d0..db50d3a8 100644 --- a/packages/iconoir-react/src/server/HealthShield.tsx +++ b/packages/iconoir-react/src/server/HealthShield.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHealthShield( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHealthShield); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHealthShield = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHealthShield); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Healthcare.tsx b/packages/iconoir-react/src/server/Healthcare.tsx index f6f08213..c343d81c 100644 --- a/packages/iconoir-react/src/server/Healthcare.tsx +++ b/packages/iconoir-react/src/server/Healthcare.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgHealthcare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHealthcare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHealthcare = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgHealthcare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Heart.tsx b/packages/iconoir-react/src/server/Heart.tsx index 85c0e28c..dbe2934b 100644 --- a/packages/iconoir-react/src/server/Heart.tsx +++ b/packages/iconoir-react/src/server/Heart.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgHeart( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHeart); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHeart = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgHeart); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HeartArrowDown.tsx b/packages/iconoir-react/src/server/HeartArrowDown.tsx index 6d2cd4f3..d7df8e8b 100644 --- a/packages/iconoir-react/src/server/HeartArrowDown.tsx +++ b/packages/iconoir-react/src/server/HeartArrowDown.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHeartArrowDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHeartArrowDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHeartArrowDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHeartArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Heating.tsx b/packages/iconoir-react/src/server/Heating.tsx index 61b66487..cfecd0ab 100644 --- a/packages/iconoir-react/src/server/Heating.tsx +++ b/packages/iconoir-react/src/server/Heating.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHeating( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHeating); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHeating = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHeating); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HeavyRain.tsx b/packages/iconoir-react/src/server/HeavyRain.tsx index 284aca80..7d0765b4 100644 --- a/packages/iconoir-react/src/server/HeavyRain.tsx +++ b/packages/iconoir-react/src/server/HeavyRain.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHeavyRain( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHeavyRain); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHeavyRain = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHeavyRain); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HelpCircle.tsx b/packages/iconoir-react/src/server/HelpCircle.tsx index c699902e..6666b991 100644 --- a/packages/iconoir-react/src/server/HelpCircle.tsx +++ b/packages/iconoir-react/src/server/HelpCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHelpCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHelpCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHelpCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHelpCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HelpSquare.tsx b/packages/iconoir-react/src/server/HelpSquare.tsx index 77b2ccdc..cfdc8e75 100644 --- a/packages/iconoir-react/src/server/HelpSquare.tsx +++ b/packages/iconoir-react/src/server/HelpSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgHelpSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHelpSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHelpSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHelpSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Heptagon.tsx b/packages/iconoir-react/src/server/Heptagon.tsx index 334e11eb..cf88d529 100644 --- a/packages/iconoir-react/src/server/Heptagon.tsx +++ b/packages/iconoir-react/src/server/Heptagon.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHeptagon( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHeptagon); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHeptagon = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHeptagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HerSlips.tsx b/packages/iconoir-react/src/server/HerSlips.tsx index ce6804ad..4ded15cd 100644 --- a/packages/iconoir-react/src/server/HerSlips.tsx +++ b/packages/iconoir-react/src/server/HerSlips.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgHerSlips( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHerSlips); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHerSlips = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHerSlips); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Hexagon.tsx b/packages/iconoir-react/src/server/Hexagon.tsx index 49d2d503..86ae760a 100644 --- a/packages/iconoir-react/src/server/Hexagon.tsx +++ b/packages/iconoir-react/src/server/Hexagon.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHexagon( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHexagon); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHexagon = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHexagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HexagonAlt.tsx b/packages/iconoir-react/src/server/HexagonAlt.tsx index 6f364cc4..fbdf58d7 100644 --- a/packages/iconoir-react/src/server/HexagonAlt.tsx +++ b/packages/iconoir-react/src/server/HexagonAlt.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgHexagonAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHexagonAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHexagonAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + + + + +); +const ForwardRef = forwardRef(SvgHexagonAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HexagonDice.tsx b/packages/iconoir-react/src/server/HexagonDice.tsx index cb2b9e51..ff39d6a2 100644 --- a/packages/iconoir-react/src/server/HexagonDice.tsx +++ b/packages/iconoir-react/src/server/HexagonDice.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgHexagonDice( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHexagonDice); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHexagonDice = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgHexagonDice); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HighPriority.tsx b/packages/iconoir-react/src/server/HighPriority.tsx index abc591b4..73d7db8d 100644 --- a/packages/iconoir-react/src/server/HighPriority.tsx +++ b/packages/iconoir-react/src/server/HighPriority.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHighPriority( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHighPriority); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHighPriority = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHighPriority); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HistoricShield.tsx b/packages/iconoir-react/src/server/HistoricShield.tsx index 1d41d636..f6728db8 100644 --- a/packages/iconoir-react/src/server/HistoricShield.tsx +++ b/packages/iconoir-react/src/server/HistoricShield.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHistoricShield( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHistoricShield); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHistoricShield = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHistoricShield); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HistoricShieldAlt.tsx b/packages/iconoir-react/src/server/HistoricShieldAlt.tsx index a9b68d9e..83aa1f51 100644 --- a/packages/iconoir-react/src/server/HistoricShieldAlt.tsx +++ b/packages/iconoir-react/src/server/HistoricShieldAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHistoricShieldAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHistoricShieldAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHistoricShieldAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHistoricShieldAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Home.tsx b/packages/iconoir-react/src/server/Home.tsx index e1283575..4aa9cb54 100644 --- a/packages/iconoir-react/src/server/Home.tsx +++ b/packages/iconoir-react/src/server/Home.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgHome( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHome); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHome = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgHome); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeAlt.tsx b/packages/iconoir-react/src/server/HomeAlt.tsx index 082b0c1f..4e070401 100644 --- a/packages/iconoir-react/src/server/HomeAlt.tsx +++ b/packages/iconoir-react/src/server/HomeAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHomeAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHomeAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeAltSlim.tsx b/packages/iconoir-react/src/server/HomeAltSlim.tsx index 204a54af..1ff9b626 100644 --- a/packages/iconoir-react/src/server/HomeAltSlim.tsx +++ b/packages/iconoir-react/src/server/HomeAltSlim.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHomeAltSlim( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeAltSlim); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeAltSlim = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHomeAltSlim); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeAltSlimHoriz.tsx b/packages/iconoir-react/src/server/HomeAltSlimHoriz.tsx index 93cb11b8..6e964c71 100644 --- a/packages/iconoir-react/src/server/HomeAltSlimHoriz.tsx +++ b/packages/iconoir-react/src/server/HomeAltSlimHoriz.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHomeAltSlimHoriz( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeAltSlimHoriz); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeAltSlimHoriz = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHomeAltSlimHoriz); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeHospital.tsx b/packages/iconoir-react/src/server/HomeHospital.tsx index e519869d..bb0ef655 100644 --- a/packages/iconoir-react/src/server/HomeHospital.tsx +++ b/packages/iconoir-react/src/server/HomeHospital.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHomeHospital( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeHospital); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeHospital = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHomeHospital); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeSale.tsx b/packages/iconoir-react/src/server/HomeSale.tsx index 4ae909d2..aa23b663 100644 --- a/packages/iconoir-react/src/server/HomeSale.tsx +++ b/packages/iconoir-react/src/server/HomeSale.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHomeSale( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeSale); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeSale = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHomeSale); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeSecure.tsx b/packages/iconoir-react/src/server/HomeSecure.tsx index 7068f182..0f6568fd 100644 --- a/packages/iconoir-react/src/server/HomeSecure.tsx +++ b/packages/iconoir-react/src/server/HomeSecure.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHomeSecure( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeSecure); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeSecure = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHomeSecure); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeShield.tsx b/packages/iconoir-react/src/server/HomeShield.tsx index d58e9ae0..28bdebc2 100644 --- a/packages/iconoir-react/src/server/HomeShield.tsx +++ b/packages/iconoir-react/src/server/HomeShield.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHomeShield( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeShield); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeShield = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHomeShield); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeSimple.tsx b/packages/iconoir-react/src/server/HomeSimple.tsx index 45ca1abb..925dc468 100644 --- a/packages/iconoir-react/src/server/HomeSimple.tsx +++ b/packages/iconoir-react/src/server/HomeSimple.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHomeSimple( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeSimple); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeSimple = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHomeSimple); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeSimpleDoor.tsx b/packages/iconoir-react/src/server/HomeSimpleDoor.tsx index 8dcd2ae1..0eb7745b 100644 --- a/packages/iconoir-react/src/server/HomeSimpleDoor.tsx +++ b/packages/iconoir-react/src/server/HomeSimpleDoor.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHomeSimpleDoor( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeSimpleDoor); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeSimpleDoor = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHomeSimpleDoor); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeTable.tsx b/packages/iconoir-react/src/server/HomeTable.tsx index 188297a2..adbe1f05 100644 --- a/packages/iconoir-react/src/server/HomeTable.tsx +++ b/packages/iconoir-react/src/server/HomeTable.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHomeTable( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeTable); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeTable = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHomeTable); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeTemperatureIn.tsx b/packages/iconoir-react/src/server/HomeTemperatureIn.tsx index b93a332f..0492d1f0 100644 --- a/packages/iconoir-react/src/server/HomeTemperatureIn.tsx +++ b/packages/iconoir-react/src/server/HomeTemperatureIn.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHomeTemperatureIn( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeTemperatureIn); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeTemperatureIn = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHomeTemperatureIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeTemperatureOut.tsx b/packages/iconoir-react/src/server/HomeTemperatureOut.tsx index 9dd45ff4..0ab7a032 100644 --- a/packages/iconoir-react/src/server/HomeTemperatureOut.tsx +++ b/packages/iconoir-react/src/server/HomeTemperatureOut.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHomeTemperatureOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeTemperatureOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeTemperatureOut = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHomeTemperatureOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HomeUser.tsx b/packages/iconoir-react/src/server/HomeUser.tsx index 67e26994..0d0ac021 100644 --- a/packages/iconoir-react/src/server/HomeUser.tsx +++ b/packages/iconoir-react/src/server/HomeUser.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgHomeUser( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHomeUser); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHomeUser = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgHomeUser); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HorizDistributionLeft.tsx b/packages/iconoir-react/src/server/HorizDistributionLeft.tsx index 4c91d036..b768e7b3 100644 --- a/packages/iconoir-react/src/server/HorizDistributionLeft.tsx +++ b/packages/iconoir-react/src/server/HorizDistributionLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHorizDistributionLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHorizDistributionLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHorizDistributionLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHorizDistributionLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HorizDistributionRight.tsx b/packages/iconoir-react/src/server/HorizDistributionRight.tsx index 59d92add..379d8a2a 100644 --- a/packages/iconoir-react/src/server/HorizDistributionRight.tsx +++ b/packages/iconoir-react/src/server/HorizDistributionRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHorizDistributionRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHorizDistributionRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHorizDistributionRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHorizDistributionRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HorizontalMerge.tsx b/packages/iconoir-react/src/server/HorizontalMerge.tsx index 9cf7a24e..116467d1 100644 --- a/packages/iconoir-react/src/server/HorizontalMerge.tsx +++ b/packages/iconoir-react/src/server/HorizontalMerge.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHorizontalMerge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHorizontalMerge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHorizontalMerge = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHorizontalMerge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HorizontalSplit.tsx b/packages/iconoir-react/src/server/HorizontalSplit.tsx index 822d91e3..2118833c 100644 --- a/packages/iconoir-react/src/server/HorizontalSplit.tsx +++ b/packages/iconoir-react/src/server/HorizontalSplit.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHorizontalSplit( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHorizontalSplit); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHorizontalSplit = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHorizontalSplit); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Hospital.tsx b/packages/iconoir-react/src/server/Hospital.tsx index 2b7e3477..68b8792d 100644 --- a/packages/iconoir-react/src/server/Hospital.tsx +++ b/packages/iconoir-react/src/server/Hospital.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgHospital( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHospital); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHospital = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHospital); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HospitalSign.tsx b/packages/iconoir-react/src/server/HospitalSign.tsx index be758d96..75043b3c 100644 --- a/packages/iconoir-react/src/server/HospitalSign.tsx +++ b/packages/iconoir-react/src/server/HospitalSign.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHospitalSign( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHospitalSign); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHospitalSign = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHospitalSign); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HotAirBalloon.tsx b/packages/iconoir-react/src/server/HotAirBalloon.tsx index e1643e58..704131df 100644 --- a/packages/iconoir-react/src/server/HotAirBalloon.tsx +++ b/packages/iconoir-react/src/server/HotAirBalloon.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgHotAirBalloon( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHotAirBalloon); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHotAirBalloon = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgHotAirBalloon); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Hourglass.tsx b/packages/iconoir-react/src/server/Hourglass.tsx index 0d059c92..84ed27dd 100644 --- a/packages/iconoir-react/src/server/Hourglass.tsx +++ b/packages/iconoir-react/src/server/Hourglass.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHourglass( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHourglass); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHourglass = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHourglass); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/HouseRooms.tsx b/packages/iconoir-react/src/server/HouseRooms.tsx index a472b0c3..2291bb41 100644 --- a/packages/iconoir-react/src/server/HouseRooms.tsx +++ b/packages/iconoir-react/src/server/HouseRooms.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgHouseRooms( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHouseRooms); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHouseRooms = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgHouseRooms); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Html5.tsx b/packages/iconoir-react/src/server/Html5.tsx index 64cf31a9..a7734e62 100644 --- a/packages/iconoir-react/src/server/Html5.tsx +++ b/packages/iconoir-react/src/server/Html5.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgHtml5( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgHtml5); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHtml5 = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgHtml5); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Hydrogen.tsx b/packages/iconoir-react/src/server/Hydrogen.tsx index e610ad25..5ac74d3b 100644 --- a/packages/iconoir-react/src/server/Hydrogen.tsx +++ b/packages/iconoir-react/src/server/Hydrogen.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgHydrogen( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgHydrogen); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgHydrogen = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgHydrogen); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Iconoir.tsx b/packages/iconoir-react/src/server/Iconoir.tsx index cd919109..52c2608c 100644 --- a/packages/iconoir-react/src/server/Iconoir.tsx +++ b/packages/iconoir-react/src/server/Iconoir.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgIconoir( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgIconoir); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgIconoir = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgIconoir); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Import.tsx b/packages/iconoir-react/src/server/Import.tsx index 072bbecb..17775a60 100644 --- a/packages/iconoir-react/src/server/Import.tsx +++ b/packages/iconoir-react/src/server/Import.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgImport( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgImport); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgImport = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgImport); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Inclination.tsx b/packages/iconoir-react/src/server/Inclination.tsx index 4ad57200..99796691 100644 --- a/packages/iconoir-react/src/server/Inclination.tsx +++ b/packages/iconoir-react/src/server/Inclination.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgInclination( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgInclination); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgInclination = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgInclination); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Industry.tsx b/packages/iconoir-react/src/server/Industry.tsx index 7a88e859..69603b8c 100644 --- a/packages/iconoir-react/src/server/Industry.tsx +++ b/packages/iconoir-react/src/server/Industry.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgIndustry( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgIndustry); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgIndustry = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgIndustry); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Infinite.tsx b/packages/iconoir-react/src/server/Infinite.tsx index cd1d9ea3..41042911 100644 --- a/packages/iconoir-react/src/server/Infinite.tsx +++ b/packages/iconoir-react/src/server/Infinite.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgInfinite( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgInfinite); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgInfinite = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgInfinite); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/InfoEmpty.tsx b/packages/iconoir-react/src/server/InfoEmpty.tsx index e769b6bd..63d8cf7e 100644 --- a/packages/iconoir-react/src/server/InfoEmpty.tsx +++ b/packages/iconoir-react/src/server/InfoEmpty.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgInfoEmpty( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgInfoEmpty); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgInfoEmpty = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgInfoEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/InputField.tsx b/packages/iconoir-react/src/server/InputField.tsx index b5238395..305fef32 100644 --- a/packages/iconoir-react/src/server/InputField.tsx +++ b/packages/iconoir-react/src/server/InputField.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgInputField( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgInputField); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgInputField = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgInputField); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/InputOutput.tsx b/packages/iconoir-react/src/server/InputOutput.tsx index 33ad7ed6..9c8790af 100644 --- a/packages/iconoir-react/src/server/InputOutput.tsx +++ b/packages/iconoir-react/src/server/InputOutput.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgInputOutput( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgInputOutput); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgInputOutput = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgInputOutput); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/InputSearch.tsx b/packages/iconoir-react/src/server/InputSearch.tsx index 7751ef23..ae2122cf 100644 --- a/packages/iconoir-react/src/server/InputSearch.tsx +++ b/packages/iconoir-react/src/server/InputSearch.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgInputSearch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgInputSearch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgInputSearch = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgInputSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Instagram.tsx b/packages/iconoir-react/src/server/Instagram.tsx index 05df07c7..820ee957 100644 --- a/packages/iconoir-react/src/server/Instagram.tsx +++ b/packages/iconoir-react/src/server/Instagram.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgInstagram( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgInstagram); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgInstagram = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgInstagram); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Internet.tsx b/packages/iconoir-react/src/server/Internet.tsx index 2210ae10..e53bdfd0 100644 --- a/packages/iconoir-react/src/server/Internet.tsx +++ b/packages/iconoir-react/src/server/Internet.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgInternet( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgInternet); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgInternet = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgInternet); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Intersect.tsx b/packages/iconoir-react/src/server/Intersect.tsx index d3bbea41..ae8f811f 100644 --- a/packages/iconoir-react/src/server/Intersect.tsx +++ b/packages/iconoir-react/src/server/Intersect.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgIntersect( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgIntersect); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgIntersect = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgIntersect); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/IntersectAlt.tsx b/packages/iconoir-react/src/server/IntersectAlt.tsx index 122d9aac..dddeaa5a 100644 --- a/packages/iconoir-react/src/server/IntersectAlt.tsx +++ b/packages/iconoir-react/src/server/IntersectAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgIntersectAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgIntersectAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgIntersectAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgIntersectAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/IosSettings.tsx b/packages/iconoir-react/src/server/IosSettings.tsx index ed418155..740445dd 100644 --- a/packages/iconoir-react/src/server/IosSettings.tsx +++ b/packages/iconoir-react/src/server/IosSettings.tsx @@ -1,47 +1,47 @@ import * as React from "react"; -function SvgIosSettings( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgIosSettings); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgIosSettings = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgIosSettings); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/IpAddress.tsx b/packages/iconoir-react/src/server/IpAddress.tsx index b557140d..f5bee42e 100644 --- a/packages/iconoir-react/src/server/IpAddress.tsx +++ b/packages/iconoir-react/src/server/IpAddress.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgIpAddress( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgIpAddress); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgIpAddress = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgIpAddress); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/IrisScan.tsx b/packages/iconoir-react/src/server/IrisScan.tsx index 52f6f92c..e3605553 100644 --- a/packages/iconoir-react/src/server/IrisScan.tsx +++ b/packages/iconoir-react/src/server/IrisScan.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgIrisScan( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgIrisScan); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgIrisScan = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgIrisScan); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Italic.tsx b/packages/iconoir-react/src/server/Italic.tsx index f2c15fe9..a1df0048 100644 --- a/packages/iconoir-react/src/server/Italic.tsx +++ b/packages/iconoir-react/src/server/Italic.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgItalic( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgItalic); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgItalic = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgItalic); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ItalicSquare.tsx b/packages/iconoir-react/src/server/ItalicSquare.tsx index ff87babc..6caf13ca 100644 --- a/packages/iconoir-react/src/server/ItalicSquare.tsx +++ b/packages/iconoir-react/src/server/ItalicSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgItalicSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgItalicSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgItalicSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgItalicSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Jellyfish.tsx b/packages/iconoir-react/src/server/Jellyfish.tsx index 71e5d1dc..772b54e4 100644 --- a/packages/iconoir-react/src/server/Jellyfish.tsx +++ b/packages/iconoir-react/src/server/Jellyfish.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgJellyfish( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgJellyfish); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgJellyfish = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgJellyfish); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Journal.tsx b/packages/iconoir-react/src/server/Journal.tsx index d2a01ae4..27ae8641 100644 --- a/packages/iconoir-react/src/server/Journal.tsx +++ b/packages/iconoir-react/src/server/Journal.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgJournal( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgJournal); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgJournal = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgJournal); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/JournalPage.tsx b/packages/iconoir-react/src/server/JournalPage.tsx index e61f8971..4a6aa144 100644 --- a/packages/iconoir-react/src/server/JournalPage.tsx +++ b/packages/iconoir-react/src/server/JournalPage.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgJournalPage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgJournalPage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgJournalPage = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgJournalPage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/JpegFormat.tsx b/packages/iconoir-react/src/server/JpegFormat.tsx index 095d7285..143c462c 100644 --- a/packages/iconoir-react/src/server/JpegFormat.tsx +++ b/packages/iconoir-react/src/server/JpegFormat.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgJpegFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgJpegFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgJpegFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgJpegFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/JpgFormat.tsx b/packages/iconoir-react/src/server/JpgFormat.tsx index 2d33bd4e..66fa13fe 100644 --- a/packages/iconoir-react/src/server/JpgFormat.tsx +++ b/packages/iconoir-react/src/server/JpgFormat.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgJpgFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgJpgFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgJpgFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgJpgFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KanbanBoard.tsx b/packages/iconoir-react/src/server/KanbanBoard.tsx index 01955343..31dfb093 100644 --- a/packages/iconoir-react/src/server/KanbanBoard.tsx +++ b/packages/iconoir-react/src/server/KanbanBoard.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKanbanBoard( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKanbanBoard); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKanbanBoard = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKanbanBoard); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyAlt.tsx b/packages/iconoir-react/src/server/KeyAlt.tsx index e4b27332..83175790 100644 --- a/packages/iconoir-react/src/server/KeyAlt.tsx +++ b/packages/iconoir-react/src/server/KeyAlt.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgKeyAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyAlt = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyAltBack.tsx b/packages/iconoir-react/src/server/KeyAltBack.tsx index ce5cdfe8..fb021c1d 100644 --- a/packages/iconoir-react/src/server/KeyAltBack.tsx +++ b/packages/iconoir-react/src/server/KeyAltBack.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKeyAltBack( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyAltBack); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyAltBack = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyAltBack); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyAltMinus.tsx b/packages/iconoir-react/src/server/KeyAltMinus.tsx index cb9e605f..9e3b7e86 100644 --- a/packages/iconoir-react/src/server/KeyAltMinus.tsx +++ b/packages/iconoir-react/src/server/KeyAltMinus.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKeyAltMinus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyAltMinus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyAltMinus = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyAltMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyAltPlus.tsx b/packages/iconoir-react/src/server/KeyAltPlus.tsx index 2823612a..db6cddf3 100644 --- a/packages/iconoir-react/src/server/KeyAltPlus.tsx +++ b/packages/iconoir-react/src/server/KeyAltPlus.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKeyAltPlus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyAltPlus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyAltPlus = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyAltPlus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyAltRemove.tsx b/packages/iconoir-react/src/server/KeyAltRemove.tsx index 2d0ca30d..477b8ee0 100644 --- a/packages/iconoir-react/src/server/KeyAltRemove.tsx +++ b/packages/iconoir-react/src/server/KeyAltRemove.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKeyAltRemove( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyAltRemove); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyAltRemove = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyAltRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyCommand.tsx b/packages/iconoir-react/src/server/KeyCommand.tsx index 7d0e5a0a..0c0cb1fe 100644 --- a/packages/iconoir-react/src/server/KeyCommand.tsx +++ b/packages/iconoir-react/src/server/KeyCommand.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKeyCommand( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyCommand); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyCommand = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyCommand); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Keyframe.tsx b/packages/iconoir-react/src/server/Keyframe.tsx index c8203721..06a83e14 100644 --- a/packages/iconoir-react/src/server/Keyframe.tsx +++ b/packages/iconoir-react/src/server/Keyframe.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKeyframe( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyframe); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyframe = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyframe); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyframeAlignCenter.tsx b/packages/iconoir-react/src/server/KeyframeAlignCenter.tsx index b0466a1d..5c433692 100644 --- a/packages/iconoir-react/src/server/KeyframeAlignCenter.tsx +++ b/packages/iconoir-react/src/server/KeyframeAlignCenter.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKeyframeAlignCenter( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyframeAlignCenter); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyframeAlignCenter = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyframeAlignCenter); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyframeAlignHorizontal.tsx b/packages/iconoir-react/src/server/KeyframeAlignHorizontal.tsx index c4bd5bd1..834829ac 100644 --- a/packages/iconoir-react/src/server/KeyframeAlignHorizontal.tsx +++ b/packages/iconoir-react/src/server/KeyframeAlignHorizontal.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKeyframeAlignHorizontal( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyframeAlignHorizontal); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyframeAlignHorizontal = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyframeAlignHorizontal); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyframeAlignVertical.tsx b/packages/iconoir-react/src/server/KeyframeAlignVertical.tsx index 75b8ba35..00124321 100644 --- a/packages/iconoir-react/src/server/KeyframeAlignVertical.tsx +++ b/packages/iconoir-react/src/server/KeyframeAlignVertical.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKeyframeAlignVertical( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyframeAlignVertical); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyframeAlignVertical = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyframeAlignVertical); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyframePosition.tsx b/packages/iconoir-react/src/server/KeyframePosition.tsx index 47c4eff3..28cc92d2 100644 --- a/packages/iconoir-react/src/server/KeyframePosition.tsx +++ b/packages/iconoir-react/src/server/KeyframePosition.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgKeyframePosition( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyframePosition); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyframePosition = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgKeyframePosition); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Keyframes.tsx b/packages/iconoir-react/src/server/Keyframes.tsx index 2ad1a5ad..793304b3 100644 --- a/packages/iconoir-react/src/server/Keyframes.tsx +++ b/packages/iconoir-react/src/server/Keyframes.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgKeyframes( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyframes); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyframes = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgKeyframes); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/KeyframesCouple.tsx b/packages/iconoir-react/src/server/KeyframesCouple.tsx index cce62a38..448faccc 100644 --- a/packages/iconoir-react/src/server/KeyframesCouple.tsx +++ b/packages/iconoir-react/src/server/KeyframesCouple.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgKeyframesCouple( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgKeyframesCouple); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgKeyframesCouple = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgKeyframesCouple); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Label.tsx b/packages/iconoir-react/src/server/Label.tsx index ea3f1044..573e9146 100644 --- a/packages/iconoir-react/src/server/Label.tsx +++ b/packages/iconoir-react/src/server/Label.tsx @@ -1,26 +1,23 @@ import * as React from "react"; -function SvgLabel( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLabel); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLabel = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgLabel); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Lamp.tsx b/packages/iconoir-react/src/server/Lamp.tsx index dd3d7e49..85da19c6 100644 --- a/packages/iconoir-react/src/server/Lamp.tsx +++ b/packages/iconoir-react/src/server/Lamp.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgLamp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLamp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLamp = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgLamp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Language.tsx b/packages/iconoir-react/src/server/Language.tsx index ba70b1f4..de8aec84 100644 --- a/packages/iconoir-react/src/server/Language.tsx +++ b/packages/iconoir-react/src/server/Language.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLanguage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLanguage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLanguage = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLanguage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Laptop.tsx b/packages/iconoir-react/src/server/Laptop.tsx index 324cbc41..1d3cdf90 100644 --- a/packages/iconoir-react/src/server/Laptop.tsx +++ b/packages/iconoir-react/src/server/Laptop.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgLaptop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLaptop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLaptop = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgLaptop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LaptopCharging.tsx b/packages/iconoir-react/src/server/LaptopCharging.tsx index 06fbda18..fe77613f 100644 --- a/packages/iconoir-react/src/server/LaptopCharging.tsx +++ b/packages/iconoir-react/src/server/LaptopCharging.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgLaptopCharging( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLaptopCharging); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLaptopCharging = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLaptopCharging); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LaptopFix.tsx b/packages/iconoir-react/src/server/LaptopFix.tsx index 92bb563c..f5903261 100644 --- a/packages/iconoir-react/src/server/LaptopFix.tsx +++ b/packages/iconoir-react/src/server/LaptopFix.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgLaptopFix( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLaptopFix); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLaptopFix = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLaptopFix); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LaptopIssue.tsx b/packages/iconoir-react/src/server/LaptopIssue.tsx index 3230f64e..07481354 100644 --- a/packages/iconoir-react/src/server/LaptopIssue.tsx +++ b/packages/iconoir-react/src/server/LaptopIssue.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgLaptopIssue( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLaptopIssue); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLaptopIssue = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLaptopIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LargeSuitcase.tsx b/packages/iconoir-react/src/server/LargeSuitcase.tsx index 758fb13d..59cf8dfd 100644 --- a/packages/iconoir-react/src/server/LargeSuitcase.tsx +++ b/packages/iconoir-react/src/server/LargeSuitcase.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgLargeSuitcase( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLargeSuitcase); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLargeSuitcase = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLargeSuitcase); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LayoutLeft.tsx b/packages/iconoir-react/src/server/LayoutLeft.tsx index 43cad98c..e35ea7e5 100644 --- a/packages/iconoir-react/src/server/LayoutLeft.tsx +++ b/packages/iconoir-react/src/server/LayoutLeft.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgLayoutLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLayoutLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLayoutLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLayoutLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LayoutRight.tsx b/packages/iconoir-react/src/server/LayoutRight.tsx index 77bae5d7..b8f9cee3 100644 --- a/packages/iconoir-react/src/server/LayoutRight.tsx +++ b/packages/iconoir-react/src/server/LayoutRight.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgLayoutRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLayoutRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLayoutRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLayoutRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Leaderboard.tsx b/packages/iconoir-react/src/server/Leaderboard.tsx index 75e6496f..549921ab 100644 --- a/packages/iconoir-react/src/server/Leaderboard.tsx +++ b/packages/iconoir-react/src/server/Leaderboard.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgLeaderboard( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLeaderboard); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLeaderboard = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLeaderboard); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LeaderboardStar.tsx b/packages/iconoir-react/src/server/LeaderboardStar.tsx index eecfc776..3ec73752 100644 --- a/packages/iconoir-react/src/server/LeaderboardStar.tsx +++ b/packages/iconoir-react/src/server/LeaderboardStar.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgLeaderboardStar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLeaderboardStar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLeaderboardStar = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLeaderboardStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Leaf.tsx b/packages/iconoir-react/src/server/Leaf.tsx index d51d3603..f70aa175 100644 --- a/packages/iconoir-react/src/server/Leaf.tsx +++ b/packages/iconoir-react/src/server/Leaf.tsx @@ -1,28 +1,31 @@ import * as React from "react"; -function SvgLeaf( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLeaf); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLeaf = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgLeaf); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Learning.tsx b/packages/iconoir-react/src/server/Learning.tsx index fb64e639..64b81530 100644 --- a/packages/iconoir-react/src/server/Learning.tsx +++ b/packages/iconoir-react/src/server/Learning.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgLearning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLearning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLearning = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgLearning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LeftRoundArrow.tsx b/packages/iconoir-react/src/server/LeftRoundArrow.tsx index 205139d7..09bb0088 100644 --- a/packages/iconoir-react/src/server/LeftRoundArrow.tsx +++ b/packages/iconoir-react/src/server/LeftRoundArrow.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgLeftRoundArrow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLeftRoundArrow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLeftRoundArrow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLeftRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Lens.tsx b/packages/iconoir-react/src/server/Lens.tsx index c9795e1e..21dbc048 100644 --- a/packages/iconoir-react/src/server/Lens.tsx +++ b/packages/iconoir-react/src/server/Lens.tsx @@ -1,28 +1,31 @@ import * as React from "react"; -function SvgLens( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLens); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLens = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgLens); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Lifebelt.tsx b/packages/iconoir-react/src/server/Lifebelt.tsx index 5fec01ef..b1f40928 100644 --- a/packages/iconoir-react/src/server/Lifebelt.tsx +++ b/packages/iconoir-react/src/server/Lifebelt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLifebelt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLifebelt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLifebelt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLifebelt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LightBulb.tsx b/packages/iconoir-react/src/server/LightBulb.tsx index 704230aa..aa316639 100644 --- a/packages/iconoir-react/src/server/LightBulb.tsx +++ b/packages/iconoir-react/src/server/LightBulb.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgLightBulb( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLightBulb); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLightBulb = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLightBulb); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LightBulbOff.tsx b/packages/iconoir-react/src/server/LightBulbOff.tsx index dc2986b5..43ae579c 100644 --- a/packages/iconoir-react/src/server/LightBulbOff.tsx +++ b/packages/iconoir-react/src/server/LightBulbOff.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgLightBulbOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLightBulbOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLightBulbOff = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLightBulbOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LightBulbOn.tsx b/packages/iconoir-react/src/server/LightBulbOn.tsx index cc522be3..e5cbff27 100644 --- a/packages/iconoir-react/src/server/LightBulbOn.tsx +++ b/packages/iconoir-react/src/server/LightBulbOn.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgLightBulbOn( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLightBulbOn); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLightBulbOn = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLightBulbOn); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LineSpace.tsx b/packages/iconoir-react/src/server/LineSpace.tsx index 2d9aa2f9..f75cd308 100644 --- a/packages/iconoir-react/src/server/LineSpace.tsx +++ b/packages/iconoir-react/src/server/LineSpace.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgLineSpace( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLineSpace); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLineSpace = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLineSpace); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Linear.tsx b/packages/iconoir-react/src/server/Linear.tsx index e86c446a..a6cc0fa5 100644 --- a/packages/iconoir-react/src/server/Linear.tsx +++ b/packages/iconoir-react/src/server/Linear.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgLinear( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLinear); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLinear = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgLinear); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Link.tsx b/packages/iconoir-react/src/server/Link.tsx index 9e407f52..97f3c15c 100644 --- a/packages/iconoir-react/src/server/Link.tsx +++ b/packages/iconoir-react/src/server/Link.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgLink( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLink); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLink = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgLink); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LinkedIn.tsx b/packages/iconoir-react/src/server/LinkedIn.tsx index d55d6057..30f862b5 100644 --- a/packages/iconoir-react/src/server/LinkedIn.tsx +++ b/packages/iconoir-react/src/server/LinkedIn.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLinkedIn( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLinkedIn); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLinkedIn = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLinkedIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Linux.tsx b/packages/iconoir-react/src/server/Linux.tsx index 7db696d9..4fa8999e 100644 --- a/packages/iconoir-react/src/server/Linux.tsx +++ b/packages/iconoir-react/src/server/Linux.tsx @@ -1,39 +1,36 @@ import * as React from "react"; -function SvgLinux( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLinux); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLinux = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgLinux); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/List.tsx b/packages/iconoir-react/src/server/List.tsx index 4477b0e9..03287dfd 100644 --- a/packages/iconoir-react/src/server/List.tsx +++ b/packages/iconoir-react/src/server/List.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgList( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgList); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgList = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgList); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ListSelect.tsx b/packages/iconoir-react/src/server/ListSelect.tsx index 9679e13b..d02d97e3 100644 --- a/packages/iconoir-react/src/server/ListSelect.tsx +++ b/packages/iconoir-react/src/server/ListSelect.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgListSelect( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgListSelect); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgListSelect = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgListSelect); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LitecoinCircle.tsx b/packages/iconoir-react/src/server/LitecoinCircle.tsx index 25fb621f..21ba135f 100644 --- a/packages/iconoir-react/src/server/LitecoinCircle.tsx +++ b/packages/iconoir-react/src/server/LitecoinCircle.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgLitecoinCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLitecoinCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLitecoinCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLitecoinCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LitecoinRotateOut.tsx b/packages/iconoir-react/src/server/LitecoinRotateOut.tsx index 07b3f72b..3ebe9fc1 100644 --- a/packages/iconoir-react/src/server/LitecoinRotateOut.tsx +++ b/packages/iconoir-react/src/server/LitecoinRotateOut.tsx @@ -1,51 +1,51 @@ import * as React from "react"; -function SvgLitecoinRotateOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLitecoinRotateOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLitecoinRotateOut = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgLitecoinRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LoadActionFloppy.tsx b/packages/iconoir-react/src/server/LoadActionFloppy.tsx index fd9514d8..530883a1 100644 --- a/packages/iconoir-react/src/server/LoadActionFloppy.tsx +++ b/packages/iconoir-react/src/server/LoadActionFloppy.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLoadActionFloppy( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLoadActionFloppy); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLoadActionFloppy = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLoadActionFloppy); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Lock.tsx b/packages/iconoir-react/src/server/Lock.tsx index 6f946cf5..844d1abf 100644 --- a/packages/iconoir-react/src/server/Lock.tsx +++ b/packages/iconoir-react/src/server/Lock.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgLock( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLock); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLock = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgLock); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LockKey.tsx b/packages/iconoir-react/src/server/LockKey.tsx index 467c264a..fa1f7db7 100644 --- a/packages/iconoir-react/src/server/LockKey.tsx +++ b/packages/iconoir-react/src/server/LockKey.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgLockKey( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLockKey); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLockKey = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLockKey); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LockedBook.tsx b/packages/iconoir-react/src/server/LockedBook.tsx index fb49fb3e..33c1c820 100644 --- a/packages/iconoir-react/src/server/LockedBook.tsx +++ b/packages/iconoir-react/src/server/LockedBook.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgLockedBook( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLockedBook); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLockedBook = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgLockedBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LockedWindow.tsx b/packages/iconoir-react/src/server/LockedWindow.tsx index bc44d95f..845968ca 100644 --- a/packages/iconoir-react/src/server/LockedWindow.tsx +++ b/packages/iconoir-react/src/server/LockedWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgLockedWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLockedWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLockedWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLockedWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Loft3D.tsx b/packages/iconoir-react/src/server/Loft3D.tsx index 041281fb..0ddbc5ed 100644 --- a/packages/iconoir-react/src/server/Loft3D.tsx +++ b/packages/iconoir-react/src/server/Loft3D.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgLoft3D( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLoft3D); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLoft3D = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgLoft3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LogDenied.tsx b/packages/iconoir-react/src/server/LogDenied.tsx index 5525fabb..188b797c 100644 --- a/packages/iconoir-react/src/server/LogDenied.tsx +++ b/packages/iconoir-react/src/server/LogDenied.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLogDenied( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLogDenied); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLogDenied = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLogDenied); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LogIn.tsx b/packages/iconoir-react/src/server/LogIn.tsx index 4db5ff52..45a4ab4d 100644 --- a/packages/iconoir-react/src/server/LogIn.tsx +++ b/packages/iconoir-react/src/server/LogIn.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgLogIn( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLogIn); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLogIn = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgLogIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LogOut.tsx b/packages/iconoir-react/src/server/LogOut.tsx index 1c46195c..2612e080 100644 --- a/packages/iconoir-react/src/server/LogOut.tsx +++ b/packages/iconoir-react/src/server/LogOut.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgLogOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLogOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLogOut = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgLogOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LongArrowDownLeft.tsx b/packages/iconoir-react/src/server/LongArrowDownLeft.tsx index 00eb8965..ac0ec3b0 100644 --- a/packages/iconoir-react/src/server/LongArrowDownLeft.tsx +++ b/packages/iconoir-react/src/server/LongArrowDownLeft.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLongArrowDownLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLongArrowDownLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLongArrowDownLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLongArrowDownLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LongArrowDownRight.tsx b/packages/iconoir-react/src/server/LongArrowDownRight.tsx index 6e3755f3..ec2b9f48 100644 --- a/packages/iconoir-react/src/server/LongArrowDownRight.tsx +++ b/packages/iconoir-react/src/server/LongArrowDownRight.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLongArrowDownRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLongArrowDownRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLongArrowDownRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLongArrowDownRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LongArrowLeftDown.tsx b/packages/iconoir-react/src/server/LongArrowLeftDown.tsx index 278b0c9a..ce6edf70 100644 --- a/packages/iconoir-react/src/server/LongArrowLeftDown.tsx +++ b/packages/iconoir-react/src/server/LongArrowLeftDown.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLongArrowLeftDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLongArrowLeftDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLongArrowLeftDown = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLongArrowLeftDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LongArrowLeftUp.tsx b/packages/iconoir-react/src/server/LongArrowLeftUp.tsx index f80b24f3..aae9cdda 100644 --- a/packages/iconoir-react/src/server/LongArrowLeftUp.tsx +++ b/packages/iconoir-react/src/server/LongArrowLeftUp.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLongArrowLeftUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLongArrowLeftUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLongArrowLeftUp = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLongArrowLeftUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LongArrowRightDown.tsx b/packages/iconoir-react/src/server/LongArrowRightDown.tsx index a1dc3d2f..3f1e0ee0 100644 --- a/packages/iconoir-react/src/server/LongArrowRightDown.tsx +++ b/packages/iconoir-react/src/server/LongArrowRightDown.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLongArrowRightDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLongArrowRightDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLongArrowRightDown = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLongArrowRightDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LongArrowRightUp.tsx b/packages/iconoir-react/src/server/LongArrowRightUp.tsx index e2ff3fa4..4ce3a34a 100644 --- a/packages/iconoir-react/src/server/LongArrowRightUp.tsx +++ b/packages/iconoir-react/src/server/LongArrowRightUp.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLongArrowRightUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLongArrowRightUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLongArrowRightUp = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLongArrowRightUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LongArrowRightUp1.tsx b/packages/iconoir-react/src/server/LongArrowRightUp1.tsx index 3821dbe8..923c452b 100644 --- a/packages/iconoir-react/src/server/LongArrowRightUp1.tsx +++ b/packages/iconoir-react/src/server/LongArrowRightUp1.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgLongArrowRightUp1( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgLongArrowRightUp1); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLongArrowRightUp1 = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgLongArrowRightUp1); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LongArrowUpLeft.tsx b/packages/iconoir-react/src/server/LongArrowUpLeft.tsx index f52e3253..1bccfd9d 100644 --- a/packages/iconoir-react/src/server/LongArrowUpLeft.tsx +++ b/packages/iconoir-react/src/server/LongArrowUpLeft.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLongArrowUpLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLongArrowUpLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLongArrowUpLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLongArrowUpLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LongArrowUpRight.tsx b/packages/iconoir-react/src/server/LongArrowUpRight.tsx index 8c2aa409..d5f7ab86 100644 --- a/packages/iconoir-react/src/server/LongArrowUpRight.tsx +++ b/packages/iconoir-react/src/server/LongArrowUpRight.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLongArrowUpRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLongArrowUpRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLongArrowUpRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLongArrowUpRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/LotOfCash.tsx b/packages/iconoir-react/src/server/LotOfCash.tsx index 45a593a3..9a0298df 100644 --- a/packages/iconoir-react/src/server/LotOfCash.tsx +++ b/packages/iconoir-react/src/server/LotOfCash.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgLotOfCash( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLotOfCash); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLotOfCash = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLotOfCash); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Lullaby.tsx b/packages/iconoir-react/src/server/Lullaby.tsx index 3fc369ff..5ee0a6d8 100644 --- a/packages/iconoir-react/src/server/Lullaby.tsx +++ b/packages/iconoir-react/src/server/Lullaby.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgLullaby( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgLullaby); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgLullaby = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgLullaby); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MacControlKey.tsx b/packages/iconoir-react/src/server/MacControlKey.tsx index 8624f11e..87eb47c7 100644 --- a/packages/iconoir-react/src/server/MacControlKey.tsx +++ b/packages/iconoir-react/src/server/MacControlKey.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgMacControlKey( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMacControlKey); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMacControlKey = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMacControlKey); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MacDock.tsx b/packages/iconoir-react/src/server/MacDock.tsx index 5ea6e49e..5e194dbd 100644 --- a/packages/iconoir-react/src/server/MacDock.tsx +++ b/packages/iconoir-react/src/server/MacDock.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgMacDock( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMacDock); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMacDock = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMacDock); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MacOptionKey.tsx b/packages/iconoir-react/src/server/MacOptionKey.tsx index 69c71c39..05e06937 100644 --- a/packages/iconoir-react/src/server/MacOptionKey.tsx +++ b/packages/iconoir-react/src/server/MacOptionKey.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgMacOptionKey( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMacOptionKey); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMacOptionKey = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMacOptionKey); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MacOsWindow.tsx b/packages/iconoir-react/src/server/MacOsWindow.tsx index 413bb967..05058f6b 100644 --- a/packages/iconoir-react/src/server/MacOsWindow.tsx +++ b/packages/iconoir-react/src/server/MacOsWindow.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgMacOsWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMacOsWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMacOsWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMacOsWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MagicWand.tsx b/packages/iconoir-react/src/server/MagicWand.tsx index 00bfc191..29a3d14b 100644 --- a/packages/iconoir-react/src/server/MagicWand.tsx +++ b/packages/iconoir-react/src/server/MagicWand.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgMagicWand( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMagicWand); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMagicWand = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMagicWand); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Magnet.tsx b/packages/iconoir-react/src/server/Magnet.tsx index 3816437d..181103fa 100644 --- a/packages/iconoir-react/src/server/Magnet.tsx +++ b/packages/iconoir-react/src/server/Magnet.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgMagnet( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMagnet); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMagnet = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgMagnet); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MagnetEnergy.tsx b/packages/iconoir-react/src/server/MagnetEnergy.tsx index 8627d84d..0ab45643 100644 --- a/packages/iconoir-react/src/server/MagnetEnergy.tsx +++ b/packages/iconoir-react/src/server/MagnetEnergy.tsx @@ -1,45 +1,41 @@ import * as React from "react"; -function SvgMagnetEnergy( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMagnetEnergy); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMagnetEnergy = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgMagnetEnergy); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Mail.tsx b/packages/iconoir-react/src/server/Mail.tsx index a3c119c8..d57cb7f5 100644 --- a/packages/iconoir-react/src/server/Mail.tsx +++ b/packages/iconoir-react/src/server/Mail.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgMail( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMail); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMail = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgMail); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MailIn.tsx b/packages/iconoir-react/src/server/MailIn.tsx index ec7d28c6..7ad21c1b 100644 --- a/packages/iconoir-react/src/server/MailIn.tsx +++ b/packages/iconoir-react/src/server/MailIn.tsx @@ -1,39 +1,36 @@ import * as React from "react"; -function SvgMailIn( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMailIn); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMailIn = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMailIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MailOpened.tsx b/packages/iconoir-react/src/server/MailOpened.tsx index 8c76f988..43c1feaa 100644 --- a/packages/iconoir-react/src/server/MailOpened.tsx +++ b/packages/iconoir-react/src/server/MailOpened.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgMailOpened( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMailOpened); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMailOpened = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMailOpened); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MailOut.tsx b/packages/iconoir-react/src/server/MailOut.tsx index bdee4efa..bce077bc 100644 --- a/packages/iconoir-react/src/server/MailOut.tsx +++ b/packages/iconoir-react/src/server/MailOut.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgMailOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMailOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMailOut = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMailOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Male.tsx b/packages/iconoir-react/src/server/Male.tsx index 16638c08..a0799e7c 100644 --- a/packages/iconoir-react/src/server/Male.tsx +++ b/packages/iconoir-react/src/server/Male.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgMale( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMale); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMale = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgMale); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Map.tsx b/packages/iconoir-react/src/server/Map.tsx index 8ec483e2..8828607a 100644 --- a/packages/iconoir-react/src/server/Map.tsx +++ b/packages/iconoir-react/src/server/Map.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgMap( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMap); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMap = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgMap); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MapIssue.tsx b/packages/iconoir-react/src/server/MapIssue.tsx index 83551e90..6064273d 100644 --- a/packages/iconoir-react/src/server/MapIssue.tsx +++ b/packages/iconoir-react/src/server/MapIssue.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMapIssue( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMapIssue); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMapIssue = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMapIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MapsArrow.tsx b/packages/iconoir-react/src/server/MapsArrow.tsx index 3925e9c8..c6b93536 100644 --- a/packages/iconoir-react/src/server/MapsArrow.tsx +++ b/packages/iconoir-react/src/server/MapsArrow.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMapsArrow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMapsArrow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMapsArrow = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMapsArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MapsArrowDiagonal.tsx b/packages/iconoir-react/src/server/MapsArrowDiagonal.tsx index 152d5fac..15c9a9cc 100644 --- a/packages/iconoir-react/src/server/MapsArrowDiagonal.tsx +++ b/packages/iconoir-react/src/server/MapsArrowDiagonal.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMapsArrowDiagonal( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMapsArrowDiagonal); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMapsArrowDiagonal = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMapsArrowDiagonal); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MapsArrowIssue.tsx b/packages/iconoir-react/src/server/MapsArrowIssue.tsx index f7c7aa06..4ec01340 100644 --- a/packages/iconoir-react/src/server/MapsArrowIssue.tsx +++ b/packages/iconoir-react/src/server/MapsArrowIssue.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMapsArrowIssue( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMapsArrowIssue); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMapsArrowIssue = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMapsArrowIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MapsGoStraight.tsx b/packages/iconoir-react/src/server/MapsGoStraight.tsx index f05d4266..373c4c49 100644 --- a/packages/iconoir-react/src/server/MapsGoStraight.tsx +++ b/packages/iconoir-react/src/server/MapsGoStraight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMapsGoStraight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMapsGoStraight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMapsGoStraight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMapsGoStraight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MapsTurnBack.tsx b/packages/iconoir-react/src/server/MapsTurnBack.tsx index 587a8df8..93d9b8e3 100644 --- a/packages/iconoir-react/src/server/MapsTurnBack.tsx +++ b/packages/iconoir-react/src/server/MapsTurnBack.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMapsTurnBack( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMapsTurnBack); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMapsTurnBack = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMapsTurnBack); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MapsTurnLeft.tsx b/packages/iconoir-react/src/server/MapsTurnLeft.tsx index e8e06702..2b7a415e 100644 --- a/packages/iconoir-react/src/server/MapsTurnLeft.tsx +++ b/packages/iconoir-react/src/server/MapsTurnLeft.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMapsTurnLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMapsTurnLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMapsTurnLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMapsTurnLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MapsTurnRight.tsx b/packages/iconoir-react/src/server/MapsTurnRight.tsx index 76deedc3..45c05102 100644 --- a/packages/iconoir-react/src/server/MapsTurnRight.tsx +++ b/packages/iconoir-react/src/server/MapsTurnRight.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMapsTurnRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMapsTurnRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMapsTurnRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMapsTurnRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MaskSquare.tsx b/packages/iconoir-react/src/server/MaskSquare.tsx index 6e99f5f8..f556bf5e 100644 --- a/packages/iconoir-react/src/server/MaskSquare.tsx +++ b/packages/iconoir-react/src/server/MaskSquare.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMaskSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMaskSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMaskSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMaskSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MastercardCard.tsx b/packages/iconoir-react/src/server/MastercardCard.tsx index eae39abd..bcda5c24 100644 --- a/packages/iconoir-react/src/server/MastercardCard.tsx +++ b/packages/iconoir-react/src/server/MastercardCard.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgMastercardCard( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMastercardCard); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMastercardCard = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMastercardCard); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MathBook.tsx b/packages/iconoir-react/src/server/MathBook.tsx index f114eeaa..30cd393c 100644 --- a/packages/iconoir-react/src/server/MathBook.tsx +++ b/packages/iconoir-react/src/server/MathBook.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgMathBook( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMathBook); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMathBook = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgMathBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Maximize.tsx b/packages/iconoir-react/src/server/Maximize.tsx index 23349c38..cca01273 100644 --- a/packages/iconoir-react/src/server/Maximize.tsx +++ b/packages/iconoir-react/src/server/Maximize.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMaximize( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMaximize); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMaximize = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMaximize); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Medal.tsx b/packages/iconoir-react/src/server/Medal.tsx index 234d300b..215d098e 100644 --- a/packages/iconoir-react/src/server/Medal.tsx +++ b/packages/iconoir-react/src/server/Medal.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgMedal( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMedal); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMedal = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgMedal); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Medal1St.tsx b/packages/iconoir-react/src/server/Medal1St.tsx index e5a58f03..94bced9d 100644 --- a/packages/iconoir-react/src/server/Medal1St.tsx +++ b/packages/iconoir-react/src/server/Medal1St.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMedal1St( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMedal1St); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMedal1St = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMedal1St); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MediaImage.tsx b/packages/iconoir-react/src/server/MediaImage.tsx index cdf72da8..e141a9fe 100644 --- a/packages/iconoir-react/src/server/MediaImage.tsx +++ b/packages/iconoir-react/src/server/MediaImage.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMediaImage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMediaImage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMediaImage = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMediaImage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MediaImageFolder.tsx b/packages/iconoir-react/src/server/MediaImageFolder.tsx index fd945571..ef939ed3 100644 --- a/packages/iconoir-react/src/server/MediaImageFolder.tsx +++ b/packages/iconoir-react/src/server/MediaImageFolder.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMediaImageFolder( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMediaImageFolder); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMediaImageFolder = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMediaImageFolder); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MediaImageList.tsx b/packages/iconoir-react/src/server/MediaImageList.tsx index d3fcaf9e..bdd5bd8b 100644 --- a/packages/iconoir-react/src/server/MediaImageList.tsx +++ b/packages/iconoir-react/src/server/MediaImageList.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMediaImageList( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMediaImageList); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMediaImageList = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMediaImageList); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MediaVideo.tsx b/packages/iconoir-react/src/server/MediaVideo.tsx index 40fb689f..dc398cbd 100644 --- a/packages/iconoir-react/src/server/MediaVideo.tsx +++ b/packages/iconoir-react/src/server/MediaVideo.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMediaVideo( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMediaVideo); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMediaVideo = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMediaVideo); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MediaVideoFolder.tsx b/packages/iconoir-react/src/server/MediaVideoFolder.tsx index a24a440c..63febbc8 100644 --- a/packages/iconoir-react/src/server/MediaVideoFolder.tsx +++ b/packages/iconoir-react/src/server/MediaVideoFolder.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMediaVideoFolder( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMediaVideoFolder); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMediaVideoFolder = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMediaVideoFolder); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MediaVideoList.tsx b/packages/iconoir-react/src/server/MediaVideoList.tsx index 6a111267..5ad62402 100644 --- a/packages/iconoir-react/src/server/MediaVideoList.tsx +++ b/packages/iconoir-react/src/server/MediaVideoList.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMediaVideoList( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMediaVideoList); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMediaVideoList = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMediaVideoList); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Medium.tsx b/packages/iconoir-react/src/server/Medium.tsx index e7e72cbb..03ab8185 100644 --- a/packages/iconoir-react/src/server/Medium.tsx +++ b/packages/iconoir-react/src/server/Medium.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgMedium( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMedium); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMedium = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgMedium); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MediumPriority.tsx b/packages/iconoir-react/src/server/MediumPriority.tsx index 1839cd3e..61c02fb8 100644 --- a/packages/iconoir-react/src/server/MediumPriority.tsx +++ b/packages/iconoir-react/src/server/MediumPriority.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgMediumPriority( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMediumPriority); + + + + + + + + +); +const ForwardRef = forwardRef(SvgMediumPriority); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Megaphone.tsx b/packages/iconoir-react/src/server/Megaphone.tsx index 25e0a538..dd5defea 100644 --- a/packages/iconoir-react/src/server/Megaphone.tsx +++ b/packages/iconoir-react/src/server/Megaphone.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgMegaphone( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMegaphone); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMegaphone = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMegaphone); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Menu.tsx b/packages/iconoir-react/src/server/Menu.tsx index a85d5cd7..732d2b65 100644 --- a/packages/iconoir-react/src/server/Menu.tsx +++ b/packages/iconoir-react/src/server/Menu.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgMenu( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMenu); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMenu = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgMenu); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MenuScale.tsx b/packages/iconoir-react/src/server/MenuScale.tsx index 52ca9c26..0df9febe 100644 --- a/packages/iconoir-react/src/server/MenuScale.tsx +++ b/packages/iconoir-react/src/server/MenuScale.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMenuScale( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMenuScale); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMenuScale = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMenuScale); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Message.tsx b/packages/iconoir-react/src/server/Message.tsx index fe4173b3..bc7e18dc 100644 --- a/packages/iconoir-react/src/server/Message.tsx +++ b/packages/iconoir-react/src/server/Message.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgMessage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMessage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMessage = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMessage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MessageAlert.tsx b/packages/iconoir-react/src/server/MessageAlert.tsx index 7215a502..b5a9911a 100644 --- a/packages/iconoir-react/src/server/MessageAlert.tsx +++ b/packages/iconoir-react/src/server/MessageAlert.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgMessageAlert( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMessageAlert); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMessageAlert = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMessageAlert); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MessageText.tsx b/packages/iconoir-react/src/server/MessageText.tsx index 76a5dd88..999a7981 100644 --- a/packages/iconoir-react/src/server/MessageText.tsx +++ b/packages/iconoir-react/src/server/MessageText.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgMessageText( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMessageText); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMessageText = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMessageText); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Metro.tsx b/packages/iconoir-react/src/server/Metro.tsx index 013f8299..f870b706 100644 --- a/packages/iconoir-react/src/server/Metro.tsx +++ b/packages/iconoir-react/src/server/Metro.tsx @@ -1,45 +1,42 @@ import * as React from "react"; -function SvgMetro( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMetro); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMetro = (props: SVGProps, ref: Ref) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgMetro); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Mic.tsx b/packages/iconoir-react/src/server/Mic.tsx index cf8351dd..99273f4b 100644 --- a/packages/iconoir-react/src/server/Mic.tsx +++ b/packages/iconoir-react/src/server/Mic.tsx @@ -1,29 +1,26 @@ import * as React from "react"; -function SvgMic( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMic); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMic = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgMic); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MicAdd.tsx b/packages/iconoir-react/src/server/MicAdd.tsx index 158efce3..d63aefc9 100644 --- a/packages/iconoir-react/src/server/MicAdd.tsx +++ b/packages/iconoir-react/src/server/MicAdd.tsx @@ -1,35 +1,32 @@ import * as React from "react"; -function SvgMicAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMicAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMicAdd = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMicAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MicCheck.tsx b/packages/iconoir-react/src/server/MicCheck.tsx index 8ac3b508..6e7a67f5 100644 --- a/packages/iconoir-react/src/server/MicCheck.tsx +++ b/packages/iconoir-react/src/server/MicCheck.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgMicCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMicCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMicCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMicCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MicMute.tsx b/packages/iconoir-react/src/server/MicMute.tsx index 64795e62..b3d0cb26 100644 --- a/packages/iconoir-react/src/server/MicMute.tsx +++ b/packages/iconoir-react/src/server/MicMute.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMicMute( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMicMute); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMicMute = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMicMute); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MicRemove.tsx b/packages/iconoir-react/src/server/MicRemove.tsx index 6168eb07..eb88f682 100644 --- a/packages/iconoir-react/src/server/MicRemove.tsx +++ b/packages/iconoir-react/src/server/MicRemove.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgMicRemove( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMicRemove); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMicRemove = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMicRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MicSpeaking.tsx b/packages/iconoir-react/src/server/MicSpeaking.tsx index a69c11f7..70dc4645 100644 --- a/packages/iconoir-react/src/server/MicSpeaking.tsx +++ b/packages/iconoir-react/src/server/MicSpeaking.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgMicSpeaking( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMicSpeaking); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMicSpeaking = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMicSpeaking); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MicWarning.tsx b/packages/iconoir-react/src/server/MicWarning.tsx index 6fee5043..38573c3a 100644 --- a/packages/iconoir-react/src/server/MicWarning.tsx +++ b/packages/iconoir-react/src/server/MicWarning.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgMicWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMicWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMicWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMicWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Microscope.tsx b/packages/iconoir-react/src/server/Microscope.tsx index 0db0616e..b1a391b0 100644 --- a/packages/iconoir-react/src/server/Microscope.tsx +++ b/packages/iconoir-react/src/server/Microscope.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMicroscope( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMicroscope); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMicroscope = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMicroscope); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Minus.tsx b/packages/iconoir-react/src/server/Minus.tsx index 523662a2..1b892f79 100644 --- a/packages/iconoir-react/src/server/Minus.tsx +++ b/packages/iconoir-react/src/server/Minus.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgMinus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMinus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMinus = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Minus1.tsx b/packages/iconoir-react/src/server/Minus1.tsx index f6307c0f..98e99802 100644 --- a/packages/iconoir-react/src/server/Minus1.tsx +++ b/packages/iconoir-react/src/server/Minus1.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgMinus1( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMinus1); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMinus1 = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgMinus1); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MinusCircle.tsx b/packages/iconoir-react/src/server/MinusCircle.tsx index 61f41b95..9027b94b 100644 --- a/packages/iconoir-react/src/server/MinusCircle.tsx +++ b/packages/iconoir-react/src/server/MinusCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMinusCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMinusCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMinusCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMinusCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MinusHexagon.tsx b/packages/iconoir-react/src/server/MinusHexagon.tsx index db5d52bf..50b330c6 100644 --- a/packages/iconoir-react/src/server/MinusHexagon.tsx +++ b/packages/iconoir-react/src/server/MinusHexagon.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMinusHexagon( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMinusHexagon); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMinusHexagon = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMinusHexagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MinusPinAlt.tsx b/packages/iconoir-react/src/server/MinusPinAlt.tsx index e0ea8aa7..9808a6b7 100644 --- a/packages/iconoir-react/src/server/MinusPinAlt.tsx +++ b/packages/iconoir-react/src/server/MinusPinAlt.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgMinusPinAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMinusPinAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMinusPinAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMinusPinAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MinusSquare.tsx b/packages/iconoir-react/src/server/MinusSquare.tsx index 0d9ae45f..f841f1ca 100644 --- a/packages/iconoir-react/src/server/MinusSquare.tsx +++ b/packages/iconoir-react/src/server/MinusSquare.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMinusSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMinusSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMinusSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMinusSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Mirror.tsx b/packages/iconoir-react/src/server/Mirror.tsx index 3f66d818..f0114976 100644 --- a/packages/iconoir-react/src/server/Mirror.tsx +++ b/packages/iconoir-react/src/server/Mirror.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgMirror( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMirror); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMirror = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgMirror); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MissingFont.tsx b/packages/iconoir-react/src/server/MissingFont.tsx index aa846137..50a8b24f 100644 --- a/packages/iconoir-react/src/server/MissingFont.tsx +++ b/packages/iconoir-react/src/server/MissingFont.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMissingFont( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMissingFont); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMissingFont = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMissingFont); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ModernTv.tsx b/packages/iconoir-react/src/server/ModernTv.tsx index d1d807e8..2a24a85c 100644 --- a/packages/iconoir-react/src/server/ModernTv.tsx +++ b/packages/iconoir-react/src/server/ModernTv.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgModernTv( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgModernTv); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgModernTv = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgModernTv); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ModernTv4K.tsx b/packages/iconoir-react/src/server/ModernTv4K.tsx index 44cd3f3e..b027ff3a 100644 --- a/packages/iconoir-react/src/server/ModernTv4K.tsx +++ b/packages/iconoir-react/src/server/ModernTv4K.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgModernTv4K( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgModernTv4K); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgModernTv4K = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgModernTv4K); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoneySquare.tsx b/packages/iconoir-react/src/server/MoneySquare.tsx index 5d0480c9..03d6259d 100644 --- a/packages/iconoir-react/src/server/MoneySquare.tsx +++ b/packages/iconoir-react/src/server/MoneySquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgMoneySquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoneySquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoneySquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMoneySquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoonSat.tsx b/packages/iconoir-react/src/server/MoonSat.tsx index b60e8895..3cceb5ca 100644 --- a/packages/iconoir-react/src/server/MoonSat.tsx +++ b/packages/iconoir-react/src/server/MoonSat.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgMoonSat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoonSat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoonSat = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMoonSat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoreHoriz.tsx b/packages/iconoir-react/src/server/MoreHoriz.tsx index 5524efeb..25833636 100644 --- a/packages/iconoir-react/src/server/MoreHoriz.tsx +++ b/packages/iconoir-react/src/server/MoreHoriz.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgMoreHoriz( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoreHoriz); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoreHoriz = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMoreHoriz); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoreHorizCircle.tsx b/packages/iconoir-react/src/server/MoreHorizCircle.tsx index a590402c..a0dbe65c 100644 --- a/packages/iconoir-react/src/server/MoreHorizCircle.tsx +++ b/packages/iconoir-react/src/server/MoreHorizCircle.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgMoreHorizCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoreHorizCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoreHorizCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMoreHorizCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoreVert.tsx b/packages/iconoir-react/src/server/MoreVert.tsx index 845967f0..03e5f84a 100644 --- a/packages/iconoir-react/src/server/MoreVert.tsx +++ b/packages/iconoir-react/src/server/MoreVert.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgMoreVert( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoreVert); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoreVert = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMoreVert); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoreVertCircle.tsx b/packages/iconoir-react/src/server/MoreVertCircle.tsx index 28e70eff..2bee7a74 100644 --- a/packages/iconoir-react/src/server/MoreVertCircle.tsx +++ b/packages/iconoir-react/src/server/MoreVertCircle.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgMoreVertCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoreVertCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoreVertCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMoreVertCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Motorcycle.tsx b/packages/iconoir-react/src/server/Motorcycle.tsx index f5854250..3e3cec20 100644 --- a/packages/iconoir-react/src/server/Motorcycle.tsx +++ b/packages/iconoir-react/src/server/Motorcycle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMotorcycle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMotorcycle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMotorcycle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMotorcycle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MouseButtonLeft.tsx b/packages/iconoir-react/src/server/MouseButtonLeft.tsx index 3ed3fc7a..5553fdf6 100644 --- a/packages/iconoir-react/src/server/MouseButtonLeft.tsx +++ b/packages/iconoir-react/src/server/MouseButtonLeft.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgMouseButtonLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMouseButtonLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMouseButtonLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMouseButtonLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MouseButtonRight.tsx b/packages/iconoir-react/src/server/MouseButtonRight.tsx index e6e6fd98..d0786e34 100644 --- a/packages/iconoir-react/src/server/MouseButtonRight.tsx +++ b/packages/iconoir-react/src/server/MouseButtonRight.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgMouseButtonRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMouseButtonRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMouseButtonRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMouseButtonRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MouseScrollWheel.tsx b/packages/iconoir-react/src/server/MouseScrollWheel.tsx index 3b6952f7..16f3afb6 100644 --- a/packages/iconoir-react/src/server/MouseScrollWheel.tsx +++ b/packages/iconoir-react/src/server/MouseScrollWheel.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgMouseScrollWheel( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMouseScrollWheel); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMouseScrollWheel = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMouseScrollWheel); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoveDown.tsx b/packages/iconoir-react/src/server/MoveDown.tsx index d70c15d5..dd909b69 100644 --- a/packages/iconoir-react/src/server/MoveDown.tsx +++ b/packages/iconoir-react/src/server/MoveDown.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMoveDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoveDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoveDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMoveDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoveLeft.tsx b/packages/iconoir-react/src/server/MoveLeft.tsx index f34c9f17..e54a8870 100644 --- a/packages/iconoir-react/src/server/MoveLeft.tsx +++ b/packages/iconoir-react/src/server/MoveLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMoveLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoveLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoveLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMoveLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoveRight.tsx b/packages/iconoir-react/src/server/MoveRight.tsx index f7ddd5ec..e7223e35 100644 --- a/packages/iconoir-react/src/server/MoveRight.tsx +++ b/packages/iconoir-react/src/server/MoveRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMoveRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoveRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoveRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMoveRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoveRuler.tsx b/packages/iconoir-react/src/server/MoveRuler.tsx index 08a12785..5231fc5d 100644 --- a/packages/iconoir-react/src/server/MoveRuler.tsx +++ b/packages/iconoir-react/src/server/MoveRuler.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMoveRuler( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoveRuler); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoveRuler = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMoveRuler); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MoveUp.tsx b/packages/iconoir-react/src/server/MoveUp.tsx index 5cfb0be3..390da258 100644 --- a/packages/iconoir-react/src/server/MoveUp.tsx +++ b/packages/iconoir-react/src/server/MoveUp.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgMoveUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMoveUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMoveUp = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgMoveUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Movie.tsx b/packages/iconoir-react/src/server/Movie.tsx index ed18607c..43d83723 100644 --- a/packages/iconoir-react/src/server/Movie.tsx +++ b/packages/iconoir-react/src/server/Movie.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgMovie( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMovie); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMovie = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgMovie); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MpegFormat.tsx b/packages/iconoir-react/src/server/MpegFormat.tsx index dfcbd0f4..f3968909 100644 --- a/packages/iconoir-react/src/server/MpegFormat.tsx +++ b/packages/iconoir-react/src/server/MpegFormat.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgMpegFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMpegFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMpegFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMpegFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MultiBubble.tsx b/packages/iconoir-react/src/server/MultiBubble.tsx index a11bdae3..751a3905 100644 --- a/packages/iconoir-react/src/server/MultiBubble.tsx +++ b/packages/iconoir-react/src/server/MultiBubble.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMultiBubble( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMultiBubble); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMultiBubble = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMultiBubble); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MultiMacOsWindow.tsx b/packages/iconoir-react/src/server/MultiMacOsWindow.tsx index d51261fc..63ae4255 100644 --- a/packages/iconoir-react/src/server/MultiMacOsWindow.tsx +++ b/packages/iconoir-react/src/server/MultiMacOsWindow.tsx @@ -1,42 +1,42 @@ import * as React from "react"; -function SvgMultiMacOsWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMultiMacOsWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMultiMacOsWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgMultiMacOsWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MultiWindow.tsx b/packages/iconoir-react/src/server/MultiWindow.tsx index caf43640..b02357f3 100644 --- a/packages/iconoir-react/src/server/MultiWindow.tsx +++ b/packages/iconoir-react/src/server/MultiWindow.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgMultiWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMultiWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMultiWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMultiWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MultiplePages.tsx b/packages/iconoir-react/src/server/MultiplePages.tsx index f31ed5c1..79c6c43a 100644 --- a/packages/iconoir-react/src/server/MultiplePages.tsx +++ b/packages/iconoir-react/src/server/MultiplePages.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgMultiplePages( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMultiplePages); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMultiplePages = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMultiplePages); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MultiplePagesAdd.tsx b/packages/iconoir-react/src/server/MultiplePagesAdd.tsx index b47ecbf7..238e2144 100644 --- a/packages/iconoir-react/src/server/MultiplePagesAdd.tsx +++ b/packages/iconoir-react/src/server/MultiplePagesAdd.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgMultiplePagesAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMultiplePagesAdd = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMultiplePagesAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MultiplePagesDelete.tsx b/packages/iconoir-react/src/server/MultiplePagesDelete.tsx index 4c84c252..f55bd4ff 100644 --- a/packages/iconoir-react/src/server/MultiplePagesDelete.tsx +++ b/packages/iconoir-react/src/server/MultiplePagesDelete.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgMultiplePagesDelete( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesDelete); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMultiplePagesDelete = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMultiplePagesDelete); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MultiplePagesEmpty.tsx b/packages/iconoir-react/src/server/MultiplePagesEmpty.tsx index ef33aa3c..7c4b2fcd 100644 --- a/packages/iconoir-react/src/server/MultiplePagesEmpty.tsx +++ b/packages/iconoir-react/src/server/MultiplePagesEmpty.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgMultiplePagesEmpty( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesEmpty); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMultiplePagesEmpty = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMultiplePagesEmpty); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MultiplePagesRemove.tsx b/packages/iconoir-react/src/server/MultiplePagesRemove.tsx index d60fd1f8..b7795974 100644 --- a/packages/iconoir-react/src/server/MultiplePagesRemove.tsx +++ b/packages/iconoir-react/src/server/MultiplePagesRemove.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgMultiplePagesRemove( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMultiplePagesRemove); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMultiplePagesRemove = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgMultiplePagesRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MusicDoubleNote.tsx b/packages/iconoir-react/src/server/MusicDoubleNote.tsx index 91bab16f..e6bec604 100644 --- a/packages/iconoir-react/src/server/MusicDoubleNote.tsx +++ b/packages/iconoir-react/src/server/MusicDoubleNote.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgMusicDoubleNote( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgMusicDoubleNote); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMusicDoubleNote = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgMusicDoubleNote); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MusicDoubleNoteAdd.tsx b/packages/iconoir-react/src/server/MusicDoubleNoteAdd.tsx index 071742ad..6cb9771f 100644 --- a/packages/iconoir-react/src/server/MusicDoubleNoteAdd.tsx +++ b/packages/iconoir-react/src/server/MusicDoubleNoteAdd.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMusicDoubleNoteAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMusicDoubleNoteAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMusicDoubleNoteAdd = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMusicDoubleNoteAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MusicNote.tsx b/packages/iconoir-react/src/server/MusicNote.tsx index d0a1b66a..3df7a2e5 100644 --- a/packages/iconoir-react/src/server/MusicNote.tsx +++ b/packages/iconoir-react/src/server/MusicNote.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMusicNote( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMusicNote); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMusicNote = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMusicNote); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/MusicNoteAdd.tsx b/packages/iconoir-react/src/server/MusicNoteAdd.tsx index 70437ce4..0b92c7e2 100644 --- a/packages/iconoir-react/src/server/MusicNoteAdd.tsx +++ b/packages/iconoir-react/src/server/MusicNoteAdd.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgMusicNoteAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgMusicNoteAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgMusicNoteAdd = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgMusicNoteAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NavArrowDown.tsx b/packages/iconoir-react/src/server/NavArrowDown.tsx index 9a716eb3..e4f8224a 100644 --- a/packages/iconoir-react/src/server/NavArrowDown.tsx +++ b/packages/iconoir-react/src/server/NavArrowDown.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNavArrowDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNavArrowDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNavArrowDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgNavArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NavArrowLeft.tsx b/packages/iconoir-react/src/server/NavArrowLeft.tsx index b91491f6..5dccd4f2 100644 --- a/packages/iconoir-react/src/server/NavArrowLeft.tsx +++ b/packages/iconoir-react/src/server/NavArrowLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNavArrowLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNavArrowLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNavArrowLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgNavArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NavArrowRight.tsx b/packages/iconoir-react/src/server/NavArrowRight.tsx index a79c9056..38539a90 100644 --- a/packages/iconoir-react/src/server/NavArrowRight.tsx +++ b/packages/iconoir-react/src/server/NavArrowRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNavArrowRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNavArrowRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNavArrowRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgNavArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NavArrowUp.tsx b/packages/iconoir-react/src/server/NavArrowUp.tsx index da76591c..be1ccf31 100644 --- a/packages/iconoir-react/src/server/NavArrowUp.tsx +++ b/packages/iconoir-react/src/server/NavArrowUp.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNavArrowUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNavArrowUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNavArrowUp = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgNavArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Navigator.tsx b/packages/iconoir-react/src/server/Navigator.tsx index ad4aae67..744f0c69 100644 --- a/packages/iconoir-react/src/server/Navigator.tsx +++ b/packages/iconoir-react/src/server/Navigator.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNavigator( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNavigator); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNavigator = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNavigator); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NavigatorAlt.tsx b/packages/iconoir-react/src/server/NavigatorAlt.tsx index 262f38db..9ddae903 100644 --- a/packages/iconoir-react/src/server/NavigatorAlt.tsx +++ b/packages/iconoir-react/src/server/NavigatorAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNavigatorAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNavigatorAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNavigatorAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNavigatorAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Neighbourhood.tsx b/packages/iconoir-react/src/server/Neighbourhood.tsx index c921be47..dcf0681a 100644 --- a/packages/iconoir-react/src/server/Neighbourhood.tsx +++ b/packages/iconoir-react/src/server/Neighbourhood.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgNeighbourhood( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNeighbourhood); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNeighbourhood = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNeighbourhood); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Network.tsx b/packages/iconoir-react/src/server/Network.tsx index 09c0242c..ddf3b12c 100644 --- a/packages/iconoir-react/src/server/Network.tsx +++ b/packages/iconoir-react/src/server/Network.tsx @@ -1,36 +1,29 @@ import * as React from "react"; -function SvgNetwork( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNetwork); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNetwork = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgNetwork); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NetworkAlt.tsx b/packages/iconoir-react/src/server/NetworkAlt.tsx index 9900bab0..61f3fcc9 100644 --- a/packages/iconoir-react/src/server/NetworkAlt.tsx +++ b/packages/iconoir-react/src/server/NetworkAlt.tsx @@ -1,47 +1,47 @@ import * as React from "react"; -function SvgNetworkAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNetworkAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNetworkAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgNetworkAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NetworkLeft.tsx b/packages/iconoir-react/src/server/NetworkLeft.tsx index cb4e275b..c27d1292 100644 --- a/packages/iconoir-react/src/server/NetworkLeft.tsx +++ b/packages/iconoir-react/src/server/NetworkLeft.tsx @@ -1,53 +1,53 @@ import * as React from "react"; -function SvgNetworkLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNetworkLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNetworkLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgNetworkLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NetworkRight.tsx b/packages/iconoir-react/src/server/NetworkRight.tsx index 353bf87c..187c0a5c 100644 --- a/packages/iconoir-react/src/server/NetworkRight.tsx +++ b/packages/iconoir-react/src/server/NetworkRight.tsx @@ -1,47 +1,47 @@ import * as React from "react"; -function SvgNetworkRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNetworkRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNetworkRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgNetworkRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NewTab.tsx b/packages/iconoir-react/src/server/NewTab.tsx index 9344efcf..20493fe9 100644 --- a/packages/iconoir-react/src/server/NewTab.tsx +++ b/packages/iconoir-react/src/server/NewTab.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgNewTab( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNewTab); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNewTab = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgNewTab); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NintendoSwitch.tsx b/packages/iconoir-react/src/server/NintendoSwitch.tsx index ed177dd7..47cd8841 100644 --- a/packages/iconoir-react/src/server/NintendoSwitch.tsx +++ b/packages/iconoir-react/src/server/NintendoSwitch.tsx @@ -1,37 +1,37 @@ import * as React from "react"; -function SvgNintendoSwitch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNintendoSwitch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNintendoSwitch = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgNintendoSwitch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Nitrogen.tsx b/packages/iconoir-react/src/server/Nitrogen.tsx index 6cc2f2e6..d9d42199 100644 --- a/packages/iconoir-react/src/server/Nitrogen.tsx +++ b/packages/iconoir-react/src/server/Nitrogen.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgNitrogen( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNitrogen); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNitrogen = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNitrogen); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NoAccessWindow.tsx b/packages/iconoir-react/src/server/NoAccessWindow.tsx index 190ab8b2..e2511ddb 100644 --- a/packages/iconoir-react/src/server/NoAccessWindow.tsx +++ b/packages/iconoir-react/src/server/NoAccessWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgNoAccessWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNoAccessWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNoAccessWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNoAccessWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NoBattery.tsx b/packages/iconoir-react/src/server/NoBattery.tsx index d57fcc75..81b8cde0 100644 --- a/packages/iconoir-react/src/server/NoBattery.tsx +++ b/packages/iconoir-react/src/server/NoBattery.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNoBattery( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNoBattery); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNoBattery = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgNoBattery); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NoCoin.tsx b/packages/iconoir-react/src/server/NoCoin.tsx index 746382f4..cc4d6c02 100644 --- a/packages/iconoir-react/src/server/NoCoin.tsx +++ b/packages/iconoir-react/src/server/NoCoin.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgNoCoin( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNoCoin); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNoCoin = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgNoCoin); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NoCreditCard.tsx b/packages/iconoir-react/src/server/NoCreditCard.tsx index c186740f..aeb314e4 100644 --- a/packages/iconoir-react/src/server/NoCreditCard.tsx +++ b/packages/iconoir-react/src/server/NoCreditCard.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNoCreditCard( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNoCreditCard); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNoCreditCard = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgNoCreditCard); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NoLink.tsx b/packages/iconoir-react/src/server/NoLink.tsx index 12f39176..b042d94a 100644 --- a/packages/iconoir-react/src/server/NoLink.tsx +++ b/packages/iconoir-react/src/server/NoLink.tsx @@ -1,28 +1,31 @@ import * as React from "react"; -function SvgNoLink( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNoLink); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNoLink = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgNoLink); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NoLock.tsx b/packages/iconoir-react/src/server/NoLock.tsx index 0f07cc07..58109581 100644 --- a/packages/iconoir-react/src/server/NoLock.tsx +++ b/packages/iconoir-react/src/server/NoLock.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgNoLock( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNoLock); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNoLock = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgNoLock); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NoSmoking.tsx b/packages/iconoir-react/src/server/NoSmoking.tsx index deb514d0..b2eb54b1 100644 --- a/packages/iconoir-react/src/server/NoSmoking.tsx +++ b/packages/iconoir-react/src/server/NoSmoking.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgNoSmoking( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNoSmoking); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNoSmoking = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgNoSmoking); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NoSmokingCircle.tsx b/packages/iconoir-react/src/server/NoSmokingCircle.tsx index a4c586c1..ac8fa141 100644 --- a/packages/iconoir-react/src/server/NoSmokingCircle.tsx +++ b/packages/iconoir-react/src/server/NoSmokingCircle.tsx @@ -1,44 +1,44 @@ import * as React from "react"; -function SvgNoSmokingCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNoSmokingCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNoSmokingCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgNoSmokingCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NonBinary.tsx b/packages/iconoir-react/src/server/NonBinary.tsx index 3af911ec..4182bade 100644 --- a/packages/iconoir-react/src/server/NonBinary.tsx +++ b/packages/iconoir-react/src/server/NonBinary.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNonBinary( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNonBinary); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNonBinary = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgNonBinary); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Notes.tsx b/packages/iconoir-react/src/server/Notes.tsx index 4da7eea6..2cb078e2 100644 --- a/packages/iconoir-react/src/server/Notes.tsx +++ b/packages/iconoir-react/src/server/Notes.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgNotes( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNotes); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNotes = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgNotes); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Npm.tsx b/packages/iconoir-react/src/server/Npm.tsx index 5e14972b..d5cd88bc 100644 --- a/packages/iconoir-react/src/server/Npm.tsx +++ b/packages/iconoir-react/src/server/Npm.tsx @@ -1,33 +1,30 @@ import * as React from "react"; -function SvgNpm( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNpm); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNpm = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgNpm); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NpmSquare.tsx b/packages/iconoir-react/src/server/NpmSquare.tsx index bea3c431..f77cc4d7 100644 --- a/packages/iconoir-react/src/server/NpmSquare.tsx +++ b/packages/iconoir-react/src/server/NpmSquare.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgNpmSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNpmSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNpmSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgNpmSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Number0Square.tsx b/packages/iconoir-react/src/server/Number0Square.tsx index 0b5f06a6..7738fd36 100644 --- a/packages/iconoir-react/src/server/Number0Square.tsx +++ b/packages/iconoir-react/src/server/Number0Square.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgNumber0Square( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumber0Square); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumber0Square = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNumber0Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Number1Square.tsx b/packages/iconoir-react/src/server/Number1Square.tsx index 43bca6cc..27fcf80a 100644 --- a/packages/iconoir-react/src/server/Number1Square.tsx +++ b/packages/iconoir-react/src/server/Number1Square.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgNumber1Square( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumber1Square); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumber1Square = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNumber1Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Number2Square.tsx b/packages/iconoir-react/src/server/Number2Square.tsx index 97b2b6a3..3d1d6ea7 100644 --- a/packages/iconoir-react/src/server/Number2Square.tsx +++ b/packages/iconoir-react/src/server/Number2Square.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgNumber2Square( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumber2Square); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumber2Square = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNumber2Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Number3Square.tsx b/packages/iconoir-react/src/server/Number3Square.tsx index 6b1ee161..20146c14 100644 --- a/packages/iconoir-react/src/server/Number3Square.tsx +++ b/packages/iconoir-react/src/server/Number3Square.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgNumber3Square( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumber3Square); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumber3Square = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNumber3Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Number4Square.tsx b/packages/iconoir-react/src/server/Number4Square.tsx index 566217ae..d2223acf 100644 --- a/packages/iconoir-react/src/server/Number4Square.tsx +++ b/packages/iconoir-react/src/server/Number4Square.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgNumber4Square( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumber4Square); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumber4Square = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNumber4Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Number5Square.tsx b/packages/iconoir-react/src/server/Number5Square.tsx index 85bf4446..36e24f4b 100644 --- a/packages/iconoir-react/src/server/Number5Square.tsx +++ b/packages/iconoir-react/src/server/Number5Square.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgNumber5Square( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumber5Square); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumber5Square = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNumber5Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Number6Square.tsx b/packages/iconoir-react/src/server/Number6Square.tsx index 644fec40..d3750538 100644 --- a/packages/iconoir-react/src/server/Number6Square.tsx +++ b/packages/iconoir-react/src/server/Number6Square.tsx @@ -1,32 +1,38 @@ import * as React from "react"; -function SvgNumber6Square( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumber6Square); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumber6Square = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgNumber6Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Number7Square.tsx b/packages/iconoir-react/src/server/Number7Square.tsx index 0f2f00d1..4db8ec57 100644 --- a/packages/iconoir-react/src/server/Number7Square.tsx +++ b/packages/iconoir-react/src/server/Number7Square.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgNumber7Square( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumber7Square); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumber7Square = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNumber7Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Number8Square.tsx b/packages/iconoir-react/src/server/Number8Square.tsx index c8b44440..bb5b1d0a 100644 --- a/packages/iconoir-react/src/server/Number8Square.tsx +++ b/packages/iconoir-react/src/server/Number8Square.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgNumber8Square( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumber8Square); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumber8Square = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgNumber8Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Number9Square.tsx b/packages/iconoir-react/src/server/Number9Square.tsx index 1486a064..44c0025d 100644 --- a/packages/iconoir-react/src/server/Number9Square.tsx +++ b/packages/iconoir-react/src/server/Number9Square.tsx @@ -1,32 +1,38 @@ import * as React from "react"; -function SvgNumber9Square( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumber9Square); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumber9Square = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgNumber9Square); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NumberedListLeft.tsx b/packages/iconoir-react/src/server/NumberedListLeft.tsx index d3c55c0e..e00dd8c4 100644 --- a/packages/iconoir-react/src/server/NumberedListLeft.tsx +++ b/packages/iconoir-react/src/server/NumberedListLeft.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNumberedListLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumberedListLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumberedListLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgNumberedListLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/NumberedListRight.tsx b/packages/iconoir-react/src/server/NumberedListRight.tsx index 4df618cf..a8398764 100644 --- a/packages/iconoir-react/src/server/NumberedListRight.tsx +++ b/packages/iconoir-react/src/server/NumberedListRight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgNumberedListRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgNumberedListRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgNumberedListRight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgNumberedListRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Octagon.tsx b/packages/iconoir-react/src/server/Octagon.tsx index c55c8557..f9dab578 100644 --- a/packages/iconoir-react/src/server/Octagon.tsx +++ b/packages/iconoir-react/src/server/Octagon.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgOctagon( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgOctagon); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOctagon = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgOctagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OffTag.tsx b/packages/iconoir-react/src/server/OffTag.tsx index 55d03d0b..ad5d9816 100644 --- a/packages/iconoir-react/src/server/OffTag.tsx +++ b/packages/iconoir-react/src/server/OffTag.tsx @@ -1,33 +1,30 @@ import * as React from "react"; -function SvgOffTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOffTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOffTag = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgOffTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OilIndustry.tsx b/packages/iconoir-react/src/server/OilIndustry.tsx index d0614dd8..2d1cff46 100644 --- a/packages/iconoir-react/src/server/OilIndustry.tsx +++ b/packages/iconoir-react/src/server/OilIndustry.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgOilIndustry( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOilIndustry); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOilIndustry = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgOilIndustry); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Okrs.tsx b/packages/iconoir-react/src/server/Okrs.tsx index c6cf13b9..02016c8d 100644 --- a/packages/iconoir-react/src/server/Okrs.tsx +++ b/packages/iconoir-react/src/server/Okrs.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgOkrs( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgOkrs); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOkrs = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgOkrs); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OnTag.tsx b/packages/iconoir-react/src/server/OnTag.tsx index a5e102ea..590899fc 100644 --- a/packages/iconoir-react/src/server/OnTag.tsx +++ b/packages/iconoir-react/src/server/OnTag.tsx @@ -1,33 +1,30 @@ import * as React from "react"; -function SvgOnTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOnTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOnTag = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgOnTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OneFingerSelectHandGesture.tsx b/packages/iconoir-react/src/server/OneFingerSelectHandGesture.tsx index bb56f2ff..71e58160 100644 --- a/packages/iconoir-react/src/server/OneFingerSelectHandGesture.tsx +++ b/packages/iconoir-react/src/server/OneFingerSelectHandGesture.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgOneFingerSelectHandGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOneFingerSelectHandGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOneFingerSelectHandGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgOneFingerSelectHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OnePointCircle.tsx b/packages/iconoir-react/src/server/OnePointCircle.tsx index 5e3ca5b5..f9152bb1 100644 --- a/packages/iconoir-react/src/server/OnePointCircle.tsx +++ b/packages/iconoir-react/src/server/OnePointCircle.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgOnePointCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOnePointCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOnePointCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgOnePointCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OpenBook.tsx b/packages/iconoir-react/src/server/OpenBook.tsx index c04c0d25..3cfb69db 100644 --- a/packages/iconoir-react/src/server/OpenBook.tsx +++ b/packages/iconoir-react/src/server/OpenBook.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgOpenBook( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOpenBook); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOpenBook = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgOpenBook); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OpenInBrowser.tsx b/packages/iconoir-react/src/server/OpenInBrowser.tsx index c274503f..af6574a6 100644 --- a/packages/iconoir-react/src/server/OpenInBrowser.tsx +++ b/packages/iconoir-react/src/server/OpenInBrowser.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgOpenInBrowser( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgOpenInBrowser); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOpenInBrowser = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgOpenInBrowser); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OpenInWindow.tsx b/packages/iconoir-react/src/server/OpenInWindow.tsx index c027088e..318b5164 100644 --- a/packages/iconoir-react/src/server/OpenInWindow.tsx +++ b/packages/iconoir-react/src/server/OpenInWindow.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgOpenInWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgOpenInWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOpenInWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgOpenInWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OpenNewWindow.tsx b/packages/iconoir-react/src/server/OpenNewWindow.tsx index 890b5ba7..a39eb39b 100644 --- a/packages/iconoir-react/src/server/OpenNewWindow.tsx +++ b/packages/iconoir-react/src/server/OpenNewWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgOpenNewWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOpenNewWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOpenNewWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgOpenNewWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OpenSelectHandGesture.tsx b/packages/iconoir-react/src/server/OpenSelectHandGesture.tsx index c0bfbb18..72cf9bff 100644 --- a/packages/iconoir-react/src/server/OpenSelectHandGesture.tsx +++ b/packages/iconoir-react/src/server/OpenSelectHandGesture.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgOpenSelectHandGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOpenSelectHandGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOpenSelectHandGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgOpenSelectHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OpenVpn.tsx b/packages/iconoir-react/src/server/OpenVpn.tsx index ede84571..fe5f8c88 100644 --- a/packages/iconoir-react/src/server/OpenVpn.tsx +++ b/packages/iconoir-react/src/server/OpenVpn.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgOpenVpn( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgOpenVpn); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOpenVpn = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgOpenVpn); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OrangeHalf.tsx b/packages/iconoir-react/src/server/OrangeHalf.tsx index 8cd1530d..eb081a3f 100644 --- a/packages/iconoir-react/src/server/OrangeHalf.tsx +++ b/packages/iconoir-react/src/server/OrangeHalf.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgOrangeHalf( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgOrangeHalf); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOrangeHalf = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgOrangeHalf); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OrangeSlice.tsx b/packages/iconoir-react/src/server/OrangeSlice.tsx index 37d248c4..d60bd025 100644 --- a/packages/iconoir-react/src/server/OrangeSlice.tsx +++ b/packages/iconoir-react/src/server/OrangeSlice.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgOrangeSlice( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgOrangeSlice); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOrangeSlice = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgOrangeSlice); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OrangeSliceAlt.tsx b/packages/iconoir-react/src/server/OrangeSliceAlt.tsx index 14e2f15b..16592133 100644 --- a/packages/iconoir-react/src/server/OrangeSliceAlt.tsx +++ b/packages/iconoir-react/src/server/OrangeSliceAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgOrangeSliceAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgOrangeSliceAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOrangeSliceAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgOrangeSliceAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OrganicFood.tsx b/packages/iconoir-react/src/server/OrganicFood.tsx index 144d5d9a..15049cb6 100644 --- a/packages/iconoir-react/src/server/OrganicFood.tsx +++ b/packages/iconoir-react/src/server/OrganicFood.tsx @@ -1,34 +1,40 @@ import * as React from "react"; -function SvgOrganicFood( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOrganicFood); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOrganicFood = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgOrganicFood); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OrganicFoodSquare.tsx b/packages/iconoir-react/src/server/OrganicFoodSquare.tsx index 76d4c07e..d999209f 100644 --- a/packages/iconoir-react/src/server/OrganicFoodSquare.tsx +++ b/packages/iconoir-react/src/server/OrganicFoodSquare.tsx @@ -1,34 +1,40 @@ import * as React from "react"; -function SvgOrganicFoodSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOrganicFoodSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOrganicFoodSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgOrganicFoodSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/OrthogonalView.tsx b/packages/iconoir-react/src/server/OrthogonalView.tsx index 9ace26d7..120a6196 100644 --- a/packages/iconoir-react/src/server/OrthogonalView.tsx +++ b/packages/iconoir-react/src/server/OrthogonalView.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgOrthogonalView( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgOrthogonalView); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOrthogonalView = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgOrthogonalView); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Oxygen.tsx b/packages/iconoir-react/src/server/Oxygen.tsx index 2748c973..e96246cf 100644 --- a/packages/iconoir-react/src/server/Oxygen.tsx +++ b/packages/iconoir-react/src/server/Oxygen.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgOxygen( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgOxygen); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgOxygen = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgOxygen); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Package.tsx b/packages/iconoir-react/src/server/Package.tsx index 9fecb55c..3fb6b9e6 100644 --- a/packages/iconoir-react/src/server/Package.tsx +++ b/packages/iconoir-react/src/server/Package.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPackage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPackage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPackage = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPackage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PackageLock.tsx b/packages/iconoir-react/src/server/PackageLock.tsx index 6a372ffe..8337a018 100644 --- a/packages/iconoir-react/src/server/PackageLock.tsx +++ b/packages/iconoir-react/src/server/PackageLock.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPackageLock( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPackageLock); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPackageLock = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPackageLock); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Packages.tsx b/packages/iconoir-react/src/server/Packages.tsx index 71f04ba4..266ad905 100644 --- a/packages/iconoir-react/src/server/Packages.tsx +++ b/packages/iconoir-react/src/server/Packages.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPackages( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPackages); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPackages = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPackages); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pacman.tsx b/packages/iconoir-react/src/server/Pacman.tsx index 10906711..983c86d4 100644 --- a/packages/iconoir-react/src/server/Pacman.tsx +++ b/packages/iconoir-react/src/server/Pacman.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgPacman( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPacman); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPacman = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgPacman); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Page.tsx b/packages/iconoir-react/src/server/Page.tsx index d04688c4..fd757c7a 100644 --- a/packages/iconoir-react/src/server/Page.tsx +++ b/packages/iconoir-react/src/server/Page.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgPage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPage = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgPage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PageDown.tsx b/packages/iconoir-react/src/server/PageDown.tsx index 6d75bcd9..d8f6c1ff 100644 --- a/packages/iconoir-react/src/server/PageDown.tsx +++ b/packages/iconoir-react/src/server/PageDown.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPageDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPageDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPageDown = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPageDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PageEdit.tsx b/packages/iconoir-react/src/server/PageEdit.tsx index b11ff51d..5ce33fa9 100644 --- a/packages/iconoir-react/src/server/PageEdit.tsx +++ b/packages/iconoir-react/src/server/PageEdit.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPageEdit( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPageEdit); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPageEdit = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPageEdit); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PageFlip.tsx b/packages/iconoir-react/src/server/PageFlip.tsx index 7736a7a5..184ebd22 100644 --- a/packages/iconoir-react/src/server/PageFlip.tsx +++ b/packages/iconoir-react/src/server/PageFlip.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPageFlip( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPageFlip); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPageFlip = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPageFlip); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PageLeft.tsx b/packages/iconoir-react/src/server/PageLeft.tsx index b377009d..edb15165 100644 --- a/packages/iconoir-react/src/server/PageLeft.tsx +++ b/packages/iconoir-react/src/server/PageLeft.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPageLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPageLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPageLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPageLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PageRight.tsx b/packages/iconoir-react/src/server/PageRight.tsx index b4b12f7d..5065c983 100644 --- a/packages/iconoir-react/src/server/PageRight.tsx +++ b/packages/iconoir-react/src/server/PageRight.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPageRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPageRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPageRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPageRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PageSearch.tsx b/packages/iconoir-react/src/server/PageSearch.tsx index b4205f72..bda53c01 100644 --- a/packages/iconoir-react/src/server/PageSearch.tsx +++ b/packages/iconoir-react/src/server/PageSearch.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPageSearch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPageSearch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPageSearch = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPageSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PageStar.tsx b/packages/iconoir-react/src/server/PageStar.tsx index 7d48124f..fc2532f7 100644 --- a/packages/iconoir-react/src/server/PageStar.tsx +++ b/packages/iconoir-react/src/server/PageStar.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPageStar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPageStar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPageStar = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPageStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PageUp.tsx b/packages/iconoir-react/src/server/PageUp.tsx index 662c26d3..112c2dbf 100644 --- a/packages/iconoir-react/src/server/PageUp.tsx +++ b/packages/iconoir-react/src/server/PageUp.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgPageUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPageUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPageUp = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgPageUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Palette.tsx b/packages/iconoir-react/src/server/Palette.tsx index a11d1bb3..ac55fe14 100644 --- a/packages/iconoir-react/src/server/Palette.tsx +++ b/packages/iconoir-react/src/server/Palette.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgPalette( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPalette); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPalette = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPalette); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PanoramaEnlarge.tsx b/packages/iconoir-react/src/server/PanoramaEnlarge.tsx index 26500fb8..926bf573 100644 --- a/packages/iconoir-react/src/server/PanoramaEnlarge.tsx +++ b/packages/iconoir-react/src/server/PanoramaEnlarge.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPanoramaEnlarge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPanoramaEnlarge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPanoramaEnlarge = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPanoramaEnlarge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PanoramaReduce.tsx b/packages/iconoir-react/src/server/PanoramaReduce.tsx index 0d45a22e..7c83ca1b 100644 --- a/packages/iconoir-react/src/server/PanoramaReduce.tsx +++ b/packages/iconoir-react/src/server/PanoramaReduce.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPanoramaReduce( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPanoramaReduce); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPanoramaReduce = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPanoramaReduce); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pants.tsx b/packages/iconoir-react/src/server/Pants.tsx index ecf911ad..9579808e 100644 --- a/packages/iconoir-react/src/server/Pants.tsx +++ b/packages/iconoir-react/src/server/Pants.tsx @@ -1,30 +1,27 @@ import * as React from "react"; -function SvgPants( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPants); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPants = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgPants); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PantsAlt.tsx b/packages/iconoir-react/src/server/PantsAlt.tsx index 4ab6d8c7..332e3f56 100644 --- a/packages/iconoir-react/src/server/PantsAlt.tsx +++ b/packages/iconoir-react/src/server/PantsAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPantsAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPantsAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPantsAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPantsAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Parking.tsx b/packages/iconoir-react/src/server/Parking.tsx index 35adc000..f0cd363f 100644 --- a/packages/iconoir-react/src/server/Parking.tsx +++ b/packages/iconoir-react/src/server/Parking.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgParking( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgParking); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgParking = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgParking); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PasswordCursor.tsx b/packages/iconoir-react/src/server/PasswordCursor.tsx index 0bbc0b24..a5c7d770 100644 --- a/packages/iconoir-react/src/server/PasswordCursor.tsx +++ b/packages/iconoir-react/src/server/PasswordCursor.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgPasswordCursor( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPasswordCursor); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPasswordCursor = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPasswordCursor); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PasswordError.tsx b/packages/iconoir-react/src/server/PasswordError.tsx index 8f2636f0..1babaa8e 100644 --- a/packages/iconoir-react/src/server/PasswordError.tsx +++ b/packages/iconoir-react/src/server/PasswordError.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPasswordError( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPasswordError); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPasswordError = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPasswordError); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PasswordPass.tsx b/packages/iconoir-react/src/server/PasswordPass.tsx index c3499079..3b2ccc0a 100644 --- a/packages/iconoir-react/src/server/PasswordPass.tsx +++ b/packages/iconoir-react/src/server/PasswordPass.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPasswordPass( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPasswordPass); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPasswordPass = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPasswordPass); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PasteClipboard.tsx b/packages/iconoir-react/src/server/PasteClipboard.tsx index 700c02dd..2f9c75c1 100644 --- a/packages/iconoir-react/src/server/PasteClipboard.tsx +++ b/packages/iconoir-react/src/server/PasteClipboard.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgPasteClipboard( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPasteClipboard); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPasteClipboard = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPasteClipboard); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PatchHoles3D.tsx b/packages/iconoir-react/src/server/PatchHoles3D.tsx index fb68e4c0..b242530d 100644 --- a/packages/iconoir-react/src/server/PatchHoles3D.tsx +++ b/packages/iconoir-react/src/server/PatchHoles3D.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPatchHoles3D( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPatchHoles3D); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPatchHoles3D = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPatchHoles3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PathArrow.tsx b/packages/iconoir-react/src/server/PathArrow.tsx index d1f5ae7e..642af553 100644 --- a/packages/iconoir-react/src/server/PathArrow.tsx +++ b/packages/iconoir-react/src/server/PathArrow.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPathArrow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPathArrow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPathArrow = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPathArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pause.tsx b/packages/iconoir-react/src/server/Pause.tsx index 6b414c4a..abc99cc8 100644 --- a/packages/iconoir-react/src/server/Pause.tsx +++ b/packages/iconoir-react/src/server/Pause.tsx @@ -1,26 +1,23 @@ import * as React from "react"; -function SvgPause( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPause); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPause = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgPause); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PauseWindow.tsx b/packages/iconoir-react/src/server/PauseWindow.tsx index 4f511fbc..c4f95ca0 100644 --- a/packages/iconoir-react/src/server/PauseWindow.tsx +++ b/packages/iconoir-react/src/server/PauseWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgPauseWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPauseWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPauseWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPauseWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Paypal.tsx b/packages/iconoir-react/src/server/Paypal.tsx index 58e3b06c..c61f803c 100644 --- a/packages/iconoir-react/src/server/Paypal.tsx +++ b/packages/iconoir-react/src/server/Paypal.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgPaypal( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPaypal); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPaypal = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgPaypal); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PcCheck.tsx b/packages/iconoir-react/src/server/PcCheck.tsx index 170119fa..8d165235 100644 --- a/packages/iconoir-react/src/server/PcCheck.tsx +++ b/packages/iconoir-react/src/server/PcCheck.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgPcCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPcCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPcCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPcCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PcFirewall.tsx b/packages/iconoir-react/src/server/PcFirewall.tsx index bcc029be..e6952cbd 100644 --- a/packages/iconoir-react/src/server/PcFirewall.tsx +++ b/packages/iconoir-react/src/server/PcFirewall.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgPcFirewall( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPcFirewall); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPcFirewall = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPcFirewall); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PcMouse.tsx b/packages/iconoir-react/src/server/PcMouse.tsx index 2779a684..08f0d96a 100644 --- a/packages/iconoir-react/src/server/PcMouse.tsx +++ b/packages/iconoir-react/src/server/PcMouse.tsx @@ -1,27 +1,27 @@ import * as React from "react"; -function SvgPcMouse( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPcMouse); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPcMouse = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPcMouse); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PcNoEntry.tsx b/packages/iconoir-react/src/server/PcNoEntry.tsx index e2c8a675..29ec05b0 100644 --- a/packages/iconoir-react/src/server/PcNoEntry.tsx +++ b/packages/iconoir-react/src/server/PcNoEntry.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgPcNoEntry( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPcNoEntry); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPcNoEntry = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPcNoEntry); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PcWarning.tsx b/packages/iconoir-react/src/server/PcWarning.tsx index 0b8ddaa1..e143469b 100644 --- a/packages/iconoir-react/src/server/PcWarning.tsx +++ b/packages/iconoir-react/src/server/PcWarning.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgPcWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPcWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPcWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPcWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PeaceHand.tsx b/packages/iconoir-react/src/server/PeaceHand.tsx index f90c3b33..276e30df 100644 --- a/packages/iconoir-react/src/server/PeaceHand.tsx +++ b/packages/iconoir-react/src/server/PeaceHand.tsx @@ -1,42 +1,42 @@ import * as React from "react"; -function SvgPeaceHand( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPeaceHand); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPeaceHand = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgPeaceHand); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PenConnectBluetooth.tsx b/packages/iconoir-react/src/server/PenConnectBluetooth.tsx index 15b95f2e..459d77ea 100644 --- a/packages/iconoir-react/src/server/PenConnectBluetooth.tsx +++ b/packages/iconoir-react/src/server/PenConnectBluetooth.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgPenConnectBluetooth( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPenConnectBluetooth); + + + + + + + + +); +const ForwardRef = forwardRef(SvgPenConnectBluetooth); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PenConnectWifi.tsx b/packages/iconoir-react/src/server/PenConnectWifi.tsx index 663daa7e..4397bd8c 100644 --- a/packages/iconoir-react/src/server/PenConnectWifi.tsx +++ b/packages/iconoir-react/src/server/PenConnectWifi.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPenConnectWifi( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPenConnectWifi); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPenConnectWifi = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPenConnectWifi); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PenTablet.tsx b/packages/iconoir-react/src/server/PenTablet.tsx index b3894b45..f6179743 100644 --- a/packages/iconoir-react/src/server/PenTablet.tsx +++ b/packages/iconoir-react/src/server/PenTablet.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgPenTablet( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPenTablet); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPenTablet = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPenTablet); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PenTabletConnectUsb.tsx b/packages/iconoir-react/src/server/PenTabletConnectUsb.tsx index ebc006d5..3938e337 100644 --- a/packages/iconoir-react/src/server/PenTabletConnectUsb.tsx +++ b/packages/iconoir-react/src/server/PenTabletConnectUsb.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgPenTabletConnectUsb( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPenTabletConnectUsb); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPenTabletConnectUsb = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPenTabletConnectUsb); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PenTabletConnectWifi.tsx b/packages/iconoir-react/src/server/PenTabletConnectWifi.tsx index 434e675c..00ea7982 100644 --- a/packages/iconoir-react/src/server/PenTabletConnectWifi.tsx +++ b/packages/iconoir-react/src/server/PenTabletConnectWifi.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgPenTabletConnectWifi( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPenTabletConnectWifi); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPenTabletConnectWifi = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPenTabletConnectWifi); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pentagon.tsx b/packages/iconoir-react/src/server/Pentagon.tsx index e2c42624..70ca2c60 100644 --- a/packages/iconoir-react/src/server/Pentagon.tsx +++ b/packages/iconoir-react/src/server/Pentagon.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPentagon( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPentagon); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPentagon = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPentagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PeopleTag.tsx b/packages/iconoir-react/src/server/PeopleTag.tsx index 4f556a00..7365fc37 100644 --- a/packages/iconoir-react/src/server/PeopleTag.tsx +++ b/packages/iconoir-react/src/server/PeopleTag.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgPeopleTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPeopleTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPeopleTag = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPeopleTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PercentRotateOut.tsx b/packages/iconoir-react/src/server/PercentRotateOut.tsx index 41d13ac6..fe3634d5 100644 --- a/packages/iconoir-react/src/server/PercentRotateOut.tsx +++ b/packages/iconoir-react/src/server/PercentRotateOut.tsx @@ -1,53 +1,53 @@ import * as React from "react"; -function SvgPercentRotateOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPercentRotateOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPercentRotateOut = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgPercentRotateOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Percentage.tsx b/packages/iconoir-react/src/server/Percentage.tsx index b684943b..b173a6ae 100644 --- a/packages/iconoir-react/src/server/Percentage.tsx +++ b/packages/iconoir-react/src/server/Percentage.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPercentage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPercentage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPercentage = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPercentage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PercentageCircle.tsx b/packages/iconoir-react/src/server/PercentageCircle.tsx index 7a53700a..16ba2d93 100644 --- a/packages/iconoir-react/src/server/PercentageCircle.tsx +++ b/packages/iconoir-react/src/server/PercentageCircle.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgPercentageCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPercentageCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPercentageCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPercentageCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PercentageSquare.tsx b/packages/iconoir-react/src/server/PercentageSquare.tsx index 2b61af3f..2fd503be 100644 --- a/packages/iconoir-react/src/server/PercentageSquare.tsx +++ b/packages/iconoir-react/src/server/PercentageSquare.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgPercentageSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPercentageSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPercentageSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPercentageSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PerspectiveView.tsx b/packages/iconoir-react/src/server/PerspectiveView.tsx index 708ab516..2463a36f 100644 --- a/packages/iconoir-react/src/server/PerspectiveView.tsx +++ b/packages/iconoir-react/src/server/PerspectiveView.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPerspectiveView( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPerspectiveView); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPerspectiveView = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPerspectiveView); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PharmacyCrossCircle.tsx b/packages/iconoir-react/src/server/PharmacyCrossCircle.tsx index bb178813..03635f66 100644 --- a/packages/iconoir-react/src/server/PharmacyCrossCircle.tsx +++ b/packages/iconoir-react/src/server/PharmacyCrossCircle.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgPharmacyCrossCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPharmacyCrossCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPharmacyCrossCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPharmacyCrossCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PharmacyCrossSquare.tsx b/packages/iconoir-react/src/server/PharmacyCrossSquare.tsx index b58d60bb..f8383c97 100644 --- a/packages/iconoir-react/src/server/PharmacyCrossSquare.tsx +++ b/packages/iconoir-react/src/server/PharmacyCrossSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgPharmacyCrossSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPharmacyCrossSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPharmacyCrossSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPharmacyCrossSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Phone.tsx b/packages/iconoir-react/src/server/Phone.tsx index d75044e5..85c0ce24 100644 --- a/packages/iconoir-react/src/server/Phone.tsx +++ b/packages/iconoir-react/src/server/Phone.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgPhone( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPhone); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPhone = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgPhone); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PhoneAdd.tsx b/packages/iconoir-react/src/server/PhoneAdd.tsx index 71f60a13..c4c29cf6 100644 --- a/packages/iconoir-react/src/server/PhoneAdd.tsx +++ b/packages/iconoir-react/src/server/PhoneAdd.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPhoneAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPhoneAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPhoneAdd = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPhoneAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PhoneDelete.tsx b/packages/iconoir-react/src/server/PhoneDelete.tsx index f2744a1c..1ad63a82 100644 --- a/packages/iconoir-react/src/server/PhoneDelete.tsx +++ b/packages/iconoir-react/src/server/PhoneDelete.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgPhoneDelete( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPhoneDelete); + + + + + + + + +); +const ForwardRef = forwardRef(SvgPhoneDelete); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PhoneDisabled.tsx b/packages/iconoir-react/src/server/PhoneDisabled.tsx index bed3a6a7..608cf77e 100644 --- a/packages/iconoir-react/src/server/PhoneDisabled.tsx +++ b/packages/iconoir-react/src/server/PhoneDisabled.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPhoneDisabled( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPhoneDisabled); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPhoneDisabled = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPhoneDisabled); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PhoneIncome.tsx b/packages/iconoir-react/src/server/PhoneIncome.tsx index 564ee3cc..fa37a2ef 100644 --- a/packages/iconoir-react/src/server/PhoneIncome.tsx +++ b/packages/iconoir-react/src/server/PhoneIncome.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPhoneIncome( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPhoneIncome); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPhoneIncome = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPhoneIncome); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PhoneOutcome.tsx b/packages/iconoir-react/src/server/PhoneOutcome.tsx index bd551213..c6bf22e7 100644 --- a/packages/iconoir-react/src/server/PhoneOutcome.tsx +++ b/packages/iconoir-react/src/server/PhoneOutcome.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPhoneOutcome( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPhoneOutcome); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPhoneOutcome = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPhoneOutcome); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PhonePaused.tsx b/packages/iconoir-react/src/server/PhonePaused.tsx index e85d91f5..c6504481 100644 --- a/packages/iconoir-react/src/server/PhonePaused.tsx +++ b/packages/iconoir-react/src/server/PhonePaused.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPhonePaused( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPhonePaused); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPhonePaused = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPhonePaused); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PhoneRemove.tsx b/packages/iconoir-react/src/server/PhoneRemove.tsx index 86189349..b5a9de71 100644 --- a/packages/iconoir-react/src/server/PhoneRemove.tsx +++ b/packages/iconoir-react/src/server/PhoneRemove.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPhoneRemove( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPhoneRemove); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPhoneRemove = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPhoneRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PiggyBank.tsx b/packages/iconoir-react/src/server/PiggyBank.tsx index caf0c0ff..e300de28 100644 --- a/packages/iconoir-react/src/server/PiggyBank.tsx +++ b/packages/iconoir-react/src/server/PiggyBank.tsx @@ -1,46 +1,46 @@ import * as React from "react"; -function SvgPiggyBank( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPiggyBank); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPiggyBank = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgPiggyBank); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pillow.tsx b/packages/iconoir-react/src/server/Pillow.tsx index 7d306719..1df860d7 100644 --- a/packages/iconoir-react/src/server/Pillow.tsx +++ b/packages/iconoir-react/src/server/Pillow.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgPillow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPillow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPillow = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgPillow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pin.tsx b/packages/iconoir-react/src/server/Pin.tsx index 343a7790..57b65646 100644 --- a/packages/iconoir-react/src/server/Pin.tsx +++ b/packages/iconoir-react/src/server/Pin.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgPin( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPin); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPin = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgPin); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PinAlt.tsx b/packages/iconoir-react/src/server/PinAlt.tsx index 852dc570..bf46242d 100644 --- a/packages/iconoir-react/src/server/PinAlt.tsx +++ b/packages/iconoir-react/src/server/PinAlt.tsx @@ -1,33 +1,30 @@ import * as React from "react"; -function SvgPinAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPinAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPinAlt = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgPinAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PineTree.tsx b/packages/iconoir-react/src/server/PineTree.tsx index ee9b71ca..b8dd9fd1 100644 --- a/packages/iconoir-react/src/server/PineTree.tsx +++ b/packages/iconoir-react/src/server/PineTree.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPineTree( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPineTree); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPineTree = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPineTree); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pinterest.tsx b/packages/iconoir-react/src/server/Pinterest.tsx index 284b14d9..75522c3a 100644 --- a/packages/iconoir-react/src/server/Pinterest.tsx +++ b/packages/iconoir-react/src/server/Pinterest.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPinterest( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPinterest); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPinterest = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPinterest); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pipe3D.tsx b/packages/iconoir-react/src/server/Pipe3D.tsx index aa52e105..5ae3d84c 100644 --- a/packages/iconoir-react/src/server/Pipe3D.tsx +++ b/packages/iconoir-react/src/server/Pipe3D.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgPipe3D( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPipe3D); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPipe3D = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgPipe3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PizzaSlice.tsx b/packages/iconoir-react/src/server/PizzaSlice.tsx index bea618d4..426d906a 100644 --- a/packages/iconoir-react/src/server/PizzaSlice.tsx +++ b/packages/iconoir-react/src/server/PizzaSlice.tsx @@ -1,37 +1,37 @@ import * as React from "react"; -function SvgPizzaSlice( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPizzaSlice); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPizzaSlice = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPizzaSlice); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Planet.tsx b/packages/iconoir-react/src/server/Planet.tsx index e10a55b6..9b939342 100644 --- a/packages/iconoir-react/src/server/Planet.tsx +++ b/packages/iconoir-react/src/server/Planet.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgPlanet( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlanet); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlanet = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgPlanet); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PlanetAlt.tsx b/packages/iconoir-react/src/server/PlanetAlt.tsx index e9200ef5..9697c6ae 100644 --- a/packages/iconoir-react/src/server/PlanetAlt.tsx +++ b/packages/iconoir-react/src/server/PlanetAlt.tsx @@ -1,27 +1,27 @@ import * as React from "react"; -function SvgPlanetAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlanetAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlanetAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPlanetAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PlanetSat.tsx b/packages/iconoir-react/src/server/PlanetSat.tsx index 13ec9cf1..0a51f1d9 100644 --- a/packages/iconoir-react/src/server/PlanetSat.tsx +++ b/packages/iconoir-react/src/server/PlanetSat.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgPlanetSat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlanetSat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlanetSat = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPlanetSat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Planimetry.tsx b/packages/iconoir-react/src/server/Planimetry.tsx index f1b50baa..3c8486db 100644 --- a/packages/iconoir-react/src/server/Planimetry.tsx +++ b/packages/iconoir-react/src/server/Planimetry.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPlanimetry( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlanimetry); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlanimetry = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPlanimetry); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Play.tsx b/packages/iconoir-react/src/server/Play.tsx index 2c7e7ef4..64c6be06 100644 --- a/packages/iconoir-react/src/server/Play.tsx +++ b/packages/iconoir-react/src/server/Play.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgPlay( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlay); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlay = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgPlay); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Playlist.tsx b/packages/iconoir-react/src/server/Playlist.tsx index ac4d46ac..3a686b4a 100644 --- a/packages/iconoir-react/src/server/Playlist.tsx +++ b/packages/iconoir-react/src/server/Playlist.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgPlaylist( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlaylist); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlaylist = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPlaylist); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PlaylistAdd.tsx b/packages/iconoir-react/src/server/PlaylistAdd.tsx index b412dc3f..83d22e1e 100644 --- a/packages/iconoir-react/src/server/PlaylistAdd.tsx +++ b/packages/iconoir-react/src/server/PlaylistAdd.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPlaylistAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlaylistAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlaylistAdd = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPlaylistAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PlaylistPlay.tsx b/packages/iconoir-react/src/server/PlaylistPlay.tsx index be362ea6..1a37b32b 100644 --- a/packages/iconoir-react/src/server/PlaylistPlay.tsx +++ b/packages/iconoir-react/src/server/PlaylistPlay.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPlaylistPlay( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlaylistPlay); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlaylistPlay = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPlaylistPlay); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PlaystationGamepad.tsx b/packages/iconoir-react/src/server/PlaystationGamepad.tsx index c45db4ad..153ada9c 100644 --- a/packages/iconoir-react/src/server/PlaystationGamepad.tsx +++ b/packages/iconoir-react/src/server/PlaystationGamepad.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPlaystationGamepad( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlaystationGamepad); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlaystationGamepad = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPlaystationGamepad); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PlugTypeA.tsx b/packages/iconoir-react/src/server/PlugTypeA.tsx index 9e5fc4b3..ebf238f9 100644 --- a/packages/iconoir-react/src/server/PlugTypeA.tsx +++ b/packages/iconoir-react/src/server/PlugTypeA.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPlugTypeA( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeA); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlugTypeA = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPlugTypeA); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PlugTypeC.tsx b/packages/iconoir-react/src/server/PlugTypeC.tsx index ed806d8c..df126f5e 100644 --- a/packages/iconoir-react/src/server/PlugTypeC.tsx +++ b/packages/iconoir-react/src/server/PlugTypeC.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPlugTypeC( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeC); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlugTypeC = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPlugTypeC); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PlugTypeG.tsx b/packages/iconoir-react/src/server/PlugTypeG.tsx index 87355008..4167222d 100644 --- a/packages/iconoir-react/src/server/PlugTypeG.tsx +++ b/packages/iconoir-react/src/server/PlugTypeG.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPlugTypeG( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeG); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlugTypeG = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPlugTypeG); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PlugTypeL.tsx b/packages/iconoir-react/src/server/PlugTypeL.tsx index adce4024..02ec54cb 100644 --- a/packages/iconoir-react/src/server/PlugTypeL.tsx +++ b/packages/iconoir-react/src/server/PlugTypeL.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPlugTypeL( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlugTypeL); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlugTypeL = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPlugTypeL); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Plus.tsx b/packages/iconoir-react/src/server/Plus.tsx index 480cf6aa..0a5b91ce 100644 --- a/packages/iconoir-react/src/server/Plus.tsx +++ b/packages/iconoir-react/src/server/Plus.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgPlus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPlus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPlus = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgPlus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PngFormat.tsx b/packages/iconoir-react/src/server/PngFormat.tsx index 98f6d3be..21ca4b49 100644 --- a/packages/iconoir-react/src/server/PngFormat.tsx +++ b/packages/iconoir-react/src/server/PngFormat.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgPngFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPngFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPngFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPngFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pocket.tsx b/packages/iconoir-react/src/server/Pocket.tsx index fe8e14bd..c07b3df9 100644 --- a/packages/iconoir-react/src/server/Pocket.tsx +++ b/packages/iconoir-react/src/server/Pocket.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgPocket( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPocket); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPocket = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgPocket); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Podcast.tsx b/packages/iconoir-react/src/server/Podcast.tsx index 6f53794e..a1bed7fe 100644 --- a/packages/iconoir-react/src/server/Podcast.tsx +++ b/packages/iconoir-react/src/server/Podcast.tsx @@ -1,40 +1,46 @@ import * as React from "react"; -function SvgPodcast( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPodcast); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPodcast = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgPodcast); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pokeball.tsx b/packages/iconoir-react/src/server/Pokeball.tsx index 50faeb6b..e1554215 100644 --- a/packages/iconoir-react/src/server/Pokeball.tsx +++ b/packages/iconoir-react/src/server/Pokeball.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgPokeball( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPokeball); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPokeball = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPokeball); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Position.tsx b/packages/iconoir-react/src/server/Position.tsx index 8047263d..46172031 100644 --- a/packages/iconoir-react/src/server/Position.tsx +++ b/packages/iconoir-react/src/server/Position.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPosition( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPosition); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPosition = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPosition); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PositionAlign.tsx b/packages/iconoir-react/src/server/PositionAlign.tsx index 45351419..050e62b3 100644 --- a/packages/iconoir-react/src/server/PositionAlign.tsx +++ b/packages/iconoir-react/src/server/PositionAlign.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPositionAlign( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPositionAlign); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPositionAlign = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPositionAlign); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Post.tsx b/packages/iconoir-react/src/server/Post.tsx index 32f627b3..301028d4 100644 --- a/packages/iconoir-react/src/server/Post.tsx +++ b/packages/iconoir-react/src/server/Post.tsx @@ -1,31 +1,28 @@ import * as React from "react"; -function SvgPost( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPost); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPost = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgPost); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Potion.tsx b/packages/iconoir-react/src/server/Potion.tsx index cc94e8c7..1c4ff3f3 100644 --- a/packages/iconoir-react/src/server/Potion.tsx +++ b/packages/iconoir-react/src/server/Potion.tsx @@ -1,36 +1,33 @@ import * as React from "react"; -function SvgPotion( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPotion); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPotion = (props: SVGProps, ref: Ref) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgPotion); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Pound.tsx b/packages/iconoir-react/src/server/Pound.tsx index b7eadae1..d9100a79 100644 --- a/packages/iconoir-react/src/server/Pound.tsx +++ b/packages/iconoir-react/src/server/Pound.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgPound( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPound); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPound = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgPound); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PrecisionTool.tsx b/packages/iconoir-react/src/server/PrecisionTool.tsx index 5c82e85c..6061e40a 100644 --- a/packages/iconoir-react/src/server/PrecisionTool.tsx +++ b/packages/iconoir-react/src/server/PrecisionTool.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPrecisionTool( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPrecisionTool); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPrecisionTool = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPrecisionTool); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Presentation.tsx b/packages/iconoir-react/src/server/Presentation.tsx index 0f3810e9..fdfb7441 100644 --- a/packages/iconoir-react/src/server/Presentation.tsx +++ b/packages/iconoir-react/src/server/Presentation.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPresentation( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPresentation); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPresentation = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPresentation); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Printer.tsx b/packages/iconoir-react/src/server/Printer.tsx index d3a5aaec..2c6d57cf 100644 --- a/packages/iconoir-react/src/server/Printer.tsx +++ b/packages/iconoir-react/src/server/Printer.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgPrinter( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPrinter); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPrinter = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPrinter); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PrinterAlt.tsx b/packages/iconoir-react/src/server/PrinterAlt.tsx index c0fb7372..c5a210b0 100644 --- a/packages/iconoir-react/src/server/PrinterAlt.tsx +++ b/packages/iconoir-react/src/server/PrinterAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPrinterAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPrinterAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPrinterAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPrinterAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PrintingPage.tsx b/packages/iconoir-react/src/server/PrintingPage.tsx index 26e50d6f..7b3f29d9 100644 --- a/packages/iconoir-react/src/server/PrintingPage.tsx +++ b/packages/iconoir-react/src/server/PrintingPage.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgPrintingPage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPrintingPage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPrintingPage = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgPrintingPage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PriorityDown.tsx b/packages/iconoir-react/src/server/PriorityDown.tsx index b2a56b2b..774dc5e5 100644 --- a/packages/iconoir-react/src/server/PriorityDown.tsx +++ b/packages/iconoir-react/src/server/PriorityDown.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPriorityDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPriorityDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPriorityDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPriorityDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PriorityUp.tsx b/packages/iconoir-react/src/server/PriorityUp.tsx index 626b2195..7b80cd3c 100644 --- a/packages/iconoir-react/src/server/PriorityUp.tsx +++ b/packages/iconoir-react/src/server/PriorityUp.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPriorityUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPriorityUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPriorityUp = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPriorityUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PrivacyPolicy.tsx b/packages/iconoir-react/src/server/PrivacyPolicy.tsx index 4b358214..3b1b2e29 100644 --- a/packages/iconoir-react/src/server/PrivacyPolicy.tsx +++ b/packages/iconoir-react/src/server/PrivacyPolicy.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgPrivacypolicy( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgPrivacypolicy); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPrivacyPolicy = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgPrivacyPolicy); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/PrivateWifi.tsx b/packages/iconoir-react/src/server/PrivateWifi.tsx index e8f625b2..42aca93f 100644 --- a/packages/iconoir-react/src/server/PrivateWifi.tsx +++ b/packages/iconoir-react/src/server/PrivateWifi.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgPrivateWifi( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPrivateWifi); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPrivateWifi = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgPrivateWifi); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ProfileCircle.tsx b/packages/iconoir-react/src/server/ProfileCircle.tsx index d780e6ef..d056592f 100644 --- a/packages/iconoir-react/src/server/ProfileCircle.tsx +++ b/packages/iconoir-react/src/server/ProfileCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgProfileCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgProfileCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgProfileCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgProfileCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Prohibition.tsx b/packages/iconoir-react/src/server/Prohibition.tsx index 369279e5..8b46c815 100644 --- a/packages/iconoir-react/src/server/Prohibition.tsx +++ b/packages/iconoir-react/src/server/Prohibition.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgProhibition( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgProhibition); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgProhibition = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgProhibition); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ProjectCurve3D.tsx b/packages/iconoir-react/src/server/ProjectCurve3D.tsx index ddc2444e..dfa59bd8 100644 --- a/packages/iconoir-react/src/server/ProjectCurve3D.tsx +++ b/packages/iconoir-react/src/server/ProjectCurve3D.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgProjectCurve3D( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgProjectCurve3D); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgProjectCurve3D = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgProjectCurve3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Puzzle.tsx b/packages/iconoir-react/src/server/Puzzle.tsx index f1909710..34633d9d 100644 --- a/packages/iconoir-react/src/server/Puzzle.tsx +++ b/packages/iconoir-react/src/server/Puzzle.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgPuzzle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgPuzzle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgPuzzle = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgPuzzle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/QrCode.tsx b/packages/iconoir-react/src/server/QrCode.tsx index 0c911eaf..4981dac1 100644 --- a/packages/iconoir-react/src/server/QrCode.tsx +++ b/packages/iconoir-react/src/server/QrCode.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgQrCode( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgQrCode); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgQrCode = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgQrCode); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/QuestionMark.tsx b/packages/iconoir-react/src/server/QuestionMark.tsx index e40122b5..d22d3027 100644 --- a/packages/iconoir-react/src/server/QuestionMark.tsx +++ b/packages/iconoir-react/src/server/QuestionMark.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgQuestionMark( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgQuestionMark); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgQuestionMark = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgQuestionMark); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Quote.tsx b/packages/iconoir-react/src/server/Quote.tsx index 3c85471b..f6cc7dec 100644 --- a/packages/iconoir-react/src/server/Quote.tsx +++ b/packages/iconoir-react/src/server/Quote.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgQuote( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgQuote); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgQuote = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgQuote); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/QuoteMessage.tsx b/packages/iconoir-react/src/server/QuoteMessage.tsx index ae558515..a7fccfea 100644 --- a/packages/iconoir-react/src/server/QuoteMessage.tsx +++ b/packages/iconoir-react/src/server/QuoteMessage.tsx @@ -1,31 +1,31 @@ import * as React from "react"; -function SvgQuoteMessage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgQuoteMessage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgQuoteMessage = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgQuoteMessage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Radiation.tsx b/packages/iconoir-react/src/server/Radiation.tsx index 4d5d1604..d33fada5 100644 --- a/packages/iconoir-react/src/server/Radiation.tsx +++ b/packages/iconoir-react/src/server/Radiation.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRadiation( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRadiation); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRadiation = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRadiation); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Radius.tsx b/packages/iconoir-react/src/server/Radius.tsx index 4954f8b5..9273dbed 100644 --- a/packages/iconoir-react/src/server/Radius.tsx +++ b/packages/iconoir-react/src/server/Radius.tsx @@ -1,35 +1,32 @@ import * as React from "react"; -function SvgRadius( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRadius); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRadius = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgRadius); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Rain.tsx b/packages/iconoir-react/src/server/Rain.tsx index d73379ed..e0b11e6f 100644 --- a/packages/iconoir-react/src/server/Rain.tsx +++ b/packages/iconoir-react/src/server/Rain.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgRain( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRain); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRain = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgRain); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RawFormat.tsx b/packages/iconoir-react/src/server/RawFormat.tsx index 6a2db822..0752ca2c 100644 --- a/packages/iconoir-react/src/server/RawFormat.tsx +++ b/packages/iconoir-react/src/server/RawFormat.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgRawFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRawFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRawFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgRawFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ReceiveDollars.tsx b/packages/iconoir-react/src/server/ReceiveDollars.tsx index f4cc71e7..47a9320d 100644 --- a/packages/iconoir-react/src/server/ReceiveDollars.tsx +++ b/packages/iconoir-react/src/server/ReceiveDollars.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgReceiveDollars( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgReceiveDollars); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReceiveDollars = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgReceiveDollars); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ReceiveEuros.tsx b/packages/iconoir-react/src/server/ReceiveEuros.tsx index 6131ee93..f659b1d7 100644 --- a/packages/iconoir-react/src/server/ReceiveEuros.tsx +++ b/packages/iconoir-react/src/server/ReceiveEuros.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgReceiveEuros( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgReceiveEuros); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReceiveEuros = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgReceiveEuros); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ReceivePounds.tsx b/packages/iconoir-react/src/server/ReceivePounds.tsx index bbf2f10b..263e7174 100644 --- a/packages/iconoir-react/src/server/ReceivePounds.tsx +++ b/packages/iconoir-react/src/server/ReceivePounds.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgReceivePounds( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgReceivePounds); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReceivePounds = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgReceivePounds); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ReceiveYens.tsx b/packages/iconoir-react/src/server/ReceiveYens.tsx index 87f02dca..b4b20626 100644 --- a/packages/iconoir-react/src/server/ReceiveYens.tsx +++ b/packages/iconoir-react/src/server/ReceiveYens.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgReceiveYens( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgReceiveYens); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReceiveYens = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgReceiveYens); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Redo.tsx b/packages/iconoir-react/src/server/Redo.tsx index 7d81614c..00d235cb 100644 --- a/packages/iconoir-react/src/server/Redo.tsx +++ b/packages/iconoir-react/src/server/Redo.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgRedo( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRedo); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRedo = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgRedo); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RedoAction.tsx b/packages/iconoir-react/src/server/RedoAction.tsx index f973d22f..7294589b 100644 --- a/packages/iconoir-react/src/server/RedoAction.tsx +++ b/packages/iconoir-react/src/server/RedoAction.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgRedoAction( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRedoAction); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRedoAction = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRedoAction); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RedoCircle.tsx b/packages/iconoir-react/src/server/RedoCircle.tsx index 901323f0..0e103abb 100644 --- a/packages/iconoir-react/src/server/RedoCircle.tsx +++ b/packages/iconoir-react/src/server/RedoCircle.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgRedoCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRedoCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRedoCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgRedoCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Reduce.tsx b/packages/iconoir-react/src/server/Reduce.tsx index 67f144e5..25c4f3d7 100644 --- a/packages/iconoir-react/src/server/Reduce.tsx +++ b/packages/iconoir-react/src/server/Reduce.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgReduce( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgReduce); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReduce = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgReduce); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ReduceRoundArrow.tsx b/packages/iconoir-react/src/server/ReduceRoundArrow.tsx index 6351252a..a4a79a9c 100644 --- a/packages/iconoir-react/src/server/ReduceRoundArrow.tsx +++ b/packages/iconoir-react/src/server/ReduceRoundArrow.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgReduceRoundArrow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgReduceRoundArrow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReduceRoundArrow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgReduceRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Refresh.tsx b/packages/iconoir-react/src/server/Refresh.tsx index d849ab19..26e56338 100644 --- a/packages/iconoir-react/src/server/Refresh.tsx +++ b/packages/iconoir-react/src/server/Refresh.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgRefresh( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRefresh); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRefresh = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRefresh); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RefreshCircular.tsx b/packages/iconoir-react/src/server/RefreshCircular.tsx index 8676197b..5b45e650 100644 --- a/packages/iconoir-react/src/server/RefreshCircular.tsx +++ b/packages/iconoir-react/src/server/RefreshCircular.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgRefreshCircular( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRefreshCircular); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRefreshCircular = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgRefreshCircular); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RefreshDouble.tsx b/packages/iconoir-react/src/server/RefreshDouble.tsx index 04d4a215..fcce6448 100644 --- a/packages/iconoir-react/src/server/RefreshDouble.tsx +++ b/packages/iconoir-react/src/server/RefreshDouble.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgRefreshDouble( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRefreshDouble); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRefreshDouble = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgRefreshDouble); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ReloadWindow.tsx b/packages/iconoir-react/src/server/ReloadWindow.tsx index 29c62339..6bfc3909 100644 --- a/packages/iconoir-react/src/server/ReloadWindow.tsx +++ b/packages/iconoir-react/src/server/ReloadWindow.tsx @@ -1,45 +1,45 @@ import * as React from "react"; -function SvgReloadWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgReloadWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReloadWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgReloadWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ReminderHandGesture.tsx b/packages/iconoir-react/src/server/ReminderHandGesture.tsx index 1cd98755..0097632f 100644 --- a/packages/iconoir-react/src/server/ReminderHandGesture.tsx +++ b/packages/iconoir-react/src/server/ReminderHandGesture.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgReminderHandGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgReminderHandGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReminderHandGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgReminderHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveDatabaseScript.tsx b/packages/iconoir-react/src/server/RemoveDatabaseScript.tsx index e79363bc..e4110c82 100644 --- a/packages/iconoir-react/src/server/RemoveDatabaseScript.tsx +++ b/packages/iconoir-react/src/server/RemoveDatabaseScript.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRemoveDatabaseScript( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveDatabaseScript); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveDatabaseScript = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRemoveDatabaseScript); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveFolder.tsx b/packages/iconoir-react/src/server/RemoveFolder.tsx index 9b0aabae..480110ba 100644 --- a/packages/iconoir-react/src/server/RemoveFolder.tsx +++ b/packages/iconoir-react/src/server/RemoveFolder.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRemoveFolder( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveFolder); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveFolder = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRemoveFolder); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveFrame.tsx b/packages/iconoir-react/src/server/RemoveFrame.tsx index 309c9224..eb266dba 100644 --- a/packages/iconoir-react/src/server/RemoveFrame.tsx +++ b/packages/iconoir-react/src/server/RemoveFrame.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgRemoveFrame( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveFrame); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveFrame = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRemoveFrame); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveFromCart.tsx b/packages/iconoir-react/src/server/RemoveFromCart.tsx index 20bd18d1..bc858c93 100644 --- a/packages/iconoir-react/src/server/RemoveFromCart.tsx +++ b/packages/iconoir-react/src/server/RemoveFromCart.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRemoveFromCart( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveFromCart); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveFromCart = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRemoveFromCart); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveKeyframe.tsx b/packages/iconoir-react/src/server/RemoveKeyframe.tsx index 9d8925a1..6c18de49 100644 --- a/packages/iconoir-react/src/server/RemoveKeyframe.tsx +++ b/packages/iconoir-react/src/server/RemoveKeyframe.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRemoveKeyframe( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveKeyframe); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveKeyframe = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRemoveKeyframe); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveKeyframeAlt.tsx b/packages/iconoir-react/src/server/RemoveKeyframeAlt.tsx index 5116147e..15b6b795 100644 --- a/packages/iconoir-react/src/server/RemoveKeyframeAlt.tsx +++ b/packages/iconoir-react/src/server/RemoveKeyframeAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRemoveKeyframeAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveKeyframeAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveKeyframeAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRemoveKeyframeAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveKeyframes.tsx b/packages/iconoir-react/src/server/RemoveKeyframes.tsx index 014feea2..1c150577 100644 --- a/packages/iconoir-react/src/server/RemoveKeyframes.tsx +++ b/packages/iconoir-react/src/server/RemoveKeyframes.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgRemoveKeyframes( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveKeyframes); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveKeyframes = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgRemoveKeyframes); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveLink.tsx b/packages/iconoir-react/src/server/RemoveLink.tsx index f1bc99fd..c34c1646 100644 --- a/packages/iconoir-react/src/server/RemoveLink.tsx +++ b/packages/iconoir-react/src/server/RemoveLink.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgRemoveLink( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveLink); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveLink = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRemoveLink); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveMediaImage.tsx b/packages/iconoir-react/src/server/RemoveMediaImage.tsx index 698c78e5..121e9414 100644 --- a/packages/iconoir-react/src/server/RemoveMediaImage.tsx +++ b/packages/iconoir-react/src/server/RemoveMediaImage.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgRemoveMediaImage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveMediaImage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveMediaImage = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRemoveMediaImage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveMediaVideo.tsx b/packages/iconoir-react/src/server/RemoveMediaVideo.tsx index fc860af0..b461d6a4 100644 --- a/packages/iconoir-react/src/server/RemoveMediaVideo.tsx +++ b/packages/iconoir-react/src/server/RemoveMediaVideo.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgRemoveMediaVideo( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveMediaVideo); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveMediaVideo = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRemoveMediaVideo); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemovePage.tsx b/packages/iconoir-react/src/server/RemovePage.tsx index f83508a2..1b98f21e 100644 --- a/packages/iconoir-react/src/server/RemovePage.tsx +++ b/packages/iconoir-react/src/server/RemovePage.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgRemovePage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemovePage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemovePage = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRemovePage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemovePageAlt.tsx b/packages/iconoir-react/src/server/RemovePageAlt.tsx index f466581c..d4421cf7 100644 --- a/packages/iconoir-react/src/server/RemovePageAlt.tsx +++ b/packages/iconoir-react/src/server/RemovePageAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgRemovePageAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemovePageAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemovePageAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRemovePageAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemovePin.tsx b/packages/iconoir-react/src/server/RemovePin.tsx index 9ce90b85..959b621f 100644 --- a/packages/iconoir-react/src/server/RemovePin.tsx +++ b/packages/iconoir-react/src/server/RemovePin.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRemovePin( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemovePin); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemovePin = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRemovePin); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemovePinAlt.tsx b/packages/iconoir-react/src/server/RemovePinAlt.tsx index ad658442..a5363e54 100644 --- a/packages/iconoir-react/src/server/RemovePinAlt.tsx +++ b/packages/iconoir-react/src/server/RemovePinAlt.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgRemovePinAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemovePinAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemovePinAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgRemovePinAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveSelection.tsx b/packages/iconoir-react/src/server/RemoveSelection.tsx index ad69adba..64e08434 100644 --- a/packages/iconoir-react/src/server/RemoveSelection.tsx +++ b/packages/iconoir-react/src/server/RemoveSelection.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRemoveSelection( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveSelection); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveSelection = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRemoveSelection); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveSquare.tsx b/packages/iconoir-react/src/server/RemoveSquare.tsx index d7e59af4..4294ab86 100644 --- a/packages/iconoir-react/src/server/RemoveSquare.tsx +++ b/packages/iconoir-react/src/server/RemoveSquare.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRemoveSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRemoveSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRemoveSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RemoveUser.tsx b/packages/iconoir-react/src/server/RemoveUser.tsx index 95be45db..1c19cce6 100644 --- a/packages/iconoir-react/src/server/RemoveUser.tsx +++ b/packages/iconoir-react/src/server/RemoveUser.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgRemoveUser( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRemoveUser); + + + + + + + + +); +const ForwardRef = forwardRef(SvgRemoveUser); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Repeat.tsx b/packages/iconoir-react/src/server/Repeat.tsx index be8d4c66..14fdae96 100644 --- a/packages/iconoir-react/src/server/Repeat.tsx +++ b/packages/iconoir-react/src/server/Repeat.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgRepeat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRepeat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRepeat = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgRepeat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RepeatOnce.tsx b/packages/iconoir-react/src/server/RepeatOnce.tsx index 5fb8563c..cc46791b 100644 --- a/packages/iconoir-react/src/server/RepeatOnce.tsx +++ b/packages/iconoir-react/src/server/RepeatOnce.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgRepeatOnce( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRepeatOnce); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRepeatOnce = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRepeatOnce); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Reply.tsx b/packages/iconoir-react/src/server/Reply.tsx index db472f7e..c736408b 100644 --- a/packages/iconoir-react/src/server/Reply.tsx +++ b/packages/iconoir-react/src/server/Reply.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgReply( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgReply); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReply = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgReply); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ReplyToMessage.tsx b/packages/iconoir-react/src/server/ReplyToMessage.tsx index 10926df6..fd54cb62 100644 --- a/packages/iconoir-react/src/server/ReplyToMessage.tsx +++ b/packages/iconoir-react/src/server/ReplyToMessage.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgReplyToMessage( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgReplyToMessage); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReplyToMessage = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgReplyToMessage); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ReportColumns.tsx b/packages/iconoir-react/src/server/ReportColumns.tsx index 8cc5880c..c29ca97b 100644 --- a/packages/iconoir-react/src/server/ReportColumns.tsx +++ b/packages/iconoir-react/src/server/ReportColumns.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgReportColumns( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgReportColumns); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReportColumns = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgReportColumns); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Reports.tsx b/packages/iconoir-react/src/server/Reports.tsx index 07d94dec..05800a81 100644 --- a/packages/iconoir-react/src/server/Reports.tsx +++ b/packages/iconoir-react/src/server/Reports.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgReports( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgReports); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgReports = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgReports); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Repository.tsx b/packages/iconoir-react/src/server/Repository.tsx index a7dca007..538ad5da 100644 --- a/packages/iconoir-react/src/server/Repository.tsx +++ b/packages/iconoir-react/src/server/Repository.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgRepository( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRepository); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRepository = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgRepository); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Restart.tsx b/packages/iconoir-react/src/server/Restart.tsx index 700383d9..8becff8f 100644 --- a/packages/iconoir-react/src/server/Restart.tsx +++ b/packages/iconoir-react/src/server/Restart.tsx @@ -1,36 +1,36 @@ import * as React from "react"; -function SvgRestart( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRestart); + + + + + + + + + +); +const ForwardRef = forwardRef(SvgRestart); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Rewind.tsx b/packages/iconoir-react/src/server/Rewind.tsx index 84d042c7..415c6aba 100644 --- a/packages/iconoir-react/src/server/Rewind.tsx +++ b/packages/iconoir-react/src/server/Rewind.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgRewind( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRewind); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRewind = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgRewind); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Rhombus.tsx b/packages/iconoir-react/src/server/Rhombus.tsx index b14a898d..9270d705 100644 --- a/packages/iconoir-react/src/server/Rhombus.tsx +++ b/packages/iconoir-react/src/server/Rhombus.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRhombus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRhombus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRhombus = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRhombus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RightRoundArrow.tsx b/packages/iconoir-react/src/server/RightRoundArrow.tsx index 27c4729a..c6c7541d 100644 --- a/packages/iconoir-react/src/server/RightRoundArrow.tsx +++ b/packages/iconoir-react/src/server/RightRoundArrow.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgRightRoundArrow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRightRoundArrow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRightRoundArrow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRightRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Rings.tsx b/packages/iconoir-react/src/server/Rings.tsx index 113e6698..1d06712d 100644 --- a/packages/iconoir-react/src/server/Rings.tsx +++ b/packages/iconoir-react/src/server/Rings.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgRings( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRings); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRings = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgRings); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Rocket.tsx b/packages/iconoir-react/src/server/Rocket.tsx index 4a521843..18912ae3 100644 --- a/packages/iconoir-react/src/server/Rocket.tsx +++ b/packages/iconoir-react/src/server/Rocket.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgRocket( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRocket); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRocket = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgRocket); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Rook.tsx b/packages/iconoir-react/src/server/Rook.tsx index 8183b386..a2681f62 100644 --- a/packages/iconoir-react/src/server/Rook.tsx +++ b/packages/iconoir-react/src/server/Rook.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgRook( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRook); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRook = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgRook); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RotateCameraLeft.tsx b/packages/iconoir-react/src/server/RotateCameraLeft.tsx index b7596a29..a03b4224 100644 --- a/packages/iconoir-react/src/server/RotateCameraLeft.tsx +++ b/packages/iconoir-react/src/server/RotateCameraLeft.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgRotateCameraLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRotateCameraLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRotateCameraLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgRotateCameraLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RotateCameraRight.tsx b/packages/iconoir-react/src/server/RotateCameraRight.tsx index ab292968..6c1c3bdc 100644 --- a/packages/iconoir-react/src/server/RotateCameraRight.tsx +++ b/packages/iconoir-react/src/server/RotateCameraRight.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgRotateCameraRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRotateCameraRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRotateCameraRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgRotateCameraRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RoundFlask.tsx b/packages/iconoir-react/src/server/RoundFlask.tsx index fd5ac3af..1c7691fb 100644 --- a/packages/iconoir-react/src/server/RoundFlask.tsx +++ b/packages/iconoir-react/src/server/RoundFlask.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgRoundFlask( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRoundFlask); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRoundFlask = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRoundFlask); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RoundedMirror.tsx b/packages/iconoir-react/src/server/RoundedMirror.tsx index 3794cc8e..74975cf2 100644 --- a/packages/iconoir-react/src/server/RoundedMirror.tsx +++ b/packages/iconoir-react/src/server/RoundedMirror.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRoundedMirror( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRoundedMirror); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRoundedMirror = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRoundedMirror); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RssFeed.tsx b/packages/iconoir-react/src/server/RssFeed.tsx index 8e8fa61d..468a3896 100644 --- a/packages/iconoir-react/src/server/RssFeed.tsx +++ b/packages/iconoir-react/src/server/RssFeed.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRssFeed( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRssFeed); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRssFeed = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRssFeed); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RssFeedTag.tsx b/packages/iconoir-react/src/server/RssFeedTag.tsx index ceb3196d..a08920cc 100644 --- a/packages/iconoir-react/src/server/RssFeedTag.tsx +++ b/packages/iconoir-react/src/server/RssFeedTag.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgRssFeedTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRssFeedTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRssFeedTag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRssFeedTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RubikCube.tsx b/packages/iconoir-react/src/server/RubikCube.tsx index 5cbbd8c3..1603e536 100644 --- a/packages/iconoir-react/src/server/RubikCube.tsx +++ b/packages/iconoir-react/src/server/RubikCube.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRubikCube( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRubikCube); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRubikCube = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRubikCube); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Ruler.tsx b/packages/iconoir-react/src/server/Ruler.tsx index ff1218a1..cd53cc54 100644 --- a/packages/iconoir-react/src/server/Ruler.tsx +++ b/packages/iconoir-react/src/server/Ruler.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgRuler( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRuler); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRuler = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgRuler); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RulerAdd.tsx b/packages/iconoir-react/src/server/RulerAdd.tsx index e7612189..18f498f5 100644 --- a/packages/iconoir-react/src/server/RulerAdd.tsx +++ b/packages/iconoir-react/src/server/RulerAdd.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRulerAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRulerAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRulerAdd = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRulerAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RulerCombine.tsx b/packages/iconoir-react/src/server/RulerCombine.tsx index 14e09530..1d1f7d5d 100644 --- a/packages/iconoir-react/src/server/RulerCombine.tsx +++ b/packages/iconoir-react/src/server/RulerCombine.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRulerCombine( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRulerCombine); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRulerCombine = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRulerCombine); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/RulerRemove.tsx b/packages/iconoir-react/src/server/RulerRemove.tsx index e459f517..086fb06c 100644 --- a/packages/iconoir-react/src/server/RulerRemove.tsx +++ b/packages/iconoir-react/src/server/RulerRemove.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgRulerRemove( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgRulerRemove); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRulerRemove = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgRulerRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Running.tsx b/packages/iconoir-react/src/server/Running.tsx index bdfae460..8b772a91 100644 --- a/packages/iconoir-react/src/server/Running.tsx +++ b/packages/iconoir-react/src/server/Running.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgRunning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgRunning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgRunning = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgRunning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Safari.tsx b/packages/iconoir-react/src/server/Safari.tsx index 0ba3feea..fd347bb6 100644 --- a/packages/iconoir-react/src/server/Safari.tsx +++ b/packages/iconoir-react/src/server/Safari.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgSafari( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSafari); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSafari = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgSafari); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Safe.tsx b/packages/iconoir-react/src/server/Safe.tsx index 715de224..100ecb2f 100644 --- a/packages/iconoir-react/src/server/Safe.tsx +++ b/packages/iconoir-react/src/server/Safe.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgSafe( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSafe); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSafe = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgSafe); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SafeArrowLeft.tsx b/packages/iconoir-react/src/server/SafeArrowLeft.tsx index aa29b24b..e4b5cd30 100644 --- a/packages/iconoir-react/src/server/SafeArrowLeft.tsx +++ b/packages/iconoir-react/src/server/SafeArrowLeft.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgSafeArrowLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSafeArrowLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSafeArrowLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSafeArrowLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SafeArrowRight.tsx b/packages/iconoir-react/src/server/SafeArrowRight.tsx index 4fc6fb2a..f1e31b81 100644 --- a/packages/iconoir-react/src/server/SafeArrowRight.tsx +++ b/packages/iconoir-react/src/server/SafeArrowRight.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgSafeArrowRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSafeArrowRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSafeArrowRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSafeArrowRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SafeOpen.tsx b/packages/iconoir-react/src/server/SafeOpen.tsx index 9af6a08c..664d7f4c 100644 --- a/packages/iconoir-react/src/server/SafeOpen.tsx +++ b/packages/iconoir-react/src/server/SafeOpen.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgSafeOpen( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSafeOpen); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSafeOpen = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgSafeOpen); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Sandals.tsx b/packages/iconoir-react/src/server/Sandals.tsx index 106250ca..2bfd04f9 100644 --- a/packages/iconoir-react/src/server/Sandals.tsx +++ b/packages/iconoir-react/src/server/Sandals.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSandals( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSandals); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSandals = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSandals); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SaveActionFloppy.tsx b/packages/iconoir-react/src/server/SaveActionFloppy.tsx index c1ad7d7d..4bb8b44b 100644 --- a/packages/iconoir-react/src/server/SaveActionFloppy.tsx +++ b/packages/iconoir-react/src/server/SaveActionFloppy.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSaveActionFloppy( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSaveActionFloppy); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSaveActionFloppy = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSaveActionFloppy); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SaveFloppyDisk.tsx b/packages/iconoir-react/src/server/SaveFloppyDisk.tsx index bfe2ae5e..9af2202b 100644 --- a/packages/iconoir-react/src/server/SaveFloppyDisk.tsx +++ b/packages/iconoir-react/src/server/SaveFloppyDisk.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgSaveFloppyDisk( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSaveFloppyDisk); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSaveFloppyDisk = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSaveFloppyDisk); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ScaleFrameEnlarge.tsx b/packages/iconoir-react/src/server/ScaleFrameEnlarge.tsx index c14a5606..18e7977c 100644 --- a/packages/iconoir-react/src/server/ScaleFrameEnlarge.tsx +++ b/packages/iconoir-react/src/server/ScaleFrameEnlarge.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgScaleFrameEnlarge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgScaleFrameEnlarge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgScaleFrameEnlarge = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgScaleFrameEnlarge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ScaleFrameReduce.tsx b/packages/iconoir-react/src/server/ScaleFrameReduce.tsx index a1369160..cf052b13 100644 --- a/packages/iconoir-react/src/server/ScaleFrameReduce.tsx +++ b/packages/iconoir-react/src/server/ScaleFrameReduce.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgScaleFrameReduce( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgScaleFrameReduce); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgScaleFrameReduce = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgScaleFrameReduce); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ScanBarcode.tsx b/packages/iconoir-react/src/server/ScanBarcode.tsx index bcb61f07..b27afd6e 100644 --- a/packages/iconoir-react/src/server/ScanBarcode.tsx +++ b/packages/iconoir-react/src/server/ScanBarcode.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgScanBarcode( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgScanBarcode); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgScanBarcode = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgScanBarcode); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ScanQrCode.tsx b/packages/iconoir-react/src/server/ScanQrCode.tsx index 21e194f9..9c97ddec 100644 --- a/packages/iconoir-react/src/server/ScanQrCode.tsx +++ b/packages/iconoir-react/src/server/ScanQrCode.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgScanQrCode( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgScanQrCode); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgScanQrCode = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgScanQrCode); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Scanning.tsx b/packages/iconoir-react/src/server/Scanning.tsx index aec1dbc8..c042eebb 100644 --- a/packages/iconoir-react/src/server/Scanning.tsx +++ b/packages/iconoir-react/src/server/Scanning.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgScanning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgScanning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgScanning = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgScanning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Scarf.tsx b/packages/iconoir-react/src/server/Scarf.tsx index b818c6f3..74153cfc 100644 --- a/packages/iconoir-react/src/server/Scarf.tsx +++ b/packages/iconoir-react/src/server/Scarf.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgScarf( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgScarf); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgScarf = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgScarf); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Scissor.tsx b/packages/iconoir-react/src/server/Scissor.tsx index 4b0cfccd..9355976a 100644 --- a/packages/iconoir-react/src/server/Scissor.tsx +++ b/packages/iconoir-react/src/server/Scissor.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgScissor( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgScissor); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgScissor = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgScissor); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ScissorAlt.tsx b/packages/iconoir-react/src/server/ScissorAlt.tsx index a1309393..5a9a2909 100644 --- a/packages/iconoir-react/src/server/ScissorAlt.tsx +++ b/packages/iconoir-react/src/server/ScissorAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgScissorAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgScissorAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgScissorAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgScissorAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Screenshot.tsx b/packages/iconoir-react/src/server/Screenshot.tsx index 399040cd..7857c826 100644 --- a/packages/iconoir-react/src/server/Screenshot.tsx +++ b/packages/iconoir-react/src/server/Screenshot.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgScreenshot( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgScreenshot); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgScreenshot = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgScreenshot); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SeaAndSun.tsx b/packages/iconoir-react/src/server/SeaAndSun.tsx index c01d4647..ed01ef13 100644 --- a/packages/iconoir-react/src/server/SeaAndSun.tsx +++ b/packages/iconoir-react/src/server/SeaAndSun.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSeaAndSun( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSeaAndSun); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSeaAndSun = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSeaAndSun); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SeaWaves.tsx b/packages/iconoir-react/src/server/SeaWaves.tsx index 38433a05..935227e0 100644 --- a/packages/iconoir-react/src/server/SeaWaves.tsx +++ b/packages/iconoir-react/src/server/SeaWaves.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSeaWaves( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSeaWaves); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSeaWaves = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSeaWaves); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Search.tsx b/packages/iconoir-react/src/server/Search.tsx index 338c8772..0481b68c 100644 --- a/packages/iconoir-react/src/server/Search.tsx +++ b/packages/iconoir-react/src/server/Search.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgSearch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSearch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSearch = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SearchEngine.tsx b/packages/iconoir-react/src/server/SearchEngine.tsx index 5216c7f8..3eafd3ad 100644 --- a/packages/iconoir-react/src/server/SearchEngine.tsx +++ b/packages/iconoir-react/src/server/SearchEngine.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgSearchEngine( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSearchEngine); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSearchEngine = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSearchEngine); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SearchFont.tsx b/packages/iconoir-react/src/server/SearchFont.tsx index 61e67a71..c80460e5 100644 --- a/packages/iconoir-react/src/server/SearchFont.tsx +++ b/packages/iconoir-react/src/server/SearchFont.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSearchFont( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSearchFont); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSearchFont = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSearchFont); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SearchWindow.tsx b/packages/iconoir-react/src/server/SearchWindow.tsx index 900bab40..ccc85603 100644 --- a/packages/iconoir-react/src/server/SearchWindow.tsx +++ b/packages/iconoir-react/src/server/SearchWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgSearchWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSearchWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSearchWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSearchWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SecureWindow.tsx b/packages/iconoir-react/src/server/SecureWindow.tsx index 5f3b2ff0..30012682 100644 --- a/packages/iconoir-react/src/server/SecureWindow.tsx +++ b/packages/iconoir-react/src/server/SecureWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgSecureWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSecureWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSecureWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSecureWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SecurityPass.tsx b/packages/iconoir-react/src/server/SecurityPass.tsx index eafffee1..88e3f30f 100644 --- a/packages/iconoir-react/src/server/SecurityPass.tsx +++ b/packages/iconoir-react/src/server/SecurityPass.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgSecurityPass( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSecurityPass); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSecurityPass = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSecurityPass); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SelectWindow.tsx b/packages/iconoir-react/src/server/SelectWindow.tsx index c5f1baca..96c2ca8e 100644 --- a/packages/iconoir-react/src/server/SelectWindow.tsx +++ b/packages/iconoir-react/src/server/SelectWindow.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgSelectWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSelectWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSelectWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgSelectWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Selection.tsx b/packages/iconoir-react/src/server/Selection.tsx index 0d8dc80b..592c4c08 100644 --- a/packages/iconoir-react/src/server/Selection.tsx +++ b/packages/iconoir-react/src/server/Selection.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSelection( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSelection); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSelection = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSelection); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SelectiveTool.tsx b/packages/iconoir-react/src/server/SelectiveTool.tsx index 2eacae8a..ca97860a 100644 --- a/packages/iconoir-react/src/server/SelectiveTool.tsx +++ b/packages/iconoir-react/src/server/SelectiveTool.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgSelectiveTool( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSelectiveTool); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSelectiveTool = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSelectiveTool); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Send.tsx b/packages/iconoir-react/src/server/Send.tsx index d84d3b20..0ddf3825 100644 --- a/packages/iconoir-react/src/server/Send.tsx +++ b/packages/iconoir-react/src/server/Send.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgSend( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSend); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSend = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSend); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SendDiagonal.tsx b/packages/iconoir-react/src/server/SendDiagonal.tsx index dfda5e92..353453bd 100644 --- a/packages/iconoir-react/src/server/SendDiagonal.tsx +++ b/packages/iconoir-react/src/server/SendDiagonal.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgSendDiagonal( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSendDiagonal); + + + + + + + + +); +const ForwardRef = forwardRef(SvgSendDiagonal); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SendDollars.tsx b/packages/iconoir-react/src/server/SendDollars.tsx index 5f3c1ecd..5773daaf 100644 --- a/packages/iconoir-react/src/server/SendDollars.tsx +++ b/packages/iconoir-react/src/server/SendDollars.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSendDollars( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSendDollars); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSendDollars = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSendDollars); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SendEuros.tsx b/packages/iconoir-react/src/server/SendEuros.tsx index 6ade6777..1e516444 100644 --- a/packages/iconoir-react/src/server/SendEuros.tsx +++ b/packages/iconoir-react/src/server/SendEuros.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSendEuros( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSendEuros); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSendEuros = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSendEuros); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SendMail.tsx b/packages/iconoir-react/src/server/SendMail.tsx index aac05edd..9d4e8e14 100644 --- a/packages/iconoir-react/src/server/SendMail.tsx +++ b/packages/iconoir-react/src/server/SendMail.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgSendMail( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSendMail); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSendMail = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSendMail); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SendPounds.tsx b/packages/iconoir-react/src/server/SendPounds.tsx index 98ad5d27..af74f3a6 100644 --- a/packages/iconoir-react/src/server/SendPounds.tsx +++ b/packages/iconoir-react/src/server/SendPounds.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSendPounds( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSendPounds); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSendPounds = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSendPounds); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SendYens.tsx b/packages/iconoir-react/src/server/SendYens.tsx index 15386c41..0d300750 100644 --- a/packages/iconoir-react/src/server/SendYens.tsx +++ b/packages/iconoir-react/src/server/SendYens.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSendYens( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSendYens); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSendYens = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSendYens); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Server.tsx b/packages/iconoir-react/src/server/Server.tsx index ae51b04e..d5d10b96 100644 --- a/packages/iconoir-react/src/server/Server.tsx +++ b/packages/iconoir-react/src/server/Server.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgServer( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgServer); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgServer = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgServer); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ServerConnection.tsx b/packages/iconoir-react/src/server/ServerConnection.tsx index 02b0758a..1695642b 100644 --- a/packages/iconoir-react/src/server/ServerConnection.tsx +++ b/packages/iconoir-react/src/server/ServerConnection.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgServerConnection( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgServerConnection); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgServerConnection = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgServerConnection); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Settings.tsx b/packages/iconoir-react/src/server/Settings.tsx index 63835ac3..55e62864 100644 --- a/packages/iconoir-react/src/server/Settings.tsx +++ b/packages/iconoir-react/src/server/Settings.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSettings( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSettings); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSettings = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSettings); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SettingsCloud.tsx b/packages/iconoir-react/src/server/SettingsCloud.tsx index 135dd8c2..61e31965 100644 --- a/packages/iconoir-react/src/server/SettingsCloud.tsx +++ b/packages/iconoir-react/src/server/SettingsCloud.tsx @@ -1,31 +1,31 @@ import * as React from "react"; -function SvgSettingsCloud( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSettingsCloud); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSettingsCloud = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSettingsCloud); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SettingsProfiles.tsx b/packages/iconoir-react/src/server/SettingsProfiles.tsx index b6f4cd11..05c663e7 100644 --- a/packages/iconoir-react/src/server/SettingsProfiles.tsx +++ b/packages/iconoir-react/src/server/SettingsProfiles.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgSettingsProfiles( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSettingsProfiles); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSettingsProfiles = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSettingsProfiles); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShareAndroid.tsx b/packages/iconoir-react/src/server/ShareAndroid.tsx index 6ca7b45e..87ca10fd 100644 --- a/packages/iconoir-react/src/server/ShareAndroid.tsx +++ b/packages/iconoir-react/src/server/ShareAndroid.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgShareAndroid( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShareAndroid); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShareAndroid = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgShareAndroid); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShareIos.tsx b/packages/iconoir-react/src/server/ShareIos.tsx index 68db8908..2fea0a5c 100644 --- a/packages/iconoir-react/src/server/ShareIos.tsx +++ b/packages/iconoir-react/src/server/ShareIos.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShareIos( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShareIos); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShareIos = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShareIos); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Shield.tsx b/packages/iconoir-react/src/server/Shield.tsx index b18eb0d3..34284064 100644 --- a/packages/iconoir-react/src/server/Shield.tsx +++ b/packages/iconoir-react/src/server/Shield.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgShield( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShield); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShield = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgShield); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldAdd.tsx b/packages/iconoir-react/src/server/ShieldAdd.tsx index f5b180bc..e069f022 100644 --- a/packages/iconoir-react/src/server/ShieldAdd.tsx +++ b/packages/iconoir-react/src/server/ShieldAdd.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShieldAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldAdd = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShieldAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldAlert.tsx b/packages/iconoir-react/src/server/ShieldAlert.tsx index dd7a3c2f..00b3d6fb 100644 --- a/packages/iconoir-react/src/server/ShieldAlert.tsx +++ b/packages/iconoir-react/src/server/ShieldAlert.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShieldAlert( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldAlert); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldAlert = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShieldAlert); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldAlt.tsx b/packages/iconoir-react/src/server/ShieldAlt.tsx index 17c7cb5b..58978699 100644 --- a/packages/iconoir-react/src/server/ShieldAlt.tsx +++ b/packages/iconoir-react/src/server/ShieldAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShieldAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShieldAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldBroken.tsx b/packages/iconoir-react/src/server/ShieldBroken.tsx index ed0212b6..b55ee77a 100644 --- a/packages/iconoir-react/src/server/ShieldBroken.tsx +++ b/packages/iconoir-react/src/server/ShieldBroken.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgShieldBroken( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldBroken); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldBroken = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgShieldBroken); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldCheck.tsx b/packages/iconoir-react/src/server/ShieldCheck.tsx index 6649c051..2513d586 100644 --- a/packages/iconoir-react/src/server/ShieldCheck.tsx +++ b/packages/iconoir-react/src/server/ShieldCheck.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgShieldCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgShieldCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldCross.tsx b/packages/iconoir-react/src/server/ShieldCross.tsx index a14f7648..51e2a70d 100644 --- a/packages/iconoir-react/src/server/ShieldCross.tsx +++ b/packages/iconoir-react/src/server/ShieldCross.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShieldCross( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldCross); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldCross = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShieldCross); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldDownload.tsx b/packages/iconoir-react/src/server/ShieldDownload.tsx index 28797106..1ec27e90 100644 --- a/packages/iconoir-react/src/server/ShieldDownload.tsx +++ b/packages/iconoir-react/src/server/ShieldDownload.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShieldDownload( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldDownload); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldDownload = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShieldDownload); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldEye.tsx b/packages/iconoir-react/src/server/ShieldEye.tsx index f2fccbbf..693f912f 100644 --- a/packages/iconoir-react/src/server/ShieldEye.tsx +++ b/packages/iconoir-react/src/server/ShieldEye.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgShieldEye( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldEye); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldEye = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgShieldEye); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldLoading.tsx b/packages/iconoir-react/src/server/ShieldLoading.tsx index b8c05806..28c0ffe4 100644 --- a/packages/iconoir-react/src/server/ShieldLoading.tsx +++ b/packages/iconoir-react/src/server/ShieldLoading.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShieldLoading( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldLoading); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldLoading = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShieldLoading); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldMinus.tsx b/packages/iconoir-react/src/server/ShieldMinus.tsx index 0b616063..bcebced2 100644 --- a/packages/iconoir-react/src/server/ShieldMinus.tsx +++ b/packages/iconoir-react/src/server/ShieldMinus.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShieldMinus( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldMinus); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldMinus = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShieldMinus); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldQuestion.tsx b/packages/iconoir-react/src/server/ShieldQuestion.tsx index e002d1eb..9a17e361 100644 --- a/packages/iconoir-react/src/server/ShieldQuestion.tsx +++ b/packages/iconoir-react/src/server/ShieldQuestion.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgShieldQuestion( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldQuestion); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldQuestion = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgShieldQuestion); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldSearch.tsx b/packages/iconoir-react/src/server/ShieldSearch.tsx index 7de09d0e..7992ce91 100644 --- a/packages/iconoir-react/src/server/ShieldSearch.tsx +++ b/packages/iconoir-react/src/server/ShieldSearch.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgShieldSearch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldSearch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldSearch = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgShieldSearch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShieldUpload.tsx b/packages/iconoir-react/src/server/ShieldUpload.tsx index 127a45db..627663ea 100644 --- a/packages/iconoir-react/src/server/ShieldUpload.tsx +++ b/packages/iconoir-react/src/server/ShieldUpload.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShieldUpload( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShieldUpload); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShieldUpload = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShieldUpload); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Shop.tsx b/packages/iconoir-react/src/server/Shop.tsx index ac9afb26..295b9036 100644 --- a/packages/iconoir-react/src/server/Shop.tsx +++ b/packages/iconoir-react/src/server/Shop.tsx @@ -1,39 +1,36 @@ import * as React from "react"; -function SvgShop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShop = (props: SVGProps, ref: Ref) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgShop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShopAlt.tsx b/packages/iconoir-react/src/server/ShopAlt.tsx index 32400006..9fc91172 100644 --- a/packages/iconoir-react/src/server/ShopAlt.tsx +++ b/packages/iconoir-react/src/server/ShopAlt.tsx @@ -1,44 +1,44 @@ import * as React from "react"; -function SvgShopAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShopAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShopAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + + +); +const ForwardRef = forwardRef(SvgShopAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingBag.tsx b/packages/iconoir-react/src/server/ShoppingBag.tsx index 33f968ee..c596349e 100644 --- a/packages/iconoir-react/src/server/ShoppingBag.tsx +++ b/packages/iconoir-react/src/server/ShoppingBag.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShoppingBag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingBag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingBag = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShoppingBag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingBagAdd.tsx b/packages/iconoir-react/src/server/ShoppingBagAdd.tsx index 46c0468d..01960014 100644 --- a/packages/iconoir-react/src/server/ShoppingBagAdd.tsx +++ b/packages/iconoir-react/src/server/ShoppingBagAdd.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShoppingBagAdd( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagAdd); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingBagAdd = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShoppingBagAdd); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingBagAlt.tsx b/packages/iconoir-react/src/server/ShoppingBagAlt.tsx index aec44293..bb4da6ec 100644 --- a/packages/iconoir-react/src/server/ShoppingBagAlt.tsx +++ b/packages/iconoir-react/src/server/ShoppingBagAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShoppingBagAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingBagAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShoppingBagAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingBagArrowDown.tsx b/packages/iconoir-react/src/server/ShoppingBagArrowDown.tsx index 871fa0f3..35ea900d 100644 --- a/packages/iconoir-react/src/server/ShoppingBagArrowDown.tsx +++ b/packages/iconoir-react/src/server/ShoppingBagArrowDown.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShoppingBagArrowDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagArrowDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingBagArrowDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShoppingBagArrowDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingBagArrowUp.tsx b/packages/iconoir-react/src/server/ShoppingBagArrowUp.tsx index e40194a1..96d9230d 100644 --- a/packages/iconoir-react/src/server/ShoppingBagArrowUp.tsx +++ b/packages/iconoir-react/src/server/ShoppingBagArrowUp.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShoppingBagArrowUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagArrowUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingBagArrowUp = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShoppingBagArrowUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingBagCheck.tsx b/packages/iconoir-react/src/server/ShoppingBagCheck.tsx index 63ca05cd..98a0ca34 100644 --- a/packages/iconoir-react/src/server/ShoppingBagCheck.tsx +++ b/packages/iconoir-react/src/server/ShoppingBagCheck.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgShoppingBagCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingBagCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgShoppingBagCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingBagIssue.tsx b/packages/iconoir-react/src/server/ShoppingBagIssue.tsx index 3af19ebc..2b779082 100644 --- a/packages/iconoir-react/src/server/ShoppingBagIssue.tsx +++ b/packages/iconoir-react/src/server/ShoppingBagIssue.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShoppingBagIssue( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagIssue); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingBagIssue = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShoppingBagIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingBagRemove.tsx b/packages/iconoir-react/src/server/ShoppingBagRemove.tsx index ca1aaf57..61582617 100644 --- a/packages/iconoir-react/src/server/ShoppingBagRemove.tsx +++ b/packages/iconoir-react/src/server/ShoppingBagRemove.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShoppingBagRemove( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingBagRemove); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingBagRemove = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShoppingBagRemove); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingCode.tsx b/packages/iconoir-react/src/server/ShoppingCode.tsx index 499ad1c9..5bbb8861 100644 --- a/packages/iconoir-react/src/server/ShoppingCode.tsx +++ b/packages/iconoir-react/src/server/ShoppingCode.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShoppingCode( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingCode); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingCode = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShoppingCode); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingCodeCheck.tsx b/packages/iconoir-react/src/server/ShoppingCodeCheck.tsx index 0f21aaa3..f60ecb0c 100644 --- a/packages/iconoir-react/src/server/ShoppingCodeCheck.tsx +++ b/packages/iconoir-react/src/server/ShoppingCodeCheck.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShoppingCodeCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingCodeCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingCodeCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShoppingCodeCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShoppingCodeError.tsx b/packages/iconoir-react/src/server/ShoppingCodeError.tsx index 395c0b18..b6c69ecf 100644 --- a/packages/iconoir-react/src/server/ShoppingCodeError.tsx +++ b/packages/iconoir-react/src/server/ShoppingCodeError.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShoppingCodeError( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShoppingCodeError); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShoppingCodeError = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShoppingCodeError); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShortPants.tsx b/packages/iconoir-react/src/server/ShortPants.tsx index cd50cef5..3c9db32a 100644 --- a/packages/iconoir-react/src/server/ShortPants.tsx +++ b/packages/iconoir-react/src/server/ShortPants.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgShortPants( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShortPants); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShortPants = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgShortPants); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ShortPantsAlt.tsx b/packages/iconoir-react/src/server/ShortPantsAlt.tsx index 459d39e9..b44f2b14 100644 --- a/packages/iconoir-react/src/server/ShortPantsAlt.tsx +++ b/packages/iconoir-react/src/server/ShortPantsAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgShortPantsAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgShortPantsAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShortPantsAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgShortPantsAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Shortcut.tsx b/packages/iconoir-react/src/server/Shortcut.tsx index 1403901d..acf3d8ca 100644 --- a/packages/iconoir-react/src/server/Shortcut.tsx +++ b/packages/iconoir-react/src/server/Shortcut.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgShortcut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShortcut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShortcut = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgShortcut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Shuffle.tsx b/packages/iconoir-react/src/server/Shuffle.tsx index ba026437..521c8c23 100644 --- a/packages/iconoir-react/src/server/Shuffle.tsx +++ b/packages/iconoir-react/src/server/Shuffle.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgShuffle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgShuffle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgShuffle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgShuffle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SidebarCollapse.tsx b/packages/iconoir-react/src/server/SidebarCollapse.tsx index d2b7277d..bdbe0f2e 100644 --- a/packages/iconoir-react/src/server/SidebarCollapse.tsx +++ b/packages/iconoir-react/src/server/SidebarCollapse.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSidebarCollapse( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSidebarCollapse); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSidebarCollapse = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSidebarCollapse); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SidebarExpand.tsx b/packages/iconoir-react/src/server/SidebarExpand.tsx index 18e2f1de..55f8961c 100644 --- a/packages/iconoir-react/src/server/SidebarExpand.tsx +++ b/packages/iconoir-react/src/server/SidebarExpand.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSidebarExpand( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSidebarExpand); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSidebarExpand = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSidebarExpand); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SigmaFunction.tsx b/packages/iconoir-react/src/server/SigmaFunction.tsx index f02b290e..6625c26c 100644 --- a/packages/iconoir-react/src/server/SigmaFunction.tsx +++ b/packages/iconoir-react/src/server/SigmaFunction.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSigmaFunction( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSigmaFunction); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSigmaFunction = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSigmaFunction); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SimpleCart.tsx b/packages/iconoir-react/src/server/SimpleCart.tsx index 426663ee..31326b86 100644 --- a/packages/iconoir-react/src/server/SimpleCart.tsx +++ b/packages/iconoir-react/src/server/SimpleCart.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSimpleCart( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSimpleCart); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSimpleCart = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSimpleCart); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SineWave.tsx b/packages/iconoir-react/src/server/SineWave.tsx index aeb72174..87ab1ea3 100644 --- a/packages/iconoir-react/src/server/SineWave.tsx +++ b/packages/iconoir-react/src/server/SineWave.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSineWave( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSineWave); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSineWave = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSineWave); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SingleTapGesture.tsx b/packages/iconoir-react/src/server/SingleTapGesture.tsx index 98ac99f0..c773bad0 100644 --- a/packages/iconoir-react/src/server/SingleTapGesture.tsx +++ b/packages/iconoir-react/src/server/SingleTapGesture.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSingleTapGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSingleTapGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSingleTapGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSingleTapGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Skateboard.tsx b/packages/iconoir-react/src/server/Skateboard.tsx index 276c342c..e220a268 100644 --- a/packages/iconoir-react/src/server/Skateboard.tsx +++ b/packages/iconoir-react/src/server/Skateboard.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSkateboard( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSkateboard); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSkateboard = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSkateboard); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Skateboarding.tsx b/packages/iconoir-react/src/server/Skateboarding.tsx index 7d0b116f..b2027b4f 100644 --- a/packages/iconoir-react/src/server/Skateboarding.tsx +++ b/packages/iconoir-react/src/server/Skateboarding.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSkateboarding( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSkateboarding); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSkateboarding = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSkateboarding); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SkipNext.tsx b/packages/iconoir-react/src/server/SkipNext.tsx index e7d45049..8fd90dbb 100644 --- a/packages/iconoir-react/src/server/SkipNext.tsx +++ b/packages/iconoir-react/src/server/SkipNext.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSkipNext( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSkipNext); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSkipNext = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSkipNext); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SkipPrev.tsx b/packages/iconoir-react/src/server/SkipPrev.tsx index 0bbc7d95..d5388f53 100644 --- a/packages/iconoir-react/src/server/SkipPrev.tsx +++ b/packages/iconoir-react/src/server/SkipPrev.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSkipPrev( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSkipPrev); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSkipPrev = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSkipPrev); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Slash.tsx b/packages/iconoir-react/src/server/Slash.tsx index f8568c2f..154f20ff 100644 --- a/packages/iconoir-react/src/server/Slash.tsx +++ b/packages/iconoir-react/src/server/Slash.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgSlash( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSlash); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSlash = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSlash); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SleeperChair.tsx b/packages/iconoir-react/src/server/SleeperChair.tsx index 515366a5..5f07c12d 100644 --- a/packages/iconoir-react/src/server/SleeperChair.tsx +++ b/packages/iconoir-react/src/server/SleeperChair.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSleeperChair( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSleeperChair); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSleeperChair = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSleeperChair); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SmallLamp.tsx b/packages/iconoir-react/src/server/SmallLamp.tsx index 287e6f6b..146bac21 100644 --- a/packages/iconoir-react/src/server/SmallLamp.tsx +++ b/packages/iconoir-react/src/server/SmallLamp.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSmallLamp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSmallLamp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSmallLamp = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSmallLamp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SmallLampAlt.tsx b/packages/iconoir-react/src/server/SmallLampAlt.tsx index a1fb3bf3..ba816850 100644 --- a/packages/iconoir-react/src/server/SmallLampAlt.tsx +++ b/packages/iconoir-react/src/server/SmallLampAlt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSmallLampAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSmallLampAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSmallLampAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSmallLampAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SmallShop.tsx b/packages/iconoir-react/src/server/SmallShop.tsx index 1d7a7e15..3ed05614 100644 --- a/packages/iconoir-react/src/server/SmallShop.tsx +++ b/packages/iconoir-react/src/server/SmallShop.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgSmallShop( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSmallShop); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSmallShop = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + +); +const ForwardRef = forwardRef(SvgSmallShop); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SmallShopAlt.tsx b/packages/iconoir-react/src/server/SmallShopAlt.tsx index 46bc0f6a..7fa14932 100644 --- a/packages/iconoir-react/src/server/SmallShopAlt.tsx +++ b/packages/iconoir-react/src/server/SmallShopAlt.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgSmallShopAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSmallShopAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSmallShopAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgSmallShopAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SmartphoneDevice.tsx b/packages/iconoir-react/src/server/SmartphoneDevice.tsx index 152f69db..0388a339 100644 --- a/packages/iconoir-react/src/server/SmartphoneDevice.tsx +++ b/packages/iconoir-react/src/server/SmartphoneDevice.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgSmartphoneDevice( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSmartphoneDevice); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSmartphoneDevice = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSmartphoneDevice); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Smoking.tsx b/packages/iconoir-react/src/server/Smoking.tsx index 219dafb1..bc5a6804 100644 --- a/packages/iconoir-react/src/server/Smoking.tsx +++ b/packages/iconoir-react/src/server/Smoking.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgSmoking( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSmoking); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSmoking = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSmoking); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Snapchat.tsx b/packages/iconoir-react/src/server/Snapchat.tsx index 9d76c689..5130f3fb 100644 --- a/packages/iconoir-react/src/server/Snapchat.tsx +++ b/packages/iconoir-react/src/server/Snapchat.tsx @@ -1,29 +1,29 @@ import * as React from "react"; -function SvgSnapchat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSnapchat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSnapchat = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSnapchat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Snow.tsx b/packages/iconoir-react/src/server/Snow.tsx index 6e320ff2..33b304eb 100644 --- a/packages/iconoir-react/src/server/Snow.tsx +++ b/packages/iconoir-react/src/server/Snow.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgSnow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSnow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSnow = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSnow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SnowFlake.tsx b/packages/iconoir-react/src/server/SnowFlake.tsx index 5e0600a1..71a6b09f 100644 --- a/packages/iconoir-react/src/server/SnowFlake.tsx +++ b/packages/iconoir-react/src/server/SnowFlake.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSnowFlake( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSnowFlake); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSnowFlake = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSnowFlake); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Soap.tsx b/packages/iconoir-react/src/server/Soap.tsx index cf15cdaf..4a23425f 100644 --- a/packages/iconoir-react/src/server/Soap.tsx +++ b/packages/iconoir-react/src/server/Soap.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgSoap( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSoap); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSoap = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSoap); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SoccerBall.tsx b/packages/iconoir-react/src/server/SoccerBall.tsx index 829055a9..774a0127 100644 --- a/packages/iconoir-react/src/server/SoccerBall.tsx +++ b/packages/iconoir-react/src/server/SoccerBall.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSoccerBall( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSoccerBall); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSoccerBall = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSoccerBall); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Sofa.tsx b/packages/iconoir-react/src/server/Sofa.tsx index fadd1d6b..2f80ca8c 100644 --- a/packages/iconoir-react/src/server/Sofa.tsx +++ b/packages/iconoir-react/src/server/Sofa.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgSofa( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSofa); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSofa = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgSofa); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Soil.tsx b/packages/iconoir-react/src/server/Soil.tsx index ff4fdf03..529e110e 100644 --- a/packages/iconoir-react/src/server/Soil.tsx +++ b/packages/iconoir-react/src/server/Soil.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgSoil( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSoil); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSoil = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSoil); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SoilAlt.tsx b/packages/iconoir-react/src/server/SoilAlt.tsx index ae58e7c7..878a0794 100644 --- a/packages/iconoir-react/src/server/SoilAlt.tsx +++ b/packages/iconoir-react/src/server/SoilAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSoilAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSoilAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSoilAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSoilAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Sort.tsx b/packages/iconoir-react/src/server/Sort.tsx index 8da331c4..10c97fb4 100644 --- a/packages/iconoir-react/src/server/Sort.tsx +++ b/packages/iconoir-react/src/server/Sort.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgSort( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSort); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSort = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSort); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SortDown.tsx b/packages/iconoir-react/src/server/SortDown.tsx index 8e2e86dc..eb1ef084 100644 --- a/packages/iconoir-react/src/server/SortDown.tsx +++ b/packages/iconoir-react/src/server/SortDown.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSortDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSortDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSortDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSortDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SortUp.tsx b/packages/iconoir-react/src/server/SortUp.tsx index 947b3899..8a31f3f6 100644 --- a/packages/iconoir-react/src/server/SortUp.tsx +++ b/packages/iconoir-react/src/server/SortUp.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgSortUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSortUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSortUp = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSortUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SoundHigh.tsx b/packages/iconoir-react/src/server/SoundHigh.tsx index 10cc8610..d37a614f 100644 --- a/packages/iconoir-react/src/server/SoundHigh.tsx +++ b/packages/iconoir-react/src/server/SoundHigh.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgSoundHigh( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSoundHigh); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSoundHigh = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSoundHigh); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SoundLow.tsx b/packages/iconoir-react/src/server/SoundLow.tsx index c7729a97..b863b1c6 100644 --- a/packages/iconoir-react/src/server/SoundLow.tsx +++ b/packages/iconoir-react/src/server/SoundLow.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgSoundLow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSoundLow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSoundLow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSoundLow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SoundMin.tsx b/packages/iconoir-react/src/server/SoundMin.tsx index 7242adf5..7bb487c5 100644 --- a/packages/iconoir-react/src/server/SoundMin.tsx +++ b/packages/iconoir-react/src/server/SoundMin.tsx @@ -1,27 +1,27 @@ import * as React from "react"; -function SvgSoundMin( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSoundMin); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSoundMin = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSoundMin); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SoundOff.tsx b/packages/iconoir-react/src/server/SoundOff.tsx index bdf6a68d..d52c58b5 100644 --- a/packages/iconoir-react/src/server/SoundOff.tsx +++ b/packages/iconoir-react/src/server/SoundOff.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgSoundOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSoundOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSoundOff = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + + + + + +); +const ForwardRef = forwardRef(SvgSoundOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Spades.tsx b/packages/iconoir-react/src/server/Spades.tsx index 55936ca8..11d8a698 100644 --- a/packages/iconoir-react/src/server/Spades.tsx +++ b/packages/iconoir-react/src/server/Spades.tsx @@ -1,33 +1,30 @@ import * as React from "react"; -function SvgSpades( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSpades); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSpades = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgSpades); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Spark.tsx b/packages/iconoir-react/src/server/Spark.tsx index bd99e6e7..ed2ba2ea 100644 --- a/packages/iconoir-react/src/server/Spark.tsx +++ b/packages/iconoir-react/src/server/Spark.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgSpark( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSpark); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSpark = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSpark); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Sparks.tsx b/packages/iconoir-react/src/server/Sparks.tsx index 7ac42d53..8ac34a88 100644 --- a/packages/iconoir-react/src/server/Sparks.tsx +++ b/packages/iconoir-react/src/server/Sparks.tsx @@ -1,27 +1,24 @@ import * as React from "react"; -function SvgSparks( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSparks); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSparks = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSparks); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Sphere.tsx b/packages/iconoir-react/src/server/Sphere.tsx index f532f698..05c4e198 100644 --- a/packages/iconoir-react/src/server/Sphere.tsx +++ b/packages/iconoir-react/src/server/Sphere.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgSphere( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSphere); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSphere = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgSphere); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Spiral.tsx b/packages/iconoir-react/src/server/Spiral.tsx index f935e3d2..7cc8189c 100644 --- a/packages/iconoir-react/src/server/Spiral.tsx +++ b/packages/iconoir-react/src/server/Spiral.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgSpiral( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSpiral); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSpiral = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSpiral); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SpockHandGesture.tsx b/packages/iconoir-react/src/server/SpockHandGesture.tsx index 00e9623d..c8936e1f 100644 --- a/packages/iconoir-react/src/server/SpockHandGesture.tsx +++ b/packages/iconoir-react/src/server/SpockHandGesture.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSpockHandGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSpockHandGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSpockHandGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSpockHandGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Spotify.tsx b/packages/iconoir-react/src/server/Spotify.tsx index 350633fa..22360f7f 100644 --- a/packages/iconoir-react/src/server/Spotify.tsx +++ b/packages/iconoir-react/src/server/Spotify.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSpotify( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSpotify); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSpotify = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSpotify); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Square.tsx b/packages/iconoir-react/src/server/Square.tsx index 28f7bd8b..86e477a1 100644 --- a/packages/iconoir-react/src/server/Square.tsx +++ b/packages/iconoir-react/src/server/Square.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSquare = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SquareCursor.tsx b/packages/iconoir-react/src/server/SquareCursor.tsx index 076dea49..97724af0 100644 --- a/packages/iconoir-react/src/server/SquareCursor.tsx +++ b/packages/iconoir-react/src/server/SquareCursor.tsx @@ -1,31 +1,31 @@ import * as React from "react"; -function SvgSquareCursor( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSquareCursor); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSquareCursor = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSquareCursor); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SquareWave.tsx b/packages/iconoir-react/src/server/SquareWave.tsx index fc415fd5..74c17477 100644 --- a/packages/iconoir-react/src/server/SquareWave.tsx +++ b/packages/iconoir-react/src/server/SquareWave.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSquareWave( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSquareWave); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSquareWave = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSquareWave); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Stackoverflow.tsx b/packages/iconoir-react/src/server/Stackoverflow.tsx index e0c2dd23..5711e34c 100644 --- a/packages/iconoir-react/src/server/Stackoverflow.tsx +++ b/packages/iconoir-react/src/server/Stackoverflow.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgStackoverflow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgStackoverflow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStackoverflow = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgStackoverflow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Star.tsx b/packages/iconoir-react/src/server/Star.tsx index 5970873c..a396cf89 100644 --- a/packages/iconoir-react/src/server/Star.tsx +++ b/packages/iconoir-react/src/server/Star.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgStar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgStar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStar = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/StarDashed.tsx b/packages/iconoir-react/src/server/StarDashed.tsx index f8c06858..5bc4e1cb 100644 --- a/packages/iconoir-react/src/server/StarDashed.tsx +++ b/packages/iconoir-react/src/server/StarDashed.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgStarDashed( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgStarDashed); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStarDashed = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgStarDashed); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/StarHalfDashed.tsx b/packages/iconoir-react/src/server/StarHalfDashed.tsx index 63dcce96..d4d128a0 100644 --- a/packages/iconoir-react/src/server/StarHalfDashed.tsx +++ b/packages/iconoir-react/src/server/StarHalfDashed.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgStarHalfDashed( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgStarHalfDashed); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStarHalfDashed = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgStarHalfDashed); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/StatDown.tsx b/packages/iconoir-react/src/server/StatDown.tsx index 8fc0cdd6..d4b9e6c0 100644 --- a/packages/iconoir-react/src/server/StatDown.tsx +++ b/packages/iconoir-react/src/server/StatDown.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgStatDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgStatDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStatDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgStatDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/StatUp.tsx b/packages/iconoir-react/src/server/StatUp.tsx index fd1c0b41..e7b95eed 100644 --- a/packages/iconoir-react/src/server/StatUp.tsx +++ b/packages/iconoir-react/src/server/StatUp.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgStatUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgStatUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStatUp = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgStatUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/StatsDownSquare.tsx b/packages/iconoir-react/src/server/StatsDownSquare.tsx index dd366b5c..b3925245 100644 --- a/packages/iconoir-react/src/server/StatsDownSquare.tsx +++ b/packages/iconoir-react/src/server/StatsDownSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgStatsDownSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgStatsDownSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStatsDownSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgStatsDownSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/StatsReport.tsx b/packages/iconoir-react/src/server/StatsReport.tsx index 9a130092..60c5e2b7 100644 --- a/packages/iconoir-react/src/server/StatsReport.tsx +++ b/packages/iconoir-react/src/server/StatsReport.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgStatsReport( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgStatsReport); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStatsReport = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgStatsReport); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/StatsUpSquare.tsx b/packages/iconoir-react/src/server/StatsUpSquare.tsx index cc65984b..ca1a1fd1 100644 --- a/packages/iconoir-react/src/server/StatsUpSquare.tsx +++ b/packages/iconoir-react/src/server/StatsUpSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgStatsUpSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgStatsUpSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStatsUpSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgStatsUpSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Strategy.tsx b/packages/iconoir-react/src/server/Strategy.tsx index 74133746..d959ff5d 100644 --- a/packages/iconoir-react/src/server/Strategy.tsx +++ b/packages/iconoir-react/src/server/Strategy.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgStrategy( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgStrategy); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStrategy = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgStrategy); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Stretching.tsx b/packages/iconoir-react/src/server/Stretching.tsx index 785adad8..b73b4418 100644 --- a/packages/iconoir-react/src/server/Stretching.tsx +++ b/packages/iconoir-react/src/server/Stretching.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgStretching( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgStretching); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStretching = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgStretching); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Strikethrough.tsx b/packages/iconoir-react/src/server/Strikethrough.tsx index 3dd05d95..7216e287 100644 --- a/packages/iconoir-react/src/server/Strikethrough.tsx +++ b/packages/iconoir-react/src/server/Strikethrough.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgStrikethrough( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgStrikethrough); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStrikethrough = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgStrikethrough); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Stroller.tsx b/packages/iconoir-react/src/server/Stroller.tsx index 68e75ba4..39dbf843 100644 --- a/packages/iconoir-react/src/server/Stroller.tsx +++ b/packages/iconoir-react/src/server/Stroller.tsx @@ -1,35 +1,35 @@ import * as React from "react"; -function SvgStroller( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , + ref: Ref +) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgStroller); + + + + + + + + +); +const ForwardRef = forwardRef(SvgStroller); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/StyleBorder.tsx b/packages/iconoir-react/src/server/StyleBorder.tsx index 11f0c355..ceaaea15 100644 --- a/packages/iconoir-react/src/server/StyleBorder.tsx +++ b/packages/iconoir-react/src/server/StyleBorder.tsx @@ -1,37 +1,37 @@ import * as React from "react"; -function SvgStyleBorder( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgStyleBorder); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgStyleBorder = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgStyleBorder); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SubmitDocument.tsx b/packages/iconoir-react/src/server/SubmitDocument.tsx index ffa43bf9..48729de7 100644 --- a/packages/iconoir-react/src/server/SubmitDocument.tsx +++ b/packages/iconoir-react/src/server/SubmitDocument.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSubmitDocument( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSubmitDocument); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSubmitDocument = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSubmitDocument); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Substract.tsx b/packages/iconoir-react/src/server/Substract.tsx index aeacc109..b3b74383 100644 --- a/packages/iconoir-react/src/server/Substract.tsx +++ b/packages/iconoir-react/src/server/Substract.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgSubstract( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSubstract); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSubstract = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSubstract); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Suggestion.tsx b/packages/iconoir-react/src/server/Suggestion.tsx index 29d2f582..bffd5418 100644 --- a/packages/iconoir-react/src/server/Suggestion.tsx +++ b/packages/iconoir-react/src/server/Suggestion.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgSuggestion( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSuggestion); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSuggestion = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSuggestion); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SunLight.tsx b/packages/iconoir-react/src/server/SunLight.tsx index ca86f7eb..4763e767 100644 --- a/packages/iconoir-react/src/server/SunLight.tsx +++ b/packages/iconoir-react/src/server/SunLight.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSunLight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSunLight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSunLight = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSunLight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SvgFormat.tsx b/packages/iconoir-react/src/server/SvgFormat.tsx index a6131820..53126ca4 100644 --- a/packages/iconoir-react/src/server/SvgFormat.tsx +++ b/packages/iconoir-react/src/server/SvgFormat.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgSvgFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSvgFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSvgFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSvgFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Sweep3D.tsx b/packages/iconoir-react/src/server/Sweep3D.tsx index a07e794b..b416abd6 100644 --- a/packages/iconoir-react/src/server/Sweep3D.tsx +++ b/packages/iconoir-react/src/server/Sweep3D.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSweep3D( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSweep3D); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSweep3D = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSweep3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Swimming.tsx b/packages/iconoir-react/src/server/Swimming.tsx index 8ebeb2d9..659d7538 100644 --- a/packages/iconoir-react/src/server/Swimming.tsx +++ b/packages/iconoir-react/src/server/Swimming.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSwimming( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwimming); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwimming = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSwimming); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SwipeDownGesture.tsx b/packages/iconoir-react/src/server/SwipeDownGesture.tsx index 703f63d1..2f3ef036 100644 --- a/packages/iconoir-react/src/server/SwipeDownGesture.tsx +++ b/packages/iconoir-react/src/server/SwipeDownGesture.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSwipeDownGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwipeDownGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwipeDownGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSwipeDownGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SwipeLeftGesture.tsx b/packages/iconoir-react/src/server/SwipeLeftGesture.tsx index e9321961..3abc1ddc 100644 --- a/packages/iconoir-react/src/server/SwipeLeftGesture.tsx +++ b/packages/iconoir-react/src/server/SwipeLeftGesture.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSwipeLeftGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwipeLeftGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwipeLeftGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSwipeLeftGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SwipeRightGesture.tsx b/packages/iconoir-react/src/server/SwipeRightGesture.tsx index b8870dd1..80bf1f93 100644 --- a/packages/iconoir-react/src/server/SwipeRightGesture.tsx +++ b/packages/iconoir-react/src/server/SwipeRightGesture.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSwipeRightGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwipeRightGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwipeRightGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSwipeRightGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SwipeTwoFingersDownGesture.tsx b/packages/iconoir-react/src/server/SwipeTwoFingersDownGesture.tsx index 0850eee3..6ce2edf5 100644 --- a/packages/iconoir-react/src/server/SwipeTwoFingersDownGesture.tsx +++ b/packages/iconoir-react/src/server/SwipeTwoFingersDownGesture.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSwipeTwoFingersDownGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersDownGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwipeTwoFingersDownGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSwipeTwoFingersDownGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SwipeTwoFingersLeftGesture.tsx b/packages/iconoir-react/src/server/SwipeTwoFingersLeftGesture.tsx index d90cdbbb..deb157b6 100644 --- a/packages/iconoir-react/src/server/SwipeTwoFingersLeftGesture.tsx +++ b/packages/iconoir-react/src/server/SwipeTwoFingersLeftGesture.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSwipeTwoFingersLeftGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersLeftGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwipeTwoFingersLeftGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSwipeTwoFingersLeftGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SwipeTwoFingersRightGesture.tsx b/packages/iconoir-react/src/server/SwipeTwoFingersRightGesture.tsx index ec552907..ee8ab81e 100644 --- a/packages/iconoir-react/src/server/SwipeTwoFingersRightGesture.tsx +++ b/packages/iconoir-react/src/server/SwipeTwoFingersRightGesture.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSwipeTwoFingersRightGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersRightGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwipeTwoFingersRightGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSwipeTwoFingersRightGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SwipeTwoFingersUpGesture.tsx b/packages/iconoir-react/src/server/SwipeTwoFingersUpGesture.tsx index ff88d26a..e0969a14 100644 --- a/packages/iconoir-react/src/server/SwipeTwoFingersUpGesture.tsx +++ b/packages/iconoir-react/src/server/SwipeTwoFingersUpGesture.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSwipeTwoFingersUpGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwipeTwoFingersUpGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwipeTwoFingersUpGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSwipeTwoFingersUpGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SwipeUpGesture.tsx b/packages/iconoir-react/src/server/SwipeUpGesture.tsx index 898ed1f2..7398ee7c 100644 --- a/packages/iconoir-react/src/server/SwipeUpGesture.tsx +++ b/packages/iconoir-react/src/server/SwipeUpGesture.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSwipeUpGesture( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwipeUpGesture); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwipeUpGesture = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSwipeUpGesture); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SwitchOff.tsx b/packages/iconoir-react/src/server/SwitchOff.tsx index 71115658..faf70c17 100644 --- a/packages/iconoir-react/src/server/SwitchOff.tsx +++ b/packages/iconoir-react/src/server/SwitchOff.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgSwitchOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwitchOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwitchOff = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSwitchOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SwitchOn.tsx b/packages/iconoir-react/src/server/SwitchOn.tsx index 66bca04f..1492e421 100644 --- a/packages/iconoir-react/src/server/SwitchOn.tsx +++ b/packages/iconoir-react/src/server/SwitchOn.tsx @@ -1,30 +1,30 @@ import * as React from "react"; -function SvgSwitchOn( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgSwitchOn); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSwitchOn = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgSwitchOn); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SystemRestart.tsx b/packages/iconoir-react/src/server/SystemRestart.tsx index db86fc45..e21c7992 100644 --- a/packages/iconoir-react/src/server/SystemRestart.tsx +++ b/packages/iconoir-react/src/server/SystemRestart.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSystemRestart( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSystemRestart); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSystemRestart = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSystemRestart); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/SystemShut.tsx b/packages/iconoir-react/src/server/SystemShut.tsx index eeff5b48..51d22e58 100644 --- a/packages/iconoir-react/src/server/SystemShut.tsx +++ b/packages/iconoir-react/src/server/SystemShut.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgSystemShut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgSystemShut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgSystemShut = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgSystemShut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TShirt.tsx b/packages/iconoir-react/src/server/TShirt.tsx index 24b54427..f9ac88c1 100644 --- a/packages/iconoir-react/src/server/TShirt.tsx +++ b/packages/iconoir-react/src/server/TShirt.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgTShirt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTShirt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTShirt = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgTShirt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Table.tsx b/packages/iconoir-react/src/server/Table.tsx index 7685c228..e1782275 100644 --- a/packages/iconoir-react/src/server/Table.tsx +++ b/packages/iconoir-react/src/server/Table.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgTable( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTable); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTable = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgTable); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Table2Columns.tsx b/packages/iconoir-react/src/server/Table2Columns.tsx index fe70b2e8..66e8581f 100644 --- a/packages/iconoir-react/src/server/Table2Columns.tsx +++ b/packages/iconoir-react/src/server/Table2Columns.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgTable2Columns( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTable2Columns); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTable2Columns = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTable2Columns); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TableRows.tsx b/packages/iconoir-react/src/server/TableRows.tsx index a6b77b6f..f2ec58a0 100644 --- a/packages/iconoir-react/src/server/TableRows.tsx +++ b/packages/iconoir-react/src/server/TableRows.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgTableRows( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTableRows); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTableRows = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTableRows); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TaskList.tsx b/packages/iconoir-react/src/server/TaskList.tsx index e37d3872..873bd53f 100644 --- a/packages/iconoir-react/src/server/TaskList.tsx +++ b/packages/iconoir-react/src/server/TaskList.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTaskList( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTaskList); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTaskList = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTaskList); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Telegram.tsx b/packages/iconoir-react/src/server/Telegram.tsx index b2c1b5a0..6902bb75 100644 --- a/packages/iconoir-react/src/server/Telegram.tsx +++ b/packages/iconoir-react/src/server/Telegram.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTelegram( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTelegram); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTelegram = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTelegram); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TelegramCircle.tsx b/packages/iconoir-react/src/server/TelegramCircle.tsx index 63ed3740..b3a19c35 100644 --- a/packages/iconoir-react/src/server/TelegramCircle.tsx +++ b/packages/iconoir-react/src/server/TelegramCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgTelegramCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTelegramCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTelegramCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTelegramCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TemperatureDown.tsx b/packages/iconoir-react/src/server/TemperatureDown.tsx index 538ccdbf..282c86ee 100644 --- a/packages/iconoir-react/src/server/TemperatureDown.tsx +++ b/packages/iconoir-react/src/server/TemperatureDown.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgTemperatureDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTemperatureDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTemperatureDown = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTemperatureDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TemperatureHigh.tsx b/packages/iconoir-react/src/server/TemperatureHigh.tsx index b477bf99..f6abc551 100644 --- a/packages/iconoir-react/src/server/TemperatureHigh.tsx +++ b/packages/iconoir-react/src/server/TemperatureHigh.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgTemperatureHigh( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTemperatureHigh); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTemperatureHigh = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTemperatureHigh); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TemperatureLow.tsx b/packages/iconoir-react/src/server/TemperatureLow.tsx index 5a330515..11aed4b8 100644 --- a/packages/iconoir-react/src/server/TemperatureLow.tsx +++ b/packages/iconoir-react/src/server/TemperatureLow.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgTemperatureLow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTemperatureLow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTemperatureLow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTemperatureLow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TemperatureUp.tsx b/packages/iconoir-react/src/server/TemperatureUp.tsx index e1b2430c..1316fd75 100644 --- a/packages/iconoir-react/src/server/TemperatureUp.tsx +++ b/packages/iconoir-react/src/server/TemperatureUp.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgTemperatureUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTemperatureUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTemperatureUp = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTemperatureUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TennisBall.tsx b/packages/iconoir-react/src/server/TennisBall.tsx index 1438eb75..6fa6936b 100644 --- a/packages/iconoir-react/src/server/TennisBall.tsx +++ b/packages/iconoir-react/src/server/TennisBall.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgTennisBall( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTennisBall); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTennisBall = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTennisBall); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TennisBallAlt.tsx b/packages/iconoir-react/src/server/TennisBallAlt.tsx index 03ad2bed..894d5d0a 100644 --- a/packages/iconoir-react/src/server/TennisBallAlt.tsx +++ b/packages/iconoir-react/src/server/TennisBallAlt.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgTennisBallAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTennisBallAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTennisBallAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTennisBallAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Terminal.tsx b/packages/iconoir-react/src/server/Terminal.tsx index 5b8e704a..a73a8c4e 100644 --- a/packages/iconoir-react/src/server/Terminal.tsx +++ b/packages/iconoir-react/src/server/Terminal.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTerminal( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTerminal); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTerminal = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTerminal); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TerminalTag.tsx b/packages/iconoir-react/src/server/TerminalTag.tsx index 9fecc1d6..5027eb41 100644 --- a/packages/iconoir-react/src/server/TerminalTag.tsx +++ b/packages/iconoir-react/src/server/TerminalTag.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgTerminalTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTerminalTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTerminalTag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTerminalTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TestTube.tsx b/packages/iconoir-react/src/server/TestTube.tsx index 9d975e49..13d1cfde 100644 --- a/packages/iconoir-react/src/server/TestTube.tsx +++ b/packages/iconoir-react/src/server/TestTube.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgTestTube( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTestTube); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTestTube = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTestTube); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Text.tsx b/packages/iconoir-react/src/server/Text.tsx index ce7427d5..0d769d04 100644 --- a/packages/iconoir-react/src/server/Text.tsx +++ b/packages/iconoir-react/src/server/Text.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgText( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgText); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgText = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgText); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TextAlt.tsx b/packages/iconoir-react/src/server/TextAlt.tsx index 19fc9b61..bbfb523a 100644 --- a/packages/iconoir-react/src/server/TextAlt.tsx +++ b/packages/iconoir-react/src/server/TextAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgTextAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTextAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTextAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTextAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TextBox.tsx b/packages/iconoir-react/src/server/TextBox.tsx index efb9c0a4..373b7ff3 100644 --- a/packages/iconoir-react/src/server/TextBox.tsx +++ b/packages/iconoir-react/src/server/TextBox.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgTextBox( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTextBox); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTextBox = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTextBox); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TextSize.tsx b/packages/iconoir-react/src/server/TextSize.tsx index 3468f0d4..d3005b8f 100644 --- a/packages/iconoir-react/src/server/TextSize.tsx +++ b/packages/iconoir-react/src/server/TextSize.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTextSize( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTextSize); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTextSize = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTextSize); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Threads.tsx b/packages/iconoir-react/src/server/Threads.tsx index 2f888293..7d5c2ba4 100644 --- a/packages/iconoir-react/src/server/Threads.tsx +++ b/packages/iconoir-react/src/server/Threads.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgThreads( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgThreads); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgThreads = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgThreads); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ThreePointsCircle.tsx b/packages/iconoir-react/src/server/ThreePointsCircle.tsx index 5aea35aa..828eafb7 100644 --- a/packages/iconoir-react/src/server/ThreePointsCircle.tsx +++ b/packages/iconoir-react/src/server/ThreePointsCircle.tsx @@ -1,54 +1,54 @@ import * as React from "react"; -function SvgThreePointsCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgThreePointsCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgThreePointsCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + + + +); +const ForwardRef = forwardRef(SvgThreePointsCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ThreeStars.tsx b/packages/iconoir-react/src/server/ThreeStars.tsx index 26a0c99f..deb7ddb3 100644 --- a/packages/iconoir-react/src/server/ThreeStars.tsx +++ b/packages/iconoir-react/src/server/ThreeStars.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgThreeStars( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgThreeStars); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgThreeStars = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgThreeStars); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ThumbsDown.tsx b/packages/iconoir-react/src/server/ThumbsDown.tsx index 4598a537..6401aa61 100644 --- a/packages/iconoir-react/src/server/ThumbsDown.tsx +++ b/packages/iconoir-react/src/server/ThumbsDown.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgThumbsDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgThumbsDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgThumbsDown = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgThumbsDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ThumbsUp.tsx b/packages/iconoir-react/src/server/ThumbsUp.tsx index 092a665f..1a9fd59c 100644 --- a/packages/iconoir-react/src/server/ThumbsUp.tsx +++ b/packages/iconoir-react/src/server/ThumbsUp.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgThumbsUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgThumbsUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgThumbsUp = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgThumbsUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Thunderstorm.tsx b/packages/iconoir-react/src/server/Thunderstorm.tsx index e0534c2f..6fd01dbc 100644 --- a/packages/iconoir-react/src/server/Thunderstorm.tsx +++ b/packages/iconoir-react/src/server/Thunderstorm.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgThunderstorm( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgThunderstorm); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgThunderstorm = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgThunderstorm); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TifFormat.tsx b/packages/iconoir-react/src/server/TifFormat.tsx index 7fac5bda..e8e76f82 100644 --- a/packages/iconoir-react/src/server/TifFormat.tsx +++ b/packages/iconoir-react/src/server/TifFormat.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgTifFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTifFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTifFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgTifFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TiffFormat.tsx b/packages/iconoir-react/src/server/TiffFormat.tsx index ca80e8b7..c6cc2c93 100644 --- a/packages/iconoir-react/src/server/TiffFormat.tsx +++ b/packages/iconoir-react/src/server/TiffFormat.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgTiffFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTiffFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTiffFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTiffFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TikTok.tsx b/packages/iconoir-react/src/server/TikTok.tsx index 6043e647..6d8b996c 100644 --- a/packages/iconoir-react/src/server/TikTok.tsx +++ b/packages/iconoir-react/src/server/TikTok.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgTikTok( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTikTok); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTikTok = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgTikTok); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TimeZone.tsx b/packages/iconoir-react/src/server/TimeZone.tsx index d519cad2..b97d4240 100644 --- a/packages/iconoir-react/src/server/TimeZone.tsx +++ b/packages/iconoir-react/src/server/TimeZone.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgTimeZone( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTimeZone); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTimeZone = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgTimeZone); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Timer.tsx b/packages/iconoir-react/src/server/Timer.tsx index d051b5c2..192b98ea 100644 --- a/packages/iconoir-react/src/server/Timer.tsx +++ b/packages/iconoir-react/src/server/Timer.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgTimer( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTimer); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTimer = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgTimer); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TimerOff.tsx b/packages/iconoir-react/src/server/TimerOff.tsx index a64faa36..fccd57e0 100644 --- a/packages/iconoir-react/src/server/TimerOff.tsx +++ b/packages/iconoir-react/src/server/TimerOff.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTimerOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTimerOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTimerOff = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTimerOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Tools.tsx b/packages/iconoir-react/src/server/Tools.tsx index 3b6793ff..08593de2 100644 --- a/packages/iconoir-react/src/server/Tools.tsx +++ b/packages/iconoir-react/src/server/Tools.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgTools( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTools); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTools = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgTools); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Tournament.tsx b/packages/iconoir-react/src/server/Tournament.tsx index c47f672d..d86c78d2 100644 --- a/packages/iconoir-react/src/server/Tournament.tsx +++ b/packages/iconoir-react/src/server/Tournament.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTournament( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTournament); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTournament = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTournament); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Tower.tsx b/packages/iconoir-react/src/server/Tower.tsx index de1b2df2..37716adc 100644 --- a/packages/iconoir-react/src/server/Tower.tsx +++ b/packages/iconoir-react/src/server/Tower.tsx @@ -1,26 +1,23 @@ import * as React from "react"; -function SvgTower( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTower); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTower = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgTower); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TowerCheck.tsx b/packages/iconoir-react/src/server/TowerCheck.tsx index 36b1df3c..2b1e5200 100644 --- a/packages/iconoir-react/src/server/TowerCheck.tsx +++ b/packages/iconoir-react/src/server/TowerCheck.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTowerCheck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTowerCheck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTowerCheck = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTowerCheck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TowerNoAccess.tsx b/packages/iconoir-react/src/server/TowerNoAccess.tsx index 45d1c4da..487922a0 100644 --- a/packages/iconoir-react/src/server/TowerNoAccess.tsx +++ b/packages/iconoir-react/src/server/TowerNoAccess.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgTowerNoAccess( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTowerNoAccess); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTowerNoAccess = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTowerNoAccess); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TowerWarning.tsx b/packages/iconoir-react/src/server/TowerWarning.tsx index 17361e13..6a2f87f1 100644 --- a/packages/iconoir-react/src/server/TowerWarning.tsx +++ b/packages/iconoir-react/src/server/TowerWarning.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgTowerWarning( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTowerWarning); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTowerWarning = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTowerWarning); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Trademark.tsx b/packages/iconoir-react/src/server/Trademark.tsx index 3c9cc86f..042d58e6 100644 --- a/packages/iconoir-react/src/server/Trademark.tsx +++ b/packages/iconoir-react/src/server/Trademark.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgTrademark( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTrademark); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTrademark = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTrademark); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Train.tsx b/packages/iconoir-react/src/server/Train.tsx index ad72f757..21fc0239 100644 --- a/packages/iconoir-react/src/server/Train.tsx +++ b/packages/iconoir-react/src/server/Train.tsx @@ -1,39 +1,36 @@ import * as React from "react"; -function SvgTrain( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTrain); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTrain = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgTrain); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Tram.tsx b/packages/iconoir-react/src/server/Tram.tsx index d46cd3e7..8aec2ee8 100644 --- a/packages/iconoir-react/src/server/Tram.tsx +++ b/packages/iconoir-react/src/server/Tram.tsx @@ -1,39 +1,36 @@ import * as React from "react"; -function SvgTram( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTram); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTram = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgTram); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TransitionDown.tsx b/packages/iconoir-react/src/server/TransitionDown.tsx index 2f9c125d..929bc7ab 100644 --- a/packages/iconoir-react/src/server/TransitionDown.tsx +++ b/packages/iconoir-react/src/server/TransitionDown.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgTransitionDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTransitionDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTransitionDown = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTransitionDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TransitionLeft.tsx b/packages/iconoir-react/src/server/TransitionLeft.tsx index dfb82a53..3ccda3cd 100644 --- a/packages/iconoir-react/src/server/TransitionLeft.tsx +++ b/packages/iconoir-react/src/server/TransitionLeft.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgTransitionLeft( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTransitionLeft); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTransitionLeft = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTransitionLeft); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TransitionRight.tsx b/packages/iconoir-react/src/server/TransitionRight.tsx index 83d87ad2..db23eec7 100644 --- a/packages/iconoir-react/src/server/TransitionRight.tsx +++ b/packages/iconoir-react/src/server/TransitionRight.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgTransitionRight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTransitionRight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTransitionRight = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTransitionRight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TransitionUp.tsx b/packages/iconoir-react/src/server/TransitionUp.tsx index 184fbb54..81909a85 100644 --- a/packages/iconoir-react/src/server/TransitionUp.tsx +++ b/packages/iconoir-react/src/server/TransitionUp.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgTransitionUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTransitionUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTransitionUp = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTransitionUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Translate.tsx b/packages/iconoir-react/src/server/Translate.tsx index f838030c..8df72363 100644 --- a/packages/iconoir-react/src/server/Translate.tsx +++ b/packages/iconoir-react/src/server/Translate.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTranslate( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTranslate); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTranslate = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTranslate); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Trash.tsx b/packages/iconoir-react/src/server/Trash.tsx index f96e9e7f..978c5585 100644 --- a/packages/iconoir-react/src/server/Trash.tsx +++ b/packages/iconoir-react/src/server/Trash.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgTrash( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTrash); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTrash = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgTrash); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Treadmill.tsx b/packages/iconoir-react/src/server/Treadmill.tsx index 7f90a33b..d4959563 100644 --- a/packages/iconoir-react/src/server/Treadmill.tsx +++ b/packages/iconoir-react/src/server/Treadmill.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgTreadmill( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTreadmill); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTreadmill = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgTreadmill); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Tree.tsx b/packages/iconoir-react/src/server/Tree.tsx index df72af20..db146306 100644 --- a/packages/iconoir-react/src/server/Tree.tsx +++ b/packages/iconoir-react/src/server/Tree.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgTree( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTree); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTree = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgTree); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Trekking.tsx b/packages/iconoir-react/src/server/Trekking.tsx index beb138fe..788aa88d 100644 --- a/packages/iconoir-react/src/server/Trekking.tsx +++ b/packages/iconoir-react/src/server/Trekking.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTrekking( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTrekking); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTrekking = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTrekking); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Trello.tsx b/packages/iconoir-react/src/server/Trello.tsx index 09cb4d78..584e5777 100644 --- a/packages/iconoir-react/src/server/Trello.tsx +++ b/packages/iconoir-react/src/server/Trello.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgTrello( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTrello); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTrello = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgTrello); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Triangle.tsx b/packages/iconoir-react/src/server/Triangle.tsx index cec14eb2..a9302efa 100644 --- a/packages/iconoir-react/src/server/Triangle.tsx +++ b/packages/iconoir-react/src/server/Triangle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTriangle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTriangle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTriangle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTriangle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TriangleFlag.tsx b/packages/iconoir-react/src/server/TriangleFlag.tsx index 76655bf0..3cfdeb01 100644 --- a/packages/iconoir-react/src/server/TriangleFlag.tsx +++ b/packages/iconoir-react/src/server/TriangleFlag.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTriangleFlag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTriangleFlag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTriangleFlag = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTriangleFlag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TriangleFlagCircle.tsx b/packages/iconoir-react/src/server/TriangleFlagCircle.tsx index 116ac051..4d3c2af3 100644 --- a/packages/iconoir-react/src/server/TriangleFlagCircle.tsx +++ b/packages/iconoir-react/src/server/TriangleFlagCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTriangleFlagCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTriangleFlagCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTriangleFlagCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTriangleFlagCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TriangleFlagTwoStripes.tsx b/packages/iconoir-react/src/server/TriangleFlagTwoStripes.tsx index a70ddf23..b0c62289 100644 --- a/packages/iconoir-react/src/server/TriangleFlagTwoStripes.tsx +++ b/packages/iconoir-react/src/server/TriangleFlagTwoStripes.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTriangleFlagTwoStripes( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTriangleFlagTwoStripes); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTriangleFlagTwoStripes = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTriangleFlagTwoStripes); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Trophy.tsx b/packages/iconoir-react/src/server/Trophy.tsx index 5fb1f44b..e57aa97f 100644 --- a/packages/iconoir-react/src/server/Trophy.tsx +++ b/packages/iconoir-react/src/server/Trophy.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgTrophy( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTrophy); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTrophy = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgTrophy); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Truck.tsx b/packages/iconoir-react/src/server/Truck.tsx index 0c5e7fa1..fd8e4fc3 100644 --- a/packages/iconoir-react/src/server/Truck.tsx +++ b/packages/iconoir-react/src/server/Truck.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgTruck( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTruck); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTruck = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgTruck); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TruckLength.tsx b/packages/iconoir-react/src/server/TruckLength.tsx index af1123c3..189ff811 100644 --- a/packages/iconoir-react/src/server/TruckLength.tsx +++ b/packages/iconoir-react/src/server/TruckLength.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgTruckLength( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTruckLength); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTruckLength = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgTruckLength); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Tunnel.tsx b/packages/iconoir-react/src/server/Tunnel.tsx index d12d2035..95312ac9 100644 --- a/packages/iconoir-react/src/server/Tunnel.tsx +++ b/packages/iconoir-react/src/server/Tunnel.tsx @@ -1,39 +1,36 @@ import * as React from "react"; -function SvgTunnel( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTunnel); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTunnel = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgTunnel); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Tv.tsx b/packages/iconoir-react/src/server/Tv.tsx index 2260e842..b15df6e4 100644 --- a/packages/iconoir-react/src/server/Tv.tsx +++ b/packages/iconoir-react/src/server/Tv.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgTv( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTv); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTv = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgTv); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TvFix.tsx b/packages/iconoir-react/src/server/TvFix.tsx index c86cdf8d..0f93a357 100644 --- a/packages/iconoir-react/src/server/TvFix.tsx +++ b/packages/iconoir-react/src/server/TvFix.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgTvFix( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTvFix); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTvFix = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgTvFix); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TvIssue.tsx b/packages/iconoir-react/src/server/TvIssue.tsx index 74dc7d6b..742ab08e 100644 --- a/packages/iconoir-react/src/server/TvIssue.tsx +++ b/packages/iconoir-react/src/server/TvIssue.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgTvIssue( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTvIssue); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTvIssue = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgTvIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Twitter.tsx b/packages/iconoir-react/src/server/Twitter.tsx index 770509ec..403869b6 100644 --- a/packages/iconoir-react/src/server/Twitter.tsx +++ b/packages/iconoir-react/src/server/Twitter.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgTwitter( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgTwitter); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTwitter = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgTwitter); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TwitterVerifiedBadge.tsx b/packages/iconoir-react/src/server/TwitterVerifiedBadge.tsx index 3420f35a..e6dcd83f 100644 --- a/packages/iconoir-react/src/server/TwitterVerifiedBadge.tsx +++ b/packages/iconoir-react/src/server/TwitterVerifiedBadge.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgTwitterVerifiedBadge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTwitterVerifiedBadge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTwitterVerifiedBadge = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTwitterVerifiedBadge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TwoPointsCircle.tsx b/packages/iconoir-react/src/server/TwoPointsCircle.tsx index 6de394b8..533d2195 100644 --- a/packages/iconoir-react/src/server/TwoPointsCircle.tsx +++ b/packages/iconoir-react/src/server/TwoPointsCircle.tsx @@ -1,41 +1,41 @@ import * as React from "react"; -function SvgTwoPointsCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTwoPointsCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTwoPointsCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgTwoPointsCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/TwoSeaterSofa.tsx b/packages/iconoir-react/src/server/TwoSeaterSofa.tsx index 8d80e76a..7edb2444 100644 --- a/packages/iconoir-react/src/server/TwoSeaterSofa.tsx +++ b/packages/iconoir-react/src/server/TwoSeaterSofa.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgTwoSeaterSofa( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgTwoSeaterSofa); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgTwoSeaterSofa = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgTwoSeaterSofa); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Type.tsx b/packages/iconoir-react/src/server/Type.tsx index 1d84b987..b8509d1c 100644 --- a/packages/iconoir-react/src/server/Type.tsx +++ b/packages/iconoir-react/src/server/Type.tsx @@ -1,32 +1,29 @@ import * as React from "react"; -function SvgType( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgType); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgType = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgType); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UmbrellaFull.tsx b/packages/iconoir-react/src/server/UmbrellaFull.tsx index 5d4f61e9..bcd29140 100644 --- a/packages/iconoir-react/src/server/UmbrellaFull.tsx +++ b/packages/iconoir-react/src/server/UmbrellaFull.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgUmbrellaFull( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUmbrellaFull); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUmbrellaFull = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUmbrellaFull); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Underline.tsx b/packages/iconoir-react/src/server/Underline.tsx index 4e550260..cff02b57 100644 --- a/packages/iconoir-react/src/server/Underline.tsx +++ b/packages/iconoir-react/src/server/Underline.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgUnderline( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgUnderline); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUnderline = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgUnderline); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UnderlineSquare.tsx b/packages/iconoir-react/src/server/UnderlineSquare.tsx index 08dd4439..1d434390 100644 --- a/packages/iconoir-react/src/server/UnderlineSquare.tsx +++ b/packages/iconoir-react/src/server/UnderlineSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgUnderlineSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUnderlineSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUnderlineSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUnderlineSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Undo.tsx b/packages/iconoir-react/src/server/Undo.tsx index 3f8855cd..9afab97f 100644 --- a/packages/iconoir-react/src/server/Undo.tsx +++ b/packages/iconoir-react/src/server/Undo.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgUndo( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUndo); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUndo = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgUndo); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UndoAction.tsx b/packages/iconoir-react/src/server/UndoAction.tsx index f021dd84..5b6967dc 100644 --- a/packages/iconoir-react/src/server/UndoAction.tsx +++ b/packages/iconoir-react/src/server/UndoAction.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgUndoAction( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUndoAction); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUndoAction = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUndoAction); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UndoCircle.tsx b/packages/iconoir-react/src/server/UndoCircle.tsx index ba212f14..805c19aa 100644 --- a/packages/iconoir-react/src/server/UndoCircle.tsx +++ b/packages/iconoir-react/src/server/UndoCircle.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgUndoCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUndoCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUndoCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgUndoCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Union.tsx b/packages/iconoir-react/src/server/Union.tsx index adadc39d..7692abe8 100644 --- a/packages/iconoir-react/src/server/Union.tsx +++ b/packages/iconoir-react/src/server/Union.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgUnion( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUnion); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUnion = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgUnion); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UnionAlt.tsx b/packages/iconoir-react/src/server/UnionAlt.tsx index 77a15eeb..783ea043 100644 --- a/packages/iconoir-react/src/server/UnionAlt.tsx +++ b/packages/iconoir-react/src/server/UnionAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgUnionAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUnionAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUnionAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUnionAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UnionHorizAlt.tsx b/packages/iconoir-react/src/server/UnionHorizAlt.tsx index bb677a9e..0b05fc3c 100644 --- a/packages/iconoir-react/src/server/UnionHorizAlt.tsx +++ b/packages/iconoir-react/src/server/UnionHorizAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgUnionHorizAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUnionHorizAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUnionHorizAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUnionHorizAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Unity.tsx b/packages/iconoir-react/src/server/Unity.tsx index 840dfee1..8e3628cf 100644 --- a/packages/iconoir-react/src/server/Unity.tsx +++ b/packages/iconoir-react/src/server/Unity.tsx @@ -1,35 +1,32 @@ import * as React from "react"; -function SvgUnity( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUnity); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUnity = (props: SVGProps, ref: Ref) => ( + + + + + + + + + + +); +const ForwardRef = forwardRef(SvgUnity); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Unity5.tsx b/packages/iconoir-react/src/server/Unity5.tsx index b9a4d947..b888313a 100644 --- a/packages/iconoir-react/src/server/Unity5.tsx +++ b/packages/iconoir-react/src/server/Unity5.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgUnity5( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUnity5); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUnity5 = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgUnity5); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Unjoin3D.tsx b/packages/iconoir-react/src/server/Unjoin3D.tsx index b9d20ea9..67f8f8d3 100644 --- a/packages/iconoir-react/src/server/Unjoin3D.tsx +++ b/packages/iconoir-react/src/server/Unjoin3D.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgUnjoin3D( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgUnjoin3D); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUnjoin3D = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgUnjoin3D); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UpRoundArrow.tsx b/packages/iconoir-react/src/server/UpRoundArrow.tsx index fc4a8c36..1a706272 100644 --- a/packages/iconoir-react/src/server/UpRoundArrow.tsx +++ b/packages/iconoir-react/src/server/UpRoundArrow.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgUpRoundArrow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUpRoundArrow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUpRoundArrow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUpRoundArrow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Upload.tsx b/packages/iconoir-react/src/server/Upload.tsx index bc6f6e56..dbd76deb 100644 --- a/packages/iconoir-react/src/server/Upload.tsx +++ b/packages/iconoir-react/src/server/Upload.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgUpload( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgUpload); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUpload = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgUpload); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UploadDataWindow.tsx b/packages/iconoir-react/src/server/UploadDataWindow.tsx index 6c26313c..5dc177f3 100644 --- a/packages/iconoir-react/src/server/UploadDataWindow.tsx +++ b/packages/iconoir-react/src/server/UploadDataWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgUploadDataWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUploadDataWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUploadDataWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUploadDataWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UploadSquare.tsx b/packages/iconoir-react/src/server/UploadSquare.tsx index fc942f8c..3d702de5 100644 --- a/packages/iconoir-react/src/server/UploadSquare.tsx +++ b/packages/iconoir-react/src/server/UploadSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgUploadSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUploadSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUploadSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUploadSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Usb.tsx b/packages/iconoir-react/src/server/Usb.tsx index 79be7343..658b8e33 100644 --- a/packages/iconoir-react/src/server/Usb.tsx +++ b/packages/iconoir-react/src/server/Usb.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgUsb( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgUsb); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUsb = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgUsb); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/User.tsx b/packages/iconoir-react/src/server/User.tsx index de089966..3f759c09 100644 --- a/packages/iconoir-react/src/server/User.tsx +++ b/packages/iconoir-react/src/server/User.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgUser( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgUser); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUser = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgUser); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UserBag.tsx b/packages/iconoir-react/src/server/UserBag.tsx index 9bc3ac2e..05a92375 100644 --- a/packages/iconoir-react/src/server/UserBag.tsx +++ b/packages/iconoir-react/src/server/UserBag.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgUserBag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgUserBag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUserBag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUserBag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UserCart.tsx b/packages/iconoir-react/src/server/UserCart.tsx index 61086798..378998f5 100644 --- a/packages/iconoir-react/src/server/UserCart.tsx +++ b/packages/iconoir-react/src/server/UserCart.tsx @@ -1,28 +1,34 @@ import * as React from "react"; -function SvgUserCart( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgUserCart); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUserCart = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUserCart); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UserCircle.tsx b/packages/iconoir-react/src/server/UserCircle.tsx index 52d86ac6..fc4158b6 100644 --- a/packages/iconoir-react/src/server/UserCircle.tsx +++ b/packages/iconoir-react/src/server/UserCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgUserCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUserCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUserCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgUserCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UserCrown.tsx b/packages/iconoir-react/src/server/UserCrown.tsx index cb4a98bd..de0d3a24 100644 --- a/packages/iconoir-react/src/server/UserCrown.tsx +++ b/packages/iconoir-react/src/server/UserCrown.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgUserCrown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUserCrown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUserCrown = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUserCrown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UserLove.tsx b/packages/iconoir-react/src/server/UserLove.tsx index 13b21e84..46cac008 100644 --- a/packages/iconoir-react/src/server/UserLove.tsx +++ b/packages/iconoir-react/src/server/UserLove.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgUserLove( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUserLove); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUserLove = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgUserLove); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UserScan.tsx b/packages/iconoir-react/src/server/UserScan.tsx index 7d8ed425..9bed02b0 100644 --- a/packages/iconoir-react/src/server/UserScan.tsx +++ b/packages/iconoir-react/src/server/UserScan.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgUserScan( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgUserScan); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUserScan = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgUserScan); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UserSquare.tsx b/packages/iconoir-react/src/server/UserSquare.tsx index a4e381cc..caf7773e 100644 --- a/packages/iconoir-react/src/server/UserSquare.tsx +++ b/packages/iconoir-react/src/server/UserSquare.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgUserSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUserSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUserSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgUserSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/UserStar.tsx b/packages/iconoir-react/src/server/UserStar.tsx index 3284c75a..c7888946 100644 --- a/packages/iconoir-react/src/server/UserStar.tsx +++ b/packages/iconoir-react/src/server/UserStar.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgUserStar( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgUserStar); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgUserStar = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgUserStar); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Vegan.tsx b/packages/iconoir-react/src/server/Vegan.tsx index 279d4817..77efa86b 100644 --- a/packages/iconoir-react/src/server/Vegan.tsx +++ b/packages/iconoir-react/src/server/Vegan.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgVegan( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgVegan); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVegan = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgVegan); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VeganCircle.tsx b/packages/iconoir-react/src/server/VeganCircle.tsx index 3564f8f8..56415def 100644 --- a/packages/iconoir-react/src/server/VeganCircle.tsx +++ b/packages/iconoir-react/src/server/VeganCircle.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgVeganCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgVeganCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVeganCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgVeganCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VeganSquare.tsx b/packages/iconoir-react/src/server/VeganSquare.tsx index 00433c07..374d5fe5 100644 --- a/packages/iconoir-react/src/server/VeganSquare.tsx +++ b/packages/iconoir-react/src/server/VeganSquare.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgVeganSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgVeganSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVeganSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgVeganSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VerifiedBadge.tsx b/packages/iconoir-react/src/server/VerifiedBadge.tsx index 67763b17..cc43b6cb 100644 --- a/packages/iconoir-react/src/server/VerifiedBadge.tsx +++ b/packages/iconoir-react/src/server/VerifiedBadge.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgVerifiedBadge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgVerifiedBadge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVerifiedBadge = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgVerifiedBadge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VerifiedUser.tsx b/packages/iconoir-react/src/server/VerifiedUser.tsx index 179f88d9..ee470433 100644 --- a/packages/iconoir-react/src/server/VerifiedUser.tsx +++ b/packages/iconoir-react/src/server/VerifiedUser.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgVerifiedUser( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgVerifiedUser); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVerifiedUser = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgVerifiedUser); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VerticalMerge.tsx b/packages/iconoir-react/src/server/VerticalMerge.tsx index f7b64ed6..09c5a871 100644 --- a/packages/iconoir-react/src/server/VerticalMerge.tsx +++ b/packages/iconoir-react/src/server/VerticalMerge.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgVerticalMerge( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVerticalMerge); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVerticalMerge = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgVerticalMerge); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VerticalSplit.tsx b/packages/iconoir-react/src/server/VerticalSplit.tsx index 6562b757..7f7da23e 100644 --- a/packages/iconoir-react/src/server/VerticalSplit.tsx +++ b/packages/iconoir-react/src/server/VerticalSplit.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgVerticalSplit( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVerticalSplit); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVerticalSplit = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgVerticalSplit); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Vials.tsx b/packages/iconoir-react/src/server/Vials.tsx index 8147d742..a9a9466a 100644 --- a/packages/iconoir-react/src/server/Vials.tsx +++ b/packages/iconoir-react/src/server/Vials.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgVials( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVials); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVials = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgVials); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VideoCamera.tsx b/packages/iconoir-react/src/server/VideoCamera.tsx index 1eb72419..24af4335 100644 --- a/packages/iconoir-react/src/server/VideoCamera.tsx +++ b/packages/iconoir-react/src/server/VideoCamera.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgVideoCamera( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVideoCamera); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVideoCamera = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgVideoCamera); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VideoCameraOff.tsx b/packages/iconoir-react/src/server/VideoCameraOff.tsx index 48ac9b34..2c1436eb 100644 --- a/packages/iconoir-react/src/server/VideoCameraOff.tsx +++ b/packages/iconoir-react/src/server/VideoCameraOff.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgVideoCameraOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVideoCameraOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVideoCameraOff = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgVideoCameraOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VideoProjector.tsx b/packages/iconoir-react/src/server/VideoProjector.tsx index 51cde836..caef8493 100644 --- a/packages/iconoir-react/src/server/VideoProjector.tsx +++ b/packages/iconoir-react/src/server/VideoProjector.tsx @@ -1,38 +1,38 @@ import * as React from "react"; -function SvgVideoProjector( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgVideoProjector); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVideoProjector = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgVideoProjector); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/View360.tsx b/packages/iconoir-react/src/server/View360.tsx index 79505b1b..063b7a24 100644 --- a/packages/iconoir-react/src/server/View360.tsx +++ b/packages/iconoir-react/src/server/View360.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgView360( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgView360); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgView360 = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgView360); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ViewColumns2.tsx b/packages/iconoir-react/src/server/ViewColumns2.tsx index 9b9f8a2a..45d8775b 100644 --- a/packages/iconoir-react/src/server/ViewColumns2.tsx +++ b/packages/iconoir-react/src/server/ViewColumns2.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgViewColumns2( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgViewColumns2); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgViewColumns2 = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgViewColumns2); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ViewColumns3.tsx b/packages/iconoir-react/src/server/ViewColumns3.tsx index f2f4c04e..ab63cebe 100644 --- a/packages/iconoir-react/src/server/ViewColumns3.tsx +++ b/packages/iconoir-react/src/server/ViewColumns3.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgViewColumns3( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgViewColumns3); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgViewColumns3 = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgViewColumns3); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ViewGrid.tsx b/packages/iconoir-react/src/server/ViewGrid.tsx index d10e8452..70be8d2c 100644 --- a/packages/iconoir-react/src/server/ViewGrid.tsx +++ b/packages/iconoir-react/src/server/ViewGrid.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgViewGrid( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgViewGrid); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgViewGrid = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgViewGrid); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ViewStructureDown.tsx b/packages/iconoir-react/src/server/ViewStructureDown.tsx index a364127c..b7197ed8 100644 --- a/packages/iconoir-react/src/server/ViewStructureDown.tsx +++ b/packages/iconoir-react/src/server/ViewStructureDown.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgViewStructureDown( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgViewStructureDown); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgViewStructureDown = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgViewStructureDown); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ViewStructureUp.tsx b/packages/iconoir-react/src/server/ViewStructureUp.tsx index fcb4fdfa..545f0829 100644 --- a/packages/iconoir-react/src/server/ViewStructureUp.tsx +++ b/packages/iconoir-react/src/server/ViewStructureUp.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgViewStructureUp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgViewStructureUp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgViewStructureUp = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgViewStructureUp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Voice.tsx b/packages/iconoir-react/src/server/Voice.tsx index 03ff72f1..3b089636 100644 --- a/packages/iconoir-react/src/server/Voice.tsx +++ b/packages/iconoir-react/src/server/Voice.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgVoice( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVoice); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVoice = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgVoice); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VoiceCircle.tsx b/packages/iconoir-react/src/server/VoiceCircle.tsx index 4840a209..6c6388f5 100644 --- a/packages/iconoir-react/src/server/VoiceCircle.tsx +++ b/packages/iconoir-react/src/server/VoiceCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgVoiceCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVoiceCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVoiceCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgVoiceCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VoiceError.tsx b/packages/iconoir-react/src/server/VoiceError.tsx index 5ac83c47..a1416f84 100644 --- a/packages/iconoir-react/src/server/VoiceError.tsx +++ b/packages/iconoir-react/src/server/VoiceError.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgVoiceError( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVoiceError); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVoiceError = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgVoiceError); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VoiceLockCircle.tsx b/packages/iconoir-react/src/server/VoiceLockCircle.tsx index b7029e10..430b205d 100644 --- a/packages/iconoir-react/src/server/VoiceLockCircle.tsx +++ b/packages/iconoir-react/src/server/VoiceLockCircle.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgVoiceLockCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgVoiceLockCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVoiceLockCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgVoiceLockCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VoiceOk.tsx b/packages/iconoir-react/src/server/VoiceOk.tsx index fd487513..36628675 100644 --- a/packages/iconoir-react/src/server/VoiceOk.tsx +++ b/packages/iconoir-react/src/server/VoiceOk.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgVoiceOk( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVoiceOk); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVoiceOk = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgVoiceOk); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VoicePhone.tsx b/packages/iconoir-react/src/server/VoicePhone.tsx index 624271de..349d684f 100644 --- a/packages/iconoir-react/src/server/VoicePhone.tsx +++ b/packages/iconoir-react/src/server/VoicePhone.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgVoicePhone( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVoicePhone); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVoicePhone = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgVoicePhone); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VoiceScan.tsx b/packages/iconoir-react/src/server/VoiceScan.tsx index c5e8654e..ef3b5904 100644 --- a/packages/iconoir-react/src/server/VoiceScan.tsx +++ b/packages/iconoir-react/src/server/VoiceScan.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgVoiceScan( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVoiceScan); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVoiceScan = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgVoiceScan); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VoiceSquare.tsx b/packages/iconoir-react/src/server/VoiceSquare.tsx index 7c879b6b..f2a43114 100644 --- a/packages/iconoir-react/src/server/VoiceSquare.tsx +++ b/packages/iconoir-react/src/server/VoiceSquare.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgVoiceSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgVoiceSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVoiceSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgVoiceSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VrSymbol.tsx b/packages/iconoir-react/src/server/VrSymbol.tsx index db2b4f34..601da074 100644 --- a/packages/iconoir-react/src/server/VrSymbol.tsx +++ b/packages/iconoir-react/src/server/VrSymbol.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgVrSymbol( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgVrSymbol); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVrSymbol = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgVrSymbol); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/VueJs.tsx b/packages/iconoir-react/src/server/VueJs.tsx index 031bdf3a..a6ddbd0c 100644 --- a/packages/iconoir-react/src/server/VueJs.tsx +++ b/packages/iconoir-react/src/server/VueJs.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgVueJs( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgVueJs); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgVueJs = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgVueJs); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Waist.tsx b/packages/iconoir-react/src/server/Waist.tsx index 345364ce..60f76e76 100644 --- a/packages/iconoir-react/src/server/Waist.tsx +++ b/packages/iconoir-react/src/server/Waist.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgWaist( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWaist); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWaist = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgWaist); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Walking.tsx b/packages/iconoir-react/src/server/Walking.tsx index 360b2ce9..255bd2ee 100644 --- a/packages/iconoir-react/src/server/Walking.tsx +++ b/packages/iconoir-react/src/server/Walking.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgWalking( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWalking); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWalking = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWalking); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Wallet.tsx b/packages/iconoir-react/src/server/Wallet.tsx index ad6c8cc4..4b339dc6 100644 --- a/packages/iconoir-react/src/server/Wallet.tsx +++ b/packages/iconoir-react/src/server/Wallet.tsx @@ -1,37 +1,34 @@ import * as React from "react"; -function SvgWallet( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWallet); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWallet = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgWallet); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WarningCircle.tsx b/packages/iconoir-react/src/server/WarningCircle.tsx index a3f290ac..40d6a0b7 100644 --- a/packages/iconoir-react/src/server/WarningCircle.tsx +++ b/packages/iconoir-react/src/server/WarningCircle.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgWarningCircle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWarningCircle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWarningCircle = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgWarningCircle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WarningHexagon.tsx b/packages/iconoir-react/src/server/WarningHexagon.tsx index 70e6cea1..72521268 100644 --- a/packages/iconoir-react/src/server/WarningHexagon.tsx +++ b/packages/iconoir-react/src/server/WarningHexagon.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgWarningHexagon( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWarningHexagon); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWarningHexagon = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgWarningHexagon); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WarningSquare.tsx b/packages/iconoir-react/src/server/WarningSquare.tsx index f44eb1d1..b4681a3f 100644 --- a/packages/iconoir-react/src/server/WarningSquare.tsx +++ b/packages/iconoir-react/src/server/WarningSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgWarningSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWarningSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWarningSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWarningSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WarningTriangle.tsx b/packages/iconoir-react/src/server/WarningTriangle.tsx index 23db04d4..b69d2807 100644 --- a/packages/iconoir-react/src/server/WarningTriangle.tsx +++ b/packages/iconoir-react/src/server/WarningTriangle.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgWarningTriangle( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWarningTriangle); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWarningTriangle = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWarningTriangle); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WarningWindow.tsx b/packages/iconoir-react/src/server/WarningWindow.tsx index 56474f1e..948ab2f3 100644 --- a/packages/iconoir-react/src/server/WarningWindow.tsx +++ b/packages/iconoir-react/src/server/WarningWindow.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgWarningWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWarningWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWarningWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWarningWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Wash.tsx b/packages/iconoir-react/src/server/Wash.tsx index bf4133a2..47bd3068 100644 --- a/packages/iconoir-react/src/server/Wash.tsx +++ b/packages/iconoir-react/src/server/Wash.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgWash( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWash); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWash = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgWash); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WashingMachine.tsx b/packages/iconoir-react/src/server/WashingMachine.tsx index 8df603f1..571da6da 100644 --- a/packages/iconoir-react/src/server/WashingMachine.tsx +++ b/packages/iconoir-react/src/server/WashingMachine.tsx @@ -1,34 +1,40 @@ import * as React from "react"; -function SvgWashingMachine( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWashingMachine); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWashingMachine = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgWashingMachine); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WateringSoil.tsx b/packages/iconoir-react/src/server/WateringSoil.tsx index 8b92e339..b283cd01 100644 --- a/packages/iconoir-react/src/server/WateringSoil.tsx +++ b/packages/iconoir-react/src/server/WateringSoil.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgWateringSoil( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWateringSoil); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWateringSoil = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgWateringSoil); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WebWindow.tsx b/packages/iconoir-react/src/server/WebWindow.tsx index 503cd89c..b00765c5 100644 --- a/packages/iconoir-react/src/server/WebWindow.tsx +++ b/packages/iconoir-react/src/server/WebWindow.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgWebWindow( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWebWindow); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWebWindow = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWebWindow); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WebWindowClose.tsx b/packages/iconoir-react/src/server/WebWindowClose.tsx index b589019a..6e01aaf3 100644 --- a/packages/iconoir-react/src/server/WebWindowClose.tsx +++ b/packages/iconoir-react/src/server/WebWindowClose.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgWebWindowClose( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWebWindowClose); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWebWindowClose = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWebWindowClose); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WebWindowEnergyConsumption.tsx b/packages/iconoir-react/src/server/WebWindowEnergyConsumption.tsx index cc6f3a5c..6397deb0 100644 --- a/packages/iconoir-react/src/server/WebWindowEnergyConsumption.tsx +++ b/packages/iconoir-react/src/server/WebWindowEnergyConsumption.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgWebWindowEnergyConsumption( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWebWindowEnergyConsumption); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWebWindowEnergyConsumption = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWebWindowEnergyConsumption); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WebpFormat.tsx b/packages/iconoir-react/src/server/WebpFormat.tsx index d273b319..753e5d7c 100644 --- a/packages/iconoir-react/src/server/WebpFormat.tsx +++ b/packages/iconoir-react/src/server/WebpFormat.tsx @@ -1,39 +1,39 @@ import * as React from "react"; -function SvgWebpFormat( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWebpFormat); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWebpFormat = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgWebpFormat); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Weight.tsx b/packages/iconoir-react/src/server/Weight.tsx index 304ae4b1..14699dd0 100644 --- a/packages/iconoir-react/src/server/Weight.tsx +++ b/packages/iconoir-react/src/server/Weight.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgWeight( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWeight); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWeight = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgWeight); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WeightAlt.tsx b/packages/iconoir-react/src/server/WeightAlt.tsx index 74f930b7..2c62ed00 100644 --- a/packages/iconoir-react/src/server/WeightAlt.tsx +++ b/packages/iconoir-react/src/server/WeightAlt.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgWeightAlt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWeightAlt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWeightAlt = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWeightAlt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WhiteFlag.tsx b/packages/iconoir-react/src/server/WhiteFlag.tsx index 03e493c6..3e350942 100644 --- a/packages/iconoir-react/src/server/WhiteFlag.tsx +++ b/packages/iconoir-react/src/server/WhiteFlag.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgWhiteFlag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWhiteFlag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWhiteFlag = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgWhiteFlag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Wifi.tsx b/packages/iconoir-react/src/server/Wifi.tsx index 641398e9..98ad9a8f 100644 --- a/packages/iconoir-react/src/server/Wifi.tsx +++ b/packages/iconoir-react/src/server/Wifi.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgWifi( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWifi); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWifi = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgWifi); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WifiError.tsx b/packages/iconoir-react/src/server/WifiError.tsx index 4266b20e..ea497bc3 100644 --- a/packages/iconoir-react/src/server/WifiError.tsx +++ b/packages/iconoir-react/src/server/WifiError.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgWifiError( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWifiError); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWifiError = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgWifiError); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WifiIssue.tsx b/packages/iconoir-react/src/server/WifiIssue.tsx index 666664c0..de8e9d42 100644 --- a/packages/iconoir-react/src/server/WifiIssue.tsx +++ b/packages/iconoir-react/src/server/WifiIssue.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgWifiIssue( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWifiIssue); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWifiIssue = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWifiIssue); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WifiOff.tsx b/packages/iconoir-react/src/server/WifiOff.tsx index e9d90c7e..5859c46c 100644 --- a/packages/iconoir-react/src/server/WifiOff.tsx +++ b/packages/iconoir-react/src/server/WifiOff.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgWifiOff( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWifiOff); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWifiOff = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgWifiOff); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WifiSignalNone.tsx b/packages/iconoir-react/src/server/WifiSignalNone.tsx index 9fe9689e..f1f3f5a8 100644 --- a/packages/iconoir-react/src/server/WifiSignalNone.tsx +++ b/packages/iconoir-react/src/server/WifiSignalNone.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgWifiSignalNone( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWifiSignalNone); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWifiSignalNone = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgWifiSignalNone); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WifiTag.tsx b/packages/iconoir-react/src/server/WifiTag.tsx index 56ba9351..f50ef467 100644 --- a/packages/iconoir-react/src/server/WifiTag.tsx +++ b/packages/iconoir-react/src/server/WifiTag.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgWifiTag( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWifiTag); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWifiTag = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWifiTag); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Wind.tsx b/packages/iconoir-react/src/server/Wind.tsx index 1fe8a288..d9247341 100644 --- a/packages/iconoir-react/src/server/Wind.tsx +++ b/packages/iconoir-react/src/server/Wind.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgWind( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWind); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWind = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgWind); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Windows.tsx b/packages/iconoir-react/src/server/Windows.tsx index ace1aebf..30ec4c31 100644 --- a/packages/iconoir-react/src/server/Windows.tsx +++ b/packages/iconoir-react/src/server/Windows.tsx @@ -1,26 +1,26 @@ import * as React from "react"; -function SvgWindows( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWindows); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWindows = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgWindows); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Wolf.tsx b/packages/iconoir-react/src/server/Wolf.tsx index df5a8328..1a7d1aaf 100644 --- a/packages/iconoir-react/src/server/Wolf.tsx +++ b/packages/iconoir-react/src/server/Wolf.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgWolf( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWolf); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWolf = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgWolf); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WomenTShirt.tsx b/packages/iconoir-react/src/server/WomenTShirt.tsx index 2170eec5..5a1ec3ac 100644 --- a/packages/iconoir-react/src/server/WomenTShirt.tsx +++ b/packages/iconoir-react/src/server/WomenTShirt.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgWomenTShirt( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWomenTShirt); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWomenTShirt = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgWomenTShirt); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/WrapText.tsx b/packages/iconoir-react/src/server/WrapText.tsx index ee2a5b6d..34a40aea 100644 --- a/packages/iconoir-react/src/server/WrapText.tsx +++ b/packages/iconoir-react/src/server/WrapText.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgWrapText( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWrapText); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWrapText = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgWrapText); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Wrench.tsx b/packages/iconoir-react/src/server/Wrench.tsx index 351df939..d1ee1e35 100644 --- a/packages/iconoir-react/src/server/Wrench.tsx +++ b/packages/iconoir-react/src/server/Wrench.tsx @@ -1,35 +1,32 @@ import * as React from "react"; -function SvgWrench( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - , ref: Ref) => ( + + - - - - - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWrench); + + + + + + + + +); +const ForwardRef = forwardRef(SvgWrench); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Wristwatch.tsx b/packages/iconoir-react/src/server/Wristwatch.tsx index a09a63d2..e2bed1d8 100644 --- a/packages/iconoir-react/src/server/Wristwatch.tsx +++ b/packages/iconoir-react/src/server/Wristwatch.tsx @@ -1,40 +1,40 @@ import * as React from "react"; -function SvgWristwatch( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgWristwatch); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWristwatch = ( + props: SVGProps, + ref: Ref +) => ( + + + + + +); +const ForwardRef = forwardRef(SvgWristwatch); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Www.tsx b/packages/iconoir-react/src/server/Www.tsx index 258c3ef3..aeefb502 100644 --- a/packages/iconoir-react/src/server/Www.tsx +++ b/packages/iconoir-react/src/server/Www.tsx @@ -1,28 +1,31 @@ import * as React from "react"; -function SvgWww( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgWww); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgWww = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgWww); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/XCoordinate.tsx b/packages/iconoir-react/src/server/XCoordinate.tsx index b42d30da..90d919e1 100644 --- a/packages/iconoir-react/src/server/XCoordinate.tsx +++ b/packages/iconoir-react/src/server/XCoordinate.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgXCoordinate( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgXCoordinate); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgXCoordinate = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgXCoordinate); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/XboxA.tsx b/packages/iconoir-react/src/server/XboxA.tsx index 1e7e1cea..e9177482 100644 --- a/packages/iconoir-react/src/server/XboxA.tsx +++ b/packages/iconoir-react/src/server/XboxA.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgXboxA( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgXboxA); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgXboxA = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgXboxA); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/XboxB.tsx b/packages/iconoir-react/src/server/XboxB.tsx index 0c36fb29..7b098cb8 100644 --- a/packages/iconoir-react/src/server/XboxB.tsx +++ b/packages/iconoir-react/src/server/XboxB.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgXboxB( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgXboxB); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgXboxB = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgXboxB); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/XboxX.tsx b/packages/iconoir-react/src/server/XboxX.tsx index c4649d7e..c4d750ee 100644 --- a/packages/iconoir-react/src/server/XboxX.tsx +++ b/packages/iconoir-react/src/server/XboxX.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgXboxX( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgXboxX); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgXboxX = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgXboxX); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/XboxY.tsx b/packages/iconoir-react/src/server/XboxY.tsx index d8229cec..b7015955 100644 --- a/packages/iconoir-react/src/server/XboxY.tsx +++ b/packages/iconoir-react/src/server/XboxY.tsx @@ -1,34 +1,31 @@ import * as React from "react"; -function SvgXboxY( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgXboxY); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgXboxY = (props: SVGProps, ref: Ref) => ( + + + + +); +const ForwardRef = forwardRef(SvgXboxY); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/XrayView.tsx b/packages/iconoir-react/src/server/XrayView.tsx index fc87c3f7..d309fba2 100644 --- a/packages/iconoir-react/src/server/XrayView.tsx +++ b/packages/iconoir-react/src/server/XrayView.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgXrayView( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgXrayView); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgXrayView = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgXrayView); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/YCoordinate.tsx b/packages/iconoir-react/src/server/YCoordinate.tsx index cf2e9e32..72e802f1 100644 --- a/packages/iconoir-react/src/server/YCoordinate.tsx +++ b/packages/iconoir-react/src/server/YCoordinate.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgYCoordinate( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgYCoordinate); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgYCoordinate = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgYCoordinate); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Yelp.tsx b/packages/iconoir-react/src/server/Yelp.tsx index a1415a3d..f9e21b9b 100644 --- a/packages/iconoir-react/src/server/Yelp.tsx +++ b/packages/iconoir-react/src/server/Yelp.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgYelp( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgYelp); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgYelp = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgYelp); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Yen.tsx b/packages/iconoir-react/src/server/Yen.tsx index 920b6c7c..46f0d8fd 100644 --- a/packages/iconoir-react/src/server/Yen.tsx +++ b/packages/iconoir-react/src/server/Yen.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgYen( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgYen); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgYen = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgYen); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/YenSquare.tsx b/packages/iconoir-react/src/server/YenSquare.tsx index 6ed66437..078af652 100644 --- a/packages/iconoir-react/src/server/YenSquare.tsx +++ b/packages/iconoir-react/src/server/YenSquare.tsx @@ -1,32 +1,32 @@ import * as React from "react"; -function SvgYenSquare( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgYenSquare); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgYenSquare = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgYenSquare); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/Yoga.tsx b/packages/iconoir-react/src/server/Yoga.tsx index c62664a2..02d9933e 100644 --- a/packages/iconoir-react/src/server/Yoga.tsx +++ b/packages/iconoir-react/src/server/Yoga.tsx @@ -1,40 +1,37 @@ import * as React from "react"; -function SvgYoga( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - - ); -} -const ForwardRef = React.forwardRef(SvgYoga); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgYoga = (props: SVGProps, ref: Ref) => ( + + + + + +); +const ForwardRef = forwardRef(SvgYoga); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/YouTube.tsx b/packages/iconoir-react/src/server/YouTube.tsx index d012cf30..8f75ee30 100644 --- a/packages/iconoir-react/src/server/YouTube.tsx +++ b/packages/iconoir-react/src/server/YouTube.tsx @@ -1,33 +1,33 @@ import * as React from "react"; -function SvgYouTube( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgYouTube); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgYouTube = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgYouTube); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ZCoordinate.tsx b/packages/iconoir-react/src/server/ZCoordinate.tsx index 21c76252..80d33d17 100644 --- a/packages/iconoir-react/src/server/ZCoordinate.tsx +++ b/packages/iconoir-react/src/server/ZCoordinate.tsx @@ -1,34 +1,34 @@ import * as React from "react"; -function SvgZCoordinate( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - - ); -} -const ForwardRef = React.forwardRef(SvgZCoordinate); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgZCoordinate = ( + props: SVGProps, + ref: Ref +) => ( + + + + +); +const ForwardRef = forwardRef(SvgZCoordinate); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ZoomIn.tsx b/packages/iconoir-react/src/server/ZoomIn.tsx index 455f39b9..790e5ff5 100644 --- a/packages/iconoir-react/src/server/ZoomIn.tsx +++ b/packages/iconoir-react/src/server/ZoomIn.tsx @@ -1,28 +1,25 @@ import * as React from "react"; -function SvgZoomIn( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgZoomIn); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgZoomIn = (props: SVGProps, ref: Ref) => ( + + + +); +const ForwardRef = forwardRef(SvgZoomIn); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/ZoomOut.tsx b/packages/iconoir-react/src/server/ZoomOut.tsx index 73348d1c..98efa0d9 100644 --- a/packages/iconoir-react/src/server/ZoomOut.tsx +++ b/packages/iconoir-react/src/server/ZoomOut.tsx @@ -1,28 +1,28 @@ import * as React from "react"; -function SvgZoomOut( - props: React.SVGProps, - svgRef?: React.Ref -) { - return ( - - - - ); -} -const ForwardRef = React.forwardRef(SvgZoomOut); +import type { SVGProps } from "react"; +import { Ref, forwardRef } from "react"; +const SvgZoomOut = ( + props: SVGProps, + ref: Ref +) => ( + + + +); +const ForwardRef = forwardRef(SvgZoomOut); export default ForwardRef; diff --git a/packages/iconoir-react/src/server/index.ts b/packages/iconoir-react/src/server/index.ts new file mode 100644 index 00000000..efb2c8d5 --- /dev/null +++ b/packages/iconoir-react/src/server/index.ts @@ -0,0 +1,1376 @@ +export { default as Svg3DAddHole } from './3DAddHole'; +export { default as Svg3DArcCenterPt } from './3DArcCenterPt'; +export { default as Svg3DArc } from './3DArc'; +export { default as Svg3DBridge } from './3DBridge'; +export { default as Svg3DCenterBox } from './3DCenterBox'; +export { default as Svg3DDraftFace } from './3DDraftFace'; +export { default as Svg3DEllipseThreePts } from './3DEllipseThreePts'; +export { default as Svg3DEllipse } from './3DEllipse'; +export { default as Svg3DPtBox } from './3DPtBox'; +export { default as Svg3DRectCornerToCorner } from './3DRectCornerToCorner'; +export { default as Svg3DRectFromCenter } from './3DRectFromCenter'; +export { default as Svg3DRectThreePts } from './3DRectThreePts'; +export { default as Svg3DSelectEdge } from './3DSelectEdge'; +export { default as Svg3DSelectFace } from './3DSelectFace'; +export { default as Svg3DSelectPoint } from './3DSelectPoint'; +export { default as Svg3DSelectSolid } from './3DSelectSolid'; +export { default as Svg3DThreePtsBox } from './3DThreePtsBox'; +export { default as AccessibilitySign } from './AccessibilitySign'; +export { default as AccessibilityTech } from './AccessibilityTech'; +export { default as Accessibility } from './Accessibility'; +export { default as Activity } from './Activity'; +export { default as AddCircle } from './AddCircle'; +export { default as AddDatabaseScript } from './AddDatabaseScript'; +export { default as AddFolder } from './AddFolder'; +export { default as AddFrame } from './AddFrame'; +export { default as AddHexagon } from './AddHexagon'; +export { default as AddKeyframeAlt } from './AddKeyframeAlt'; +export { default as AddKeyframe } from './AddKeyframe'; +export { default as AddKeyframes } from './AddKeyframes'; +export { default as AddLens } from './AddLens'; +export { default as AddMediaImage } from './AddMediaImage'; +export { default as AddMediaVideo } from './AddMediaVideo'; +export { default as AddPageAlt } from './AddPageAlt'; +export { default as AddPage } from './AddPage'; +export { default as AddPinAlt } from './AddPinAlt'; +export { default as AddSelection } from './AddSelection'; +export { default as AddSquare } from './AddSquare'; +export { default as AddToCart } from './AddToCart'; +export { default as AddUser } from './AddUser'; +export { default as AdobeAfterEffects } from './AdobeAfterEffects'; +export { default as AdobeIllustrator } from './AdobeIllustrator'; +export { default as AdobeIndesign } from './AdobeIndesign'; +export { default as AdobeLightroom } from './AdobeLightroom'; +export { default as AdobePhotoshop } from './AdobePhotoshop'; +export { default as AdobeXd } from './AdobeXd'; +export { default as AfricanTree } from './AfricanTree'; +export { default as Agile } from './Agile'; +export { default as AirConditioner } from './AirConditioner'; +export { default as AirplaneHelix45Deg } from './AirplaneHelix45Deg'; +export { default as AirplaneHelix } from './AirplaneHelix'; +export { default as AirplaneOff } from './AirplaneOff'; +export { default as AirplaneRotation } from './AirplaneRotation'; +export { default as Airplane } from './Airplane'; +export { default as Airplay } from './Airplay'; +export { default as Alarm } from './Alarm'; +export { default as AlbumCarousel } from './AlbumCarousel'; +export { default as AlbumList } from './AlbumList'; +export { default as AlbumOpen } from './AlbumOpen'; +export { default as Album } from './Album'; +export { default as AlignBottomBox } from './AlignBottomBox'; +export { default as AlignCenter } from './AlignCenter'; +export { default as AlignHorizontalCenters } from './AlignHorizontalCenters'; +export { default as AlignHorizontalSpacing } from './AlignHorizontalSpacing'; +export { default as AlignJustify } from './AlignJustify'; +export { default as AlignLeftBox } from './AlignLeftBox'; +export { default as AlignLeft } from './AlignLeft'; +export { default as AlignRightBox } from './AlignRightBox'; +export { default as AlignRight } from './AlignRight'; +export { default as AlignTopBox } from './AlignTopBox'; +export { default as AlignVerticalCenters } from './AlignVerticalCenters'; +export { default as AlignVerticalSpacing } from './AlignVerticalSpacing'; +export { default as AngleTool } from './AngleTool'; +export { default as AntennaOff } from './AntennaOff'; +export { default as AntennaSignalTag } from './AntennaSignalTag'; +export { default as AntennaSignal } from './AntennaSignal'; +export { default as Antenna } from './Antenna'; +export { default as AppNotification } from './AppNotification'; +export { default as AppStore } from './AppStore'; +export { default as AppWindow } from './AppWindow'; +export { default as AppleHalfAlt } from './AppleHalfAlt'; +export { default as AppleHalf } from './AppleHalf'; +export { default as AppleImac2021Side } from './AppleImac2021Side'; +export { default as AppleImac2021 } from './AppleImac2021'; +export { default as AppleMac } from './AppleMac'; +export { default as AppleShortcuts } from './AppleShortcuts'; +export { default as AppleSwift } from './AppleSwift'; +export { default as AppleWallet } from './AppleWallet'; +export { default as Apple } from './Apple'; +export { default as ArSymbol } from './ArSymbol'; +export { default as Arcade } from './Arcade'; +export { default as ArcheryMatch } from './ArcheryMatch'; +export { default as Archery } from './Archery'; +export { default as Archive } from './Archive'; +export { default as AreaSearch } from './AreaSearch'; +export { default as ArrowArchery } from './ArrowArchery'; +export { default as ArrowBlCircle } from './ArrowBlCircle'; +export { default as ArrowBlSquare } from './ArrowBlSquare'; +export { default as ArrowBl } from './ArrowBl'; +export { default as ArrowBrCircle } from './ArrowBrCircle'; +export { default as ArrowBrSquare } from './ArrowBrSquare'; +export { default as ArrowBr } from './ArrowBr'; +export { default as ArrowDownCircle } from './ArrowDownCircle'; +export { default as ArrowDown } from './ArrowDown'; +export { default as ArrowEmailForward } from './ArrowEmailForward'; +export { default as ArrowLeftCircle } from './ArrowLeftCircle'; +export { default as ArrowLeft } from './ArrowLeft'; +export { default as ArrowRightCircle } from './ArrowRightCircle'; +export { default as ArrowRight } from './ArrowRight'; +export { default as ArrowSeparateVertical } from './ArrowSeparateVertical'; +export { default as ArrowSeparate } from './ArrowSeparate'; +export { default as ArrowTlCircle } from './ArrowTlCircle'; +export { default as ArrowTlSquare } from './ArrowTlSquare'; +export { default as ArrowTl } from './ArrowTl'; +export { default as ArrowTrCircle } from './ArrowTrCircle'; +export { default as ArrowTrSquare } from './ArrowTrSquare'; +export { default as ArrowTr } from './ArrowTr'; +export { default as ArrowUnionVertical } from './ArrowUnionVertical'; +export { default as ArrowUnion } from './ArrowUnion'; +export { default as ArrowUpCircle } from './ArrowUpCircle'; +export { default as ArrowUp } from './ArrowUp'; +export { default as ArrowsUpFromLine } from './ArrowsUpFromLine'; +export { default as Asana } from './Asana'; +export { default as AtSignCircle } from './AtSignCircle'; +export { default as AtSign } from './AtSign'; +export { default as Atom } from './Atom'; +export { default as Attachment } from './Attachment'; +export { default as AugmentedReality } from './AugmentedReality'; +export { default as AutoFlash } from './AutoFlash'; +export { default as AviFormat } from './AviFormat'; +export { default as Axes } from './Axes'; +export { default as Backward15Seconds } from './Backward15Seconds'; +export { default as Bag } from './Bag'; +export { default as Balcony } from './Balcony'; +export { default as Bank } from './Bank'; +export { default as Barcode } from './Barcode'; +export { default as BasketballAlt } from './BasketballAlt'; +export { default as BasketballField } from './BasketballField'; +export { default as Basketball } from './Basketball'; +export { default as Bathroom } from './Bathroom'; +export { default as Battery25 } from './Battery25'; +export { default as Battery50 } from './Battery50'; +export { default as Battery75 } from './Battery75'; +export { default as BatteryCharging } from './BatteryCharging'; +export { default as BatteryEmpty } from './BatteryEmpty'; +export { default as BatteryFull } from './BatteryFull'; +export { default as BatteryIndicator } from './BatteryIndicator'; +export { default as BatteryWarning } from './BatteryWarning'; +export { default as Bbq } from './Bbq'; +export { default as BeachBagBig } from './BeachBagBig'; +export { default as BeachBag } from './BeachBag'; +export { default as BedReady } from './BedReady'; +export { default as Bed } from './Bed'; +export { default as BehanceTag } from './BehanceTag'; +export { default as Behance } from './Behance'; +export { default as BellNotification } from './BellNotification'; +export { default as BellOff } from './BellOff'; +export { default as Bell } from './Bell'; +export { default as Bicycle } from './Bicycle'; +export { default as BinAdd } from './BinAdd'; +export { default as BinFull } from './BinFull'; +export { default as BinHalf } from './BinHalf'; +export { default as BinMinus } from './BinMinus'; +export { default as Bin } from './Bin'; +export { default as Binocular } from './Binocular'; +export { default as BirthdayCake } from './BirthdayCake'; +export { default as Bishop } from './Bishop'; +export { default as Bitbucket } from './Bitbucket'; +export { default as BitcoinCircle } from './BitcoinCircle'; +export { default as BitcoinRotateOut } from './BitcoinRotateOut'; +export { default as BluetoothTag } from './BluetoothTag'; +export { default as Bluetooth } from './Bluetooth'; +export { default as BoldSquare } from './BoldSquare'; +export { default as Bold } from './Bold'; +export { default as Bonfire } from './Bonfire'; +export { default as BookStack } from './BookStack'; +export { default as Book } from './Book'; +export { default as BookmarkBook } from './BookmarkBook'; +export { default as BookmarkCircle } from './BookmarkCircle'; +export { default as BookmarkEmpty } from './BookmarkEmpty'; +export { default as BorderBl } from './BorderBl'; +export { default as BorderBottom } from './BorderBottom'; +export { default as BorderBr } from './BorderBr'; +export { default as BorderInner } from './BorderInner'; +export { default as BorderLeft } from './BorderLeft'; +export { default as BorderOut } from './BorderOut'; +export { default as BorderRight } from './BorderRight'; +export { default as BorderTl } from './BorderTl'; +export { default as BorderTop } from './BorderTop'; +export { default as BorderTr } from './BorderTr'; +export { default as BounceLeft } from './BounceLeft'; +export { default as BounceRight } from './BounceRight'; +export { default as BowlingBall } from './BowlingBall'; +export { default as BoxIso } from './BoxIso'; +export { default as Box } from './Box'; +export { default as BoxingGlove } from './BoxingGlove'; +export { default as BrainElectricity } from './BrainElectricity'; +export { default as BrainResearch } from './BrainResearch'; +export { default as BrainWarning } from './BrainWarning'; +export { default as Brain } from './Brain'; +export { default as BreadSlice } from './BreadSlice'; +export { default as BridgeSurface } from './BridgeSurface'; +export { default as BrightCrown } from './BrightCrown'; +export { default as BrightStar } from './BrightStar'; +export { default as BrightnessWindow } from './BrightnessWindow'; +export { default as Brightness } from './Brightness'; +export { default as BubbleDownload } from './BubbleDownload'; +export { default as BubbleError } from './BubbleError'; +export { default as BubbleIncome } from './BubbleIncome'; +export { default as BubbleOutcome } from './BubbleOutcome'; +export { default as BubbleSearch } from './BubbleSearch'; +export { default as BubbleStar } from './BubbleStar'; +export { default as BubbleUpload } from './BubbleUpload'; +export { default as BubbleWarning } from './BubbleWarning'; +export { default as Building } from './Building'; +export { default as BusStop } from './BusStop'; +export { default as Bus } from './Bus'; +export { default as CableTag } from './CableTag'; +export { default as Calculator } from './Calculator'; +export { default as CalendarMinus } from './CalendarMinus'; +export { default as CalendarPlus } from './CalendarPlus'; +export { default as Calendar } from './Calendar'; +export { default as Camera } from './Camera'; +export { default as Cancel } from './Cancel'; +export { default as CandlestickChart } from './CandlestickChart'; +export { default as Car } from './Car'; +export { default as Carbon } from './Carbon'; +export { default as CardIssue } from './CardIssue'; +export { default as CardLocked } from './CardLocked'; +export { default as CardReader } from './CardReader'; +export { default as CardSecurity } from './CardSecurity'; +export { default as CardWallet } from './CardWallet'; +export { default as CartAlt } from './CartAlt'; +export { default as Cart } from './Cart'; +export { default as Cash } from './Cash'; +export { default as Cell2X2 } from './Cell2X2'; +export { default as Cellar } from './Cellar'; +export { default as CenterAlign } from './CenterAlign'; +export { default as ChatAdd } from './ChatAdd'; +export { default as ChatBubbleCheck1 } from './ChatBubbleCheck1'; +export { default as ChatBubbleCheck } from './ChatBubbleCheck'; +export { default as ChatBubbleEmpty } from './ChatBubbleEmpty'; +export { default as ChatBubbleError } from './ChatBubbleError'; +export { default as ChatBubbleQuestion } from './ChatBubbleQuestion'; +export { default as ChatBubbleTranslate } from './ChatBubbleTranslate'; +export { default as ChatBubbleWarning } from './ChatBubbleWarning'; +export { default as ChatBubble } from './ChatBubble'; +export { default as ChatLines } from './ChatLines'; +export { default as ChatRemove } from './ChatRemove'; +export { default as CheckCircle } from './CheckCircle'; +export { default as CheckWindow } from './CheckWindow'; +export { default as Check } from './Check'; +export { default as Chocolate } from './Chocolate'; +export { default as ChromecastActive } from './ChromecastActive'; +export { default as Chromecast } from './Chromecast'; +export { default as ChurchAlt } from './ChurchAlt'; +export { default as Church } from './Church'; +export { default as CinemaOld } from './CinemaOld'; +export { default as CircleSpark } from './CircleSpark'; +export { default as Circle } from './Circle'; +export { default as City } from './City'; +export { default as CleanWater } from './CleanWater'; +export { default as ClipboardCheck } from './ClipboardCheck'; +export { default as ClockRotateRight } from './ClockRotateRight'; +export { default as Clock } from './Clock'; +export { default as ClosedCaptions } from './ClosedCaptions'; +export { default as Closet } from './Closet'; +export { default as CloudBookAlt } from './CloudBookAlt'; +export { default as CloudCheck } from './CloudCheck'; +export { default as CloudDesync } from './CloudDesync'; +export { default as CloudDownload } from './CloudDownload'; +export { default as CloudError } from './CloudError'; +export { default as CloudSunny } from './CloudSunny'; +export { default as CloudSync } from './CloudSync'; +export { default as CloudUpload } from './CloudUpload'; +export { default as Cloud } from './Cloud'; +export { default as Clutery } from './Clutery'; +export { default as CodeBracketsSquare } from './CodeBracketsSquare'; +export { default as CodeBrackets } from './CodeBrackets'; +export { default as Code } from './Code'; +export { default as Codepen } from './Codepen'; +export { default as CoffeeCup } from './CoffeeCup'; +export { default as Coin } from './Coin'; +export { default as CoinsSwap } from './CoinsSwap'; +export { default as Coins } from './Coins'; +export { default as CollageFrame } from './CollageFrame'; +export { default as Collapse } from './Collapse'; +export { default as ColorFilter } from './ColorFilter'; +export { default as ColorPickerEmpty } from './ColorPickerEmpty'; +export { default as ColorPicker } from './ColorPicker'; +export { default as ColorWheel } from './ColorWheel'; +export { default as Combine } from './Combine'; +export { default as Commodity } from './Commodity'; +export { default as Community } from './Community'; +export { default as CompAlignBottom } from './CompAlignBottom'; +export { default as CompAlignLeft } from './CompAlignLeft'; +export { default as CompAlignRight } from './CompAlignRight'; +export { default as CompAlignTop } from './CompAlignTop'; +export { default as CompactDisc } from './CompactDisc'; +export { default as Compass } from './Compass'; +export { default as Component } from './Component'; +export { default as CompressLines } from './CompressLines'; +export { default as Compress } from './Compress'; +export { default as Computer } from './Computer'; +export { default as ConstrainedSurface } from './ConstrainedSurface'; +export { default as Consumable } from './Consumable'; +export { default as Contactless } from './Contactless'; +export { default as ControlSlider } from './ControlSlider'; +export { default as Cookie } from './Cookie'; +export { default as Cooling } from './Cooling'; +export { default as Copy } from './Copy'; +export { default as Copyright } from './Copyright'; +export { default as CornerBottomLeft } from './CornerBottomLeft'; +export { default as CornerBottomRight } from './CornerBottomRight'; +export { default as CornerTopLeft } from './CornerTopLeft'; +export { default as CornerTopRight } from './CornerTopRight'; +export { default as CpuWarning } from './CpuWarning'; +export { default as Cpu } from './Cpu'; +export { default as CrackedEgg } from './CrackedEgg'; +export { default as CreativeCommons } from './CreativeCommons'; +export { default as CreditCard } from './CreditCard'; +export { default as CreditCards } from './CreditCards'; +export { default as Crib } from './Crib'; +export { default as CropRotateBl } from './CropRotateBl'; +export { default as CropRotateBr } from './CropRotateBr'; +export { default as CropRotateTl } from './CropRotateTl'; +export { default as CropRotateTr } from './CropRotateTr'; +export { default as Crop } from './Crop'; +export { default as CrownCircle } from './CrownCircle'; +export { default as Crown } from './Crown'; +export { default as Css3 } from './Css3'; +export { default as CubeReplaceFace } from './CubeReplaceFace'; +export { default as CursorPointer } from './CursorPointer'; +export { default as CurveArray } from './CurveArray'; +export { default as CutAlt } from './CutAlt'; +export { default as CutSolidWithCurve } from './CutSolidWithCurve'; +export { default as Cut } from './Cut'; +export { default as Cycling } from './Cycling'; +export { default as Cylinder } from './Cylinder'; +export { default as DashFlag } from './DashFlag'; +export { default as DashboardDots } from './DashboardDots'; +export { default as DashboardSpeed } from './DashboardSpeed'; +export { default as Dashboard } from './Dashboard'; +export { default as DataTransferBoth } from './DataTransferBoth'; +export { default as DataTransferCheck } from './DataTransferCheck'; +export { default as DataTransferDown } from './DataTransferDown'; +export { default as DataTransferUp } from './DataTransferUp'; +export { default as DataTransferWarning } from './DataTransferWarning'; +export { default as DatabaseBackup } from './DatabaseBackup'; +export { default as DatabaseExport } from './DatabaseExport'; +export { default as DatabaseMonitor } from './DatabaseMonitor'; +export { default as DatabaseRestore } from './DatabaseRestore'; +export { default as DatabaseScript } from './DatabaseScript'; +export { default as DatabaseSettings } from './DatabaseSettings'; +export { default as DatabaseStar } from './DatabaseStar'; +export { default as DatabaseStats } from './DatabaseStats'; +export { default as DatabaseTag } from './DatabaseTag'; +export { default as DbCheck } from './DbCheck'; +export { default as DbError } from './DbError'; +export { default as DbSearch } from './DbSearch'; +export { default as DbStar } from './DbStar'; +export { default as DbWarning } from './DbWarning'; +export { default as Db } from './Db'; +export { default as DeCompress } from './DeCompress'; +export { default as DeleteCircle } from './DeleteCircle'; +export { default as DeliveryTruck } from './DeliveryTruck'; +export { default as Delivery } from './Delivery'; +export { default as Depth } from './Depth'; +export { default as DesignNib } from './DesignNib'; +export { default as DesignPencil } from './DesignPencil'; +export { default as Desk } from './Desk'; +export { default as DevModeLaptop } from './DevModeLaptop'; +export { default as DevModePhone } from './DevModePhone'; +export { default as Developer } from './Developer'; +export { default as DewPoint } from './DewPoint'; +export { default as Dialpad } from './Dialpad'; +export { default as Diameter } from './Diameter'; +export { default as DiceFive } from './DiceFive'; +export { default as DiceFour } from './DiceFour'; +export { default as DiceOne } from './DiceOne'; +export { default as DiceSix } from './DiceSix'; +export { default as DiceThree } from './DiceThree'; +export { default as DiceTwo } from './DiceTwo'; +export { default as DimmerSwitch } from './DimmerSwitch'; +export { default as DirectorChair } from './DirectorChair'; +export { default as Discord } from './Discord'; +export { default as Dishwasher } from './Dishwasher'; +export { default as Display4K } from './Display4K'; +export { default as DivideSelection1 } from './DivideSelection1'; +export { default as DivideSelection2 } from './DivideSelection2'; +export { default as DivideThree } from './DivideThree'; +export { default as Divide } from './Divide'; +export { default as Dna } from './Dna'; +export { default as DocSearchAlt } from './DocSearchAlt'; +export { default as DocSearch } from './DocSearch'; +export { default as DocStarAlt } from './DocStarAlt'; +export { default as DocStar } from './DocStar'; +export { default as DogecoinCircle } from './DogecoinCircle'; +export { default as DogecoinRotateOut } from './DogecoinRotateOut'; +export { default as Dollar } from './Dollar'; +export { default as DomoticIssue } from './DomoticIssue'; +export { default as Donate } from './Donate'; +export { default as DoubleCheck } from './DoubleCheck'; +export { default as DownRoundArrow } from './DownRoundArrow'; +export { default as DownloadCircle } from './DownloadCircle'; +export { default as DownloadDataWindow } from './DownloadDataWindow'; +export { default as DownloadSquare } from './DownloadSquare'; +export { default as Download } from './Download'; +export { default as DragHandGesture } from './DragHandGesture'; +export { default as Drag } from './Drag'; +export { default as Drawer } from './Drawer'; +export { default as Dribbble } from './Dribbble'; +export { default as DroneChargeFull } from './DroneChargeFull'; +export { default as DroneChargeHalf } from './DroneChargeHalf'; +export { default as DroneChargeLow } from './DroneChargeLow'; +export { default as DroneCheck } from './DroneCheck'; +export { default as DroneError } from './DroneError'; +export { default as DroneLanding } from './DroneLanding'; +export { default as DroneRefresh } from './DroneRefresh'; +export { default as DroneTakeOff } from './DroneTakeOff'; +export { default as Drone } from './Drone'; +export { default as DropletHalf } from './DropletHalf'; +export { default as Droplet } from './Droplet'; +export { default as EaseCurveControlPoints } from './EaseCurveControlPoints'; +export { default as EaseInControlPoint } from './EaseInControlPoint'; +export { default as EaseInOut } from './EaseInOut'; +export { default as EaseIn } from './EaseIn'; +export { default as EaseOutControlPoint } from './EaseOutControlPoint'; +export { default as EaseOut } from './EaseOut'; +export { default as EcologyBook } from './EcologyBook'; +export { default as EditPencil } from './EditPencil'; +export { default as Edit } from './Edit'; +export { default as Egg } from './Egg'; +export { default as Eject } from './Eject'; +export { default as ElectronicsChip } from './ElectronicsChip'; +export { default as ElectronicsTransistor } from './ElectronicsTransistor'; +export { default as Elevator } from './Elevator'; +export { default as EmojiBall } from './EmojiBall'; +export { default as EmojiBlinkLeft } from './EmojiBlinkLeft'; +export { default as EmojiBlinkRight } from './EmojiBlinkRight'; +export { default as EmojiLookDown } from './EmojiLookDown'; +export { default as EmojiLookLeft } from './EmojiLookLeft'; +export { default as EmojiLookRight } from './EmojiLookRight'; +export { default as EmojiLookUp } from './EmojiLookUp'; +export { default as EmojiPuzzled } from './EmojiPuzzled'; +export { default as EmojiQuite } from './EmojiQuite'; +export { default as EmojiReally } from './EmojiReally'; +export { default as EmojiSad } from './EmojiSad'; +export { default as EmojiSatisfied } from './EmojiSatisfied'; +export { default as EmojiSingLeftNote } from './EmojiSingLeftNote'; +export { default as EmojiSingLeft } from './EmojiSingLeft'; +export { default as EmojiSingRightNote } from './EmojiSingRightNote'; +export { default as EmojiSingRight } from './EmojiSingRight'; +export { default as EmojiSurpriseAlt } from './EmojiSurpriseAlt'; +export { default as EmojiSurprise } from './EmojiSurprise'; +export { default as EmojiTalkingAngry } from './EmojiTalkingAngry'; +export { default as EmojiTalkingHappy } from './EmojiTalkingHappy'; +export { default as EmojiThinkLeft } from './EmojiThinkLeft'; +export { default as EmojiThinkRight } from './EmojiThinkRight'; +export { default as Emoji } from './Emoji'; +export { default as EmptyPage } from './EmptyPage'; +export { default as EnergyUsageWindow } from './EnergyUsageWindow'; +export { default as EnlargeRoundArrow } from './EnlargeRoundArrow'; +export { default as Enlarge } from './Enlarge'; +export { default as Erase } from './Erase'; +export { default as ErrorWindow } from './ErrorWindow'; +export { default as EthereumCircle } from './EthereumCircle'; +export { default as EthereumRotateOut } from './EthereumRotateOut'; +export { default as EuroSquare } from './EuroSquare'; +export { default as Euro } from './Euro'; +export { default as EvChargeAlt } from './EvChargeAlt'; +export { default as EvCharge } from './EvCharge'; +export { default as EvPlugCharging } from './EvPlugCharging'; +export { default as EvPlugError } from './EvPlugError'; +export { default as EvPlug } from './EvPlug'; +export { default as EvStation } from './EvStation'; +export { default as EvTag } from './EvTag'; +export { default as Exclude } from './Exclude'; +export { default as ExpandLines } from './ExpandLines'; +export { default as Expand } from './Expand'; +export { default as Extrude } from './Extrude'; +export { default as EyeAlt } from './EyeAlt'; +export { default as EyeClose } from './EyeClose'; +export { default as EyeEmpty } from './EyeEmpty'; +export { default as EyeOff } from './EyeOff'; +export { default as FaceId } from './FaceId'; +export { default as FacebookTag } from './FacebookTag'; +export { default as Facebook } from './Facebook'; +export { default as Facetime } from './Facetime'; +export { default as Farm } from './Farm'; +export { default as FastArrowDownBox } from './FastArrowDownBox'; +export { default as FastArrowDown } from './FastArrowDown'; +export { default as FastArrowLeftBox } from './FastArrowLeftBox'; +export { default as FastArrowLeft } from './FastArrowLeft'; +export { default as FastArrowRightBox } from './FastArrowRightBox'; +export { default as FastArrowRight } from './FastArrowRight'; +export { default as FastArrowUpBox } from './FastArrowUpBox'; +export { default as FastArrowUp } from './FastArrowUp'; +export { default as FastDownCircle } from './FastDownCircle'; +export { default as FastLeftCircle } from './FastLeftCircle'; +export { default as FastRightCircle } from './FastRightCircle'; +export { default as FastUpCircle } from './FastUpCircle'; +export { default as FavouriteBook } from './FavouriteBook'; +export { default as FavouriteWindow } from './FavouriteWindow'; +export { default as Female } from './Female'; +export { default as Figma } from './Figma'; +export { default as FileNotFound } from './FileNotFound'; +export { default as FillColor } from './FillColor'; +export { default as Fillet3D } from './Fillet3D'; +export { default as FilterAlt } from './FilterAlt'; +export { default as FilterListCircle } from './FilterListCircle'; +export { default as FilterList } from './FilterList'; +export { default as Filter } from './Filter'; +export { default as Finder } from './Finder'; +export { default as FingerprintCheckCircle } from './FingerprintCheckCircle'; +export { default as FingerprintCircle } from './FingerprintCircle'; +export { default as FingerprintErrorCircle } from './FingerprintErrorCircle'; +export { default as FingerprintLockCircle } from './FingerprintLockCircle'; +export { default as FingerprintPhone } from './FingerprintPhone'; +export { default as FingerprintScan } from './FingerprintScan'; +export { default as FingerprintSquare } from './FingerprintSquare'; +export { default as FingerprintWindow } from './FingerprintWindow'; +export { default as Fingerprint } from './Fingerprint'; +export { default as FireFlame } from './FireFlame'; +export { default as Fish } from './Fish'; +export { default as Fishing } from './Fishing'; +export { default as Flare } from './Flare'; +export { default as FlashOff } from './FlashOff'; +export { default as Flash } from './Flash'; +export { default as Flask } from './Flask'; +export { default as FlipReverse } from './FlipReverse'; +export { default as Flip } from './Flip'; +export { default as Flower } from './Flower'; +export { default as Fluorine } from './Fluorine'; +export { default as Fog } from './Fog'; +export { default as FolderAlert } from './FolderAlert'; +export { default as FolderSettings } from './FolderSettings'; +export { default as Folder } from './Folder'; +export { default as FontSize } from './FontSize'; +export { default as FootballBall } from './FootballBall'; +export { default as Football } from './Football'; +export { default as Forward15Seconds } from './Forward15Seconds'; +export { default as ForwardMessage } from './ForwardMessage'; +export { default as Forward } from './Forward'; +export { default as FrameAltEmpty } from './FrameAltEmpty'; +export { default as FrameAlt } from './FrameAlt'; +export { default as FrameSelect } from './FrameSelect'; +export { default as FrameSimple } from './FrameSimple'; +export { default as FrameTool } from './FrameTool'; +export { default as Frame } from './Frame'; +export { default as Fridge } from './Fridge'; +export { default as FxTag } from './FxTag'; +export { default as Fx } from './Fx'; +export { default as Gamepad } from './Gamepad'; +export { default as Garage } from './Garage'; +export { default as GasTankDrop } from './GasTankDrop'; +export { default as GasTank } from './GasTank'; +export { default as Gas } from './Gas'; +export { default as GifFormat } from './GifFormat'; +export { default as Gift } from './Gift'; +export { default as GitBranch } from './GitBranch'; +export { default as GitCherryPickCommit } from './GitCherryPickCommit'; +export { default as GitCommand } from './GitCommand'; +export { default as GitCommit } from './GitCommit'; +export { default as GitCompare } from './GitCompare'; +export { default as GitFork } from './GitFork'; +export { default as GitMerge } from './GitMerge'; +export { default as GitPullRequestClosed } from './GitPullRequestClosed'; +export { default as GitPullRequest } from './GitPullRequest'; +export { default as GitHub } from './GitHub'; +export { default as GitLabFull } from './GitLabFull'; +export { default as GithubCircle } from './GithubCircle'; +export { default as GlassEmpty } from './GlassEmpty'; +export { default as GlassFragile } from './GlassFragile'; +export { default as GlassHalfAlt } from './GlassHalfAlt'; +export { default as GlassHalf } from './GlassHalf'; +export { default as Glasses } from './Glasses'; +export { default as Globe } from './Globe'; +export { default as Golf } from './Golf'; +export { default as GoogleCircle } from './GoogleCircle'; +export { default as GoogleDocs } from './GoogleDocs'; +export { default as GoogleDriveCheck } from './GoogleDriveCheck'; +export { default as GoogleDriveSync } from './GoogleDriveSync'; +export { default as GoogleDriveWarning } from './GoogleDriveWarning'; +export { default as GoogleDrive } from './GoogleDrive'; +export { default as GoogleHome } from './GoogleHome'; +export { default as GoogleOne } from './GoogleOne'; +export { default as Google } from './Google'; +export { default as Gps } from './Gps'; +export { default as GraduationCap } from './GraduationCap'; +export { default as GraphDown } from './GraphDown'; +export { default as GraphUp } from './GraphUp'; +export { default as GreenBus } from './GreenBus'; +export { default as GreenTruck } from './GreenTruck'; +export { default as GreenVehicle } from './GreenVehicle'; +export { default as GridAdd } from './GridAdd'; +export { default as GridMinus } from './GridMinus'; +export { default as GridRemove } from './GridRemove'; +export { default as Group } from './Group'; +export { default as Gym } from './Gym'; +export { default as HalfCookie } from './HalfCookie'; +export { default as HalfMoon } from './HalfMoon'; +export { default as Hammer } from './Hammer'; +export { default as HandBrake } from './HandBrake'; +export { default as HandCard } from './HandCard'; +export { default as HandCash } from './HandCash'; +export { default as HandContactless } from './HandContactless'; +export { default as Handbag } from './Handbag'; +export { default as HardDrive } from './HardDrive'; +export { default as Hat } from './Hat'; +export { default as HdDisplay } from './HdDisplay'; +export { default as Hd } from './Hd'; +export { default as Hdr } from './Hdr'; +export { default as HeadsetCharge } from './HeadsetCharge'; +export { default as HeadsetHelp } from './HeadsetHelp'; +export { default as HeadsetIssue } from './HeadsetIssue'; +export { default as Headset } from './Headset'; +export { default as HealthShield } from './HealthShield'; +export { default as Healthcare } from './Healthcare'; +export { default as HeartArrowDown } from './HeartArrowDown'; +export { default as Heart } from './Heart'; +export { default as Heating } from './Heating'; +export { default as HeavyRain } from './HeavyRain'; +export { default as HelpCircle } from './HelpCircle'; +export { default as HelpSquare } from './HelpSquare'; +export { default as Heptagon } from './Heptagon'; +export { default as HerSlips } from './HerSlips'; +export { default as HexagonAlt } from './HexagonAlt'; +export { default as HexagonDice } from './HexagonDice'; +export { default as Hexagon } from './Hexagon'; +export { default as HighPriority } from './HighPriority'; +export { default as HistoricShieldAlt } from './HistoricShieldAlt'; +export { default as HistoricShield } from './HistoricShield'; +export { default as HomeAltSlimHoriz } from './HomeAltSlimHoriz'; +export { default as HomeAltSlim } from './HomeAltSlim'; +export { default as HomeAlt } from './HomeAlt'; +export { default as HomeHospital } from './HomeHospital'; +export { default as HomeSale } from './HomeSale'; +export { default as HomeSecure } from './HomeSecure'; +export { default as HomeShield } from './HomeShield'; +export { default as HomeSimpleDoor } from './HomeSimpleDoor'; +export { default as HomeSimple } from './HomeSimple'; +export { default as HomeTable } from './HomeTable'; +export { default as HomeTemperatureIn } from './HomeTemperatureIn'; +export { default as HomeTemperatureOut } from './HomeTemperatureOut'; +export { default as HomeUser } from './HomeUser'; +export { default as Home } from './Home'; +export { default as HorizDistributionLeft } from './HorizDistributionLeft'; +export { default as HorizDistributionRight } from './HorizDistributionRight'; +export { default as HorizontalMerge } from './HorizontalMerge'; +export { default as HorizontalSplit } from './HorizontalSplit'; +export { default as HospitalSign } from './HospitalSign'; +export { default as Hospital } from './Hospital'; +export { default as HotAirBalloon } from './HotAirBalloon'; +export { default as Hourglass } from './Hourglass'; +export { default as HouseRooms } from './HouseRooms'; +export { default as Html5 } from './Html5'; +export { default as Hydrogen } from './Hydrogen'; +export { default as Iconoir } from './Iconoir'; +export { default as Import } from './Import'; +export { default as Inclination } from './Inclination'; +export { default as Industry } from './Industry'; +export { default as Infinite } from './Infinite'; +export { default as InfoEmpty } from './InfoEmpty'; +export { default as InputField } from './InputField'; +export { default as InputOutput } from './InputOutput'; +export { default as InputSearch } from './InputSearch'; +export { default as Instagram } from './Instagram'; +export { default as Internet } from './Internet'; +export { default as IntersectAlt } from './IntersectAlt'; +export { default as Intersect } from './Intersect'; +export { default as IosSettings } from './IosSettings'; +export { default as IpAddress } from './IpAddress'; +export { default as IrisScan } from './IrisScan'; +export { default as ItalicSquare } from './ItalicSquare'; +export { default as Italic } from './Italic'; +export { default as Jellyfish } from './Jellyfish'; +export { default as JournalPage } from './JournalPage'; +export { default as Journal } from './Journal'; +export { default as JpegFormat } from './JpegFormat'; +export { default as JpgFormat } from './JpgFormat'; +export { default as KanbanBoard } from './KanbanBoard'; +export { default as KeyAltBack } from './KeyAltBack'; +export { default as KeyAltMinus } from './KeyAltMinus'; +export { default as KeyAltPlus } from './KeyAltPlus'; +export { default as KeyAltRemove } from './KeyAltRemove'; +export { default as KeyAlt } from './KeyAlt'; +export { default as KeyCommand } from './KeyCommand'; +export { default as KeyframeAlignCenter } from './KeyframeAlignCenter'; +export { default as KeyframeAlignHorizontal } from './KeyframeAlignHorizontal'; +export { default as KeyframeAlignVertical } from './KeyframeAlignVertical'; +export { default as KeyframePosition } from './KeyframePosition'; +export { default as Keyframe } from './Keyframe'; +export { default as KeyframesCouple } from './KeyframesCouple'; +export { default as Keyframes } from './Keyframes'; +export { default as Label } from './Label'; +export { default as Lamp } from './Lamp'; +export { default as Language } from './Language'; +export { default as LaptopCharging } from './LaptopCharging'; +export { default as LaptopFix } from './LaptopFix'; +export { default as LaptopIssue } from './LaptopIssue'; +export { default as Laptop } from './Laptop'; +export { default as LargeSuitcase } from './LargeSuitcase'; +export { default as LayoutLeft } from './LayoutLeft'; +export { default as LayoutRight } from './LayoutRight'; +export { default as LeaderboardStar } from './LeaderboardStar'; +export { default as Leaderboard } from './Leaderboard'; +export { default as Leaf } from './Leaf'; +export { default as Learning } from './Learning'; +export { default as LeftRoundArrow } from './LeftRoundArrow'; +export { default as Lens } from './Lens'; +export { default as Lifebelt } from './Lifebelt'; +export { default as LightBulbOff } from './LightBulbOff'; +export { default as LightBulbOn } from './LightBulbOn'; +export { default as LightBulb } from './LightBulb'; +export { default as LineSpace } from './LineSpace'; +export { default as Linear } from './Linear'; +export { default as Link } from './Link'; +export { default as LinkedIn } from './LinkedIn'; +export { default as Linux } from './Linux'; +export { default as ListSelect } from './ListSelect'; +export { default as List } from './List'; +export { default as LitecoinCircle } from './LitecoinCircle'; +export { default as LitecoinRotateOut } from './LitecoinRotateOut'; +export { default as LoadActionFloppy } from './LoadActionFloppy'; +export { default as LockKey } from './LockKey'; +export { default as Lock } from './Lock'; +export { default as LockedBook } from './LockedBook'; +export { default as LockedWindow } from './LockedWindow'; +export { default as Loft3D } from './Loft3D'; +export { default as LogDenied } from './LogDenied'; +export { default as LogIn } from './LogIn'; +export { default as LogOut } from './LogOut'; +export { default as LongArrowDownLeft } from './LongArrowDownLeft'; +export { default as LongArrowDownRight } from './LongArrowDownRight'; +export { default as LongArrowLeftDown } from './LongArrowLeftDown'; +export { default as LongArrowLeftUp } from './LongArrowLeftUp'; +export { default as LongArrowRightDown } from './LongArrowRightDown'; +export { default as LongArrowRightUp1 } from './LongArrowRightUp1'; +export { default as LongArrowRightUp } from './LongArrowRightUp'; +export { default as LongArrowUpLeft } from './LongArrowUpLeft'; +export { default as LongArrowUpRight } from './LongArrowUpRight'; +export { default as LotOfCash } from './LotOfCash'; +export { default as Lullaby } from './Lullaby'; +export { default as MacControlKey } from './MacControlKey'; +export { default as MacDock } from './MacDock'; +export { default as MacOptionKey } from './MacOptionKey'; +export { default as MacOsWindow } from './MacOsWindow'; +export { default as MagicWand } from './MagicWand'; +export { default as MagnetEnergy } from './MagnetEnergy'; +export { default as Magnet } from './Magnet'; +export { default as MailIn } from './MailIn'; +export { default as MailOpened } from './MailOpened'; +export { default as MailOut } from './MailOut'; +export { default as Mail } from './Mail'; +export { default as Male } from './Male'; +export { default as MapIssue } from './MapIssue'; +export { default as Map } from './Map'; +export { default as MapsArrowDiagonal } from './MapsArrowDiagonal'; +export { default as MapsArrowIssue } from './MapsArrowIssue'; +export { default as MapsArrow } from './MapsArrow'; +export { default as MapsGoStraight } from './MapsGoStraight'; +export { default as MapsTurnBack } from './MapsTurnBack'; +export { default as MapsTurnLeft } from './MapsTurnLeft'; +export { default as MapsTurnRight } from './MapsTurnRight'; +export { default as MaskSquare } from './MaskSquare'; +export { default as MastercardCard } from './MastercardCard'; +export { default as MathBook } from './MathBook'; +export { default as Maximize } from './Maximize'; +export { default as Medal1St } from './Medal1St'; +export { default as Medal } from './Medal'; +export { default as MediaImageFolder } from './MediaImageFolder'; +export { default as MediaImageList } from './MediaImageList'; +export { default as MediaImage } from './MediaImage'; +export { default as MediaVideoFolder } from './MediaVideoFolder'; +export { default as MediaVideoList } from './MediaVideoList'; +export { default as MediaVideo } from './MediaVideo'; +export { default as MediumPriority } from './MediumPriority'; +export { default as Medium } from './Medium'; +export { default as Megaphone } from './Megaphone'; +export { default as MenuScale } from './MenuScale'; +export { default as Menu } from './Menu'; +export { default as MessageAlert } from './MessageAlert'; +export { default as MessageText } from './MessageText'; +export { default as Message } from './Message'; +export { default as Metro } from './Metro'; +export { default as MicAdd } from './MicAdd'; +export { default as MicCheck } from './MicCheck'; +export { default as MicMute } from './MicMute'; +export { default as MicRemove } from './MicRemove'; +export { default as MicSpeaking } from './MicSpeaking'; +export { default as MicWarning } from './MicWarning'; +export { default as Mic } from './Mic'; +export { default as Microscope } from './Microscope'; +export { default as Minus1 } from './Minus1'; +export { default as MinusCircle } from './MinusCircle'; +export { default as MinusHexagon } from './MinusHexagon'; +export { default as MinusPinAlt } from './MinusPinAlt'; +export { default as MinusSquare } from './MinusSquare'; +export { default as Minus } from './Minus'; +export { default as Mirror } from './Mirror'; +export { default as MissingFont } from './MissingFont'; +export { default as ModernTv4K } from './ModernTv4K'; +export { default as ModernTv } from './ModernTv'; +export { default as MoneySquare } from './MoneySquare'; +export { default as MoonSat } from './MoonSat'; +export { default as MoreHorizCircle } from './MoreHorizCircle'; +export { default as MoreHoriz } from './MoreHoriz'; +export { default as MoreVertCircle } from './MoreVertCircle'; +export { default as MoreVert } from './MoreVert'; +export { default as Motorcycle } from './Motorcycle'; +export { default as MouseButtonLeft } from './MouseButtonLeft'; +export { default as MouseButtonRight } from './MouseButtonRight'; +export { default as MouseScrollWheel } from './MouseScrollWheel'; +export { default as MoveDown } from './MoveDown'; +export { default as MoveLeft } from './MoveLeft'; +export { default as MoveRight } from './MoveRight'; +export { default as MoveRuler } from './MoveRuler'; +export { default as MoveUp } from './MoveUp'; +export { default as Movie } from './Movie'; +export { default as MpegFormat } from './MpegFormat'; +export { default as MultiBubble } from './MultiBubble'; +export { default as MultiMacOsWindow } from './MultiMacOsWindow'; +export { default as MultiWindow } from './MultiWindow'; +export { default as MultiplePagesAdd } from './MultiplePagesAdd'; +export { default as MultiplePagesDelete } from './MultiplePagesDelete'; +export { default as MultiplePagesEmpty } from './MultiplePagesEmpty'; +export { default as MultiplePagesRemove } from './MultiplePagesRemove'; +export { default as MultiplePages } from './MultiplePages'; +export { default as MusicDoubleNoteAdd } from './MusicDoubleNoteAdd'; +export { default as MusicDoubleNote } from './MusicDoubleNote'; +export { default as MusicNoteAdd } from './MusicNoteAdd'; +export { default as MusicNote } from './MusicNote'; +export { default as NavArrowDown } from './NavArrowDown'; +export { default as NavArrowLeft } from './NavArrowLeft'; +export { default as NavArrowRight } from './NavArrowRight'; +export { default as NavArrowUp } from './NavArrowUp'; +export { default as NavigatorAlt } from './NavigatorAlt'; +export { default as Navigator } from './Navigator'; +export { default as Neighbourhood } from './Neighbourhood'; +export { default as NetworkAlt } from './NetworkAlt'; +export { default as NetworkLeft } from './NetworkLeft'; +export { default as NetworkRight } from './NetworkRight'; +export { default as Network } from './Network'; +export { default as NewTab } from './NewTab'; +export { default as NintendoSwitch } from './NintendoSwitch'; +export { default as Nitrogen } from './Nitrogen'; +export { default as NoAccessWindow } from './NoAccessWindow'; +export { default as NoBattery } from './NoBattery'; +export { default as NoCoin } from './NoCoin'; +export { default as NoCreditCard } from './NoCreditCard'; +export { default as NoLink } from './NoLink'; +export { default as NoLock } from './NoLock'; +export { default as NoSmokingCircle } from './NoSmokingCircle'; +export { default as NoSmoking } from './NoSmoking'; +export { default as NonBinary } from './NonBinary'; +export { default as Notes } from './Notes'; +export { default as NpmSquare } from './NpmSquare'; +export { default as Npm } from './Npm'; +export { default as Number0Square } from './Number0Square'; +export { default as Number1Square } from './Number1Square'; +export { default as Number2Square } from './Number2Square'; +export { default as Number3Square } from './Number3Square'; +export { default as Number4Square } from './Number4Square'; +export { default as Number5Square } from './Number5Square'; +export { default as Number6Square } from './Number6Square'; +export { default as Number7Square } from './Number7Square'; +export { default as Number8Square } from './Number8Square'; +export { default as Number9Square } from './Number9Square'; +export { default as NumberedListLeft } from './NumberedListLeft'; +export { default as NumberedListRight } from './NumberedListRight'; +export { default as Octagon } from './Octagon'; +export { default as OffTag } from './OffTag'; +export { default as OilIndustry } from './OilIndustry'; +export { default as Okrs } from './Okrs'; +export { default as OnTag } from './OnTag'; +export { default as OneFingerSelectHandGesture } from './OneFingerSelectHandGesture'; +export { default as OnePointCircle } from './OnePointCircle'; +export { default as OpenBook } from './OpenBook'; +export { default as OpenInBrowser } from './OpenInBrowser'; +export { default as OpenInWindow } from './OpenInWindow'; +export { default as OpenNewWindow } from './OpenNewWindow'; +export { default as OpenSelectHandGesture } from './OpenSelectHandGesture'; +export { default as OpenVpn } from './OpenVpn'; +export { default as OrangeHalf } from './OrangeHalf'; +export { default as OrangeSliceAlt } from './OrangeSliceAlt'; +export { default as OrangeSlice } from './OrangeSlice'; +export { default as OrganicFoodSquare } from './OrganicFoodSquare'; +export { default as OrganicFood } from './OrganicFood'; +export { default as OrthogonalView } from './OrthogonalView'; +export { default as Oxygen } from './Oxygen'; +export { default as PackageLock } from './PackageLock'; +export { default as Package } from './Package'; +export { default as Packages } from './Packages'; +export { default as Pacman } from './Pacman'; +export { default as PageDown } from './PageDown'; +export { default as PageEdit } from './PageEdit'; +export { default as PageFlip } from './PageFlip'; +export { default as PageLeft } from './PageLeft'; +export { default as PageRight } from './PageRight'; +export { default as PageSearch } from './PageSearch'; +export { default as PageStar } from './PageStar'; +export { default as PageUp } from './PageUp'; +export { default as Page } from './Page'; +export { default as Palette } from './Palette'; +export { default as PanoramaEnlarge } from './PanoramaEnlarge'; +export { default as PanoramaReduce } from './PanoramaReduce'; +export { default as PantsAlt } from './PantsAlt'; +export { default as Pants } from './Pants'; +export { default as Parking } from './Parking'; +export { default as PasswordCursor } from './PasswordCursor'; +export { default as PasswordError } from './PasswordError'; +export { default as PasswordPass } from './PasswordPass'; +export { default as PasteClipboard } from './PasteClipboard'; +export { default as PatchHoles3D } from './PatchHoles3D'; +export { default as PathArrow } from './PathArrow'; +export { default as PauseWindow } from './PauseWindow'; +export { default as Pause } from './Pause'; +export { default as Paypal } from './Paypal'; +export { default as PcCheck } from './PcCheck'; +export { default as PcFirewall } from './PcFirewall'; +export { default as PcMouse } from './PcMouse'; +export { default as PcNoEntry } from './PcNoEntry'; +export { default as PcWarning } from './PcWarning'; +export { default as PeaceHand } from './PeaceHand'; +export { default as PenConnectBluetooth } from './PenConnectBluetooth'; +export { default as PenConnectWifi } from './PenConnectWifi'; +export { default as PenTabletConnectUsb } from './PenTabletConnectUsb'; +export { default as PenTabletConnectWifi } from './PenTabletConnectWifi'; +export { default as PenTablet } from './PenTablet'; +export { default as Pentagon } from './Pentagon'; +export { default as PeopleTag } from './PeopleTag'; +export { default as PercentRotateOut } from './PercentRotateOut'; +export { default as PercentageCircle } from './PercentageCircle'; +export { default as PercentageSquare } from './PercentageSquare'; +export { default as Percentage } from './Percentage'; +export { default as PerspectiveView } from './PerspectiveView'; +export { default as PharmacyCrossCircle } from './PharmacyCrossCircle'; +export { default as PharmacyCrossSquare } from './PharmacyCrossSquare'; +export { default as PhoneAdd } from './PhoneAdd'; +export { default as PhoneDelete } from './PhoneDelete'; +export { default as PhoneDisabled } from './PhoneDisabled'; +export { default as PhoneIncome } from './PhoneIncome'; +export { default as PhoneOutcome } from './PhoneOutcome'; +export { default as PhonePaused } from './PhonePaused'; +export { default as PhoneRemove } from './PhoneRemove'; +export { default as Phone } from './Phone'; +export { default as PiggyBank } from './PiggyBank'; +export { default as Pillow } from './Pillow'; +export { default as PinAlt } from './PinAlt'; +export { default as Pin } from './Pin'; +export { default as PineTree } from './PineTree'; +export { default as Pinterest } from './Pinterest'; +export { default as Pipe3D } from './Pipe3D'; +export { default as PizzaSlice } from './PizzaSlice'; +export { default as PlanetAlt } from './PlanetAlt'; +export { default as PlanetSat } from './PlanetSat'; +export { default as Planet } from './Planet'; +export { default as Planimetry } from './Planimetry'; +export { default as Play } from './Play'; +export { default as PlaylistAdd } from './PlaylistAdd'; +export { default as PlaylistPlay } from './PlaylistPlay'; +export { default as Playlist } from './Playlist'; +export { default as PlaystationGamepad } from './PlaystationGamepad'; +export { default as PlugTypeA } from './PlugTypeA'; +export { default as PlugTypeC } from './PlugTypeC'; +export { default as PlugTypeG } from './PlugTypeG'; +export { default as PlugTypeL } from './PlugTypeL'; +export { default as Plus } from './Plus'; +export { default as PngFormat } from './PngFormat'; +export { default as Pocket } from './Pocket'; +export { default as Podcast } from './Podcast'; +export { default as Pokeball } from './Pokeball'; +export { default as PositionAlign } from './PositionAlign'; +export { default as Position } from './Position'; +export { default as Post } from './Post'; +export { default as Potion } from './Potion'; +export { default as Pound } from './Pound'; +export { default as PrecisionTool } from './PrecisionTool'; +export { default as Presentation } from './Presentation'; +export { default as PrinterAlt } from './PrinterAlt'; +export { default as Printer } from './Printer'; +export { default as PrintingPage } from './PrintingPage'; +export { default as PriorityDown } from './PriorityDown'; +export { default as PriorityUp } from './PriorityUp'; +export { default as PrivacyPolicy } from './PrivacyPolicy'; +export { default as PrivateWifi } from './PrivateWifi'; +export { default as ProfileCircle } from './ProfileCircle'; +export { default as Prohibition } from './Prohibition'; +export { default as ProjectCurve3D } from './ProjectCurve3D'; +export { default as Puzzle } from './Puzzle'; +export { default as QrCode } from './QrCode'; +export { default as QuestionMark } from './QuestionMark'; +export { default as QuoteMessage } from './QuoteMessage'; +export { default as Quote } from './Quote'; +export { default as Radiation } from './Radiation'; +export { default as Radius } from './Radius'; +export { default as Rain } from './Rain'; +export { default as RawFormat } from './RawFormat'; +export { default as ReceiveDollars } from './ReceiveDollars'; +export { default as ReceiveEuros } from './ReceiveEuros'; +export { default as ReceivePounds } from './ReceivePounds'; +export { default as ReceiveYens } from './ReceiveYens'; +export { default as RedoAction } from './RedoAction'; +export { default as RedoCircle } from './RedoCircle'; +export { default as Redo } from './Redo'; +export { default as ReduceRoundArrow } from './ReduceRoundArrow'; +export { default as Reduce } from './Reduce'; +export { default as RefreshCircular } from './RefreshCircular'; +export { default as RefreshDouble } from './RefreshDouble'; +export { default as Refresh } from './Refresh'; +export { default as ReloadWindow } from './ReloadWindow'; +export { default as ReminderHandGesture } from './ReminderHandGesture'; +export { default as RemoveDatabaseScript } from './RemoveDatabaseScript'; +export { default as RemoveFolder } from './RemoveFolder'; +export { default as RemoveFrame } from './RemoveFrame'; +export { default as RemoveFromCart } from './RemoveFromCart'; +export { default as RemoveKeyframeAlt } from './RemoveKeyframeAlt'; +export { default as RemoveKeyframe } from './RemoveKeyframe'; +export { default as RemoveKeyframes } from './RemoveKeyframes'; +export { default as RemoveLink } from './RemoveLink'; +export { default as RemoveMediaImage } from './RemoveMediaImage'; +export { default as RemoveMediaVideo } from './RemoveMediaVideo'; +export { default as RemovePageAlt } from './RemovePageAlt'; +export { default as RemovePage } from './RemovePage'; +export { default as RemovePinAlt } from './RemovePinAlt'; +export { default as RemovePin } from './RemovePin'; +export { default as RemoveSelection } from './RemoveSelection'; +export { default as RemoveSquare } from './RemoveSquare'; +export { default as RemoveUser } from './RemoveUser'; +export { default as RepeatOnce } from './RepeatOnce'; +export { default as Repeat } from './Repeat'; +export { default as ReplyToMessage } from './ReplyToMessage'; +export { default as Reply } from './Reply'; +export { default as ReportColumns } from './ReportColumns'; +export { default as Reports } from './Reports'; +export { default as Repository } from './Repository'; +export { default as Restart } from './Restart'; +export { default as Rewind } from './Rewind'; +export { default as Rhombus } from './Rhombus'; +export { default as RightRoundArrow } from './RightRoundArrow'; +export { default as Rings } from './Rings'; +export { default as Rocket } from './Rocket'; +export { default as Rook } from './Rook'; +export { default as RotateCameraLeft } from './RotateCameraLeft'; +export { default as RotateCameraRight } from './RotateCameraRight'; +export { default as RoundFlask } from './RoundFlask'; +export { default as RoundedMirror } from './RoundedMirror'; +export { default as RssFeedTag } from './RssFeedTag'; +export { default as RssFeed } from './RssFeed'; +export { default as RubikCube } from './RubikCube'; +export { default as RulerAdd } from './RulerAdd'; +export { default as RulerCombine } from './RulerCombine'; +export { default as RulerRemove } from './RulerRemove'; +export { default as Ruler } from './Ruler'; +export { default as Running } from './Running'; +export { default as Safari } from './Safari'; +export { default as SafeArrowLeft } from './SafeArrowLeft'; +export { default as SafeArrowRight } from './SafeArrowRight'; +export { default as SafeOpen } from './SafeOpen'; +export { default as Safe } from './Safe'; +export { default as Sandals } from './Sandals'; +export { default as SaveActionFloppy } from './SaveActionFloppy'; +export { default as SaveFloppyDisk } from './SaveFloppyDisk'; +export { default as ScaleFrameEnlarge } from './ScaleFrameEnlarge'; +export { default as ScaleFrameReduce } from './ScaleFrameReduce'; +export { default as ScanBarcode } from './ScanBarcode'; +export { default as ScanQrCode } from './ScanQrCode'; +export { default as Scanning } from './Scanning'; +export { default as Scarf } from './Scarf'; +export { default as ScissorAlt } from './ScissorAlt'; +export { default as Scissor } from './Scissor'; +export { default as Screenshot } from './Screenshot'; +export { default as SeaAndSun } from './SeaAndSun'; +export { default as SeaWaves } from './SeaWaves'; +export { default as SearchEngine } from './SearchEngine'; +export { default as SearchFont } from './SearchFont'; +export { default as SearchWindow } from './SearchWindow'; +export { default as Search } from './Search'; +export { default as SecureWindow } from './SecureWindow'; +export { default as SecurityPass } from './SecurityPass'; +export { default as SelectWindow } from './SelectWindow'; +export { default as Selection } from './Selection'; +export { default as SelectiveTool } from './SelectiveTool'; +export { default as SendDiagonal } from './SendDiagonal'; +export { default as SendDollars } from './SendDollars'; +export { default as SendEuros } from './SendEuros'; +export { default as SendMail } from './SendMail'; +export { default as SendPounds } from './SendPounds'; +export { default as SendYens } from './SendYens'; +export { default as Send } from './Send'; +export { default as ServerConnection } from './ServerConnection'; +export { default as Server } from './Server'; +export { default as SettingsCloud } from './SettingsCloud'; +export { default as SettingsProfiles } from './SettingsProfiles'; +export { default as Settings } from './Settings'; +export { default as ShareAndroid } from './ShareAndroid'; +export { default as ShareIos } from './ShareIos'; +export { default as ShieldAdd } from './ShieldAdd'; +export { default as ShieldAlert } from './ShieldAlert'; +export { default as ShieldAlt } from './ShieldAlt'; +export { default as ShieldBroken } from './ShieldBroken'; +export { default as ShieldCheck } from './ShieldCheck'; +export { default as ShieldCross } from './ShieldCross'; +export { default as ShieldDownload } from './ShieldDownload'; +export { default as ShieldEye } from './ShieldEye'; +export { default as ShieldLoading } from './ShieldLoading'; +export { default as ShieldMinus } from './ShieldMinus'; +export { default as ShieldQuestion } from './ShieldQuestion'; +export { default as ShieldSearch } from './ShieldSearch'; +export { default as ShieldUpload } from './ShieldUpload'; +export { default as Shield } from './Shield'; +export { default as ShopAlt } from './ShopAlt'; +export { default as Shop } from './Shop'; +export { default as ShoppingBagAdd } from './ShoppingBagAdd'; +export { default as ShoppingBagAlt } from './ShoppingBagAlt'; +export { default as ShoppingBagArrowDown } from './ShoppingBagArrowDown'; +export { default as ShoppingBagArrowUp } from './ShoppingBagArrowUp'; +export { default as ShoppingBagCheck } from './ShoppingBagCheck'; +export { default as ShoppingBagIssue } from './ShoppingBagIssue'; +export { default as ShoppingBagRemove } from './ShoppingBagRemove'; +export { default as ShoppingBag } from './ShoppingBag'; +export { default as ShoppingCodeCheck } from './ShoppingCodeCheck'; +export { default as ShoppingCodeError } from './ShoppingCodeError'; +export { default as ShoppingCode } from './ShoppingCode'; +export { default as ShortPantsAlt } from './ShortPantsAlt'; +export { default as ShortPants } from './ShortPants'; +export { default as Shortcut } from './Shortcut'; +export { default as Shuffle } from './Shuffle'; +export { default as SidebarCollapse } from './SidebarCollapse'; +export { default as SidebarExpand } from './SidebarExpand'; +export { default as SigmaFunction } from './SigmaFunction'; +export { default as SimpleCart } from './SimpleCart'; +export { default as SineWave } from './SineWave'; +export { default as SingleTapGesture } from './SingleTapGesture'; +export { default as Skateboard } from './Skateboard'; +export { default as Skateboarding } from './Skateboarding'; +export { default as SkipNext } from './SkipNext'; +export { default as SkipPrev } from './SkipPrev'; +export { default as Slash } from './Slash'; +export { default as SleeperChair } from './SleeperChair'; +export { default as SmallLampAlt } from './SmallLampAlt'; +export { default as SmallLamp } from './SmallLamp'; +export { default as SmallShopAlt } from './SmallShopAlt'; +export { default as SmallShop } from './SmallShop'; +export { default as SmartphoneDevice } from './SmartphoneDevice'; +export { default as Smoking } from './Smoking'; +export { default as Snapchat } from './Snapchat'; +export { default as SnowFlake } from './SnowFlake'; +export { default as Snow } from './Snow'; +export { default as Soap } from './Soap'; +export { default as SoccerBall } from './SoccerBall'; +export { default as Sofa } from './Sofa'; +export { default as SoilAlt } from './SoilAlt'; +export { default as Soil } from './Soil'; +export { default as SortDown } from './SortDown'; +export { default as SortUp } from './SortUp'; +export { default as Sort } from './Sort'; +export { default as SoundHigh } from './SoundHigh'; +export { default as SoundLow } from './SoundLow'; +export { default as SoundMin } from './SoundMin'; +export { default as SoundOff } from './SoundOff'; +export { default as Spades } from './Spades'; +export { default as Spark } from './Spark'; +export { default as Sparks } from './Sparks'; +export { default as Sphere } from './Sphere'; +export { default as Spiral } from './Spiral'; +export { default as SpockHandGesture } from './SpockHandGesture'; +export { default as Spotify } from './Spotify'; +export { default as SquareCursor } from './SquareCursor'; +export { default as SquareWave } from './SquareWave'; +export { default as Square } from './Square'; +export { default as Stackoverflow } from './Stackoverflow'; +export { default as StarDashed } from './StarDashed'; +export { default as StarHalfDashed } from './StarHalfDashed'; +export { default as Star } from './Star'; +export { default as StatDown } from './StatDown'; +export { default as StatUp } from './StatUp'; +export { default as StatsDownSquare } from './StatsDownSquare'; +export { default as StatsReport } from './StatsReport'; +export { default as StatsUpSquare } from './StatsUpSquare'; +export { default as Strategy } from './Strategy'; +export { default as Stretching } from './Stretching'; +export { default as Strikethrough } from './Strikethrough'; +export { default as Stroller } from './Stroller'; +export { default as StyleBorder } from './StyleBorder'; +export { default as SubmitDocument } from './SubmitDocument'; +export { default as Substract } from './Substract'; +export { default as Suggestion } from './Suggestion'; +export { default as SunLight } from './SunLight'; +export { default as SvgFormat } from './SvgFormat'; +export { default as Sweep3D } from './Sweep3D'; +export { default as Swimming } from './Swimming'; +export { default as SwipeDownGesture } from './SwipeDownGesture'; +export { default as SwipeLeftGesture } from './SwipeLeftGesture'; +export { default as SwipeRightGesture } from './SwipeRightGesture'; +export { default as SwipeTwoFingersDownGesture } from './SwipeTwoFingersDownGesture'; +export { default as SwipeTwoFingersLeftGesture } from './SwipeTwoFingersLeftGesture'; +export { default as SwipeTwoFingersRightGesture } from './SwipeTwoFingersRightGesture'; +export { default as SwipeTwoFingersUpGesture } from './SwipeTwoFingersUpGesture'; +export { default as SwipeUpGesture } from './SwipeUpGesture'; +export { default as SwitchOff } from './SwitchOff'; +export { default as SwitchOn } from './SwitchOn'; +export { default as SystemRestart } from './SystemRestart'; +export { default as SystemShut } from './SystemShut'; +export { default as TShirt } from './TShirt'; +export { default as Table2Columns } from './Table2Columns'; +export { default as TableRows } from './TableRows'; +export { default as Table } from './Table'; +export { default as TaskList } from './TaskList'; +export { default as TelegramCircle } from './TelegramCircle'; +export { default as Telegram } from './Telegram'; +export { default as TemperatureDown } from './TemperatureDown'; +export { default as TemperatureHigh } from './TemperatureHigh'; +export { default as TemperatureLow } from './TemperatureLow'; +export { default as TemperatureUp } from './TemperatureUp'; +export { default as TennisBallAlt } from './TennisBallAlt'; +export { default as TennisBall } from './TennisBall'; +export { default as TerminalTag } from './TerminalTag'; +export { default as Terminal } from './Terminal'; +export { default as TestTube } from './TestTube'; +export { default as TextAlt } from './TextAlt'; +export { default as TextBox } from './TextBox'; +export { default as TextSize } from './TextSize'; +export { default as Text } from './Text'; +export { default as Threads } from './Threads'; +export { default as ThreePointsCircle } from './ThreePointsCircle'; +export { default as ThreeStars } from './ThreeStars'; +export { default as ThumbsDown } from './ThumbsDown'; +export { default as ThumbsUp } from './ThumbsUp'; +export { default as Thunderstorm } from './Thunderstorm'; +export { default as TifFormat } from './TifFormat'; +export { default as TiffFormat } from './TiffFormat'; +export { default as TikTok } from './TikTok'; +export { default as TimeZone } from './TimeZone'; +export { default as TimerOff } from './TimerOff'; +export { default as Timer } from './Timer'; +export { default as Tools } from './Tools'; +export { default as Tournament } from './Tournament'; +export { default as TowerCheck } from './TowerCheck'; +export { default as TowerNoAccess } from './TowerNoAccess'; +export { default as TowerWarning } from './TowerWarning'; +export { default as Tower } from './Tower'; +export { default as Trademark } from './Trademark'; +export { default as Train } from './Train'; +export { default as Tram } from './Tram'; +export { default as TransitionDown } from './TransitionDown'; +export { default as TransitionLeft } from './TransitionLeft'; +export { default as TransitionRight } from './TransitionRight'; +export { default as TransitionUp } from './TransitionUp'; +export { default as Translate } from './Translate'; +export { default as Trash } from './Trash'; +export { default as Treadmill } from './Treadmill'; +export { default as Tree } from './Tree'; +export { default as Trekking } from './Trekking'; +export { default as Trello } from './Trello'; +export { default as TriangleFlagCircle } from './TriangleFlagCircle'; +export { default as TriangleFlagTwoStripes } from './TriangleFlagTwoStripes'; +export { default as TriangleFlag } from './TriangleFlag'; +export { default as Triangle } from './Triangle'; +export { default as Trophy } from './Trophy'; +export { default as TruckLength } from './TruckLength'; +export { default as Truck } from './Truck'; +export { default as Tunnel } from './Tunnel'; +export { default as TvFix } from './TvFix'; +export { default as TvIssue } from './TvIssue'; +export { default as Tv } from './Tv'; +export { default as TwitterVerifiedBadge } from './TwitterVerifiedBadge'; +export { default as Twitter } from './Twitter'; +export { default as TwoPointsCircle } from './TwoPointsCircle'; +export { default as TwoSeaterSofa } from './TwoSeaterSofa'; +export { default as Type } from './Type'; +export { default as UmbrellaFull } from './UmbrellaFull'; +export { default as UnderlineSquare } from './UnderlineSquare'; +export { default as Underline } from './Underline'; +export { default as UndoAction } from './UndoAction'; +export { default as UndoCircle } from './UndoCircle'; +export { default as Undo } from './Undo'; +export { default as UnionAlt } from './UnionAlt'; +export { default as UnionHorizAlt } from './UnionHorizAlt'; +export { default as Union } from './Union'; +export { default as Unity5 } from './Unity5'; +export { default as Unity } from './Unity'; +export { default as Unjoin3D } from './Unjoin3D'; +export { default as UpRoundArrow } from './UpRoundArrow'; +export { default as UploadDataWindow } from './UploadDataWindow'; +export { default as UploadSquare } from './UploadSquare'; +export { default as Upload } from './Upload'; +export { default as Usb } from './Usb'; +export { default as UserBag } from './UserBag'; +export { default as UserCart } from './UserCart'; +export { default as UserCircle } from './UserCircle'; +export { default as UserCrown } from './UserCrown'; +export { default as UserLove } from './UserLove'; +export { default as UserScan } from './UserScan'; +export { default as UserSquare } from './UserSquare'; +export { default as UserStar } from './UserStar'; +export { default as User } from './User'; +export { default as VeganCircle } from './VeganCircle'; +export { default as VeganSquare } from './VeganSquare'; +export { default as Vegan } from './Vegan'; +export { default as VerifiedBadge } from './VerifiedBadge'; +export { default as VerifiedUser } from './VerifiedUser'; +export { default as VerticalMerge } from './VerticalMerge'; +export { default as VerticalSplit } from './VerticalSplit'; +export { default as Vials } from './Vials'; +export { default as VideoCameraOff } from './VideoCameraOff'; +export { default as VideoCamera } from './VideoCamera'; +export { default as VideoProjector } from './VideoProjector'; +export { default as ViewColumns2 } from './ViewColumns2'; +export { default as ViewColumns3 } from './ViewColumns3'; +export { default as ViewGrid } from './ViewGrid'; +export { default as ViewStructureDown } from './ViewStructureDown'; +export { default as ViewStructureUp } from './ViewStructureUp'; +export { default as View360 } from './View360'; +export { default as VoiceCircle } from './VoiceCircle'; +export { default as VoiceError } from './VoiceError'; +export { default as VoiceLockCircle } from './VoiceLockCircle'; +export { default as VoiceOk } from './VoiceOk'; +export { default as VoicePhone } from './VoicePhone'; +export { default as VoiceScan } from './VoiceScan'; +export { default as VoiceSquare } from './VoiceSquare'; +export { default as Voice } from './Voice'; +export { default as VrSymbol } from './VrSymbol'; +export { default as VueJs } from './VueJs'; +export { default as Waist } from './Waist'; +export { default as Walking } from './Walking'; +export { default as Wallet } from './Wallet'; +export { default as WarningCircle } from './WarningCircle'; +export { default as WarningHexagon } from './WarningHexagon'; +export { default as WarningSquare } from './WarningSquare'; +export { default as WarningTriangle } from './WarningTriangle'; +export { default as WarningWindow } from './WarningWindow'; +export { default as Wash } from './Wash'; +export { default as WashingMachine } from './WashingMachine'; +export { default as WateringSoil } from './WateringSoil'; +export { default as WebWindowClose } from './WebWindowClose'; +export { default as WebWindowEnergyConsumption } from './WebWindowEnergyConsumption'; +export { default as WebWindow } from './WebWindow'; +export { default as WebpFormat } from './WebpFormat'; +export { default as WeightAlt } from './WeightAlt'; +export { default as Weight } from './Weight'; +export { default as WhiteFlag } from './WhiteFlag'; +export { default as WifiError } from './WifiError'; +export { default as WifiIssue } from './WifiIssue'; +export { default as WifiOff } from './WifiOff'; +export { default as WifiSignalNone } from './WifiSignalNone'; +export { default as WifiTag } from './WifiTag'; +export { default as Wifi } from './Wifi'; +export { default as Wind } from './Wind'; +export { default as Windows } from './Windows'; +export { default as Wolf } from './Wolf'; +export { default as WomenTShirt } from './WomenTShirt'; +export { default as WrapText } from './WrapText'; +export { default as Wrench } from './Wrench'; +export { default as Wristwatch } from './Wristwatch'; +export { default as Www } from './Www'; +export { default as XCoordinate } from './XCoordinate'; +export { default as XboxA } from './XboxA'; +export { default as XboxB } from './XboxB'; +export { default as XboxX } from './XboxX'; +export { default as XboxY } from './XboxY'; +export { default as XrayView } from './XrayView'; +export { default as YCoordinate } from './YCoordinate'; +export { default as Yelp } from './Yelp'; +export { default as YenSquare } from './YenSquare'; +export { default as Yen } from './Yen'; +export { default as Yoga } from './Yoga'; +export { default as YouTube } from './YouTube'; +export { default as ZCoordinate } from './ZCoordinate'; +export { default as ZoomIn } from './ZoomIn'; +export { default as ZoomOut } from './ZoomOut'; +export { + IconoirProvider, + IconoirContext, + IconoirContextValue, +} from './IconoirContext'; diff --git a/packages/iconoir-react/src/server/index.tsx b/packages/iconoir-react/src/server/index.tsx deleted file mode 100644 index dc0b8f81..00000000 --- a/packages/iconoir-react/src/server/index.tsx +++ /dev/null @@ -1,1372 +0,0 @@ -export { default as Svg3DAddHole } from './3DAddHole' -export { default as Svg3DArcCenterPt } from './3DArcCenterPt' -export { default as Svg3DArc } from './3DArc' -export { default as Svg3DBridge } from './3DBridge' -export { default as Svg3DCenterBox } from './3DCenterBox' -export { default as Svg3DDraftFace } from './3DDraftFace' -export { default as Svg3DEllipseThreePts } from './3DEllipseThreePts' -export { default as Svg3DEllipse } from './3DEllipse' -export { default as Svg3DPtBox } from './3DPtBox' -export { default as Svg3DRectCornerToCorner } from './3DRectCornerToCorner' -export { default as Svg3DRectFromCenter } from './3DRectFromCenter' -export { default as Svg3DRectThreePts } from './3DRectThreePts' -export { default as Svg3DSelectEdge } from './3DSelectEdge' -export { default as Svg3DSelectFace } from './3DSelectFace' -export { default as Svg3DSelectPoint } from './3DSelectPoint' -export { default as Svg3DSelectSolid } from './3DSelectSolid' -export { default as Svg3DThreePtsBox } from './3DThreePtsBox' -export { default as AccessibilitySign } from './AccessibilitySign' -export { default as AccessibilityTech } from './AccessibilityTech' -export { default as Accessibility } from './Accessibility' -export { default as Activity } from './Activity' -export { default as AddCircle } from './AddCircle' -export { default as AddDatabaseScript } from './AddDatabaseScript' -export { default as AddFolder } from './AddFolder' -export { default as AddFrame } from './AddFrame' -export { default as AddHexagon } from './AddHexagon' -export { default as AddKeyframeAlt } from './AddKeyframeAlt' -export { default as AddKeyframe } from './AddKeyframe' -export { default as AddKeyframes } from './AddKeyframes' -export { default as AddLens } from './AddLens' -export { default as AddMediaImage } from './AddMediaImage' -export { default as AddMediaVideo } from './AddMediaVideo' -export { default as AddPageAlt } from './AddPageAlt' -export { default as AddPage } from './AddPage' -export { default as AddPinAlt } from './AddPinAlt' -export { default as AddSelection } from './AddSelection' -export { default as AddSquare } from './AddSquare' -export { default as AddToCart } from './AddToCart' -export { default as AddUser } from './AddUser' -export { default as AdobeAfterEffects } from './AdobeAfterEffects' -export { default as AdobeIllustrator } from './AdobeIllustrator' -export { default as AdobeIndesign } from './AdobeIndesign' -export { default as AdobeLightroom } from './AdobeLightroom' -export { default as AdobePhotoshop } from './AdobePhotoshop' -export { default as AdobeXd } from './AdobeXd' -export { default as AfricanTree } from './AfricanTree' -export { default as Agile } from './Agile' -export { default as AirConditioner } from './AirConditioner' -export { default as AirplaneHelix45Deg } from './AirplaneHelix45Deg' -export { default as AirplaneHelix } from './AirplaneHelix' -export { default as AirplaneOff } from './AirplaneOff' -export { default as AirplaneRotation } from './AirplaneRotation' -export { default as Airplane } from './Airplane' -export { default as Airplay } from './Airplay' -export { default as Alarm } from './Alarm' -export { default as AlbumCarousel } from './AlbumCarousel' -export { default as AlbumList } from './AlbumList' -export { default as AlbumOpen } from './AlbumOpen' -export { default as Album } from './Album' -export { default as AlignBottomBox } from './AlignBottomBox' -export { default as AlignCenter } from './AlignCenter' -export { default as AlignHorizontalCenters } from './AlignHorizontalCenters' -export { default as AlignHorizontalSpacing } from './AlignHorizontalSpacing' -export { default as AlignJustify } from './AlignJustify' -export { default as AlignLeftBox } from './AlignLeftBox' -export { default as AlignLeft } from './AlignLeft' -export { default as AlignRightBox } from './AlignRightBox' -export { default as AlignRight } from './AlignRight' -export { default as AlignTopBox } from './AlignTopBox' -export { default as AlignVerticalCenters } from './AlignVerticalCenters' -export { default as AlignVerticalSpacing } from './AlignVerticalSpacing' -export { default as AngleTool } from './AngleTool' -export { default as AntennaOff } from './AntennaOff' -export { default as AntennaSignalTag } from './AntennaSignalTag' -export { default as AntennaSignal } from './AntennaSignal' -export { default as Antenna } from './Antenna' -export { default as AppNotification } from './AppNotification' -export { default as AppStore } from './AppStore' -export { default as AppWindow } from './AppWindow' -export { default as AppleHalfAlt } from './AppleHalfAlt' -export { default as AppleHalf } from './AppleHalf' -export { default as AppleImac2021Side } from './AppleImac2021Side' -export { default as AppleImac2021 } from './AppleImac2021' -export { default as AppleMac } from './AppleMac' -export { default as AppleShortcuts } from './AppleShortcuts' -export { default as AppleSwift } from './AppleSwift' -export { default as AppleWallet } from './AppleWallet' -export { default as Apple } from './Apple' -export { default as ArSymbol } from './ArSymbol' -export { default as Arcade } from './Arcade' -export { default as ArcheryMatch } from './ArcheryMatch' -export { default as Archery } from './Archery' -export { default as Archive } from './Archive' -export { default as AreaSearch } from './AreaSearch' -export { default as ArrowArchery } from './ArrowArchery' -export { default as ArrowBlCircle } from './ArrowBlCircle' -export { default as ArrowBlSquare } from './ArrowBlSquare' -export { default as ArrowBl } from './ArrowBl' -export { default as ArrowBrCircle } from './ArrowBrCircle' -export { default as ArrowBrSquare } from './ArrowBrSquare' -export { default as ArrowBr } from './ArrowBr' -export { default as ArrowDownCircle } from './ArrowDownCircle' -export { default as ArrowDown } from './ArrowDown' -export { default as ArrowEmailForward } from './ArrowEmailForward' -export { default as ArrowLeftCircle } from './ArrowLeftCircle' -export { default as ArrowLeft } from './ArrowLeft' -export { default as ArrowRightCircle } from './ArrowRightCircle' -export { default as ArrowRight } from './ArrowRight' -export { default as ArrowSeparateVertical } from './ArrowSeparateVertical' -export { default as ArrowSeparate } from './ArrowSeparate' -export { default as ArrowTlCircle } from './ArrowTlCircle' -export { default as ArrowTlSquare } from './ArrowTlSquare' -export { default as ArrowTl } from './ArrowTl' -export { default as ArrowTrCircle } from './ArrowTrCircle' -export { default as ArrowTrSquare } from './ArrowTrSquare' -export { default as ArrowTr } from './ArrowTr' -export { default as ArrowUnionVertical } from './ArrowUnionVertical' -export { default as ArrowUnion } from './ArrowUnion' -export { default as ArrowUpCircle } from './ArrowUpCircle' -export { default as ArrowUp } from './ArrowUp' -export { default as ArrowsUpFromLine } from './ArrowsUpFromLine' -export { default as Asana } from './Asana' -export { default as AtSignCircle } from './AtSignCircle' -export { default as AtSign } from './AtSign' -export { default as Atom } from './Atom' -export { default as Attachment } from './Attachment' -export { default as AugmentedReality } from './AugmentedReality' -export { default as AutoFlash } from './AutoFlash' -export { default as AviFormat } from './AviFormat' -export { default as Axes } from './Axes' -export { default as Backward15Seconds } from './Backward15Seconds' -export { default as Bag } from './Bag' -export { default as Balcony } from './Balcony' -export { default as Bank } from './Bank' -export { default as Barcode } from './Barcode' -export { default as BasketballAlt } from './BasketballAlt' -export { default as BasketballField } from './BasketballField' -export { default as Basketball } from './Basketball' -export { default as Bathroom } from './Bathroom' -export { default as Battery25 } from './Battery25' -export { default as Battery50 } from './Battery50' -export { default as Battery75 } from './Battery75' -export { default as BatteryCharging } from './BatteryCharging' -export { default as BatteryEmpty } from './BatteryEmpty' -export { default as BatteryFull } from './BatteryFull' -export { default as BatteryIndicator } from './BatteryIndicator' -export { default as BatteryWarning } from './BatteryWarning' -export { default as Bbq } from './Bbq' -export { default as BeachBagBig } from './BeachBagBig' -export { default as BeachBag } from './BeachBag' -export { default as BedReady } from './BedReady' -export { default as Bed } from './Bed' -export { default as BehanceTag } from './BehanceTag' -export { default as Behance } from './Behance' -export { default as BellNotification } from './BellNotification' -export { default as BellOff } from './BellOff' -export { default as Bell } from './Bell' -export { default as Bicycle } from './Bicycle' -export { default as BinAdd } from './BinAdd' -export { default as BinFull } from './BinFull' -export { default as BinHalf } from './BinHalf' -export { default as BinMinus } from './BinMinus' -export { default as Bin } from './Bin' -export { default as Binocular } from './Binocular' -export { default as BirthdayCake } from './BirthdayCake' -export { default as Bishop } from './Bishop' -export { default as Bitbucket } from './Bitbucket' -export { default as BitcoinCircle } from './BitcoinCircle' -export { default as BitcoinRotateOut } from './BitcoinRotateOut' -export { default as BluetoothTag } from './BluetoothTag' -export { default as Bluetooth } from './Bluetooth' -export { default as BoldSquare } from './BoldSquare' -export { default as Bold } from './Bold' -export { default as Bonfire } from './Bonfire' -export { default as BookStack } from './BookStack' -export { default as Book } from './Book' -export { default as BookmarkBook } from './BookmarkBook' -export { default as BookmarkCircle } from './BookmarkCircle' -export { default as BookmarkEmpty } from './BookmarkEmpty' -export { default as BorderBl } from './BorderBl' -export { default as BorderBottom } from './BorderBottom' -export { default as BorderBr } from './BorderBr' -export { default as BorderInner } from './BorderInner' -export { default as BorderLeft } from './BorderLeft' -export { default as BorderOut } from './BorderOut' -export { default as BorderRight } from './BorderRight' -export { default as BorderTl } from './BorderTl' -export { default as BorderTop } from './BorderTop' -export { default as BorderTr } from './BorderTr' -export { default as BounceLeft } from './BounceLeft' -export { default as BounceRight } from './BounceRight' -export { default as BowlingBall } from './BowlingBall' -export { default as BoxIso } from './BoxIso' -export { default as Box } from './Box' -export { default as BoxingGlove } from './BoxingGlove' -export { default as BrainElectricity } from './BrainElectricity' -export { default as BrainResearch } from './BrainResearch' -export { default as BrainWarning } from './BrainWarning' -export { default as Brain } from './Brain' -export { default as BreadSlice } from './BreadSlice' -export { default as BridgeSurface } from './BridgeSurface' -export { default as BrightCrown } from './BrightCrown' -export { default as BrightStar } from './BrightStar' -export { default as BrightnessWindow } from './BrightnessWindow' -export { default as Brightness } from './Brightness' -export { default as BubbleDownload } from './BubbleDownload' -export { default as BubbleError } from './BubbleError' -export { default as BubbleIncome } from './BubbleIncome' -export { default as BubbleOutcome } from './BubbleOutcome' -export { default as BubbleSearch } from './BubbleSearch' -export { default as BubbleStar } from './BubbleStar' -export { default as BubbleUpload } from './BubbleUpload' -export { default as BubbleWarning } from './BubbleWarning' -export { default as Building } from './Building' -export { default as BusStop } from './BusStop' -export { default as Bus } from './Bus' -export { default as CableTag } from './CableTag' -export { default as Calculator } from './Calculator' -export { default as CalendarMinus } from './CalendarMinus' -export { default as CalendarPlus } from './CalendarPlus' -export { default as Calendar } from './Calendar' -export { default as Camera } from './Camera' -export { default as Cancel } from './Cancel' -export { default as CandlestickChart } from './CandlestickChart' -export { default as Car } from './Car' -export { default as Carbon } from './Carbon' -export { default as CardIssue } from './CardIssue' -export { default as CardLocked } from './CardLocked' -export { default as CardReader } from './CardReader' -export { default as CardSecurity } from './CardSecurity' -export { default as CardWallet } from './CardWallet' -export { default as CartAlt } from './CartAlt' -export { default as Cart } from './Cart' -export { default as Cash } from './Cash' -export { default as Cell2X2 } from './Cell2X2' -export { default as Cellar } from './Cellar' -export { default as CenterAlign } from './CenterAlign' -export { default as ChatAdd } from './ChatAdd' -export { default as ChatBubbleCheck1 } from './ChatBubbleCheck1' -export { default as ChatBubbleCheck } from './ChatBubbleCheck' -export { default as ChatBubbleEmpty } from './ChatBubbleEmpty' -export { default as ChatBubbleError } from './ChatBubbleError' -export { default as ChatBubbleQuestion } from './ChatBubbleQuestion' -export { default as ChatBubbleTranslate } from './ChatBubbleTranslate' -export { default as ChatBubbleWarning } from './ChatBubbleWarning' -export { default as ChatBubble } from './ChatBubble' -export { default as ChatLines } from './ChatLines' -export { default as ChatRemove } from './ChatRemove' -export { default as CheckCircle } from './CheckCircle' -export { default as CheckWindow } from './CheckWindow' -export { default as Check } from './Check' -export { default as Chocolate } from './Chocolate' -export { default as ChromecastActive } from './ChromecastActive' -export { default as Chromecast } from './Chromecast' -export { default as ChurchAlt } from './ChurchAlt' -export { default as Church } from './Church' -export { default as CinemaOld } from './CinemaOld' -export { default as CircleSpark } from './CircleSpark' -export { default as Circle } from './Circle' -export { default as City } from './City' -export { default as CleanWater } from './CleanWater' -export { default as ClipboardCheck } from './ClipboardCheck' -export { default as ClockRotateRight } from './ClockRotateRight' -export { default as Clock } from './Clock' -export { default as ClosedCaptions } from './ClosedCaptions' -export { default as Closet } from './Closet' -export { default as CloudBookAlt } from './CloudBookAlt' -export { default as CloudCheck } from './CloudCheck' -export { default as CloudDesync } from './CloudDesync' -export { default as CloudDownload } from './CloudDownload' -export { default as CloudError } from './CloudError' -export { default as CloudSunny } from './CloudSunny' -export { default as CloudSync } from './CloudSync' -export { default as CloudUpload } from './CloudUpload' -export { default as Cloud } from './Cloud' -export { default as Clutery } from './Clutery' -export { default as CodeBracketsSquare } from './CodeBracketsSquare' -export { default as CodeBrackets } from './CodeBrackets' -export { default as Code } from './Code' -export { default as Codepen } from './Codepen' -export { default as CoffeeCup } from './CoffeeCup' -export { default as Coin } from './Coin' -export { default as CoinsSwap } from './CoinsSwap' -export { default as Coins } from './Coins' -export { default as CollageFrame } from './CollageFrame' -export { default as Collapse } from './Collapse' -export { default as ColorFilter } from './ColorFilter' -export { default as ColorPickerEmpty } from './ColorPickerEmpty' -export { default as ColorPicker } from './ColorPicker' -export { default as ColorWheel } from './ColorWheel' -export { default as Combine } from './Combine' -export { default as Commodity } from './Commodity' -export { default as Community } from './Community' -export { default as CompAlignBottom } from './CompAlignBottom' -export { default as CompAlignLeft } from './CompAlignLeft' -export { default as CompAlignRight } from './CompAlignRight' -export { default as CompAlignTop } from './CompAlignTop' -export { default as CompactDisc } from './CompactDisc' -export { default as Compass } from './Compass' -export { default as Component } from './Component' -export { default as CompressLines } from './CompressLines' -export { default as Compress } from './Compress' -export { default as Computer } from './Computer' -export { default as ConstrainedSurface } from './ConstrainedSurface' -export { default as Consumable } from './Consumable' -export { default as Contactless } from './Contactless' -export { default as ControlSlider } from './ControlSlider' -export { default as Cookie } from './Cookie' -export { default as Cooling } from './Cooling' -export { default as Copy } from './Copy' -export { default as Copyright } from './Copyright' -export { default as CornerBottomLeft } from './CornerBottomLeft' -export { default as CornerBottomRight } from './CornerBottomRight' -export { default as CornerTopLeft } from './CornerTopLeft' -export { default as CornerTopRight } from './CornerTopRight' -export { default as CpuWarning } from './CpuWarning' -export { default as Cpu } from './Cpu' -export { default as CrackedEgg } from './CrackedEgg' -export { default as CreativeCommons } from './CreativeCommons' -export { default as CreditCard } from './CreditCard' -export { default as CreditCards } from './CreditCards' -export { default as Crib } from './Crib' -export { default as CropRotateBl } from './CropRotateBl' -export { default as CropRotateBr } from './CropRotateBr' -export { default as CropRotateTl } from './CropRotateTl' -export { default as CropRotateTr } from './CropRotateTr' -export { default as Crop } from './Crop' -export { default as CrownCircle } from './CrownCircle' -export { default as Crown } from './Crown' -export { default as Css3 } from './Css3' -export { default as CubeReplaceFace } from './CubeReplaceFace' -export { default as CursorPointer } from './CursorPointer' -export { default as CurveArray } from './CurveArray' -export { default as CutAlt } from './CutAlt' -export { default as CutSolidWithCurve } from './CutSolidWithCurve' -export { default as Cut } from './Cut' -export { default as Cycling } from './Cycling' -export { default as Cylinder } from './Cylinder' -export { default as DashFlag } from './DashFlag' -export { default as DashboardDots } from './DashboardDots' -export { default as DashboardSpeed } from './DashboardSpeed' -export { default as Dashboard } from './Dashboard' -export { default as DataTransferBoth } from './DataTransferBoth' -export { default as DataTransferCheck } from './DataTransferCheck' -export { default as DataTransferDown } from './DataTransferDown' -export { default as DataTransferUp } from './DataTransferUp' -export { default as DataTransferWarning } from './DataTransferWarning' -export { default as DatabaseBackup } from './DatabaseBackup' -export { default as DatabaseExport } from './DatabaseExport' -export { default as DatabaseMonitor } from './DatabaseMonitor' -export { default as DatabaseRestore } from './DatabaseRestore' -export { default as DatabaseScript } from './DatabaseScript' -export { default as DatabaseSettings } from './DatabaseSettings' -export { default as DatabaseStar } from './DatabaseStar' -export { default as DatabaseStats } from './DatabaseStats' -export { default as DatabaseTag } from './DatabaseTag' -export { default as DbCheck } from './DbCheck' -export { default as DbError } from './DbError' -export { default as DbSearch } from './DbSearch' -export { default as DbStar } from './DbStar' -export { default as DbWarning } from './DbWarning' -export { default as Db } from './Db' -export { default as DeCompress } from './DeCompress' -export { default as DeleteCircle } from './DeleteCircle' -export { default as DeliveryTruck } from './DeliveryTruck' -export { default as Delivery } from './Delivery' -export { default as Depth } from './Depth' -export { default as DesignNib } from './DesignNib' -export { default as DesignPencil } from './DesignPencil' -export { default as Desk } from './Desk' -export { default as DevModeLaptop } from './DevModeLaptop' -export { default as DevModePhone } from './DevModePhone' -export { default as Developer } from './Developer' -export { default as DewPoint } from './DewPoint' -export { default as Dialpad } from './Dialpad' -export { default as Diameter } from './Diameter' -export { default as DiceFive } from './DiceFive' -export { default as DiceFour } from './DiceFour' -export { default as DiceOne } from './DiceOne' -export { default as DiceSix } from './DiceSix' -export { default as DiceThree } from './DiceThree' -export { default as DiceTwo } from './DiceTwo' -export { default as DimmerSwitch } from './DimmerSwitch' -export { default as DirectorChair } from './DirectorChair' -export { default as Discord } from './Discord' -export { default as Dishwasher } from './Dishwasher' -export { default as Display4K } from './Display4K' -export { default as DivideSelection1 } from './DivideSelection1' -export { default as DivideSelection2 } from './DivideSelection2' -export { default as DivideThree } from './DivideThree' -export { default as Divide } from './Divide' -export { default as Dna } from './Dna' -export { default as DocSearchAlt } from './DocSearchAlt' -export { default as DocSearch } from './DocSearch' -export { default as DocStarAlt } from './DocStarAlt' -export { default as DocStar } from './DocStar' -export { default as DogecoinCircle } from './DogecoinCircle' -export { default as DogecoinRotateOut } from './DogecoinRotateOut' -export { default as Dollar } from './Dollar' -export { default as DomoticIssue } from './DomoticIssue' -export { default as Donate } from './Donate' -export { default as DoubleCheck } from './DoubleCheck' -export { default as DownRoundArrow } from './DownRoundArrow' -export { default as DownloadCircle } from './DownloadCircle' -export { default as DownloadDataWindow } from './DownloadDataWindow' -export { default as DownloadSquare } from './DownloadSquare' -export { default as Download } from './Download' -export { default as DragHandGesture } from './DragHandGesture' -export { default as Drag } from './Drag' -export { default as Drawer } from './Drawer' -export { default as Dribbble } from './Dribbble' -export { default as DroneChargeFull } from './DroneChargeFull' -export { default as DroneChargeHalf } from './DroneChargeHalf' -export { default as DroneChargeLow } from './DroneChargeLow' -export { default as DroneCheck } from './DroneCheck' -export { default as DroneError } from './DroneError' -export { default as DroneLanding } from './DroneLanding' -export { default as DroneRefresh } from './DroneRefresh' -export { default as DroneTakeOff } from './DroneTakeOff' -export { default as Drone } from './Drone' -export { default as DropletHalf } from './DropletHalf' -export { default as Droplet } from './Droplet' -export { default as EaseCurveControlPoints } from './EaseCurveControlPoints' -export { default as EaseInControlPoint } from './EaseInControlPoint' -export { default as EaseInOut } from './EaseInOut' -export { default as EaseIn } from './EaseIn' -export { default as EaseOutControlPoint } from './EaseOutControlPoint' -export { default as EaseOut } from './EaseOut' -export { default as EcologyBook } from './EcologyBook' -export { default as EditPencil } from './EditPencil' -export { default as Edit } from './Edit' -export { default as Egg } from './Egg' -export { default as Eject } from './Eject' -export { default as ElectronicsChip } from './ElectronicsChip' -export { default as ElectronicsTransistor } from './ElectronicsTransistor' -export { default as Elevator } from './Elevator' -export { default as EmojiBall } from './EmojiBall' -export { default as EmojiBlinkLeft } from './EmojiBlinkLeft' -export { default as EmojiBlinkRight } from './EmojiBlinkRight' -export { default as EmojiLookDown } from './EmojiLookDown' -export { default as EmojiLookLeft } from './EmojiLookLeft' -export { default as EmojiLookRight } from './EmojiLookRight' -export { default as EmojiLookUp } from './EmojiLookUp' -export { default as EmojiPuzzled } from './EmojiPuzzled' -export { default as EmojiQuite } from './EmojiQuite' -export { default as EmojiReally } from './EmojiReally' -export { default as EmojiSad } from './EmojiSad' -export { default as EmojiSatisfied } from './EmojiSatisfied' -export { default as EmojiSingLeftNote } from './EmojiSingLeftNote' -export { default as EmojiSingLeft } from './EmojiSingLeft' -export { default as EmojiSingRightNote } from './EmojiSingRightNote' -export { default as EmojiSingRight } from './EmojiSingRight' -export { default as EmojiSurpriseAlt } from './EmojiSurpriseAlt' -export { default as EmojiSurprise } from './EmojiSurprise' -export { default as EmojiTalkingAngry } from './EmojiTalkingAngry' -export { default as EmojiTalkingHappy } from './EmojiTalkingHappy' -export { default as EmojiThinkLeft } from './EmojiThinkLeft' -export { default as EmojiThinkRight } from './EmojiThinkRight' -export { default as Emoji } from './Emoji' -export { default as EmptyPage } from './EmptyPage' -export { default as EnergyUsageWindow } from './EnergyUsageWindow' -export { default as EnlargeRoundArrow } from './EnlargeRoundArrow' -export { default as Enlarge } from './Enlarge' -export { default as Erase } from './Erase' -export { default as ErrorWindow } from './ErrorWindow' -export { default as EthereumCircle } from './EthereumCircle' -export { default as EthereumRotateOut } from './EthereumRotateOut' -export { default as EuroSquare } from './EuroSquare' -export { default as Euro } from './Euro' -export { default as EvChargeAlt } from './EvChargeAlt' -export { default as EvCharge } from './EvCharge' -export { default as EvPlugCharging } from './EvPlugCharging' -export { default as EvPlugError } from './EvPlugError' -export { default as EvPlug } from './EvPlug' -export { default as EvStation } from './EvStation' -export { default as EvTag } from './EvTag' -export { default as Exclude } from './Exclude' -export { default as ExpandLines } from './ExpandLines' -export { default as Expand } from './Expand' -export { default as Extrude } from './Extrude' -export { default as EyeAlt } from './EyeAlt' -export { default as EyeClose } from './EyeClose' -export { default as EyeEmpty } from './EyeEmpty' -export { default as EyeOff } from './EyeOff' -export { default as FaceId } from './FaceId' -export { default as FacebookTag } from './FacebookTag' -export { default as Facebook } from './Facebook' -export { default as Facetime } from './Facetime' -export { default as Farm } from './Farm' -export { default as FastArrowDownBox } from './FastArrowDownBox' -export { default as FastArrowDown } from './FastArrowDown' -export { default as FastArrowLeftBox } from './FastArrowLeftBox' -export { default as FastArrowLeft } from './FastArrowLeft' -export { default as FastArrowRightBox } from './FastArrowRightBox' -export { default as FastArrowRight } from './FastArrowRight' -export { default as FastArrowUpBox } from './FastArrowUpBox' -export { default as FastArrowUp } from './FastArrowUp' -export { default as FastDownCircle } from './FastDownCircle' -export { default as FastLeftCircle } from './FastLeftCircle' -export { default as FastRightCircle } from './FastRightCircle' -export { default as FastUpCircle } from './FastUpCircle' -export { default as FavouriteBook } from './FavouriteBook' -export { default as FavouriteWindow } from './FavouriteWindow' -export { default as Female } from './Female' -export { default as Figma } from './Figma' -export { default as FileNotFound } from './FileNotFound' -export { default as FillColor } from './FillColor' -export { default as Fillet3D } from './Fillet3D' -export { default as FilterAlt } from './FilterAlt' -export { default as FilterListCircle } from './FilterListCircle' -export { default as FilterList } from './FilterList' -export { default as Filter } from './Filter' -export { default as Finder } from './Finder' -export { default as FingerprintCheckCircle } from './FingerprintCheckCircle' -export { default as FingerprintCircle } from './FingerprintCircle' -export { default as FingerprintErrorCircle } from './FingerprintErrorCircle' -export { default as FingerprintLockCircle } from './FingerprintLockCircle' -export { default as FingerprintPhone } from './FingerprintPhone' -export { default as FingerprintScan } from './FingerprintScan' -export { default as FingerprintSquare } from './FingerprintSquare' -export { default as FingerprintWindow } from './FingerprintWindow' -export { default as Fingerprint } from './Fingerprint' -export { default as FireFlame } from './FireFlame' -export { default as Fish } from './Fish' -export { default as Fishing } from './Fishing' -export { default as Flare } from './Flare' -export { default as FlashOff } from './FlashOff' -export { default as Flash } from './Flash' -export { default as Flask } from './Flask' -export { default as FlipReverse } from './FlipReverse' -export { default as Flip } from './Flip' -export { default as Flower } from './Flower' -export { default as Fluorine } from './Fluorine' -export { default as Fog } from './Fog' -export { default as FolderAlert } from './FolderAlert' -export { default as FolderSettings } from './FolderSettings' -export { default as Folder } from './Folder' -export { default as FontSize } from './FontSize' -export { default as FootballBall } from './FootballBall' -export { default as Football } from './Football' -export { default as Forward15Seconds } from './Forward15Seconds' -export { default as ForwardMessage } from './ForwardMessage' -export { default as Forward } from './Forward' -export { default as FrameAltEmpty } from './FrameAltEmpty' -export { default as FrameAlt } from './FrameAlt' -export { default as FrameSelect } from './FrameSelect' -export { default as FrameSimple } from './FrameSimple' -export { default as FrameTool } from './FrameTool' -export { default as Frame } from './Frame' -export { default as Fridge } from './Fridge' -export { default as FxTag } from './FxTag' -export { default as Fx } from './Fx' -export { default as Gamepad } from './Gamepad' -export { default as Garage } from './Garage' -export { default as GasTankDrop } from './GasTankDrop' -export { default as GasTank } from './GasTank' -export { default as Gas } from './Gas' -export { default as GifFormat } from './GifFormat' -export { default as Gift } from './Gift' -export { default as GitBranch } from './GitBranch' -export { default as GitCherryPickCommit } from './GitCherryPickCommit' -export { default as GitCommand } from './GitCommand' -export { default as GitCommit } from './GitCommit' -export { default as GitCompare } from './GitCompare' -export { default as GitFork } from './GitFork' -export { default as GitMerge } from './GitMerge' -export { default as GitPullRequestClosed } from './GitPullRequestClosed' -export { default as GitPullRequest } from './GitPullRequest' -export { default as GitHub } from './GitHub' -export { default as GitLabFull } from './GitLabFull' -export { default as GithubCircle } from './GithubCircle' -export { default as GlassEmpty } from './GlassEmpty' -export { default as GlassFragile } from './GlassFragile' -export { default as GlassHalfAlt } from './GlassHalfAlt' -export { default as GlassHalf } from './GlassHalf' -export { default as Glasses } from './Glasses' -export { default as Globe } from './Globe' -export { default as Golf } from './Golf' -export { default as GoogleCircle } from './GoogleCircle' -export { default as GoogleDocs } from './GoogleDocs' -export { default as GoogleDriveCheck } from './GoogleDriveCheck' -export { default as GoogleDriveSync } from './GoogleDriveSync' -export { default as GoogleDriveWarning } from './GoogleDriveWarning' -export { default as GoogleDrive } from './GoogleDrive' -export { default as GoogleHome } from './GoogleHome' -export { default as GoogleOne } from './GoogleOne' -export { default as Google } from './Google' -export { default as Gps } from './Gps' -export { default as GraduationCap } from './GraduationCap' -export { default as GraphDown } from './GraphDown' -export { default as GraphUp } from './GraphUp' -export { default as GreenBus } from './GreenBus' -export { default as GreenTruck } from './GreenTruck' -export { default as GreenVehicle } from './GreenVehicle' -export { default as GridAdd } from './GridAdd' -export { default as GridMinus } from './GridMinus' -export { default as GridRemove } from './GridRemove' -export { default as Group } from './Group' -export { default as Gym } from './Gym' -export { default as HalfCookie } from './HalfCookie' -export { default as HalfMoon } from './HalfMoon' -export { default as Hammer } from './Hammer' -export { default as HandBrake } from './HandBrake' -export { default as HandCard } from './HandCard' -export { default as HandCash } from './HandCash' -export { default as HandContactless } from './HandContactless' -export { default as Handbag } from './Handbag' -export { default as HardDrive } from './HardDrive' -export { default as Hat } from './Hat' -export { default as HdDisplay } from './HdDisplay' -export { default as Hd } from './Hd' -export { default as Hdr } from './Hdr' -export { default as HeadsetCharge } from './HeadsetCharge' -export { default as HeadsetHelp } from './HeadsetHelp' -export { default as HeadsetIssue } from './HeadsetIssue' -export { default as Headset } from './Headset' -export { default as HealthShield } from './HealthShield' -export { default as Healthcare } from './Healthcare' -export { default as HeartArrowDown } from './HeartArrowDown' -export { default as Heart } from './Heart' -export { default as Heating } from './Heating' -export { default as HeavyRain } from './HeavyRain' -export { default as HelpCircle } from './HelpCircle' -export { default as HelpSquare } from './HelpSquare' -export { default as Heptagon } from './Heptagon' -export { default as HerSlips } from './HerSlips' -export { default as HexagonAlt } from './HexagonAlt' -export { default as HexagonDice } from './HexagonDice' -export { default as Hexagon } from './Hexagon' -export { default as HighPriority } from './HighPriority' -export { default as HistoricShieldAlt } from './HistoricShieldAlt' -export { default as HistoricShield } from './HistoricShield' -export { default as HomeAltSlimHoriz } from './HomeAltSlimHoriz' -export { default as HomeAltSlim } from './HomeAltSlim' -export { default as HomeAlt } from './HomeAlt' -export { default as HomeHospital } from './HomeHospital' -export { default as HomeSale } from './HomeSale' -export { default as HomeSecure } from './HomeSecure' -export { default as HomeShield } from './HomeShield' -export { default as HomeSimpleDoor } from './HomeSimpleDoor' -export { default as HomeSimple } from './HomeSimple' -export { default as HomeTable } from './HomeTable' -export { default as HomeTemperatureIn } from './HomeTemperatureIn' -export { default as HomeTemperatureOut } from './HomeTemperatureOut' -export { default as HomeUser } from './HomeUser' -export { default as Home } from './Home' -export { default as HorizDistributionLeft } from './HorizDistributionLeft' -export { default as HorizDistributionRight } from './HorizDistributionRight' -export { default as HorizontalMerge } from './HorizontalMerge' -export { default as HorizontalSplit } from './HorizontalSplit' -export { default as HospitalSign } from './HospitalSign' -export { default as Hospital } from './Hospital' -export { default as HotAirBalloon } from './HotAirBalloon' -export { default as Hourglass } from './Hourglass' -export { default as HouseRooms } from './HouseRooms' -export { default as Html5 } from './Html5' -export { default as Hydrogen } from './Hydrogen' -export { default as Iconoir } from './Iconoir' -export { default as Import } from './Import' -export { default as Inclination } from './Inclination' -export { default as Industry } from './Industry' -export { default as Infinite } from './Infinite' -export { default as InfoEmpty } from './InfoEmpty' -export { default as InputField } from './InputField' -export { default as InputOutput } from './InputOutput' -export { default as InputSearch } from './InputSearch' -export { default as Instagram } from './Instagram' -export { default as Internet } from './Internet' -export { default as IntersectAlt } from './IntersectAlt' -export { default as Intersect } from './Intersect' -export { default as IosSettings } from './IosSettings' -export { default as IpAddress } from './IpAddress' -export { default as IrisScan } from './IrisScan' -export { default as ItalicSquare } from './ItalicSquare' -export { default as Italic } from './Italic' -export { default as Jellyfish } from './Jellyfish' -export { default as JournalPage } from './JournalPage' -export { default as Journal } from './Journal' -export { default as JpegFormat } from './JpegFormat' -export { default as JpgFormat } from './JpgFormat' -export { default as KanbanBoard } from './KanbanBoard' -export { default as KeyAltBack } from './KeyAltBack' -export { default as KeyAltMinus } from './KeyAltMinus' -export { default as KeyAltPlus } from './KeyAltPlus' -export { default as KeyAltRemove } from './KeyAltRemove' -export { default as KeyAlt } from './KeyAlt' -export { default as KeyCommand } from './KeyCommand' -export { default as KeyframeAlignCenter } from './KeyframeAlignCenter' -export { default as KeyframeAlignHorizontal } from './KeyframeAlignHorizontal' -export { default as KeyframeAlignVertical } from './KeyframeAlignVertical' -export { default as KeyframePosition } from './KeyframePosition' -export { default as Keyframe } from './Keyframe' -export { default as KeyframesCouple } from './KeyframesCouple' -export { default as Keyframes } from './Keyframes' -export { default as Label } from './Label' -export { default as Lamp } from './Lamp' -export { default as Language } from './Language' -export { default as LaptopCharging } from './LaptopCharging' -export { default as LaptopFix } from './LaptopFix' -export { default as LaptopIssue } from './LaptopIssue' -export { default as Laptop } from './Laptop' -export { default as LargeSuitcase } from './LargeSuitcase' -export { default as LayoutLeft } from './LayoutLeft' -export { default as LayoutRight } from './LayoutRight' -export { default as LeaderboardStar } from './LeaderboardStar' -export { default as Leaderboard } from './Leaderboard' -export { default as Leaf } from './Leaf' -export { default as Learning } from './Learning' -export { default as LeftRoundArrow } from './LeftRoundArrow' -export { default as Lens } from './Lens' -export { default as Lifebelt } from './Lifebelt' -export { default as LightBulbOff } from './LightBulbOff' -export { default as LightBulbOn } from './LightBulbOn' -export { default as LightBulb } from './LightBulb' -export { default as LineSpace } from './LineSpace' -export { default as Linear } from './Linear' -export { default as Link } from './Link' -export { default as LinkedIn } from './LinkedIn' -export { default as Linux } from './Linux' -export { default as ListSelect } from './ListSelect' -export { default as List } from './List' -export { default as LitecoinCircle } from './LitecoinCircle' -export { default as LitecoinRotateOut } from './LitecoinRotateOut' -export { default as LoadActionFloppy } from './LoadActionFloppy' -export { default as LockKey } from './LockKey' -export { default as Lock } from './Lock' -export { default as LockedBook } from './LockedBook' -export { default as LockedWindow } from './LockedWindow' -export { default as Loft3D } from './Loft3D' -export { default as LogDenied } from './LogDenied' -export { default as LogIn } from './LogIn' -export { default as LogOut } from './LogOut' -export { default as LongArrowDownLeft } from './LongArrowDownLeft' -export { default as LongArrowDownRight } from './LongArrowDownRight' -export { default as LongArrowLeftDown } from './LongArrowLeftDown' -export { default as LongArrowLeftUp } from './LongArrowLeftUp' -export { default as LongArrowRightDown } from './LongArrowRightDown' -export { default as LongArrowRightUp1 } from './LongArrowRightUp1' -export { default as LongArrowRightUp } from './LongArrowRightUp' -export { default as LongArrowUpLeft } from './LongArrowUpLeft' -export { default as LongArrowUpRight } from './LongArrowUpRight' -export { default as LotOfCash } from './LotOfCash' -export { default as Lullaby } from './Lullaby' -export { default as MacControlKey } from './MacControlKey' -export { default as MacDock } from './MacDock' -export { default as MacOptionKey } from './MacOptionKey' -export { default as MacOsWindow } from './MacOsWindow' -export { default as MagicWand } from './MagicWand' -export { default as MagnetEnergy } from './MagnetEnergy' -export { default as Magnet } from './Magnet' -export { default as MailIn } from './MailIn' -export { default as MailOpened } from './MailOpened' -export { default as MailOut } from './MailOut' -export { default as Mail } from './Mail' -export { default as Male } from './Male' -export { default as MapIssue } from './MapIssue' -export { default as Map } from './Map' -export { default as MapsArrowDiagonal } from './MapsArrowDiagonal' -export { default as MapsArrowIssue } from './MapsArrowIssue' -export { default as MapsArrow } from './MapsArrow' -export { default as MapsGoStraight } from './MapsGoStraight' -export { default as MapsTurnBack } from './MapsTurnBack' -export { default as MapsTurnLeft } from './MapsTurnLeft' -export { default as MapsTurnRight } from './MapsTurnRight' -export { default as MaskSquare } from './MaskSquare' -export { default as MastercardCard } from './MastercardCard' -export { default as MathBook } from './MathBook' -export { default as Maximize } from './Maximize' -export { default as Medal1St } from './Medal1St' -export { default as Medal } from './Medal' -export { default as MediaImageFolder } from './MediaImageFolder' -export { default as MediaImageList } from './MediaImageList' -export { default as MediaImage } from './MediaImage' -export { default as MediaVideoFolder } from './MediaVideoFolder' -export { default as MediaVideoList } from './MediaVideoList' -export { default as MediaVideo } from './MediaVideo' -export { default as MediumPriority } from './MediumPriority' -export { default as Medium } from './Medium' -export { default as Megaphone } from './Megaphone' -export { default as MenuScale } from './MenuScale' -export { default as Menu } from './Menu' -export { default as MessageAlert } from './MessageAlert' -export { default as MessageText } from './MessageText' -export { default as Message } from './Message' -export { default as Metro } from './Metro' -export { default as MicAdd } from './MicAdd' -export { default as MicCheck } from './MicCheck' -export { default as MicMute } from './MicMute' -export { default as MicRemove } from './MicRemove' -export { default as MicSpeaking } from './MicSpeaking' -export { default as MicWarning } from './MicWarning' -export { default as Mic } from './Mic' -export { default as Microscope } from './Microscope' -export { default as Minus1 } from './Minus1' -export { default as MinusCircle } from './MinusCircle' -export { default as MinusHexagon } from './MinusHexagon' -export { default as MinusPinAlt } from './MinusPinAlt' -export { default as MinusSquare } from './MinusSquare' -export { default as Minus } from './Minus' -export { default as Mirror } from './Mirror' -export { default as MissingFont } from './MissingFont' -export { default as ModernTv4K } from './ModernTv4K' -export { default as ModernTv } from './ModernTv' -export { default as MoneySquare } from './MoneySquare' -export { default as MoonSat } from './MoonSat' -export { default as MoreHorizCircle } from './MoreHorizCircle' -export { default as MoreHoriz } from './MoreHoriz' -export { default as MoreVertCircle } from './MoreVertCircle' -export { default as MoreVert } from './MoreVert' -export { default as Motorcycle } from './Motorcycle' -export { default as MouseButtonLeft } from './MouseButtonLeft' -export { default as MouseButtonRight } from './MouseButtonRight' -export { default as MouseScrollWheel } from './MouseScrollWheel' -export { default as MoveDown } from './MoveDown' -export { default as MoveLeft } from './MoveLeft' -export { default as MoveRight } from './MoveRight' -export { default as MoveRuler } from './MoveRuler' -export { default as MoveUp } from './MoveUp' -export { default as Movie } from './Movie' -export { default as MpegFormat } from './MpegFormat' -export { default as MultiBubble } from './MultiBubble' -export { default as MultiMacOsWindow } from './MultiMacOsWindow' -export { default as MultiWindow } from './MultiWindow' -export { default as MultiplePagesAdd } from './MultiplePagesAdd' -export { default as MultiplePagesDelete } from './MultiplePagesDelete' -export { default as MultiplePagesEmpty } from './MultiplePagesEmpty' -export { default as MultiplePagesRemove } from './MultiplePagesRemove' -export { default as MultiplePages } from './MultiplePages' -export { default as MusicDoubleNoteAdd } from './MusicDoubleNoteAdd' -export { default as MusicDoubleNote } from './MusicDoubleNote' -export { default as MusicNoteAdd } from './MusicNoteAdd' -export { default as MusicNote } from './MusicNote' -export { default as NavArrowDown } from './NavArrowDown' -export { default as NavArrowLeft } from './NavArrowLeft' -export { default as NavArrowRight } from './NavArrowRight' -export { default as NavArrowUp } from './NavArrowUp' -export { default as NavigatorAlt } from './NavigatorAlt' -export { default as Navigator } from './Navigator' -export { default as Neighbourhood } from './Neighbourhood' -export { default as NetworkAlt } from './NetworkAlt' -export { default as NetworkLeft } from './NetworkLeft' -export { default as NetworkRight } from './NetworkRight' -export { default as Network } from './Network' -export { default as NewTab } from './NewTab' -export { default as NintendoSwitch } from './NintendoSwitch' -export { default as Nitrogen } from './Nitrogen' -export { default as NoAccessWindow } from './NoAccessWindow' -export { default as NoBattery } from './NoBattery' -export { default as NoCoin } from './NoCoin' -export { default as NoCreditCard } from './NoCreditCard' -export { default as NoLink } from './NoLink' -export { default as NoLock } from './NoLock' -export { default as NoSmokingCircle } from './NoSmokingCircle' -export { default as NoSmoking } from './NoSmoking' -export { default as NonBinary } from './NonBinary' -export { default as Notes } from './Notes' -export { default as NpmSquare } from './NpmSquare' -export { default as Npm } from './Npm' -export { default as Number0Square } from './Number0Square' -export { default as Number1Square } from './Number1Square' -export { default as Number2Square } from './Number2Square' -export { default as Number3Square } from './Number3Square' -export { default as Number4Square } from './Number4Square' -export { default as Number5Square } from './Number5Square' -export { default as Number6Square } from './Number6Square' -export { default as Number7Square } from './Number7Square' -export { default as Number8Square } from './Number8Square' -export { default as Number9Square } from './Number9Square' -export { default as NumberedListLeft } from './NumberedListLeft' -export { default as NumberedListRight } from './NumberedListRight' -export { default as Octagon } from './Octagon' -export { default as OffTag } from './OffTag' -export { default as OilIndustry } from './OilIndustry' -export { default as Okrs } from './Okrs' -export { default as OnTag } from './OnTag' -export { default as OneFingerSelectHandGesture } from './OneFingerSelectHandGesture' -export { default as OnePointCircle } from './OnePointCircle' -export { default as OpenBook } from './OpenBook' -export { default as OpenInBrowser } from './OpenInBrowser' -export { default as OpenInWindow } from './OpenInWindow' -export { default as OpenNewWindow } from './OpenNewWindow' -export { default as OpenSelectHandGesture } from './OpenSelectHandGesture' -export { default as OpenVpn } from './OpenVpn' -export { default as OrangeHalf } from './OrangeHalf' -export { default as OrangeSliceAlt } from './OrangeSliceAlt' -export { default as OrangeSlice } from './OrangeSlice' -export { default as OrganicFoodSquare } from './OrganicFoodSquare' -export { default as OrganicFood } from './OrganicFood' -export { default as OrthogonalView } from './OrthogonalView' -export { default as Oxygen } from './Oxygen' -export { default as PackageLock } from './PackageLock' -export { default as Package } from './Package' -export { default as Packages } from './Packages' -export { default as Pacman } from './Pacman' -export { default as PageDown } from './PageDown' -export { default as PageEdit } from './PageEdit' -export { default as PageFlip } from './PageFlip' -export { default as PageLeft } from './PageLeft' -export { default as PageRight } from './PageRight' -export { default as PageSearch } from './PageSearch' -export { default as PageStar } from './PageStar' -export { default as PageUp } from './PageUp' -export { default as Page } from './Page' -export { default as Palette } from './Palette' -export { default as PanoramaEnlarge } from './PanoramaEnlarge' -export { default as PanoramaReduce } from './PanoramaReduce' -export { default as PantsAlt } from './PantsAlt' -export { default as Pants } from './Pants' -export { default as Parking } from './Parking' -export { default as PasswordCursor } from './PasswordCursor' -export { default as PasswordError } from './PasswordError' -export { default as PasswordPass } from './PasswordPass' -export { default as PasteClipboard } from './PasteClipboard' -export { default as PatchHoles3D } from './PatchHoles3D' -export { default as PathArrow } from './PathArrow' -export { default as PauseWindow } from './PauseWindow' -export { default as Pause } from './Pause' -export { default as Paypal } from './Paypal' -export { default as PcCheck } from './PcCheck' -export { default as PcFirewall } from './PcFirewall' -export { default as PcMouse } from './PcMouse' -export { default as PcNoEntry } from './PcNoEntry' -export { default as PcWarning } from './PcWarning' -export { default as PeaceHand } from './PeaceHand' -export { default as PenConnectBluetooth } from './PenConnectBluetooth' -export { default as PenConnectWifi } from './PenConnectWifi' -export { default as PenTabletConnectUsb } from './PenTabletConnectUsb' -export { default as PenTabletConnectWifi } from './PenTabletConnectWifi' -export { default as PenTablet } from './PenTablet' -export { default as Pentagon } from './Pentagon' -export { default as PeopleTag } from './PeopleTag' -export { default as PercentRotateOut } from './PercentRotateOut' -export { default as PercentageCircle } from './PercentageCircle' -export { default as PercentageSquare } from './PercentageSquare' -export { default as Percentage } from './Percentage' -export { default as PerspectiveView } from './PerspectiveView' -export { default as PharmacyCrossCircle } from './PharmacyCrossCircle' -export { default as PharmacyCrossSquare } from './PharmacyCrossSquare' -export { default as PhoneAdd } from './PhoneAdd' -export { default as PhoneDelete } from './PhoneDelete' -export { default as PhoneDisabled } from './PhoneDisabled' -export { default as PhoneIncome } from './PhoneIncome' -export { default as PhoneOutcome } from './PhoneOutcome' -export { default as PhonePaused } from './PhonePaused' -export { default as PhoneRemove } from './PhoneRemove' -export { default as Phone } from './Phone' -export { default as PiggyBank } from './PiggyBank' -export { default as Pillow } from './Pillow' -export { default as PinAlt } from './PinAlt' -export { default as Pin } from './Pin' -export { default as PineTree } from './PineTree' -export { default as Pinterest } from './Pinterest' -export { default as Pipe3D } from './Pipe3D' -export { default as PizzaSlice } from './PizzaSlice' -export { default as PlanetAlt } from './PlanetAlt' -export { default as PlanetSat } from './PlanetSat' -export { default as Planet } from './Planet' -export { default as Planimetry } from './Planimetry' -export { default as Play } from './Play' -export { default as PlaylistAdd } from './PlaylistAdd' -export { default as PlaylistPlay } from './PlaylistPlay' -export { default as Playlist } from './Playlist' -export { default as PlaystationGamepad } from './PlaystationGamepad' -export { default as PlugTypeA } from './PlugTypeA' -export { default as PlugTypeC } from './PlugTypeC' -export { default as PlugTypeG } from './PlugTypeG' -export { default as PlugTypeL } from './PlugTypeL' -export { default as Plus } from './Plus' -export { default as PngFormat } from './PngFormat' -export { default as Pocket } from './Pocket' -export { default as Podcast } from './Podcast' -export { default as Pokeball } from './Pokeball' -export { default as PositionAlign } from './PositionAlign' -export { default as Position } from './Position' -export { default as Post } from './Post' -export { default as Potion } from './Potion' -export { default as Pound } from './Pound' -export { default as PrecisionTool } from './PrecisionTool' -export { default as Presentation } from './Presentation' -export { default as PrinterAlt } from './PrinterAlt' -export { default as Printer } from './Printer' -export { default as PrintingPage } from './PrintingPage' -export { default as PriorityDown } from './PriorityDown' -export { default as PriorityUp } from './PriorityUp' -export { default as PrivacyPolicy } from './PrivacyPolicy' -export { default as PrivateWifi } from './PrivateWifi' -export { default as ProfileCircle } from './ProfileCircle' -export { default as Prohibition } from './Prohibition' -export { default as ProjectCurve3D } from './ProjectCurve3D' -export { default as Puzzle } from './Puzzle' -export { default as QrCode } from './QrCode' -export { default as QuestionMark } from './QuestionMark' -export { default as QuoteMessage } from './QuoteMessage' -export { default as Quote } from './Quote' -export { default as Radiation } from './Radiation' -export { default as Radius } from './Radius' -export { default as Rain } from './Rain' -export { default as RawFormat } from './RawFormat' -export { default as ReceiveDollars } from './ReceiveDollars' -export { default as ReceiveEuros } from './ReceiveEuros' -export { default as ReceivePounds } from './ReceivePounds' -export { default as ReceiveYens } from './ReceiveYens' -export { default as RedoAction } from './RedoAction' -export { default as RedoCircle } from './RedoCircle' -export { default as Redo } from './Redo' -export { default as ReduceRoundArrow } from './ReduceRoundArrow' -export { default as Reduce } from './Reduce' -export { default as RefreshCircular } from './RefreshCircular' -export { default as RefreshDouble } from './RefreshDouble' -export { default as Refresh } from './Refresh' -export { default as ReloadWindow } from './ReloadWindow' -export { default as ReminderHandGesture } from './ReminderHandGesture' -export { default as RemoveDatabaseScript } from './RemoveDatabaseScript' -export { default as RemoveFolder } from './RemoveFolder' -export { default as RemoveFrame } from './RemoveFrame' -export { default as RemoveFromCart } from './RemoveFromCart' -export { default as RemoveKeyframeAlt } from './RemoveKeyframeAlt' -export { default as RemoveKeyframe } from './RemoveKeyframe' -export { default as RemoveKeyframes } from './RemoveKeyframes' -export { default as RemoveLink } from './RemoveLink' -export { default as RemoveMediaImage } from './RemoveMediaImage' -export { default as RemoveMediaVideo } from './RemoveMediaVideo' -export { default as RemovePageAlt } from './RemovePageAlt' -export { default as RemovePage } from './RemovePage' -export { default as RemovePinAlt } from './RemovePinAlt' -export { default as RemovePin } from './RemovePin' -export { default as RemoveSelection } from './RemoveSelection' -export { default as RemoveSquare } from './RemoveSquare' -export { default as RemoveUser } from './RemoveUser' -export { default as RepeatOnce } from './RepeatOnce' -export { default as Repeat } from './Repeat' -export { default as ReplyToMessage } from './ReplyToMessage' -export { default as Reply } from './Reply' -export { default as ReportColumns } from './ReportColumns' -export { default as Reports } from './Reports' -export { default as Repository } from './Repository' -export { default as Restart } from './Restart' -export { default as Rewind } from './Rewind' -export { default as Rhombus } from './Rhombus' -export { default as RightRoundArrow } from './RightRoundArrow' -export { default as Rings } from './Rings' -export { default as Rocket } from './Rocket' -export { default as Rook } from './Rook' -export { default as RotateCameraLeft } from './RotateCameraLeft' -export { default as RotateCameraRight } from './RotateCameraRight' -export { default as RoundFlask } from './RoundFlask' -export { default as RoundedMirror } from './RoundedMirror' -export { default as RssFeedTag } from './RssFeedTag' -export { default as RssFeed } from './RssFeed' -export { default as RubikCube } from './RubikCube' -export { default as RulerAdd } from './RulerAdd' -export { default as RulerCombine } from './RulerCombine' -export { default as RulerRemove } from './RulerRemove' -export { default as Ruler } from './Ruler' -export { default as Running } from './Running' -export { default as Safari } from './Safari' -export { default as SafeArrowLeft } from './SafeArrowLeft' -export { default as SafeArrowRight } from './SafeArrowRight' -export { default as SafeOpen } from './SafeOpen' -export { default as Safe } from './Safe' -export { default as Sandals } from './Sandals' -export { default as SaveActionFloppy } from './SaveActionFloppy' -export { default as SaveFloppyDisk } from './SaveFloppyDisk' -export { default as ScaleFrameEnlarge } from './ScaleFrameEnlarge' -export { default as ScaleFrameReduce } from './ScaleFrameReduce' -export { default as ScanBarcode } from './ScanBarcode' -export { default as ScanQrCode } from './ScanQrCode' -export { default as Scanning } from './Scanning' -export { default as Scarf } from './Scarf' -export { default as ScissorAlt } from './ScissorAlt' -export { default as Scissor } from './Scissor' -export { default as Screenshot } from './Screenshot' -export { default as SeaAndSun } from './SeaAndSun' -export { default as SeaWaves } from './SeaWaves' -export { default as SearchEngine } from './SearchEngine' -export { default as SearchFont } from './SearchFont' -export { default as SearchWindow } from './SearchWindow' -export { default as Search } from './Search' -export { default as SecureWindow } from './SecureWindow' -export { default as SecurityPass } from './SecurityPass' -export { default as SelectWindow } from './SelectWindow' -export { default as Selection } from './Selection' -export { default as SelectiveTool } from './SelectiveTool' -export { default as SendDiagonal } from './SendDiagonal' -export { default as SendDollars } from './SendDollars' -export { default as SendEuros } from './SendEuros' -export { default as SendMail } from './SendMail' -export { default as SendPounds } from './SendPounds' -export { default as SendYens } from './SendYens' -export { default as Send } from './Send' -export { default as ServerConnection } from './ServerConnection' -export { default as Server } from './Server' -export { default as SettingsCloud } from './SettingsCloud' -export { default as SettingsProfiles } from './SettingsProfiles' -export { default as Settings } from './Settings' -export { default as ShareAndroid } from './ShareAndroid' -export { default as ShareIos } from './ShareIos' -export { default as ShieldAdd } from './ShieldAdd' -export { default as ShieldAlert } from './ShieldAlert' -export { default as ShieldAlt } from './ShieldAlt' -export { default as ShieldBroken } from './ShieldBroken' -export { default as ShieldCheck } from './ShieldCheck' -export { default as ShieldCross } from './ShieldCross' -export { default as ShieldDownload } from './ShieldDownload' -export { default as ShieldEye } from './ShieldEye' -export { default as ShieldLoading } from './ShieldLoading' -export { default as ShieldMinus } from './ShieldMinus' -export { default as ShieldQuestion } from './ShieldQuestion' -export { default as ShieldSearch } from './ShieldSearch' -export { default as ShieldUpload } from './ShieldUpload' -export { default as Shield } from './Shield' -export { default as ShopAlt } from './ShopAlt' -export { default as Shop } from './Shop' -export { default as ShoppingBagAdd } from './ShoppingBagAdd' -export { default as ShoppingBagAlt } from './ShoppingBagAlt' -export { default as ShoppingBagArrowDown } from './ShoppingBagArrowDown' -export { default as ShoppingBagArrowUp } from './ShoppingBagArrowUp' -export { default as ShoppingBagCheck } from './ShoppingBagCheck' -export { default as ShoppingBagIssue } from './ShoppingBagIssue' -export { default as ShoppingBagRemove } from './ShoppingBagRemove' -export { default as ShoppingBag } from './ShoppingBag' -export { default as ShoppingCodeCheck } from './ShoppingCodeCheck' -export { default as ShoppingCodeError } from './ShoppingCodeError' -export { default as ShoppingCode } from './ShoppingCode' -export { default as ShortPantsAlt } from './ShortPantsAlt' -export { default as ShortPants } from './ShortPants' -export { default as Shortcut } from './Shortcut' -export { default as Shuffle } from './Shuffle' -export { default as SidebarCollapse } from './SidebarCollapse' -export { default as SidebarExpand } from './SidebarExpand' -export { default as SigmaFunction } from './SigmaFunction' -export { default as SimpleCart } from './SimpleCart' -export { default as SineWave } from './SineWave' -export { default as SingleTapGesture } from './SingleTapGesture' -export { default as Skateboard } from './Skateboard' -export { default as Skateboarding } from './Skateboarding' -export { default as SkipNext } from './SkipNext' -export { default as SkipPrev } from './SkipPrev' -export { default as Slash } from './Slash' -export { default as SleeperChair } from './SleeperChair' -export { default as SmallLampAlt } from './SmallLampAlt' -export { default as SmallLamp } from './SmallLamp' -export { default as SmallShopAlt } from './SmallShopAlt' -export { default as SmallShop } from './SmallShop' -export { default as SmartphoneDevice } from './SmartphoneDevice' -export { default as Smoking } from './Smoking' -export { default as Snapchat } from './Snapchat' -export { default as SnowFlake } from './SnowFlake' -export { default as Snow } from './Snow' -export { default as Soap } from './Soap' -export { default as SoccerBall } from './SoccerBall' -export { default as Sofa } from './Sofa' -export { default as SoilAlt } from './SoilAlt' -export { default as Soil } from './Soil' -export { default as SortDown } from './SortDown' -export { default as SortUp } from './SortUp' -export { default as Sort } from './Sort' -export { default as SoundHigh } from './SoundHigh' -export { default as SoundLow } from './SoundLow' -export { default as SoundMin } from './SoundMin' -export { default as SoundOff } from './SoundOff' -export { default as Spades } from './Spades' -export { default as Spark } from './Spark' -export { default as Sparks } from './Sparks' -export { default as Sphere } from './Sphere' -export { default as Spiral } from './Spiral' -export { default as SpockHandGesture } from './SpockHandGesture' -export { default as Spotify } from './Spotify' -export { default as SquareCursor } from './SquareCursor' -export { default as SquareWave } from './SquareWave' -export { default as Square } from './Square' -export { default as Stackoverflow } from './Stackoverflow' -export { default as StarDashed } from './StarDashed' -export { default as StarHalfDashed } from './StarHalfDashed' -export { default as Star } from './Star' -export { default as StatDown } from './StatDown' -export { default as StatUp } from './StatUp' -export { default as StatsDownSquare } from './StatsDownSquare' -export { default as StatsReport } from './StatsReport' -export { default as StatsUpSquare } from './StatsUpSquare' -export { default as Strategy } from './Strategy' -export { default as Stretching } from './Stretching' -export { default as Strikethrough } from './Strikethrough' -export { default as Stroller } from './Stroller' -export { default as StyleBorder } from './StyleBorder' -export { default as SubmitDocument } from './SubmitDocument' -export { default as Substract } from './Substract' -export { default as Suggestion } from './Suggestion' -export { default as SunLight } from './SunLight' -export { default as SvgFormat } from './SvgFormat' -export { default as Sweep3D } from './Sweep3D' -export { default as Swimming } from './Swimming' -export { default as SwipeDownGesture } from './SwipeDownGesture' -export { default as SwipeLeftGesture } from './SwipeLeftGesture' -export { default as SwipeRightGesture } from './SwipeRightGesture' -export { default as SwipeTwoFingersDownGesture } from './SwipeTwoFingersDownGesture' -export { default as SwipeTwoFingersLeftGesture } from './SwipeTwoFingersLeftGesture' -export { default as SwipeTwoFingersRightGesture } from './SwipeTwoFingersRightGesture' -export { default as SwipeTwoFingersUpGesture } from './SwipeTwoFingersUpGesture' -export { default as SwipeUpGesture } from './SwipeUpGesture' -export { default as SwitchOff } from './SwitchOff' -export { default as SwitchOn } from './SwitchOn' -export { default as SystemRestart } from './SystemRestart' -export { default as SystemShut } from './SystemShut' -export { default as TShirt } from './TShirt' -export { default as Table2Columns } from './Table2Columns' -export { default as TableRows } from './TableRows' -export { default as Table } from './Table' -export { default as TaskList } from './TaskList' -export { default as TelegramCircle } from './TelegramCircle' -export { default as Telegram } from './Telegram' -export { default as TemperatureDown } from './TemperatureDown' -export { default as TemperatureHigh } from './TemperatureHigh' -export { default as TemperatureLow } from './TemperatureLow' -export { default as TemperatureUp } from './TemperatureUp' -export { default as TennisBallAlt } from './TennisBallAlt' -export { default as TennisBall } from './TennisBall' -export { default as TerminalTag } from './TerminalTag' -export { default as Terminal } from './Terminal' -export { default as TestTube } from './TestTube' -export { default as TextAlt } from './TextAlt' -export { default as TextBox } from './TextBox' -export { default as TextSize } from './TextSize' -export { default as Text } from './Text' -export { default as Threads } from './Threads' -export { default as ThreePointsCircle } from './ThreePointsCircle' -export { default as ThreeStars } from './ThreeStars' -export { default as ThumbsDown } from './ThumbsDown' -export { default as ThumbsUp } from './ThumbsUp' -export { default as Thunderstorm } from './Thunderstorm' -export { default as TifFormat } from './TifFormat' -export { default as TiffFormat } from './TiffFormat' -export { default as TikTok } from './TikTok' -export { default as TimeZone } from './TimeZone' -export { default as TimerOff } from './TimerOff' -export { default as Timer } from './Timer' -export { default as Tools } from './Tools' -export { default as Tournament } from './Tournament' -export { default as TowerCheck } from './TowerCheck' -export { default as TowerNoAccess } from './TowerNoAccess' -export { default as TowerWarning } from './TowerWarning' -export { default as Tower } from './Tower' -export { default as Trademark } from './Trademark' -export { default as Train } from './Train' -export { default as Tram } from './Tram' -export { default as TransitionDown } from './TransitionDown' -export { default as TransitionLeft } from './TransitionLeft' -export { default as TransitionRight } from './TransitionRight' -export { default as TransitionUp } from './TransitionUp' -export { default as Translate } from './Translate' -export { default as Trash } from './Trash' -export { default as Treadmill } from './Treadmill' -export { default as Tree } from './Tree' -export { default as Trekking } from './Trekking' -export { default as Trello } from './Trello' -export { default as TriangleFlagCircle } from './TriangleFlagCircle' -export { default as TriangleFlagTwoStripes } from './TriangleFlagTwoStripes' -export { default as TriangleFlag } from './TriangleFlag' -export { default as Triangle } from './Triangle' -export { default as Trophy } from './Trophy' -export { default as TruckLength } from './TruckLength' -export { default as Truck } from './Truck' -export { default as Tunnel } from './Tunnel' -export { default as TvFix } from './TvFix' -export { default as TvIssue } from './TvIssue' -export { default as Tv } from './Tv' -export { default as TwitterVerifiedBadge } from './TwitterVerifiedBadge' -export { default as Twitter } from './Twitter' -export { default as TwoPointsCircle } from './TwoPointsCircle' -export { default as TwoSeaterSofa } from './TwoSeaterSofa' -export { default as Type } from './Type' -export { default as UmbrellaFull } from './UmbrellaFull' -export { default as UnderlineSquare } from './UnderlineSquare' -export { default as Underline } from './Underline' -export { default as UndoAction } from './UndoAction' -export { default as UndoCircle } from './UndoCircle' -export { default as Undo } from './Undo' -export { default as UnionAlt } from './UnionAlt' -export { default as UnionHorizAlt } from './UnionHorizAlt' -export { default as Union } from './Union' -export { default as Unity5 } from './Unity5' -export { default as Unity } from './Unity' -export { default as Unjoin3D } from './Unjoin3D' -export { default as UpRoundArrow } from './UpRoundArrow' -export { default as UploadDataWindow } from './UploadDataWindow' -export { default as UploadSquare } from './UploadSquare' -export { default as Upload } from './Upload' -export { default as Usb } from './Usb' -export { default as UserBag } from './UserBag' -export { default as UserCart } from './UserCart' -export { default as UserCircle } from './UserCircle' -export { default as UserCrown } from './UserCrown' -export { default as UserLove } from './UserLove' -export { default as UserScan } from './UserScan' -export { default as UserSquare } from './UserSquare' -export { default as UserStar } from './UserStar' -export { default as User } from './User' -export { default as VeganCircle } from './VeganCircle' -export { default as VeganSquare } from './VeganSquare' -export { default as Vegan } from './Vegan' -export { default as VerifiedBadge } from './VerifiedBadge' -export { default as VerifiedUser } from './VerifiedUser' -export { default as VerticalMerge } from './VerticalMerge' -export { default as VerticalSplit } from './VerticalSplit' -export { default as Vials } from './Vials' -export { default as VideoCameraOff } from './VideoCameraOff' -export { default as VideoCamera } from './VideoCamera' -export { default as VideoProjector } from './VideoProjector' -export { default as ViewColumns2 } from './ViewColumns2' -export { default as ViewColumns3 } from './ViewColumns3' -export { default as ViewGrid } from './ViewGrid' -export { default as ViewStructureDown } from './ViewStructureDown' -export { default as ViewStructureUp } from './ViewStructureUp' -export { default as View360 } from './View360' -export { default as VoiceCircle } from './VoiceCircle' -export { default as VoiceError } from './VoiceError' -export { default as VoiceLockCircle } from './VoiceLockCircle' -export { default as VoiceOk } from './VoiceOk' -export { default as VoicePhone } from './VoicePhone' -export { default as VoiceScan } from './VoiceScan' -export { default as VoiceSquare } from './VoiceSquare' -export { default as Voice } from './Voice' -export { default as VrSymbol } from './VrSymbol' -export { default as VueJs } from './VueJs' -export { default as Waist } from './Waist' -export { default as Walking } from './Walking' -export { default as Wallet } from './Wallet' -export { default as WarningCircle } from './WarningCircle' -export { default as WarningHexagon } from './WarningHexagon' -export { default as WarningSquare } from './WarningSquare' -export { default as WarningTriangle } from './WarningTriangle' -export { default as WarningWindow } from './WarningWindow' -export { default as Wash } from './Wash' -export { default as WashingMachine } from './WashingMachine' -export { default as WateringSoil } from './WateringSoil' -export { default as WebWindowClose } from './WebWindowClose' -export { default as WebWindowEnergyConsumption } from './WebWindowEnergyConsumption' -export { default as WebWindow } from './WebWindow' -export { default as WebpFormat } from './WebpFormat' -export { default as WeightAlt } from './WeightAlt' -export { default as Weight } from './Weight' -export { default as WhiteFlag } from './WhiteFlag' -export { default as WifiError } from './WifiError' -export { default as WifiIssue } from './WifiIssue' -export { default as WifiOff } from './WifiOff' -export { default as WifiSignalNone } from './WifiSignalNone' -export { default as WifiTag } from './WifiTag' -export { default as Wifi } from './Wifi' -export { default as Wind } from './Wind' -export { default as Windows } from './Windows' -export { default as Wolf } from './Wolf' -export { default as WomenTShirt } from './WomenTShirt' -export { default as WrapText } from './WrapText' -export { default as Wrench } from './Wrench' -export { default as Wristwatch } from './Wristwatch' -export { default as Www } from './Www' -export { default as XCoordinate } from './XCoordinate' -export { default as XboxA } from './XboxA' -export { default as XboxB } from './XboxB' -export { default as XboxX } from './XboxX' -export { default as XboxY } from './XboxY' -export { default as XrayView } from './XrayView' -export { default as YCoordinate } from './YCoordinate' -export { default as Yelp } from './Yelp' -export { default as YenSquare } from './YenSquare' -export { default as Yen } from './Yen' -export { default as Yoga } from './Yoga' -export { default as YouTube } from './YouTube' -export { default as ZCoordinate } from './ZCoordinate' -export { default as ZoomIn } from './ZoomIn' -export { default as ZoomOut } from './ZoomOut' -export { IconoirProvider, IconoirContext, IconoirContextValue } from './IconoirContext' \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b31b647d..d779ff0e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,9 +4,6 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false -overrides: - '@types/react': ^17.0.29 - importers: .: @@ -15,8 +12,8 @@ importers: specifier: ^1.0.2 version: 1.0.2 '@svgr/cli': - specifier: ^5.5.0 - version: 5.5.0 + specifier: ^8.1.0 + version: 8.1.0 '@types/svg-parser': specifier: ^2.0.3 version: 2.0.3 @@ -96,8 +93,8 @@ importers: specifier: ^18.11.18 version: 18.11.18 '@types/react': - specifier: ^17.0.29 - version: 17.0.53 + specifier: ^17.0.52 + version: 17.0.65 '@types/react-dom': specifier: ^18.0.10 version: 18.0.10 @@ -133,7 +130,7 @@ importers: version: 2.29.4 next: specifier: ^13.1.1 - version: 13.1.2(@babel/core@7.20.12)(react-dom@18.2.0)(react@18.2.0) + version: 13.1.2(@babel/core@7.22.20)(react-dom@18.2.0)(react@18.2.0) next-mdx-remote: specifier: ^4.2.1 version: 4.2.1(react-dom@18.2.0)(react@18.2.0) @@ -168,8 +165,8 @@ importers: packages/iconoir-react: devDependencies: '@types/react': - specifier: ^17.0.29 - version: 17.0.65 + specifier: ^18.2.22 + version: 18.2.22 react: specifier: ^18.2.0 version: 18.2.0 @@ -181,20 +178,20 @@ importers: dependencies: react-native: specifier: '>=0.50.0' - version: 0.72.4(@babel/core@7.22.20)(@babel/preset-env@7.22.20)(react@17.0.2) + version: 0.72.4(@babel/core@7.22.20)(@babel/preset-env@7.22.20)(react@18.2.0) devDependencies: '@types/react': - specifier: ^17.0.29 - version: 17.0.47 + specifier: ^18.2.22 + version: 18.2.22 '@types/react-native': - specifier: ^0.50.0 - version: 0.50.8 + specifier: ^0.72.2 + version: 0.72.2(react-native@0.72.4) react: - specifier: ^17.0.2 - version: 17.0.2 + specifier: ^18.2.0 + version: 18.2.0 react-native-svg: - specifier: ^12.1.1 - version: 12.4.0(react-native@0.72.4)(react@17.0.2) + specifier: ^13.14.0 + version: 13.14.0(react-native@0.72.4)(react@18.2.0) typescript: specifier: ^5.2.2 version: 5.2.2 @@ -293,10 +290,10 @@ packages: '@babel/helpers': 7.20.7 '@babel/parser': 7.20.7 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.12 + '@babel/traverse': 7.20.12(supports-color@5.5.0) '@babel/types': 7.20.7 convert-source-map: 1.9.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -318,7 +315,7 @@ packages: '@babel/traverse': 7.22.20 '@babel/types': 7.22.19 convert-source-map: 1.9.0 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -461,7 +458,7 @@ packages: '@babel/core': 7.20.12 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) lodash.debounce: 4.0.8 resolve: 1.22.1 transitivePeerDependencies: @@ -475,7 +472,7 @@ packages: '@babel/core': 7.22.20 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) lodash.debounce: 4.0.8 resolve: 1.22.1 transitivePeerDependencies: @@ -543,7 +540,7 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.12 + '@babel/traverse': 7.20.12(supports-color@5.5.0) '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -695,7 +692,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.20.7 - '@babel/traverse': 7.20.12 + '@babel/traverse': 7.20.12(supports-color@5.5.0) '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -2264,23 +2261,6 @@ packages: '@babel/parser': 7.22.16 '@babel/types': 7.22.19 - /@babel/traverse@7.20.12: - resolution: {integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.7 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.7 - '@babel/types': 7.20.7 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/traverse@7.20.12(supports-color@5.5.0): resolution: {integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==} engines: {node: '>=6.9.0'} @@ -2297,7 +2277,6 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: true /@babel/traverse@7.22.20: resolution: {integrity: sha512-eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw==} @@ -2311,7 +2290,7 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.22.16 '@babel/types': 7.22.19 - debug: 4.3.4 + debug: 4.3.4(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -2864,7 +2843,7 @@ packages: react: '>=16' dependencies: '@types/mdx': 2.0.3 - '@types/react': 17.0.53 + '@types/react': 17.0.65 react: 18.2.0 dev: true @@ -3521,7 +3500,7 @@ packages: dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react-native: 0.72.4(@babel/core@7.22.20)(@babel/preset-env@7.22.20)(react@17.0.2) + react-native: 0.72.4(@babel/core@7.22.20)(@babel/preset-env@7.22.20)(react@18.2.0) /@react-stately/radio@3.6.2(react@18.2.0): resolution: {integrity: sha512-qjbebR0YSkdEocLsPSzNnCsUYllWY938/5Z8mETxk4+74PJLxC3z0qjqVRq+aDO8hOgIfqSgrRRp3cJz9vIsBg==} @@ -3668,123 +3647,175 @@ packages: dependencies: '@sinonjs/commons': 3.0.0 - /@svgr/babel-plugin-add-jsx-attribute@5.4.0: - resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} - engines: {node: '>=10'} - dev: true - - /@svgr/babel-plugin-remove-jsx-attribute@5.4.0: - resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} - engines: {node: '>=10'} - dev: true - - /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1: - resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} - engines: {node: '>=10'} - dev: true - - /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1: - resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} - engines: {node: '>=10'} - dev: true - - /@svgr/babel-plugin-svg-dynamic-title@5.4.0: - resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} - engines: {node: '>=10'} - dev: true - - /@svgr/babel-plugin-svg-em-dimensions@5.4.0: - resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} - engines: {node: '>=10'} - dev: true - - /@svgr/babel-plugin-transform-react-native-svg@5.4.0: - resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} - engines: {node: '>=10'} - dev: true - - /@svgr/babel-plugin-transform-svg-component@5.5.0: - resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} - engines: {node: '>=10'} - dev: true - - /@svgr/babel-preset@5.5.0: - resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} - engines: {node: '>=10'} + /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.22.20): + resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 dependencies: - '@svgr/babel-plugin-add-jsx-attribute': 5.4.0 - '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0 - '@svgr/babel-plugin-remove-jsx-empty-expression': 5.0.1 - '@svgr/babel-plugin-replace-jsx-attribute-value': 5.0.1 - '@svgr/babel-plugin-svg-dynamic-title': 5.4.0 - '@svgr/babel-plugin-svg-em-dimensions': 5.4.0 - '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 - '@svgr/babel-plugin-transform-svg-component': 5.5.0 + '@babel/core': 7.22.20 dev: true - /@svgr/cli@5.5.0: - resolution: {integrity: sha512-KwEWi8olD7MpHR9pD5CrgsH7W8kQpzhSM0Ar3gGQyXqXdIuRYX5RgkWGm8Zi5ALZV9UhbPE+ObLhuSwEJxOzgA==} - engines: {node: '>=10'} + /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.22.20): + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.20 + dev: true + + /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.22.20): + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.20 + dev: true + + /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.22.20): + resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.20 + dev: true + + /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.22.20): + resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.20 + dev: true + + /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.22.20): + resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.20 + dev: true + + /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.22.20): + resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.20 + dev: true + + /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.22.20): + resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.20 + dev: true + + /@svgr/babel-preset@8.1.0(@babel/core@7.22.20): + resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.20 + '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.22.20) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.22.20) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.22.20) + '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.22.20) + '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.22.20) + '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.22.20) + '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.22.20) + '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.22.20) + dev: true + + /@svgr/cli@8.1.0: + resolution: {integrity: sha512-SnlaLspB610XFXvs3PmhzViHErsXp0yIy4ERyZlHDlO1ro2iYtHMWYk2mztdLD/lBjiA4ZXe4RePON3qU/Tc4A==} + engines: {node: '>=14'} hasBin: true dependencies: - '@svgr/core': 5.5.0 - '@svgr/plugin-jsx': 5.5.0 - '@svgr/plugin-prettier': 5.5.0 - '@svgr/plugin-svgo': 5.5.0 + '@svgr/core': 8.1.0 + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0) + '@svgr/plugin-prettier': 8.1.0(@svgr/core@8.1.0) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0) camelcase: 6.3.0 chalk: 4.1.2 - commander: 6.2.1 + commander: 9.5.0 dashify: 2.0.0 - glob: 7.2.3 + glob: 8.1.0 + snake-case: 3.0.4 transitivePeerDependencies: - supports-color + - typescript dev: true - /@svgr/core@5.5.0: - resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} - engines: {node: '>=10'} + /@svgr/core@8.1.0: + resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} + engines: {node: '>=14'} dependencies: - '@svgr/plugin-jsx': 5.5.0 + '@babel/core': 7.22.20 + '@svgr/babel-preset': 8.1.0(@babel/core@7.22.20) camelcase: 6.3.0 - cosmiconfig: 7.1.0 + cosmiconfig: 8.3.6 + snake-case: 3.0.4 transitivePeerDependencies: - supports-color + - typescript dev: true - /@svgr/hast-util-to-babel-ast@5.5.0: - resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} - engines: {node: '>=10'} + /@svgr/hast-util-to-babel-ast@8.0.0: + resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} + engines: {node: '>=14'} dependencies: - '@babel/types': 7.20.7 + '@babel/types': 7.22.19 + entities: 4.5.0 dev: true - /@svgr/plugin-jsx@5.5.0: - resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} - engines: {node: '>=10'} + /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0): + resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' dependencies: - '@babel/core': 7.20.12 - '@svgr/babel-preset': 5.5.0 - '@svgr/hast-util-to-babel-ast': 5.5.0 + '@babel/core': 7.22.20 + '@svgr/babel-preset': 8.1.0(@babel/core@7.22.20) + '@svgr/core': 8.1.0 + '@svgr/hast-util-to-babel-ast': 8.0.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color dev: true - /@svgr/plugin-prettier@5.5.0: - resolution: {integrity: sha512-mVc+u+eKUmy8sW5UnFpes9NqVtizJfnhasF8Srbi3XdxVTWyU5lmhWlQAgHLhcrsZKowQ0b7xBa4qWHI5Ew/VQ==} - engines: {node: '>=10'} + /@svgr/plugin-prettier@8.1.0(@svgr/core@8.1.0): + resolution: {integrity: sha512-o4/uFI8G64tAjBZ4E7gJfH+VP7Qi3T0+M4WnIsP91iFnGPqs5WvPDkpZALXPiyWEtzfYs1Rmwy1Zdfu8qoZuKw==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' dependencies: - deepmerge: 4.2.2 - prettier: 2.8.2 + '@svgr/core': 8.1.0 + deepmerge: 4.3.1 + prettier: 2.8.8 dev: true - /@svgr/plugin-svgo@5.5.0: - resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} - engines: {node: '>=10'} + /@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0): + resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} + engines: {node: '>=14'} + peerDependencies: + '@svgr/core': '*' dependencies: - cosmiconfig: 7.1.0 - deepmerge: 4.2.2 - svgo: 1.3.2 + '@svgr/core': 8.1.0 + cosmiconfig: 8.3.6 + deepmerge: 4.3.1 + svgo: 3.0.2 + transitivePeerDependencies: + - typescript dev: true /@swc/helpers@0.4.14: @@ -3798,6 +3829,11 @@ packages: engines: {node: '>= 6'} dev: true + /@trysound/sax@0.2.0: + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + dev: true + /@types/acorn@4.0.6: resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} dependencies: @@ -3847,7 +3883,7 @@ packages: /@types/hoist-non-react-statics@3.3.1: resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} dependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.65 hoist-non-react-statics: 3.3.2 dev: true @@ -3903,58 +3939,29 @@ packages: /@types/node@18.11.18: resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} - /@types/parse-json@4.0.0: - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} - dev: true - - /@types/prop-types@15.7.4: - resolution: {integrity: sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==} - dev: true - - /@types/prop-types@15.7.5: - resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} - dev: true - /@types/prop-types@15.7.7: resolution: {integrity: sha512-FbtmBWCcSa2J4zL781Zf1p5YUBXQomPEcep9QZCfRfQgTxz3pJWiDFLebohZ9fFntX5ibzOkSsrJ0TEew8cAog==} dev: true - /@types/q@1.5.5: - resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==} - dev: true - /@types/react-dom@18.0.10: resolution: {integrity: sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==} dependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.65 dev: true - /@types/react-native@0.50.8: - resolution: {integrity: sha512-lbNKwRiMDbt71EwBmaZKyIbAYChFCJL6ZpoKNaCsDLS3gg2rTHDUM0pZjZdbKcG3CqfCEyqGbhlgE/2pLCEUaQ==} + /@types/react-native@0.72.2(react-native@0.72.4): + resolution: {integrity: sha512-/eEjr04Zqo7mTMszuSdrLx90+j5nWhDMMOgtnKZfAYyV3RwmlpSb7F17ilmMMxZWJY81n/JZ4e6wdhMJFpjrCg==} dependencies: - '@types/react': 17.0.47 + '@react-native/virtualized-lists': 0.72.8(react-native@0.72.4) + '@types/react': 18.2.22 + transitivePeerDependencies: + - react-native dev: true /@types/react-window@1.8.5: resolution: {integrity: sha512-V9q3CvhC9Jk9bWBOysPGaWy/Z0lxYcTXLtLipkt2cnRj1JOSFNF7wqGpkScSXMgBwC+fnVRg/7shwgddBG5ICw==} dependencies: - '@types/react': 17.0.53 - dev: true - - /@types/react@17.0.47: - resolution: {integrity: sha512-mk0BL8zBinf2ozNr3qPnlu1oyVTYq+4V7WA76RgxUAtf0Em/Wbid38KN6n4abEkvO4xMTBWmnP1FtQzgkEiJoA==} - dependencies: - '@types/prop-types': 15.7.4 - '@types/scheduler': 0.16.2 - csstype: 3.0.10 - dev: true - - /@types/react@17.0.53: - resolution: {integrity: sha512-1yIpQR2zdYu1Z/dc1OxC+MA6GR240u3gcnP4l6mvj/PJiVaqHsQPmWttsvHsfnhfPbU2FuGmo0wSITPygjBmsw==} - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.2 - csstype: 3.1.1 + '@types/react': 17.0.65 dev: true /@types/react@17.0.65: @@ -3965,8 +3972,12 @@ packages: csstype: 3.1.2 dev: true - /@types/scheduler@0.16.2: - resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} + /@types/react@18.2.22: + resolution: {integrity: sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==} + dependencies: + '@types/prop-types': 15.7.7 + '@types/scheduler': 0.16.3 + csstype: 3.1.2 dev: true /@types/scheduler@0.16.3: @@ -3980,7 +3991,7 @@ packages: resolution: {integrity: sha512-KuKJ9Z6xb93uJiIyxo/+ksS7yLjS1KzG6iv5i78dhVg/X3u5t1H7juRWqVmodIdz6wGVaIApo1u01kmFRdJHVw==} dependencies: '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 17.0.53 + '@types/react': 17.0.65 csstype: 3.1.1 dev: true @@ -4434,17 +4445,6 @@ packages: es-shim-unscopables: 1.0.0 dev: true - /array.prototype.reduce@1.0.5: - resolution: {integrity: sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.21.0 - es-array-method-boxes-properly: 1.0.0 - is-string: 1.0.7 - dev: true - /array.prototype.tosorted@1.1.1: resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} dependencies: @@ -4952,15 +4952,6 @@ packages: engines: {node: '>=6'} dev: true - /coa@2.0.2: - resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} - engines: {node: '>= 4.0'} - dependencies: - '@types/q': 1.5.5 - chalk: 2.4.2 - q: 1.5.1 - dev: true - /color-convert@1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: @@ -5015,9 +5006,9 @@ packages: /commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - /commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} + /commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} dev: true /commander@9.5.0: @@ -5087,15 +5078,19 @@ packages: js-yaml: 3.14.1 parse-json: 4.0.0 - /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} + /cosmiconfig@8.3.6: + resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true dependencies: - '@types/parse-json': 4.0.0 import-fresh: 3.3.0 + js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 - yaml: 1.10.2 dev: true /cross-spawn@7.0.3: @@ -5111,26 +5106,13 @@ packages: engines: {node: '>=4'} dev: true - /css-select-base-adapter@0.1.1: - resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} - dev: true - - /css-select@2.1.0: - resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} - dependencies: - boolbase: 1.0.0 - css-what: 3.4.2 - domutils: 1.7.0 - nth-check: 1.0.2 - dev: true - /css-select@5.1.0: resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} dependencies: boolbase: 1.0.0 css-what: 6.1.0 domhandler: 5.0.3 - domutils: 3.0.1 + domutils: 3.1.0 nth-check: 2.1.1 dev: true @@ -5146,14 +5128,6 @@ packages: postcss-value-parser: 4.2.0 dev: true - /css-tree@1.0.0-alpha.37: - resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} - engines: {node: '>=8.0.0'} - dependencies: - mdn-data: 2.0.4 - source-map: 0.6.1 - dev: true - /css-tree@1.1.3: resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} engines: {node: '>=8.0.0'} @@ -5162,9 +5136,20 @@ packages: source-map: 0.6.1 dev: true - /css-what@3.4.2: - resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} - engines: {node: '>= 6'} + /css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + dependencies: + mdn-data: 2.0.28 + source-map-js: 1.0.2 + dev: true + + /css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.0.2 dev: true /css-what@6.1.0: @@ -5172,11 +5157,11 @@ packages: engines: {node: '>= 6'} dev: true - /csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} + /csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} dependencies: - css-tree: 1.1.3 + css-tree: 2.2.1 dev: true /cssom@0.3.8: @@ -5194,10 +5179,6 @@ packages: cssom: 0.3.8 dev: true - /csstype@3.0.10: - resolution: {integrity: sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==} - dev: true - /csstype@3.1.1: resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} dev: true @@ -5261,17 +5242,6 @@ packages: ms: 2.1.3 dev: true - /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - /debug@4.3.4(supports-color@5.5.0): resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} @@ -5283,7 +5253,6 @@ packages: dependencies: ms: 2.1.2 supports-color: 5.5.0 - dev: true /decamelize@1.2.0: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} @@ -5325,11 +5294,6 @@ packages: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true - /deepmerge@4.2.2: - resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} - engines: {node: '>=0.10.0'} - dev: true - /deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} @@ -5416,13 +5380,6 @@ packages: esutils: 2.0.3 dev: true - /dom-serializer@0.2.2: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} - dependencies: - domelementtype: 2.3.0 - entities: 2.2.0 - dev: true - /dom-serializer@2.0.0: resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} dependencies: @@ -5431,10 +5388,6 @@ packages: entities: 4.3.1 dev: true - /domelementtype@1.3.1: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} - dev: true - /domelementtype@2.3.0: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} dev: true @@ -5453,21 +5406,21 @@ packages: domelementtype: 2.3.0 dev: true - /domutils@1.7.0: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} - dependencies: - dom-serializer: 0.2.2 - domelementtype: 1.3.1 - dev: true - - /domutils@3.0.1: - resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==} + /domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 domhandler: 5.0.3 dev: true + /dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + dependencies: + no-case: 3.0.4 + tslib: 2.6.2 + dev: true + /ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} @@ -5503,10 +5456,6 @@ packages: ansi-colors: 4.1.3 dev: true - /entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} - dev: true - /entities@4.3.1: resolution: {integrity: sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==} engines: {node: '>=0.12'} @@ -5546,44 +5495,6 @@ packages: accepts: 1.3.8 escape-html: 1.0.3 - /es-abstract@1.21.0: - resolution: {integrity: sha512-GUGtW7eXQay0c+PRq0sGIKSdaBorfVqsCMhGHo4elP7YVqZu9nCZS4UkK4gv71gOWNMra/PaSKD3ao1oWExO0g==} - engines: {node: '>= 0.4'} - dependencies: - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 - es-to-primitive: 1.2.1 - function-bind: 1.1.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.1.3 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 - gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 - has-proto: 1.0.1 - has-symbols: 1.0.3 - internal-slot: 1.0.4 - is-array-buffer: 3.0.1 - is-callable: 1.2.7 - is-negative-zero: 2.0.2 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 - is-string: 1.0.7 - is-typed-array: 1.1.10 - is-weakref: 1.0.2 - object-inspect: 1.12.2 - object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.4.3 - safe-regex-test: 1.0.0 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 - typed-array-length: 1.0.4 - unbox-primitive: 1.0.2 - which-typed-array: 1.1.9 - dev: true - /es-abstract@1.21.1: resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==} engines: {node: '>= 0.4'} @@ -5623,10 +5534,6 @@ packages: which-typed-array: 1.1.9 dev: true - /es-array-method-boxes-properly@1.0.0: - resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} - dev: true - /es-get-iterator@1.1.3: resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} dependencies: @@ -6477,6 +6384,17 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 + /glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.6 + once: 1.4.0 + dev: true + /globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} @@ -7521,6 +7439,12 @@ packages: dependencies: js-tokens: 4.0.0 + /lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + dependencies: + tslib: 2.6.2 + dev: true + /lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: @@ -7769,8 +7693,12 @@ packages: resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} dev: true - /mdn-data@2.0.4: - resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} + /mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + dev: true + + /mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} dev: true /memoize-one@5.2.1: @@ -8010,7 +7938,7 @@ packages: resolution: {integrity: sha512-Prhx7PeRV1LuogT0Kn5VjCuFu9fVD68eefntdWabrksmNY6mXK8pRqzvNJOhTojh6nek+RxBzZeD6MIOOyXS6w==} engines: {node: '>=16'} dependencies: - '@babel/traverse': 7.20.12 + '@babel/traverse': 7.20.12(supports-color@5.5.0) '@babel/types': 7.21.4 invariant: 2.2.4 metro-symbolicate: 0.76.7 @@ -8025,7 +7953,7 @@ packages: resolution: {integrity: sha512-Hh0ncPsHPVf6wXQSqJqB3K9Zbudht4aUtNpNXYXSxH+pteWqGAXnjtPsRAnCsCWl38wL0jYF0rJDdMajUI3BDw==} engines: {node: '>=16'} dependencies: - '@babel/traverse': 7.20.12 + '@babel/traverse': 7.20.12(supports-color@5.5.0) '@babel/types': 7.21.4 invariant: 2.2.4 metro-symbolicate: 0.76.8 @@ -8071,7 +7999,7 @@ packages: '@babel/core': 7.20.12 '@babel/generator': 7.20.7 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.12 + '@babel/traverse': 7.20.12(supports-color@5.5.0) nullthrows: 1.1.1 transitivePeerDependencies: - supports-color @@ -8108,7 +8036,7 @@ packages: '@babel/generator': 7.20.7 '@babel/parser': 7.21.4 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.12 + '@babel/traverse': 7.20.12(supports-color@5.5.0) '@babel/types': 7.21.4 accepts: 1.3.8 async: 3.2.4 @@ -8557,6 +8485,13 @@ packages: dependencies: brace-expansion: 1.1.11 + /minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + dependencies: + brace-expansion: 2.0.1 + dev: true + /minimatch@9.0.3: resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} engines: {node: '>=16 || 14 >=14.17'} @@ -8634,7 +8569,7 @@ packages: - supports-color dev: true - /next@13.1.2(@babel/core@7.20.12)(react-dom@18.2.0)(react@18.2.0): + /next@13.1.2(@babel/core@7.22.20)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Rdnnb2YH///w78FEOR/IQ6TXga+qpth4OqFSem48ng1PYYKr6XBsIk1XVaRcIGM3o6iiHnun0nJvkJHDf+ICyQ==} engines: {node: '>=14.6.0'} hasBin: true @@ -8658,7 +8593,7 @@ packages: postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.20.12)(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.22.20)(react@18.2.0) optionalDependencies: '@next/swc-android-arm-eabi': 13.1.2 '@next/swc-android-arm64': 13.1.2 @@ -8678,6 +8613,13 @@ packages: - babel-plugin-macros dev: true + /no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + dependencies: + lower-case: 2.0.2 + tslib: 2.6.2 + dev: true + /nocache@3.0.4: resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} engines: {node: '>=12.0.0'} @@ -8732,12 +8674,6 @@ packages: path-key: 4.0.0 dev: true - /nth-check@1.0.2: - resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} - dependencies: - boolbase: 1.0.0 - dev: true - /nth-check@2.1.1: resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} dependencies: @@ -8763,10 +8699,6 @@ packages: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} - /object-inspect@1.12.2: - resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} - dev: true - /object-inspect@1.12.3: resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} dev: true @@ -8812,16 +8744,6 @@ packages: es-abstract: 1.21.1 dev: true - /object.getownpropertydescriptors@2.1.5: - resolution: {integrity: sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==} - engines: {node: '>= 0.8'} - dependencies: - array.prototype.reduce: 1.0.5 - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.21.0 - dev: true - /object.hasown@1.1.2: resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} dependencies: @@ -9009,7 +8931,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.22.13 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -9139,8 +9061,8 @@ packages: fast-diff: 1.2.0 dev: true - /prettier@2.8.2: - resolution: {integrity: sha512-BtRV9BcncDyI2tsuS19zzhzoxD8Dh8LiCx7j7tHzrkz8GFXAexeWFdi22mjE1d16dftH2qNaytVxqiRTGlMfpw==} + /prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} engines: {node: '>=10.13.0'} hasBin: true dev: true @@ -9218,11 +9140,6 @@ packages: engines: {node: '>=6'} dev: true - /q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - dev: true - /querystringify@2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} dev: true @@ -9268,19 +9185,19 @@ packages: /react-is@18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - /react-native-svg@12.4.0(react-native@0.72.4)(react@17.0.2): - resolution: {integrity: sha512-m2Hn5FMC7wF/BSwxrbZFVElOMAJZXLJl2bBMDXvs/fFy2v4oLBfcw8MwaBTlaIyk0p24WRC9lWv51kSA/Plj5w==} + /react-native-svg@13.14.0(react-native@0.72.4)(react@18.2.0): + resolution: {integrity: sha512-27ZnxUkHgWICimhuj6MuqBkISN53lVvgWJB7pIypjXysAyM+nqgQBPh4vXg+7MbqLBoYvR4PiBgKfwwGAqVxHg==} peerDependencies: react: '*' - react-native: '>=0.50.0' + react-native: '*' dependencies: css-select: 5.1.0 css-tree: 1.1.3 - react: 17.0.2 - react-native: 0.72.4(@babel/core@7.22.20)(@babel/preset-env@7.22.20)(react@17.0.2) + react: 18.2.0 + react-native: 0.72.4(@babel/core@7.22.20)(@babel/preset-env@7.22.20)(react@18.2.0) dev: true - /react-native@0.72.4(@babel/core@7.22.20)(@babel/preset-env@7.22.20)(react@17.0.2): + /react-native@0.72.4(@babel/core@7.22.20)(@babel/preset-env@7.22.20)(react@18.2.0): resolution: {integrity: sha512-+vrObi0wZR+NeqL09KihAAdVlQ9IdplwznJWtYrjnQ4UbCW6rkzZJebRsugwUneSOKNFaHFEo1uKU89HsgtYBg==} engines: {node: '>=16'} hasBin: true @@ -9313,14 +9230,14 @@ packages: nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 - react: 17.0.2 + react: 18.2.0 react-devtools-core: 4.28.0 react-refresh: 0.4.3 - react-shallow-renderer: 16.15.0(react@17.0.2) + react-shallow-renderer: 16.15.0(react@18.2.0) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 stacktrace-parser: 0.1.10 - use-sync-external-store: 1.2.0(react@17.0.2) + use-sync-external-store: 1.2.0(react@18.2.0) whatwg-fetch: 3.6.19 ws: 6.2.2 yargs: 17.7.2 @@ -9336,13 +9253,13 @@ packages: resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==} engines: {node: '>=0.10.0'} - /react-shallow-renderer@16.15.0(react@17.0.2): + /react-shallow-renderer@16.15.0(react@18.2.0): resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 dependencies: object-assign: 4.1.1 - react: 17.0.2 + react: 18.2.0 react-is: 18.2.0 /react-window@1.8.8(react-dom@18.2.0)(react@18.2.0): @@ -9358,19 +9275,11 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /react@17.0.2: - resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} - engines: {node: '>=0.10.0'} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - /react@18.2.0: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 - dev: true /readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} @@ -9664,10 +9573,6 @@ packages: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: true - /sax@1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} - dev: true - /saxes@5.0.1: resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} engines: {node: '>=10'} @@ -9824,6 +9729,13 @@ packages: is-fullwidth-code-point: 3.0.0 dev: true + /snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + dependencies: + dot-case: 3.0.4 + tslib: 2.6.2 + dev: true + /source-map-js@1.0.2: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} @@ -9854,11 +9766,6 @@ packages: /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - /stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' - dev: true - /stack-utils@2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} @@ -10024,7 +9931,7 @@ packages: supports-color: 5.5.0 dev: true - /styled-jsx@5.1.1(@babel/core@7.20.12)(react@18.2.0): + /styled-jsx@5.1.1(@babel/core@7.22.20)(react@18.2.0): resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -10037,7 +9944,7 @@ packages: babel-plugin-macros: optional: true dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.22.20 client-only: 0.0.1 react: 18.2.0 dev: true @@ -10071,25 +9978,17 @@ packages: resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} dev: true - /svgo@1.3.2: - resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} - engines: {node: '>=4.0.0'} - deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. + /svgo@3.0.2: + resolution: {integrity: sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==} + engines: {node: '>=14.0.0'} hasBin: true dependencies: - chalk: 2.4.2 - coa: 2.0.2 - css-select: 2.1.0 - css-select-base-adapter: 0.1.1 - css-tree: 1.0.0-alpha.37 - csso: 4.2.0 - js-yaml: 3.14.1 - mkdirp: 0.5.6 - object.values: 1.1.6 - sax: 1.2.4 - stable: 0.1.8 - unquote: 1.1.1 - util.promisify: 1.0.1 + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 5.1.0 + css-tree: 2.3.1 + csso: 5.0.5 + picocolors: 1.0.0 dev: true /symbol-tree@3.2.4: @@ -10463,10 +10362,6 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - /unquote@1.1.1: - resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} - dev: true - /update-browserslist-db@1.0.10(browserslist@4.21.4): resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} hasBin: true @@ -10511,25 +10406,16 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /use-sync-external-store@1.2.0(react@17.0.2): + /use-sync-external-store@1.2.0(react@18.2.0): resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - react: 17.0.2 + react: 18.2.0 /util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} - /util.promisify@1.0.1: - resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} - dependencies: - define-properties: 1.1.4 - es-abstract: 1.21.0 - has-symbols: 1.0.3 - object.getownpropertydescriptors: 2.1.5 - dev: true - /utils-merge@1.0.1: resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} @@ -10905,11 +10791,6 @@ packages: /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - /yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} - dev: true - /yaml@2.3.2: resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==} engines: {node: '>= 14'}