chore: update svgr and adapt iconoir-react-native (#355)

This commit is contained in:
Pascal Jufer 2023-09-24 21:13:56 +02:00 committed by GitHub
parent d5a40498ee
commit 0a098b96dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4131 changed files with 78262 additions and 76943 deletions

1
.npmrc
View file

@ -1 +0,0 @@
strict-peer-dependencies=false

View file

@ -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 },

View file

@ -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);

View file

@ -33,7 +33,7 @@ function publishPubPackage(name) {
fs.writeFileSync(
pubspecFilepath,
updateYamlKey('version', newVersion, pubspecContents)
updateYamlKey('version', newVersion, pubspecContents),
);
console.info('pubspec.yaml updated');

View file

@ -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;

View file

@ -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;

View file

@ -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');
}

View file

@ -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<SVGAttributes>;
export default providerKey;
`;

View file

@ -13,5 +13,5 @@ export const incompatibleNames = {
export const flutterIncompatibleNames = {
...incompatibleNames,
'color-filter': 'color-filter-icon'
'color-filter': 'color-filter-icon',
};

View file

@ -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"
}

View file

@ -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"
}
}
}

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DAddHole = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function Svg3DAddHole(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 16a4 4 0 100-8 4 4 0 000 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"
/>
<Path
d="M21 7.353v9.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524zM3.528 7.294L8.4 10m12.1-2.722L15.6 10M12 21v-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7.353v9.294a.6.6 0 0 1-.309.525l-8.4 4.666a.6.6 0 0 1-.582 0l-8.4-4.666A.6.6 0 0 1 3 16.647V7.353a.6.6 0 0 1 .309-.524l8.4-4.667a.6.6 0 0 1 .582 0l8.4 4.667a.6.6 0 0 1 .309.524ZM3.528 7.294 8.4 10m12.1-2.722L15.6 10M12 21v-5"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DAddHole);
};
const ForwardRef = forwardRef(Svg3DAddHole);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DArc = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,28 +13,28 @@ function Svg3DArc(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M22 16c0-5.523-4.477-10-10-10S2 10.477 2 16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M22 16c0-5.523-4.477-10-10-10S2 10.477 2 16"
/>
<Path
d="M2 17a1 1 0 100-2 1 1 0 000 2zM22 17a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M2 17a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM22 17a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DArc);
};
const ForwardRef = forwardRef(Svg3DArc);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DArcCenterPt = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,42 +13,42 @@ function Svg3DArcCenterPt(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M22 16c0-5.523-4.477-10-10-10-4.1 0-7.625 2.468-9.168 6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeDasharray="3 3"
strokeLinecap="round"
strokeLinejoin="round"
d="M22 16c0-5.523-4.477-10-10-10-4.1 0-7.625 2.468-9.168 6"
/>
<Path
d="M2 17a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M2 17a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M2 16h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12 17a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 17a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DArcCenterPt);
};
const ForwardRef = forwardRef(Svg3DArcCenterPt);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DBridge = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,34 +13,34 @@ function Svg3DBridge(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M18 4h3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M18 4h3"
/>
<Path
d="M10 21a1 1 0 100-2 1 1 0 000 2zM14 5a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M10 21a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM14 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
d="M10 20s6.5-2.5 2-8 2-8 2-8M3 20h3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M10 20s6.5-2.5 2-8 2-8 2-8M3 20h3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DBridge);
};
const ForwardRef = forwardRef(Svg3DBridge);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DCenterBox = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,34 +13,34 @@ function Svg3DCenterBox(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 17a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 17a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
d="M21 7.353v9.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7.353v9.294a.6.6 0 0 1-.309.525l-8.4 4.666a.6.6 0 0 1-.582 0l-8.4-4.666A.6.6 0 0 1 3 16.647V7.353a.6.6 0 0 1 .309-.524l8.4-4.667a.6.6 0 0 1 .582 0l8.4 4.667a.6.6 0 0 1 .309.524Z"
/>
<Path
d="M20.5 16.722l-8.209-4.56a.6.6 0 00-.582 0L3.5 16.722M3.528 7.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 3v9M12 19.5V22"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m20.5 16.722-8.209-4.56a.6.6 0 0 0-.582 0L3.5 16.722M3.528 7.294l8.18 4.544a.6.6 0 0 0 .583 0l8.209-4.56M12 3v9M12 19.5V22"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DCenterBox);
};
const ForwardRef = forwardRef(Svg3DCenterBox);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DDraftFace = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function Svg3DDraftFace(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M20 7.78v7.796a.6.6 0 01-.27.502l-6.616 4.347a.6.6 0 01-.249.093l-10.184 1.39A.6.6 0 012 21.312V9.012a.6.6 0 01.298-.519l10.789-6.28a.6.6 0 01.688.058l6.01 5.05A.6.6 0 0120 7.78z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M20 7.78v7.796a.6.6 0 0 1-.27.502l-6.616 4.347a.6.6 0 0 1-.249.093l-10.184 1.39A.6.6 0 0 1 2 21.312V9.012a.6.6 0 0 1 .298-.519l10.789-6.28a.6.6 0 0 1 .688.058l6.01 5.05A.6.6 0 0 1 20 7.78Z"
/>
<Path
d="M2.5 9l10.227 2.922a.6.6 0 00.506-.084L19.5 7.5M13 20.5V12M16.5 14.01l.01-.011M22 17.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m2.5 9 10.227 2.922a.6.6 0 0 0 .506-.084L19.5 7.5M13 20.5V12M16.5 14.01l.01-.011M22 17.01l.01-.011"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DDraftFace);
};
const ForwardRef = forwardRef(Svg3DDraftFace);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DEllipse = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,35 +13,35 @@ function Svg3DEllipse(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 3a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
d="M12 22c4.418 0 8-4.477 8-10S16.418 2 12 2 4 6.477 4 12s3.582 10 8 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 22c4.418 0 8-4.477 8-10S16.418 2 12 2 4 6.477 4 12s3.582 10 8 10Z"
/>
<Path
d="M12 23a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 23a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DEllipse);
};
const ForwardRef = forwardRef(Svg3DEllipse);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DEllipseThreePts = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,55 +13,55 @@ function Svg3DEllipseThreePts(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M5 3a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M5 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M5 22h8M5 22V2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M5 23a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M5 23a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
d="M8 4.193C9.37 2.821 11.108 2 13 2c4.418 0 8 4.477 8 10 0 3.271-1.256 6.175-3.2 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeDasharray="3 3"
strokeLinecap="round"
strokeLinejoin="round"
d="M8 4.193C9.37 2.821 11.108 2 13 2c4.418 0 8 4.477 8 10 0 3.271-1.256 6.175-3.2 8"
/>
<Path
d="M8.2 20A9.098 9.098 0 017 18.615"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M8.2 20A9.098 9.098 0 0 1 7 18.615"
/>
<Path
d="M13 23a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M13 23a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DEllipseThreePts);
};
const ForwardRef = forwardRef(Svg3DEllipseThreePts);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DPtBox = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,34 +13,34 @@ function Svg3DPtBox(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 18a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M3 18a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
d="M21 7.353v9.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7.353v9.294a.6.6 0 0 1-.309.525l-8.4 4.666a.6.6 0 0 1-.582 0l-8.4-4.666A.6.6 0 0 1 3 16.647V7.353a.6.6 0 0 1 .309-.524l8.4-4.667a.6.6 0 0 1 .582 0l8.4 4.667a.6.6 0 0 1 .309.524Z"
/>
<Path
d="M3.528 7.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 21v-9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m3.528 7.294 8.18 4.544a.6.6 0 0 0 .583 0l8.209-4.56M12 21v-9"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DPtBox);
};
const ForwardRef = forwardRef(Svg3DPtBox);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DRectCornerToCorner = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,26 +13,26 @@ function Svg3DRectCornerToCorner(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
d="M3 20.4V3.6a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6v16.8a.6.6 0 0 1-.6.6H3.6a.6.6 0 0 1-.6-.6Z"
/>
<Path
d="M3 4a1 1 0 100-2 1 1 0 000 2zM21 22a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M3 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM21 22a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DRectCornerToCorner);
};
const ForwardRef = forwardRef(Svg3DRectCornerToCorner);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DRectFromCenter = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,26 +13,26 @@ function Svg3DRectFromCenter(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
d="M3 20.4V3.6a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6v16.8a.6.6 0 0 1-.6.6H3.6a.6.6 0 0 1-.6-.6Z"
/>
<Path
d="M12 13a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DRectFromCenter);
};
const ForwardRef = forwardRef(Svg3DRectFromCenter);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DRectThreePts = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,29 +13,29 @@ function Svg3DRectThreePts(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path d="M3 21V3.6a.6.6 0 01.6-.6H21" stroke="currentColor" />
<Path stroke="currentColor" d="M3 21V3.6a.6.6 0 0 1 .6-.6H21" />
<Path
d="M17 21h3.4a.6.6 0 00.6-.6V17M21 7v2M21 12v2M7 21h2M12 21h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M17 21h3.4a.6.6 0 0 0 .6-.6V17M21 7v2M21 12v2M7 21h2M12 21h2"
/>
<Path
d="M3 4a1 1 0 100-2 1 1 0 000 2zM3 22a1 1 0 100-2 1 1 0 000 2zM21 4a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M3 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM3 22a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM21 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DRectThreePts);
};
const ForwardRef = forwardRef(Svg3DRectThreePts);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DSelectEdge = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,28 +13,28 @@ function Svg3DSelectEdge(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M21 7.353v9.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524zM12 21v-9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7.353v9.294a.6.6 0 0 1-.309.525l-8.4 4.666a.6.6 0 0 1-.582 0l-8.4-4.666A.6.6 0 0 1 3 16.647V7.353a.6.6 0 0 1 .309-.524l8.4-4.667a.6.6 0 0 1 .582 0l8.4 4.667a.6.6 0 0 1 .309.524ZM12 21v-9"
/>
<Path
d="M12.5 11v10a.5.5 0 01-1 0V11a.5.5 0 011 0z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12.5 11v10a.5.5 0 0 1-1 0V11a.5.5 0 0 1 1 0Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DSelectEdge);
};
const ForwardRef = forwardRef(Svg3DSelectEdge);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DSelectFace = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,33 +13,33 @@ function Svg3DSelectFace(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M21 7.353v9.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7.353v9.294a.6.6 0 0 1-.309.525l-8.4 4.666a.6.6 0 0 1-.582 0l-8.4-4.666A.6.6 0 0 1 3 16.647V7.353a.6.6 0 0 1 .309-.524l8.4-4.667a.6.6 0 0 1 .582 0l8.4 4.667a.6.6 0 0 1 .309.524Z"
/>
<Path
d="M3.528 7.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 21v-9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m3.528 7.294 8.18 4.544a.6.6 0 0 0 .583 0l8.209-4.56M12 21v-9"
/>
<Path
d="M11.691 11.829l-7.8-4.334A.6.6 0 003 8.02v8.627a.6.6 0 00.309.525l7.8 4.333A.6.6 0 0012 20.98v-8.627a.6.6 0 00-.309-.524z"
fill="currentColor"
stroke="currentColor"
strokeLinejoin="round"
d="m11.691 11.829-7.8-4.334A.6.6 0 0 0 3 8.02v8.627a.6.6 0 0 0 .309.525l7.8 4.333A.6.6 0 0 0 12 20.98v-8.627a.6.6 0 0 0-.309-.524Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DSelectFace);
};
const ForwardRef = forwardRef(Svg3DSelectFace);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DSelectPoint = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,28 +13,28 @@ function Svg3DSelectPoint(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 13a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
d="M21 7.353v9.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7.353v9.294a.6.6 0 0 1-.309.525l-8.4 4.666a.6.6 0 0 1-.582 0l-8.4-4.666A.6.6 0 0 1 3 16.647V7.353a.6.6 0 0 1 .309-.524l8.4-4.667a.6.6 0 0 1 .582 0l8.4 4.667a.6.6 0 0 1 .309.524Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DSelectPoint);
};
const ForwardRef = forwardRef(Svg3DSelectPoint);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DSelectSolid = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function Svg3DSelectSolid(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M21 7.353v9.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7.353v9.294a.6.6 0 0 1-.309.525l-8.4 4.666a.6.6 0 0 1-.582 0l-8.4-4.666A.6.6 0 0 1 3 16.647V7.353a.6.6 0 0 1 .309-.524l8.4-4.667a.6.6 0 0 1 .582 0l8.4 4.667a.6.6 0 0 1 .309.524Z"
/>
<Path
d="M3.528 7.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 21v-9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m3.528 7.294 8.18 4.544a.6.6 0 0 0 .583 0l8.209-4.56M12 21v-9"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DSelectSolid);
};
const ForwardRef = forwardRef(Svg3DSelectSolid);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const Svg3DThreePtsBox = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,34 +13,34 @@ function Svg3DThreePtsBox(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 23a1 1 0 100-2 1 1 0 000 2zM3 8a1 1 0 100-2 1 1 0 000 2zM3 18a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 23a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM3 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM3 18a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
d="M21 7.353v9.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7.353v9.294a.6.6 0 0 1-.309.525l-8.4 4.666a.6.6 0 0 1-.582 0l-8.4-4.666A.6.6 0 0 1 3 16.647V7.353a.6.6 0 0 1 .309-.524l8.4-4.667a.6.6 0 0 1 .582 0l8.4 4.667a.6.6 0 0 1 .309.524Z"
/>
<Path
d="M3.528 7.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 21v-9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m3.528 7.294 8.18 4.544a.6.6 0 0 0 .583 0l8.209-4.56M12 21v-9"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DThreePtsBox);
};
const ForwardRef = forwardRef(Svg3DThreePtsBox);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAccessibility = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,28 +13,28 @@ function SvgAccessibility(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zM7 9l5 1m5-1l-5 1m0 0v3m0 0l-2 5m2-5l2 5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10ZM7 9l5 1m5-1-5 1m0 0v3m0 0-2 5m2-5 2 5"
/>
<Path
d="M12 7a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 7a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAccessibility);
};
const ForwardRef = forwardRef(SvgAccessibility);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAccessibilitySign = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAccessibilitySign(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M11.5 12.5l7-.5-1.5 6.5M11.5 12.5l4.5-5L12.5 5 10 7.5M18.5 6.5a2 2 0 110-4 2 2 0 010 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m11.5 12.5 7-.5-1.5 6.5M11.5 12.5l4.5-5L12.5 5 10 7.5M18.5 6.5a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z"
/>
<Path
d="M5.5 12.5a5 5 0 017.584 6M3.729 15A5 5 0 0011 20.831"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M5.5 12.5a5 5 0 0 1 7.584 6M3.729 15A5 5 0 0 0 11 20.831"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAccessibilitySign);
};
const ForwardRef = forwardRef(SvgAccessibilitySign);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAccessibilityTech = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,38 +13,38 @@ function SvgAccessibilityTech(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 19V5a2 2 0 012-2h14a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2z"
stroke="currentColor"
d="M3 19V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z"
/>
<Path
d="M12.5 12.16l4-.16-.5 4.5M11.833 12L13.5 9.538 10.833 8 9.5 9.846"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m12.5 12.16 4-.16-.5 4.5M11.833 12 13.5 9.538 10.833 8 9.5 9.846"
/>
<Path
d="M15.5 7.5a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M15.5 7.5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1Z"
/>
<Path
d="M10.5 18a3 3 0 110-6 3 3 0 010 6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M10.5 18a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAccessibilityTech);
};
const ForwardRef = forwardRef(SvgAccessibilityTech);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgActivity = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgActivity(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 12h3l3-9 6 18 3-9h3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M3 12h3l3-9 6 18 3-9h3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgActivity);
};
const ForwardRef = forwardRef(SvgActivity);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddCircle = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAddCircle(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M8 12h4m4 0h-4m0 0V8m0 4v4M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M8 12h4m4 0h-4m0 0V8m0 4v4M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddCircle);
};
const ForwardRef = forwardRef(SvgAddCircle);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddDatabaseScript = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAddDatabaseScript(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M22 14V8.5M6 13V6a3 3 0 013-3h5M16.992 4h3m3 0h-3m0 0V1m0 3v3M12 21H6a4 4 0 010-8h12a4 4 0 104 4v-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M22 14V8.5M6 13V6a3 3 0 0 1 3-3h5M16.992 4h3m3 0h-3m0 0V1m0 3v3M12 21H6a4 4 0 0 1 0-8h12a4 4 0 1 0 4 4v-3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddDatabaseScript);
};
const ForwardRef = forwardRef(SvgAddDatabaseScript);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddFolder = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAddFolder(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M18 6h2m2 0h-2m0 0V4m0 2v2M21.4 20H2.6a.6.6 0 01-.6-.6V11h19.4a.6.6 0 01.6.6v7.8a.6.6 0 01-.6.6zM2 11V4.6a.6.6 0 01.6-.6h6.178a.6.6 0 01.39.144l3.164 2.712a.6.6 0 00.39.144H14"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M18 6h2m2 0h-2m0 0V4m0 2v2M21.4 20H2.6a.6.6 0 0 1-.6-.6V11h19.4a.6.6 0 0 1 .6.6v7.8a.6.6 0 0 1-.6.6ZM2 11V4.6a.6.6 0 0 1 .6-.6h6.178a.6.6 0 0 1 .39.144l3.164 2.712a.6.6 0 0 0 .39.144H14"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddFolder);
};
const ForwardRef = forwardRef(SvgAddFolder);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddFrame = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,28 +13,28 @@ function SvgAddFrame(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M4.998 2H2v2.998h2.998V2zM4.999 3.5h14M3.5 4.998V19M20.498 5v14.002M4.999 20.5h14M4.998 19H2v2.998h2.998V19zM21.997 2.001H19v2.998h2.998V2.001zM21.997 19.001H19v2.998h2.998v-2.998z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={1.5}
d="M4.998 2H2v2.998h2.998V2ZM4.999 3.5h14M3.5 4.998V19M20.498 5v14.002M4.999 20.5h14M4.998 19H2v2.998h2.998V19ZM21.997 2.001H19v2.998h2.998V2.001ZM21.997 19.001H19v2.998h2.998v-2.998Z"
/>
<Path
d="M9 12h3m3 0h-3m0 0V9m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M9 12h3m3 0h-3m0 0V9m0 3v3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddFrame);
};
const ForwardRef = forwardRef(SvgAddFrame);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddHexagon = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAddHexagon(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M9 12h3m3 0h-3m0 0V9m0 3v3M11.7 1.173a.6.6 0 01.6 0l8.926 5.154a.6.6 0 01.3.52v10.307a.6.6 0 01-.3.52L12.3 22.826a.6.6 0 01-.6 0l-8.926-5.154a.6.6 0 01-.3-.52V6.847a.6.6 0 01.3-.52L11.7 1.174z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M9 12h3m3 0h-3m0 0V9m0 3v3M11.7 1.173a.6.6 0 0 1 .6 0l8.926 5.154a.6.6 0 0 1 .3.52v10.307a.6.6 0 0 1-.3.52L12.3 22.826a.6.6 0 0 1-.6 0l-8.926-5.154a.6.6 0 0 1-.3-.52V6.847a.6.6 0 0 1 .3-.52L11.7 1.174Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddHexagon);
};
const ForwardRef = forwardRef(SvgAddHexagon);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddKeyframe = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAddKeyframe(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M16 5h3m3 0h-3m0 0V2m0 3v3M16.819 14.329l-5.324 5.99a2 2 0 01-2.99 0l-5.324-5.99a2 2 0 010-2.658l5.324-5.99a2 2 0 012.99 0l5.324 5.99a2 2 0 010 2.658z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M16 5h3m3 0h-3m0 0V2m0 3v3M16.819 14.329l-5.324 5.99a2 2 0 0 1-2.99 0l-5.324-5.99a2 2 0 0 1 0-2.658l5.324-5.99a2 2 0 0 1 2.99 0l5.324 5.99a2 2 0 0 1 0 2.658Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddKeyframe);
};
const ForwardRef = forwardRef(SvgAddKeyframe);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddKeyframeAlt = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAddKeyframeAlt(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M20.777 13.345l-7.297 8.027a2 2 0 01-2.96 0l-7.297-8.027a2 2 0 010-2.69l7.297-8.027a2 2 0 012.96 0l7.297 8.027a2 2 0 010 2.69zM9 12h3m3 0h-3m0 0V9m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m20.777 13.345-7.297 8.027a2 2 0 0 1-2.96 0l-7.297-8.027a2 2 0 0 1 0-2.69l7.297-8.027a2 2 0 0 1 2.96 0l7.297 8.027a2 2 0 0 1 0 2.69ZM9 12h3m3 0h-3m0 0V9m0 3v3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddKeyframeAlt);
};
const ForwardRef = forwardRef(SvgAddKeyframeAlt);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddKeyframes = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,33 +13,33 @@ function SvgAddKeyframes(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M2 12h3m3 0H5m0 0V9m0 3v3M6.25 6l.245-.28a2 2 0 013.01 0l4.343 4.963a2 2 0 010 2.634L9.505 18.28a2 2 0 01-3.01 0L6.25 18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M2 12h3m3 0H5m0 0V9m0 3v3M6.25 6l.245-.28a2 2 0 0 1 3.01 0l4.343 4.963a2 2 0 0 1 0 2.634L9.505 18.28a2 2 0 0 1-3.01 0L6.25 18"
/>
<Path
d="M13 19l4.884-5.698a2 2 0 000-2.604L13 5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m13 19 4.884-5.698a2 2 0 0 0 0-2.604L13 5"
/>
<Path
d="M17 19l4.884-5.698a2 2 0 000-2.604L17 5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m17 19 4.884-5.698a2 2 0 0 0 0-2.604L17 5"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddKeyframes);
};
const ForwardRef = forwardRef(SvgAddKeyframes);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddLens = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,27 @@ function SvgAddLens(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M2.992 6h3m3 0h-3m0 0V3m0 3v3M2.112 13.5C2.835 18.311 6.987 22 12 22c5.523 0 10-4.477 10-10 0-5.013-3.689-9.165-8.5-9.888M17.197 9c-.1-.172-.207-.34-.323-.5M17.811 13.5a6.01 6.01 0 01-4.311 4.311"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M2.992 6h3m3 0h-3m0 0V3m0 3v3M2.112 13.5C2.835 18.311 6.987 22 12 22c5.523 0 10-4.477 10-10 0-5.013-3.689-9.165-8.5-9.888"
/>
<Path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M17.197 9c-.1-.172-.207-.34-.323-.5M17.811 13.5a6.01 6.01 0 0 1-4.311 4.311"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddLens);
};
const ForwardRef = forwardRef(SvgAddLens);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddMediaImage = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAddMediaImage(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M13 21H3.6a.6.6 0 01-.6-.6V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6V13"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M13 21H3.6a.6.6 0 0 1-.6-.6V3.6a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6V13"
/>
<Path
d="M3 16l7-3 5.5 2.5M16 10a2 2 0 110-4 2 2 0 010 4zM16 19h3m3 0h-3m0 0v-3m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m3 16 7-3 5.5 2.5M16 10a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM16 19h3m3 0h-3m0 0v-3m0 3v3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddMediaImage);
};
const ForwardRef = forwardRef(SvgAddMediaImage);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddMediaVideo = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAddMediaVideo(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M13 21H3.6a.6.6 0 01-.6-.6V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6V13M16 19h3m3 0h-3m0 0v-3m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M13 21H3.6a.6.6 0 0 1-.6-.6V3.6a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6V13M16 19h3m3 0h-3m0 0v-3m0 3v3"
/>
<Path
d="M9.898 8.513a.6.6 0 00-.898.52v5.933a.6.6 0 00.898.521l5.19-2.966a.6.6 0 000-1.042l-5.19-2.966z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M9.898 8.513a.6.6 0 0 0-.898.52v5.933a.6.6 0 0 0 .898.521l5.19-2.966a.6.6 0 0 0 0-1.042l-5.19-2.966Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddMediaVideo);
};
const ForwardRef = forwardRef(SvgAddMediaVideo);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddPage = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAddPage(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M9 12h3m3 0h-3m0 0V9m0 3v3M4 21.4V2.6a.6.6 0 01.6-.6h11.652a.6.6 0 01.424.176l3.148 3.148A.6.6 0 0120 5.75V21.4a.6.6 0 01-.6.6H4.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M9 12h3m3 0h-3m0 0V9m0 3v3M4 21.4V2.6a.6.6 0 0 1 .6-.6h11.652a.6.6 0 0 1 .424.176l3.148 3.148A.6.6 0 0 1 20 5.75V21.4a.6.6 0 0 1-.6.6H4.6a.6.6 0 0 1-.6-.6Z"
/>
<Path
d="M16 2v3.4a.6.6 0 00.6.6H20"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M16 2v3.4a.6.6 0 0 0 .6.6H20"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddPage);
};
const ForwardRef = forwardRef(SvgAddPage);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddPageAlt = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAddPageAlt(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M4 12V2.6a.6.6 0 01.6-.6h11.652a.6.6 0 01.424.176l3.148 3.148A.6.6 0 0120 5.75V21.4a.6.6 0 01-.6.6H11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M4 12V2.6a.6.6 0 0 1 .6-.6h11.652a.6.6 0 0 1 .424.176l3.148 3.148A.6.6 0 0 1 20 5.75V21.4a.6.6 0 0 1-.6.6H11"
/>
<Path
d="M16 2v3.4a.6.6 0 00.6.6H20M1.992 19h3m3 0h-3m0 0v-3m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M16 2v3.4a.6.6 0 0 0 .6.6H20M1.992 19h3m3 0h-3m0 0v-3m0 3v3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddPageAlt);
};
const ForwardRef = forwardRef(SvgAddPageAlt);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddPinAlt = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,32 +13,32 @@ function SvgAddPinAlt(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M16 9.2C16 13.177 9 20 9 20S2 13.177 2 9.2C2 5.224 5.134 2 9 2s7 3.224 7 7.2z"
stroke="currentColor"
d="M16 9.2C16 13.177 9 20 9 20S2 13.177 2 9.2C2 5.224 5.134 2 9 2s7 3.224 7 7.2Z"
/>
<Path
d="M9 10a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M9 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
d="M16 19h3m3 0h-3m0 0v-3m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M16 19h3m3 0h-3m0 0v-3m0 3v3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddPinAlt);
};
const ForwardRef = forwardRef(SvgAddPinAlt);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddSelection = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAddSelection(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M8 12h4m4 0h-4m0 0V8m0 4v4M7 4H4v3M4 11v2M11 4h2M11 20h2M20 11v2M17 4h3v3M7 20H4v-3M17 20h3v-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M8 12h4m4 0h-4m0 0V8m0 4v4M7 4H4v3M4 11v2M11 4h2M11 20h2M20 11v2M17 4h3v3M7 20H4v-3M17 20h3v-3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddSelection);
};
const ForwardRef = forwardRef(SvgAddSelection);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddSquare = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAddSquare(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M9 12h3m3 0h-3m0 0V9m0 3v3M21 3.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M9 12h3m3 0h-3m0 0V9m0 3v3M21 3.6v16.8a.6.6 0 0 1-.6.6H3.6a.6.6 0 0 1-.6-.6V3.6a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddSquare);
};
const ForwardRef = forwardRef(SvgAddSquare);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddToCart = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAddToCart(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 6h19l-3 10H6L3 6zm0 0l-.75-2.5M9.992 11h2m2 0h-2m0 0V9m0 2v2M11 19.5a1.5 1.5 0 01-3 0M17 19.5a1.5 1.5 0 01-3 0"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M3 6h19l-3 10H6L3 6Zm0 0-.75-2.5M9.992 11h2m2 0h-2m0 0V9m0 2v2M11 19.5a1.5 1.5 0 0 1-3 0M17 19.5a1.5 1.5 0 0 1-3 0"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddToCart);
};
const ForwardRef = forwardRef(SvgAddToCart);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAddUser = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAddUser(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M17 10h3m3 0h-3m0 0V7m0 3v3M1 20v-1a7 7 0 017-7v0a7 7 0 017 7v1M8 12a4 4 0 100-8 4 4 0 000 8z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M17 10h3m3 0h-3m0 0V7m0 3v3M1 20v-1a7 7 0 0 1 7-7v0a7 7 0 0 1 7 7v1M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAddUser);
};
const ForwardRef = forwardRef(SvgAddUser);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAdobeAfterEffects = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAdobeAfterEffects(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M21 7v10a4 4 0 01-4 4H7a4 4 0 01-4-4V7a4 4 0 014-4h10a4 4 0 014 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z"
/>
<Path
d="M14 13v-1a2 2 0 012-2v0a2 2 0 012 2v1h-4zm0 0v1a2 2 0 002 2h1.5M6 16l1.125-3M12 16l-1.125-3m-3.75 0L9 8l1.875 5m-3.75 0h3.75"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M14 13v-1a2 2 0 0 1 2-2v0a2 2 0 0 1 2 2v1h-4Zm0 0v1a2 2 0 0 0 2 2h1.5M6 16l1.125-3M12 16l-1.125-3m-3.75 0L9 8l1.875 5m-3.75 0h3.75"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAdobeAfterEffects);
};
const ForwardRef = forwardRef(SvgAdobeAfterEffects);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAdobeIllustrator = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAdobeIllustrator(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M21 7v10a4 4 0 01-4 4H7a4 4 0 01-4-4V7a4 4 0 014-4h10a4 4 0 014 4zM16 12v4M16 9v.01"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4ZM16 12v4M16 9v.01"
/>
<Path
d="M7 16l1.125-3M13 16l-1.125-3m-3.75 0L10 8l1.875 5m-3.75 0h3.75"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m7 16 1.125-3M13 16l-1.125-3m-3.75 0L10 8l1.875 5m-3.75 0h3.75"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAdobeIllustrator);
};
const ForwardRef = forwardRef(SvgAdobeIllustrator);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAdobeIndesign = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAdobeIndesign(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M21 7v10a4 4 0 01-4 4H7a4 4 0 01-4-4V7a4 4 0 014-4h10a4 4 0 014 4zM8.5 8v8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4ZM8.5 8v8"
/>
<Path
d="M15.5 12v3.4a.6.6 0 01-.6.6h-1.4a2 2 0 01-2-2v0a2 2 0 012-2h2zm0 0V9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M15.5 12v3.4a.6.6 0 0 1-.6.6h-1.4a2 2 0 0 1-2-2v0a2 2 0 0 1 2-2h2Zm0 0V9"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAdobeIndesign);
};
const ForwardRef = forwardRef(SvgAdobeIndesign);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAdobeLightroom = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAdobeLightroom(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M21 7v10a4 4 0 01-4 4H7a4 4 0 01-4-4V7a4 4 0 014-4h10a4 4 0 014 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z"
/>
<Path
d="M7 8v8h4M14 10.5V13m0 3v-3m0 0s0-2.5 3-2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M7 8v8h4M14 10.5V13m0 3v-3m0 0s0-2.5 3-2.5"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAdobeLightroom);
};
const ForwardRef = forwardRef(SvgAdobeLightroom);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAdobePhotoshop = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAdobePhotoshop(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M21 7v10a4 4 0 01-4 4H7a4 4 0 01-4-4V7a4 4 0 014-4h10a4 4 0 014 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4Z"
/>
<Path
d="M7 16v-4m0 0V8h2a2 2 0 012 2v0a2 2 0 01-2 2H7zM17 11v0c-.306-.613-.933-1-1.618-1H15a1.5 1.5 0 00-1.5 1.5v0A1.5 1.5 0 0015 13h.5a1.5 1.5 0 011.5 1.5v0a1.5 1.5 0 01-1.5 1.5h-.382a1.809 1.809 0 01-1.618-1v0"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M7 16v-4m0 0V8h2a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2H7ZM17 11v0c-.306-.613-.933-1-1.618-1H15a1.5 1.5 0 0 0-1.5 1.5v0A1.5 1.5 0 0 0 15 13h.5a1.5 1.5 0 0 1 1.5 1.5v0a1.5 1.5 0 0 1-1.5 1.5h-.382a1.809 1.809 0 0 1-1.618-1v0"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAdobePhotoshop);
};
const ForwardRef = forwardRef(SvgAdobePhotoshop);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAdobeXd = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAdobeXd(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M21 7v10a4 4 0 01-4 4H7a4 4 0 01-4-4V7a4 4 0 014-4h10a4 4 0 014 4zM7 8l4 8m-4 0l4-8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M21 7v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4ZM7 8l4 8m-4 0 4-8"
/>
<Path
d="M17 12v3.4a.6.6 0 01-.6.6H15a2 2 0 01-2-2v0a2 2 0 012-2h2zm0 0V9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M17 12v3.4a.6.6 0 0 1-.6.6H15a2 2 0 0 1-2-2v0a2 2 0 0 1 2-2h2Zm0 0V9"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAdobeXd);
};
const ForwardRef = forwardRef(SvgAdobeXd);
export default ForwardRef;

View file

@ -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<React.Component<SvgProps>>
) {
const SvgAfricanTree = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,28 +13,28 @@ function SvgAfricanTree(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<G
clipPath="url(#african-tree_svg__clip0_2032_8254)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
clipPath="url(#african-tree_svg__a)"
>
<Path d="M12 22V12m0-4v4m0 0l3-3M12.424 18.576l6.169-6.169a5.502 5.502 0 00-.513-8.234 9.904 9.904 0 00-12.16 0 5.502 5.502 0 00-.513 8.234l6.169 6.169a.6.6 0 00.848 0z" />
<Path d="M12 22V12m0-4v4m0 0 3-3M12.424 18.576l6.169-6.169a5.502 5.502 0 0 0-.513-8.234 9.904 9.904 0 0 0-12.16 0 5.502 5.502 0 0 0-.513 8.234l6.169 6.169a.6.6 0 0 0 .848 0Z" />
</G>
<Defs>
<ClipPath id="african-tree_svg__clip0_2032_8254">
<ClipPath id="african-tree_svg__a">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAfricanTree);
};
const ForwardRef = forwardRef(SvgAfricanTree);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAgile = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,33 +13,33 @@ function SvgAgile(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M17.5 19H22m0 0l-2.5-2.5M22 19l-2.5 2.5M12 2L9.5 4.5 12 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M17.5 19H22m0 0-2.5-2.5M22 19l-2.5 2.5M12 2 9.5 4.5 12 7"
/>
<Path
d="M10.5 4.5a7.5 7.5 0 010 15H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M10.5 4.5a7.5 7.5 0 0 1 0 15H2"
/>
<Path
d="M6.756 5.5A7.497 7.497 0 003 12c0 1.688.558 3.246 1.5 4.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M6.756 5.5A7.497 7.497 0 0 0 3 12c0 1.688.558 3.246 1.5 4.5"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAgile);
};
const ForwardRef = forwardRef(SvgAgile);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAirConditioner = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAirConditioner(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M22 3.6V11H2V3.6a.6.6 0 01.6-.6h18.8a.6.6 0 01.6.6zM18 7h1M2 11l.79 2.584A2 2 0 004.702 15H6M22 11l-.79 2.584A2 2 0 0119.298 15H18M9.5 14.5s0 7-3.5 7M14.5 14.5s0 7 3.5 7M12 14.5v7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M22 3.6V11H2V3.6a.6.6 0 0 1 .6-.6h18.8a.6.6 0 0 1 .6.6ZM18 7h1M2 11l.79 2.584A2 2 0 0 0 4.702 15H6M22 11l-.79 2.584A2 2 0 0 1 19.298 15H18M9.5 14.5s0 7-3.5 7M14.5 14.5s0 7 3.5 7M12 14.5v7"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAirConditioner);
};
const ForwardRef = forwardRef(SvgAirConditioner);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAirplane = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAirplane(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M10.5 4.5v4.667a.6.6 0 01-.282.51l-7.436 4.647a.6.6 0 00-.282.508v.9a.6.6 0 00.746.582l6.508-1.628a.6.6 0 01.746.582v2.96a.6.6 0 01-.205.451l-2.16 1.89c-.458.402-.097 1.151.502 1.042l3.256-.591a.6.6 0 01.214 0l3.256.591c.599.11.96-.64.502-1.041l-2.16-1.89a.6.6 0 01-.205-.452v-2.96a.6.6 0 01.745-.582l6.51 1.628a.6.6 0 00.745-.582v-.9a.6.6 0 00-.282-.508l-7.436-4.648a.6.6 0 01-.282-.509V4.5a1.5 1.5 0 00-3 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M10.5 4.5v4.667a.6.6 0 0 1-.282.51l-7.436 4.647a.6.6 0 0 0-.282.508v.9a.6.6 0 0 0 .746.582l6.508-1.628a.6.6 0 0 1 .746.582v2.96a.6.6 0 0 1-.205.451l-2.16 1.89c-.458.402-.097 1.151.502 1.042l3.256-.591a.6.6 0 0 1 .214 0l3.256.591c.599.11.96-.64.502-1.041l-2.16-1.89a.6.6 0 0 1-.205-.452v-2.96a.6.6 0 0 1 .745-.582l6.51 1.628a.6.6 0 0 0 .745-.582v-.9a.6.6 0 0 0-.282-.508l-7.436-4.648a.6.6 0 0 1-.282-.509V4.5a1.5 1.5 0 0 0-3 0Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAirplane);
};
const ForwardRef = forwardRef(SvgAirplane);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAirplaneHelix = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,30 +13,30 @@ function SvgAirplaneHelix(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 15a3 3 0 100-6 3 3 0 000 6z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={1.5}
d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
/>
<Path
clipRule="evenodd"
d="M12 9s-1.988-1.975-2-4c.001-1.993-.05-4.001 2-4 1.948.001 1.997 1.976 2 4 .003 1.985-2 4-2 4zM15 12s1.975-1.988 4-2c1.993.001 4.001-.05 4 2-.001 1.948-1.976 1.997-4 2-1.985.003-4-2-4-2zM9 12s-1.975 1.988-4 2c-1.993-.001-4.001.05-4-2 .001-1.948 1.976-1.997 4-2 1.985-.003 4 2 4 2zM12 15s1.988 1.975 2 4c-.001 1.993.05 4.001-2 4-1.948-.001-1.997-1.976-2-4-.003-1.985 2-4 2-4z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={1.5}
d="M12 9s-1.988-1.975-2-4c.001-1.993-.05-4.001 2-4 1.948.001 1.997 1.976 2 4 .003 1.985-2 4-2 4ZM15 12s1.975-1.988 4-2c1.993.001 4.001-.05 4 2-.001 1.948-1.976 1.997-4 2-1.985.003-4-2-4-2ZM9 12s-1.975 1.988-4 2c-1.993-.001-4.001.05-4-2 .001-1.948 1.976-1.997 4-2 1.985-.003 4 2 4 2ZM12 15s1.988 1.975 2 4c-.001 1.993.05 4.001-2 4-1.948-.001-1.997-1.976-2-4-.003-1.985 2-4 2-4Z"
clipRule="evenodd"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAirplaneHelix);
};
const ForwardRef = forwardRef(SvgAirplaneHelix);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAirplaneHelix45Deg = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,30 +13,30 @@ function SvgAirplaneHelix45Deg(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M14.12 14.121A3 3 0 109.879 9.88a3 3 0 004.243 4.242z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={1.5}
d="M14.12 14.121A3 3 0 1 0 9.879 9.88a3 3 0 0 0 4.243 4.242Z"
/>
<Path
clipRule="evenodd"
d="M9.879 9.879s-2.803.009-4.243-1.415c-1.409-1.41-2.864-2.793-1.414-4.242 1.378-1.377 2.81-.015 4.242 1.414C9.87 7.037 9.88 9.879 9.88 9.879zM14.121 9.879s-.009-2.803 1.415-4.243c1.41-1.409 2.793-2.864 4.242-1.414 1.377 1.378.015 2.81-1.414 4.242-1.402 1.406-4.243 1.415-4.243 1.415zM9.879 14.121s.009 2.803-1.415 4.243c-1.41 1.409-2.793 2.864-4.242 1.414-1.377-1.378-.015-2.81 1.414-4.242 1.401-1.406 4.243-1.415 4.243-1.415zM14.121 14.121s2.803-.009 4.243 1.415c1.409 1.41 2.864 2.793 1.414 4.242-1.378 1.377-2.81.015-4.242-1.414-1.406-1.402-1.415-4.243-1.415-4.243z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={1.5}
d="M9.879 9.879s-2.803.009-4.243-1.415c-1.409-1.41-2.864-2.793-1.414-4.242 1.378-1.377 2.81-.015 4.242 1.414C9.87 7.037 9.88 9.879 9.88 9.879ZM14.121 9.879s-.009-2.803 1.415-4.243c1.41-1.409 2.793-2.864 4.242-1.414 1.377 1.378.015 2.81-1.414 4.242-1.402 1.406-4.243 1.415-4.243 1.415ZM9.879 14.121s.009 2.803-1.415 4.243c-1.41 1.409-2.793 2.864-4.242 1.414-1.377-1.378-.015-2.81 1.414-4.242 1.401-1.406 4.243-1.415 4.243-1.415ZM14.121 14.121s2.803-.009 4.243 1.415c1.409 1.41 2.864 2.793 1.414 4.242-1.378 1.377-2.81.015-4.242-1.414-1.406-1.402-1.415-4.243-1.415-4.243Z"
clipRule="evenodd"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAirplaneHelix45Deg);
};
const ForwardRef = forwardRef(SvgAirplaneHelix45Deg);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAirplaneOff = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAirplaneOff(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M9.881 9.887l-7.099 4.437a.6.6 0 00-.282.508v.9a.6.6 0 00.746.582l6.508-1.628a.6.6 0 01.746.582v2.96a.6.6 0 01-.205.451l-2.16 1.89c-.458.402-.097 1.151.502 1.042l3.256-.591a.6.6 0 01.214 0l3.256.591c.599.11.96-.64.502-1.041l-2.16-1.89a.6.6 0 01-.205-.452v-2.96a.6.6 0 01.745-.582l.458.115M10.5 7.5v-3A1.5 1.5 0 0112 3v0a1.5 1.5 0 011.5 1.5v4.667a.6.6 0 00.282.51l7.436 4.647a.6.6 0 01.282.508v.9a.6.6 0 01-.745.582l-2.006-.502M3 3l18 18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m9.881 9.887-7.099 4.437a.6.6 0 0 0-.282.508v.9a.6.6 0 0 0 .746.582l6.508-1.628a.6.6 0 0 1 .746.582v2.96a.6.6 0 0 1-.205.451l-2.16 1.89c-.458.402-.097 1.151.502 1.042l3.256-.591a.6.6 0 0 1 .214 0l3.256.591c.599.11.96-.64.502-1.041l-2.16-1.89a.6.6 0 0 1-.205-.452v-2.96a.6.6 0 0 1 .745-.582l.458.115M10.5 7.5v-3A1.5 1.5 0 0 1 12 3v0a1.5 1.5 0 0 1 1.5 1.5v4.667a.6.6 0 0 0 .282.51l7.436 4.647a.6.6 0 0 1 .282.508v.9a.6.6 0 0 1-.745.582l-2.006-.502M3 3l18 18"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAirplaneOff);
};
const ForwardRef = forwardRef(SvgAirplaneOff);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAirplaneRotation = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,37 +13,37 @@ function SvgAirplaneRotation(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M9.879 14.122a3 3 0 104.242-4.243 3 3 0 00-4.242 4.243z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={1.5}
d="M9.879 14.122a3 3 0 1 0 4.242-4.243 3 3 0 0 0-4.242 4.243Z"
/>
<Path
d="M4.37 16.773A8.956 8.956 0 013.002 12c0-4.236 2.934-7.792 6.878-8.747A8.998 8.998 0 0112 3.002M19.715 7.367A8.953 8.953 0 0120.999 12c0 3.806-2.368 7.063-5.709 8.378-1.02.4-2.13.621-3.29.621"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={1.5}
d="M4.37 16.773A8.956 8.956 0 0 1 3.002 12c0-4.236 2.934-7.792 6.878-8.747A8.998 8.998 0 0 1 12 3.002M19.715 7.367A8.953 8.953 0 0 1 20.999 12c0 3.806-2.368 7.063-5.709 8.378-1.02.4-2.13.621-3.29.621"
/>
<Path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={1.5}
d="M14.121 9.88s-.009-2.803 1.415-4.243c1.41-1.409 2.793-2.865 4.242-1.415 1.377 1.378.015 2.81-1.414 4.243-1.402 1.406-4.243 1.414-4.243 1.414ZM9.879 14.12s.009 2.803-1.415 4.243c-1.41 1.409-2.793 2.865-4.242 1.415-1.377-1.378-.015-2.81 1.414-4.243 1.402-1.406 4.243-1.414 4.243-1.414Z"
clipRule="evenodd"
d="M14.121 9.88s-.009-2.803 1.415-4.243c1.41-1.409 2.793-2.865 4.242-1.415 1.377 1.378.015 2.81-1.414 4.243-1.402 1.406-4.243 1.414-4.243 1.414zM9.879 14.12s.009 2.803-1.415 4.243c-1.41 1.409-2.793 2.865-4.242 1.415-1.377-1.378-.015-2.81 1.414-4.243 1.402-1.406 4.243-1.414 4.243-1.414z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAirplaneRotation);
};
const ForwardRef = forwardRef(SvgAirplaneRotation);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAirplay = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,25 +13,25 @@ function SvgAirplay(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M6 17H3V4h18v13h-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M6 17H3V4h18v13h-3"
/>
<Path
d="M8.622 19.067L11.5 14.75a.6.6 0 01.998 0l2.88 4.318a.6.6 0 01-.5.933H9.12a.6.6 0 01-.5-.933z"
stroke="currentColor"
d="M8.622 19.067 11.5 14.75a.6.6 0 0 1 .998 0l2.88 4.318a.6.6 0 0 1-.5.933H9.12a.6.6 0 0 1-.5-.933Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAirplay);
};
const ForwardRef = forwardRef(SvgAirplay);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlarm = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,27 @@ function SvgAlarm(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M17 13h-5V8M5 3.5L7 2M19 3.5L17 2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M17 13h-5V8M5 3.5 7 2M19 3.5 17 2"
/>
<Path
d="M12 22a9 9 0 100-18 9 9 0 000 18z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 22a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlarm);
};
const ForwardRef = forwardRef(SvgAlarm);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlbum = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,24 +13,24 @@ function SvgAlbum(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
d="M3 20.4V3.6a.6.6 0 0 1 .6-.6h16.8a.6.6 0 0 1 .6.6v16.8a.6.6 0 0 1-.6.6H3.6a.6.6 0 0 1-.6-.6Z"
/>
<Path
d="M12 15.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zm0 0V7.6a.6.6 0 01.6-.6H15"
stroke="currentColor"
strokeLinecap="round"
d="M12 15.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 0V7.6a.6.6 0 0 1 .6-.6H15"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlbum);
};
const ForwardRef = forwardRef(SvgAlbum);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlbumCarousel = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,24 +13,24 @@ function SvgAlbumCarousel(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M2 19.4V4.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6v14.8a.6.6 0 01-.6.6H2.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
d="M2 19.4V4.6a.6.6 0 0 1 .6-.6h14.8a.6.6 0 0 1 .6.6v14.8a.6.6 0 0 1-.6.6H2.6a.6.6 0 0 1-.6-.6Z"
/>
<Path
d="M22 6v12M11 14.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zm0 0V8.6a.6.6 0 01.6-.6H13"
stroke="currentColor"
strokeLinecap="round"
d="M22 6v12M11 14.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 0V8.6a.6.6 0 0 1 .6-.6H13"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlbumCarousel);
};
const ForwardRef = forwardRef(SvgAlbumCarousel);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlbumList = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,24 +13,24 @@ function SvgAlbumList(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M2 17.4V2.6a.6.6 0 01.6-.6h14.8a.6.6 0 01.6.6v14.8a.6.6 0 01-.6.6H2.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
d="M2 17.4V2.6a.6.6 0 0 1 .6-.6h14.8a.6.6 0 0 1 .6.6v14.8a.6.6 0 0 1-.6.6H2.6a.6.6 0 0 1-.6-.6Z"
/>
<Path
d="M8 22h13.4a.6.6 0 00.6-.6V8M11 12.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zm0 0V6.6a.6.6 0 01.6-.6H13"
stroke="currentColor"
strokeLinecap="round"
d="M8 22h13.4a.6.6 0 0 0 .6-.6V8M11 12.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 0V6.6a.6.6 0 0 1 .6-.6H13"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlbumList);
};
const ForwardRef = forwardRef(SvgAlbumList);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlbumOpen = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,32 +13,32 @@ function SvgAlbumOpen(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M15 2.2c4.564.927 8 4.962 8 9.8 0 4.838-3.436 8.873-8 9.8"
/>
<Path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M15 9c1.141.284 2 1.519 2 3s-.859 2.716-2 3M1 2h10v20H1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4 15.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zm0 0V7.6a.6.6 0 01.6-.6H7"
stroke="currentColor"
strokeLinecap="round"
d="M4 15.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm0 0V7.6a.6.6 0 0 1 .6-.6H7"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlbumOpen);
};
const ForwardRef = forwardRef(SvgAlbumOpen);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignBottomBox = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAlignBottomBox(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M4 8l.01.011M4 4l.01.011M8 4l.01.011M12 4l.01.011M16 4l.01.011M20 4l.01.011M20 8l.01.011M4 12v8h16v-8H4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m4 8 .01.011M4 4l.01.011M8 4l.01.011M12 4l.01.011M16 4l.01.011M20 4l.01.011M20 8l.01.011M4 12v8h16v-8H4Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignBottomBox);
};
const ForwardRef = forwardRef(SvgAlignBottomBox);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignCenter = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAlignCenter(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 6h18M3 14h18M6 10h12M6 18h12"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M3 6h18M3 14h18M6 10h12M6 18h12"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignCenter);
};
const ForwardRef = forwardRef(SvgAlignCenter);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignHorizontalCenters = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,25 +13,25 @@ function SvgAlignHorizontalCenters(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 22V2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 22V2"
/>
<Path
d="M19 16H5a2 2 0 01-2-2v-4a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2z"
stroke="currentColor"
d="M19 16H5a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignHorizontalCenters);
};
const ForwardRef = forwardRef(SvgAlignHorizontalCenters);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignHorizontalSpacing = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,25 +13,25 @@ function SvgAlignHorizontalSpacing(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 22V2M21 22V2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M3 22V2M21 22V2"
/>
<Path
d="M15 16H9a2 2 0 01-2-2v-4a2 2 0 012-2h6a2 2 0 012 2v4a2 2 0 01-2 2z"
stroke="currentColor"
d="M15 16H9a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignHorizontalSpacing);
};
const ForwardRef = forwardRef(SvgAlignHorizontalSpacing);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignJustify = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAlignJustify(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 6h18M3 10h18M3 14h18M3 18h18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M3 6h18M3 10h18M3 14h18M3 18h18"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignJustify);
};
const ForwardRef = forwardRef(SvgAlignJustify);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignLeft = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAlignLeft(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 10h14M3 6h18M3 18h14M3 14h18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M3 10h14M3 6h18M3 18h14M3 14h18"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignLeft);
};
const ForwardRef = forwardRef(SvgAlignLeft);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignLeftBox = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAlignLeftBox(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M16.004 3.995l-.011.01M20.004 3.995l-.011.01M20.004 7.995l-.011.01M20.004 11.995l-.011.01M20.004 15.995l-.011.01M20.004 19.995l-.011.01M16.004 19.995l-.011.01M12.006 3.995h-8v16h8v-16z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m16.004 3.995-.011.01M20.004 3.995l-.011.01M20.004 7.995l-.011.01M20.004 11.995l-.011.01M20.004 15.995l-.011.01M20.004 19.995l-.011.01M16.004 19.995l-.011.01M12.006 3.995h-8v16h8v-16Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignLeftBox);
};
const ForwardRef = forwardRef(SvgAlignLeftBox);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignRight = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAlignRight(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M7 10h14M3 6h18M7 18h14M3 14h18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M7 10h14M3 6h18M7 18h14M3 14h18"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignRight);
};
const ForwardRef = forwardRef(SvgAlignRight);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignRightBox = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAlignRightBox(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M8.006 20.005l.01-.01M4.006 20.005l.01-.01M4.006 16.005l.01-.01M4.006 12.005l.01-.01M4.006 8.005l.01-.01M4.006 4.005l.01-.01M8.006 4.005l.01-.01M12.006 20.005h8v-16h-8v16z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m8.006 20.005.01-.01M4.006 20.005l.01-.01M4.006 16.005l.01-.01M4.006 12.005l.01-.01M4.006 8.005l.01-.01M4.006 4.005l.01-.01M8.006 4.005l.01-.01M12.006 20.005h8v-16h-8v16Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignRightBox);
};
const ForwardRef = forwardRef(SvgAlignRightBox);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignTopBox = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAlignTopBox(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M4 16l.01-.011M4 20l.01-.011M8 20l.01-.011M12 20l.01-.011M16 20l.01-.011M20 20l.01-.011M20 16l.01-.011M4 12V4h16v8H4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m4 16 .01-.011M4 20l.01-.011M8 20l.01-.011M12 20l.01-.011M16 20l.01-.011M20 20l.01-.011M20 16l.01-.011M4 12V4h16v8H4Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignTopBox);
};
const ForwardRef = forwardRef(SvgAlignTopBox);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignVerticalCenters = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,25 +13,25 @@ function SvgAlignVerticalCenters(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M22 12H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M22 12H2"
/>
<Path
d="M8 19V5a2 2 0 012-2h4a2 2 0 012 2v14a2 2 0 01-2 2h-4a2 2 0 01-2-2z"
stroke="currentColor"
d="M8 19V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignVerticalCenters);
};
const ForwardRef = forwardRef(SvgAlignVerticalCenters);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAlignVerticalSpacing = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,25 +13,25 @@ function SvgAlignVerticalSpacing(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M22 3H2M22 21H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M22 3H2M22 21H2"
/>
<Path
d="M8 15V9a2 2 0 012-2h4a2 2 0 012 2v6a2 2 0 01-2 2h-4a2 2 0 01-2-2z"
stroke="currentColor"
d="M8 15V9a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignVerticalSpacing);
};
const ForwardRef = forwardRef(SvgAlignVerticalSpacing);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAngleTool = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,26 +13,26 @@ function SvgAngleTool(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M3 21V3h6v12h12v6H3z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M3 21V3h6v12h12v6H3Z"
/>
<Path
d="M13 19v2M9 19v2M3 7h2M3 11h2M3 15h2M17 19v2"
stroke="currentColor"
strokeLinecap="round"
d="M13 19v2M9 19v2M3 7h2M3 11h2M3 15h2M17 19v2"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAngleTool);
};
const ForwardRef = forwardRef(SvgAngleTool);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAntenna = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,28 +13,28 @@ function SvgAntenna(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 5a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
d="M16 1s1.5 1 1.5 3S16 7 16 7M8 1S6.5 2 6.5 4 8 7 8 7M7 23l1.111-4M17 23l-1.111-4M14.5 14L12 5l-2.5 9m5 0h-5m5 0l1.389 5M9.5 14l-1.389 5m0 0h7.778"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M16 1s1.5 1 1.5 3S16 7 16 7M8 1S6.5 2 6.5 4 8 7 8 7M7 23l1.111-4M17 23l-1.111-4M14.5 14 12 5l-2.5 9m5 0h-5m5 0 1.389 5M9.5 14l-1.389 5m0 0h7.778"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAntenna);
};
const ForwardRef = forwardRef(SvgAntenna);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAntennaOff = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,28 +13,28 @@ function SvgAntennaOff(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 5a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
<Path
d="M7 23l1.111-4M17 23l-1.111-4M9.5 14l-1.389 5M9.5 14h4m-4 0l.8-2.88M8.11 19h7.778m0 0l-1.184-4.264M11.444 7L12 5l1.047 3.768M3 3l18 18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="m7 23 1.111-4M17 23l-1.111-4M9.5 14l-1.389 5M9.5 14h4m-4 0 .8-2.88M8.11 19h7.778m0 0-1.184-4.264M11.444 7 12 5l1.047 3.768M3 3l18 18"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAntennaOff);
};
const ForwardRef = forwardRef(SvgAntennaOff);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAntennaSignal = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,28 +13,28 @@ function SvgAntennaSignal(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M17.5 8S19 9.5 19 12s-1.5 4-1.5 4M20.5 5S23 7.5 23 12s-2.5 7-2.5 7M6.5 8S5 9.5 5 12s1.5 4 1.5 4M3.5 5S1 7.5 1 12s2.5 7 2.5 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M17.5 8S19 9.5 19 12s-1.5 4-1.5 4M20.5 5S23 7.5 23 12s-2.5 7-2.5 7M6.5 8S5 9.5 5 12s1.5 4 1.5 4M3.5 5S1 7.5 1 12s2.5 7 2.5 7"
/>
<Path
d="M12 13a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAntennaSignal);
};
const ForwardRef = forwardRef(SvgAntennaSignal);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAntennaSignalTag = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,25 +13,25 @@ function SvgAntennaSignalTag(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M2 15V9a6 6 0 016-6h8a6 6 0 016 6v6a6 6 0 01-6 6H8a6 6 0 01-6-6z"
stroke="currentColor"
d="M2 15V9a6 6 0 0 1 6-6h8a6 6 0 0 1 6 6v6a6 6 0 0 1-6 6H8a6 6 0 0 1-6-6Z"
/>
<Path
d="M15 9s1 1.125 1 3-1 3-1 3M12 12.01l.01-.011M17 7s2 1.786 2 5-2 5-2 5M9 9s-1 1.125-1 3 1 3 1 3M7 7s-2 1.786-2 5 2 5 2 5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M15 9s1 1.125 1 3-1 3-1 3M12 12.01l.01-.011M17 7s2 1.786 2 5-2 5-2 5M9 9s-1 1.125-1 3 1 3 1 3M7 7s-2 1.786-2 5 2 5 2 5"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAntennaSignalTag);
};
const ForwardRef = forwardRef(SvgAntennaSignalTag);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAppNotification = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAppNotification(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M19 8a3 3 0 100-6 3 3 0 000 6zM21 12v3a6 6 0 01-6 6H9a6 6 0 01-6-6V9a6 6 0 016-6h3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M19 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM21 12v3a6 6 0 0 1-6 6H9a6 6 0 0 1-6-6V9a6 6 0 0 1 6-6h3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppNotification);
};
const ForwardRef = forwardRef(SvgAppNotification);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAppStore = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAppStore(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zM10.5 5.5l7 11M13.5 5.5l-7 11M13.5 14h-7M17.5 14H16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10ZM10.5 5.5l7 11M13.5 5.5l-7 11M13.5 14h-7M17.5 14H16"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppStore);
};
const ForwardRef = forwardRef(SvgAppStore);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAppWindow = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,25 +13,25 @@ function SvgAppWindow(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M2 19V5a2 2 0 012-2h16a2 2 0 012 2v14a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
d="M2 19V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2Z"
/>
<Path
d="M2 7h20M5 5.01l.01-.011M8 5.01l.01-.011M11 5.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M2 7h20M5 5.01l.01-.011M8 5.01l.01-.011M11 5.01l.01-.011"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppWindow);
};
const ForwardRef = forwardRef(SvgAppWindow);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgApple = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,25 +13,25 @@ function SvgApple(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12.147 21.265l-.147-.03-.147.03c-2.377.475-4.62.21-6.26-1.1C3.964 18.86 2.75 16.373 2.75 12c0-4.473 1.008-6.29 2.335-6.954.695-.347 1.593-.448 2.735-.317 1.141.132 2.458.488 3.943.983l.26.086.255-.102c2.482-.992 4.713-1.373 6.28-.641 1.47.685 2.692 2.538 2.692 6.945 0 4.374-1.213 6.86-2.843 8.164-1.64 1.312-3.883 1.576-6.26 1.1z"
stroke="currentColor"
d="m12.147 21.265-.147-.03-.147.03c-2.377.475-4.62.21-6.26-1.1C3.964 18.86 2.75 16.373 2.75 12c0-4.473 1.008-6.29 2.335-6.954.695-.347 1.593-.448 2.735-.317 1.141.132 2.458.488 3.943.983l.26.086.255-.102c2.482-.992 4.713-1.373 6.28-.641 1.47.685 2.692 2.538 2.692 6.945 0 4.374-1.213 6.86-2.843 8.164-1.64 1.312-3.883 1.576-6.26 1.1Z"
/>
<Path
d="M12 5.5C12 3 11 2 9 2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 5.5C12 3 11 2 9 2"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgApple);
};
const ForwardRef = forwardRef(SvgApple);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAppleHalf = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,32 +13,32 @@ function SvgAppleHalf(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12.147 21.265l-.147-.03-.147.03c-2.377.475-4.62.21-6.26-1.1C3.964 18.86 2.75 16.373 2.75 12c0-4.473 1.008-6.29 2.335-6.954.695-.347 1.593-.448 2.735-.317 1.141.132 2.458.488 3.943.983l.26.086.255-.102c2.482-.992 4.713-1.373 6.28-.641 1.47.685 2.692 2.538 2.692 6.945 0 4.374-1.213 6.86-2.843 8.164-1.64 1.312-3.883 1.576-6.26 1.1z"
stroke="currentColor"
d="m12.147 21.265-.147-.03-.147.03c-2.377.475-4.62.21-6.26-1.1C3.964 18.86 2.75 16.373 2.75 12c0-4.473 1.008-6.29 2.335-6.954.695-.347 1.593-.448 2.735-.317 1.141.132 2.458.488 3.943.983l.26.086.255-.102c2.482-.992 4.713-1.373 6.28-.641 1.47.685 2.692 2.538 2.692 6.945 0 4.374-1.213 6.86-2.843 8.164-1.64 1.312-3.883 1.576-6.26 1.1Z"
/>
<Path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 5.5C12 3 11 2 9 2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path d="M12 6v15" stroke="currentColor" />
<Path stroke="currentColor" d="M12 6v15" />
<Path
d="M15 12v2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M15 12v2"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleHalf);
};
const ForwardRef = forwardRef(SvgAppleHalf);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAppleHalfAlt = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,32 +13,32 @@ function SvgAppleHalfAlt(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M12.147 21.265l-.147-.03-.147.03c-2.377.475-4.62.21-6.26-1.1C3.964 18.86 2.75 16.373 2.75 12c0-4.473 1.008-6.29 2.335-6.954.695-.347 1.593-.448 2.735-.317 1.141.132 2.458.488 3.943.983l.26.086.255-.102c2.482-.992 4.713-1.373 6.28-.641 1.47.685 2.692 2.538 2.692 6.945 0 4.374-1.213 6.86-2.843 8.164-1.64 1.312-3.883 1.576-6.26 1.1z"
stroke="currentColor"
d="m12.147 21.265-.147-.03-.147.03c-2.377.475-4.62.21-6.26-1.1C3.964 18.86 2.75 16.373 2.75 12c0-4.473 1.008-6.29 2.335-6.954.695-.347 1.593-.448 2.735-.317 1.141.132 2.458.488 3.943.983l.26.086.255-.102c2.482-.992 4.713-1.373 6.28-.641 1.47.685 2.692 2.538 2.692 6.945 0 4.374-1.213 6.86-2.843 8.164-1.64 1.312-3.883 1.576-6.26 1.1Z"
/>
<Path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M12 5.5C12 3 11 2 9 2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path d="M12 6v15" stroke="currentColor" />
<Path stroke="currentColor" d="M12 6v15" />
<Path
d="M9 12v2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M9 12v2"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleHalfAlt);
};
const ForwardRef = forwardRef(SvgAppleHalfAlt);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAppleImac2021 = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAppleImac2021(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M2 15.5V2.6a.6.6 0 01.6-.6h18.8a.6.6 0 01.6.6v12.9m-20 0v1.9a.6.6 0 00.6.6h18.8a.6.6 0 00.6-.6v-1.9m-20 0h20M9 22h1.5m0 0v-4m0 4h3m0 0H15m-1.5 0v-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M2 15.5V2.6a.6.6 0 0 1 .6-.6h18.8a.6.6 0 0 1 .6.6v12.9m-20 0v1.9a.6.6 0 0 0 .6.6h18.8a.6.6 0 0 0 .6-.6v-1.9m-20 0h20M9 22h1.5m0 0v-4m0 4h3m0 0H15m-1.5 0v-4"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleImac2021);
};
const ForwardRef = forwardRef(SvgAppleImac2021);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAppleImac2021Side = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAppleImac2021Side(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M6 22h2m6 0H8m0 0l2-8.5m0 0L7 2m3 11.5l1.5 5.5M17 22h1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M6 22h2m6 0H8m0 0 2-8.5m0 0L7 2m3 11.5 1.5 5.5M17 22h1"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleImac2021Side);
};
const ForwardRef = forwardRef(SvgAppleImac2021Side);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAppleMac = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,23 +13,23 @@ function SvgAppleMac(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M16 2c.363 2.18-1.912 3.83-3.184 4.571-.375.219-.799-.06-.734-.489C12.299 4.64 13.094 2 16 2z"
stroke="currentColor"
d="M16 2c.363 2.18-1.912 3.83-3.184 4.571-.375.219-.799-.06-.734-.489C12.299 4.64 13.094 2 16 2Z"
/>
<Path
d="M9 6.5c.897 0 1.69.2 2.294.42.762.279 1.65.279 2.412 0A6.73 6.73 0 0116 6.5c1.085 0 2.465.589 3.5 1.767C16 11 17 15.5 20.269 16.692c-1.044 2.867-3.028 4.808-4.77 4.808-1.5 0-1.499-.7-2.999-.7s-1.5.7-3 .7c-2.5 0-5.5-4-5.5-9 0-4 3-6 5-6z"
stroke="currentColor"
d="M9 6.5c.897 0 1.69.2 2.294.42.762.279 1.65.279 2.412 0A6.73 6.73 0 0 1 16 6.5c1.085 0 2.465.589 3.5 1.767C16 11 17 15.5 20.269 16.692c-1.044 2.867-3.028 4.808-4.77 4.808-1.5 0-1.499-.7-2.999-.7s-1.5.7-3 .7c-2.5 0-5.5-4-5.5-9 0-4 3-6 5-6Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleMac);
};
const ForwardRef = forwardRef(SvgAppleMac);
export default ForwardRef;

View file

@ -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<React.Component<SvgProps>>
) {
const SvgAppleShortcuts = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,27 +13,24 @@ function SvgAppleShortcuts(
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<G
clipPath="url(#apple-shortcuts_svg__clip0_3190_17433)"
stroke="currentColor"
>
<Path d="M9.852 14.633l-6.2-3.946a2 2 0 010-3.374l6.2-3.946a4 4 0 014.296 0l6.2 3.946a2 2 0 010 3.374l-6.2 3.946a4 4 0 01-4.296 0z" />
<Path d="M18.286 12l2.063 1.313a2 2 0 010 3.374l-6.201 3.946a4 4 0 01-4.296 0l-6.2-3.946a2 2 0 010-3.374L5.714 12" />
<G stroke="currentColor" clipPath="url(#apple-shortcuts_svg__a)">
<Path d="m9.852 14.633-6.2-3.946a2 2 0 0 1 0-3.374l6.2-3.946a4 4 0 0 1 4.296 0l6.2 3.946a2 2 0 0 1 0 3.374l-6.2 3.946a4 4 0 0 1-4.296 0Z" />
<Path d="m18.286 12 2.063 1.313a2 2 0 0 1 0 3.374l-6.201 3.946a4 4 0 0 1-4.296 0l-6.2-3.946a2 2 0 0 1 0-3.374L5.714 12" />
</G>
<Defs>
<ClipPath id="apple-shortcuts_svg__clip0_3190_17433">
<ClipPath id="apple-shortcuts_svg__a">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleShortcuts);
};
const ForwardRef = forwardRef(SvgAppleShortcuts);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAppleSwift = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,21 +13,21 @@ function SvgAppleSwift(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M20.457 14.59c.446-1.437 1.451-6.75-5.93-11.49a.636.636 0 00-.808.1.593.593 0 00-.022.79c.03.036 2.75 3.35 1.783 7.135-1.673-1.151-8.324-6.423-8.324-6.423L11 11 3.862 6.4s5.046 6.195 8.134 8.525c-1.495.537-4.743 1.105-9.033-1.561a.637.637 0 00-.771.074.593.593 0 00-.106.743C2.229 14.42 5.668 20 12.939 20c1.995 0 3.16-.568 4.098-1.024.576-.279 1.031-.501 1.528-.501 1.236 0 2.047 1.227 2.054 1.238a.632.632 0 00.583.285.62.62 0 00.526-.37c.893-2.074-.645-4.269-1.271-5.039z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M20.457 14.59c.446-1.437 1.451-6.75-5.93-11.49a.636.636 0 0 0-.808.1.593.593 0 0 0-.022.79c.03.036 2.75 3.35 1.783 7.135-1.673-1.151-8.324-6.423-8.324-6.423L11 11 3.862 6.4s5.046 6.195 8.134 8.525c-1.495.537-4.743 1.105-9.033-1.561a.637.637 0 0 0-.771.074.593.593 0 0 0-.106.743C2.229 14.42 5.668 20 12.939 20c1.995 0 3.16-.568 4.098-1.024.576-.279 1.031-.501 1.528-.501 1.236 0 2.047 1.227 2.054 1.238a.632.632 0 0 0 .583.285.62.62 0 0 0 .526-.37c.893-2.074-.645-4.269-1.271-5.039Z"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleSwift);
};
const ForwardRef = forwardRef(SvgAppleSwift);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgAppleWallet = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -13,24 +12,24 @@ function SvgAppleWallet(
return (
<Svg
width="1.5em"
strokeWidth={1.5}
height="1.5em"
viewBox="0 0 24 24"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M19 21H5a2 2 0 01-2-2V5a2 2 0 012-2h14a2 2 0 012 2v14a2 2 0 01-2 2z"
stroke="currentColor"
d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2Z"
/>
<Path
d="M3 15h6.4c.331 0 .605.278.75.576.206.423.694.924 1.85.924 1.156 0 1.644-.5 1.85-.924.145-.298.419-.576.75-.576H21M3 7h18M3 11h18"
stroke="currentColor"
d="M3 15h6.4c.331 0 .605.278.75.576.206.423.694.924 1.85.924 1.156 0 1.644-.5 1.85-.924.145-.298.419-.576.75-.576H21M3 7h18M3 11h18"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleWallet);
};
const ForwardRef = forwardRef(SvgAppleWallet);
export default ForwardRef;

View file

@ -1,10 +1,9 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
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<React.Component<SvgProps>>
) {
const SvgArSymbol = (passedProps: SvgProps, ref: Ref<Svg>) => {
const context = React.useContext(IconoirContext);
const props = {
...context,
@ -14,25 +13,25 @@ function SvgArSymbol(
<Svg
width="1.5em"
height="1.5em"
fill="none"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
ref={ref}
{...props}
>
<Path
d="M2 15V9a6 6 0 016-6h8a6 6 0 016 6v6a6 6 0 01-6 6H8a6 6 0 01-6-6z"
stroke="currentColor"
d="M2 15V9a6 6 0 0 1 6-6h8a6 6 0 0 1 6 6v6a6 6 0 0 1-6 6H8a6 6 0 0 1-6-6Z"
/>
<Path
d="M13 15.5v-2.8m2.857 0c.714 0 2.143 0 2.143-2.1s-1.429-2.1-2.143-2.1H13v4.2m2.857 0H13m2.857 0L18 15.5M11 15.5L9.929 13M5 15.5L6.071 13m0 0L8 8.5 9.929 13M6.07 13H9.93"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
d="M13 15.5v-2.8m2.857 0c.714 0 2.143 0 2.143-2.1s-1.429-2.1-2.143-2.1H13v4.2m2.857 0H13m2.857 0L18 15.5M11 15.5 9.929 13M5 15.5 6.071 13m0 0L8 8.5 9.929 13M6.07 13H9.93"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgArSymbol);
};
const ForwardRef = forwardRef(SvgArSymbol);
export default ForwardRef;

Some files were not shown because too many files have changed in this diff Show more