Update build artifacts

This commit is contained in:
lucaburgio 2022-01-09 10:00:00 +00:00 committed by GitHub Actions
parent 592613238d
commit a723278a93
70 changed files with 2392 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgAxes(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M21 19.452l-9-6.61m0 0V3m0 9.843l-9 6.609M20.438 16.71L21 19.452 18.187 20M9.75 5.194L12 3l2.25 2.194M5.813 20L3 19.452l.563-2.742"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAxes);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgBarcode(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M5 19V5h1M12 19V5h1M9 5v14M16 5v14M19 5v14M6 5v14H5M13 5v14h-1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBarcode);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgConsumable(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M22.003 3v4.497A.503.503 0 0121.5 8v0a.52.52 0 01-.466-.3A10 10 0 0012.003 2c-5.185 0-9.449 3.947-9.95 9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M17 10v5a2 2 0 01-2 2H9a2 2 0 01-2-2v-5a2 2 0 012-2h6a2 2 0 012 2zM12 11V8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2.05 21v-4.497c0-.278.226-.503.504-.503v0c.2 0 .38.119.466.3a10.001 10.001 0 009.03 5.7c5.186 0 9.45-3.947 9.951-9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgConsumable);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDelivery(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M2 4h16a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2v-6M12 9V4M8 8H3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDelivery);
export default ForwardRef;

View file

@ -0,0 +1,47 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDeliveryTruck(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M8 19a2 2 0 100-4 2 2 0 000 4zM18 19a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M10.05 17H15V6.6a.6.6 0 00-.6-.6H1M5.65 17H3.6a.6.6 0 01-.6-.6v-4.9"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M2 9h4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M15 9h5.61a.6.6 0 01.548.356l1.79 4.028a.6.6 0 01.052.243V16.4a.6.6 0 01-.6.6h-1.9M15 17h1"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDeliveryTruck);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDishwasher(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7.5 21H5a2 2 0 01-2-2V5a2 2 0 012-2h14a2 2 0 012 2v14a2 2 0 01-2 2h-2.5M21 7H3M12 16v5m0 0h-2m2 0h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12 16c1.657 0 3-1.492 3-3.333V10H9v2.667C9 14.507 10.343 16 12 16zM18 5.01l.01-.011M15 5.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDishwasher);
export default ForwardRef;

View file

@ -0,0 +1,43 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgEmojiPuzzled(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M11.5 15.5s1.5-2 4.5-2 4.5 2 4.5 2M3 4c0-2.754 4-2.754 4 0 0 1.967-2 1.64-2 4M5 11.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M17.5 9a.5.5 0 110-1 .5.5 0 010 1zM10.5 9a.5.5 0 110-1 .5.5 0 010 1z"
fill="#000"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgEmojiPuzzled);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgGlobe(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 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"
/>
<Path
d="M2.5 12.5l5.5 2L7 18l1 3M17 20.5l-.5-2.5-2.5-1v-3.5l3-1 4.5.5M19 5.5L18.5 7l-3.5.5v3l2.5-1h2l2 1M2.5 10.5l2.5-2L7.5 8l2-3-1-2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGlobe);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgInternet(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10M13 2.05S16 6 16 12"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M11 21.95S8 18 8 12c0-6 3-9.95 3-9.95M2.63 15.5H12M2.63 8.5h18.74"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
clipRule="evenodd"
d="M21.879 17.917c.494.304.463 1.043-.045 1.101l-2.567.291-1.151 2.312c-.228.459-.933.234-1.05-.334l-1.255-6.116c-.099-.48.333-.782.75-.525l5.318 3.271z"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgInternet);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgIpAddress(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...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"
/>
<Path
d="M12 9v6M9 9v6M12 12h2.5a1.5 1.5 0 001.5-1.5v0A1.5 1.5 0 0014.5 9H12"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgIpAddress);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgKanbanBoard(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 3.6v16.8a.6.6 0 00.6.6h16.8a.6.6 0 00.6-.6V3.6a.6.6 0 00-.6-.6H3.6a.6.6 0 00-.6.6zM6 6v10M10 6v3M14 6v7M18 6v5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgKanbanBoard);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgNewTab(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...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"
/>
<Path
d="M2 7h20M9 14h3m3 0h-3m0 0v-3m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgNewTab);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgOpenBook(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 21V7a2 2 0 012-2h7.4a.6.6 0 01.6.6v13.114M12 21V7a2 2 0 00-2-2H2.6a.6.6 0 00-.6.6v13.114M14 19h8M10 19H2"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M12 21a2 2 0 012-2M12 21a2 2 0 00-2-2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgOpenBook);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPackage(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M20 6v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2h12a2 2 0 012 2zM12 9V4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPackage);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPackageLock(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M14 20H6a2 2 0 01-2-2V6a2 2 0 012-2h12a2 2 0 012 2v6M12 9V4M21.167 18.5h.233a.6.6 0 01.6.6v2.3a.6.6 0 01-.6.6h-3.8a.6.6 0 01-.6-.6v-2.3a.6.6 0 01.6-.6h.233m3.334 0v-1.75c0-.583-.334-1.75-1.667-1.75s-1.667 1.167-1.667 1.75v1.75m3.334 0h-3.334"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPackageLock);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPackages(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M10 15v4a2 2 0 01-2 2H4a2 2 0 01-2-2v-4a2 2 0 012-2h4a2 2 0 012 2zM16 5v4a2 2 0 01-2 2h-4a2 2 0 01-2-2V5a2 2 0 012-2h4a2 2 0 012 2zM22 15v4a2 2 0 01-2 2h-4a2 2 0 01-2-2v-4a2 2 0 012-2h4a2 2 0 012 2zM6 16v-3M12 6V3M18 16v-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPackages);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPcCheck(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 22h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2 17V4a2 2 0 012-2h16a2 2 0 012 2v13a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
/>
<Path
d="M9 10.5l2 2 4-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPcCheck);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPcFirewall(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 22h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2 17V4a2 2 0 012-2h16a2 2 0 012 2v13a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
/>
<Path
d="M12.485 6.121l3.06.765a.59.59 0 01.449.586C15.818 14 12 15 12 15s-3.818-1-3.994-7.528a.59.59 0 01.448-.586l3.06-.765a2 2 0 01.971 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPcFirewall);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPcNoEntry(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 22h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2 17V4a2 2 0 012-2h16a2 2 0 012 2v13a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
/>
<Path
d="M14.857 7.7a4 4 0 10-5.713 5.6m5.713-5.6a4 4 0 01-5.713 5.6m5.713-5.6l-5.714 5.6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPcNoEntry);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPcWarning(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 22h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2 17V4a2 2 0 012-2h16a2 2 0 012 2v13a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
/>
<Path
d="M12 7v3M12 14.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPcWarning);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPuzzle(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M4 14v4.4a.6.6 0 00.6.6H10M19 14v4.4a.6.6 0 01-.6.6H14M14 5h4.4a.6.6 0 01.6.6V10M4 10V5.6a.6.6 0 01.6-.6H10M14 19v1a2 2 0 11-4 0v-1M4 10h1a2 2 0 110 4H4M19 10h1a2 2 0 110 4h-1M14 5V4a2 2 0 10-4 0v1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPuzzle);
export default ForwardRef;

View file

@ -0,0 +1,29 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgQuote(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M10 12H5a1 1 0 01-1-1V7.5a1 1 0 011-1h4a1 1 0 011 1V12zm0 0c0 2.5-1 4-4 5.5M20 12h-5a1 1 0 01-1-1V7.5a1 1 0 011-1h4a1 1 0 011 1V12zm0 0c0 2.5-1 4-4 5.5"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgQuote);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgQuoteMessage(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 20.29V5a2 2 0 012-2h14a2 2 0 012 2v10a2 2 0 01-2 2H7.961a2 2 0 00-1.561.75l-2.331 2.914A.6.6 0 013 20.29z"
stroke="currentColor"
/>
<Path
d="M10.5 10h-2a1 1 0 01-1-1V8a1 1 0 011-1h1a1 1 0 011 1v2zm0 0c0 1-1 2-2 3M16.5 10h-2a1 1 0 01-1-1V8a1 1 0 011-1h1a1 1 0 011 1v2zm0 0c0 1-1 2-2 3"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgQuoteMessage);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from 'react';
import Svg, { SvgProps, G, Path, Defs, ClipPath } from 'react-native-svg';
function SvgRestart(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<G
clipPath="url(#restart_svg__clip0_1735_6488)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<Path d="M6.677 20.567C2.531 18.021.758 12.758 2.717 8.144 4.875 3.06 10.745.688 15.829 2.846c5.084 2.158 7.456 8.029 5.298 13.113a9.954 9.954 0 01-3.962 4.608" />
<Path d="M17 16v4.4a.6.6 0 00.6.6H22M12 22.01l.01-.011" />
</G>
<Defs>
<ClipPath id="restart_svg__clip0_1735_6488">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgRestart);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgScanBarcode(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M10 12V6h1M10 12h1V6M10 18v-3h1M11 15v3h-1M7 6v6M7 15v3M14 6v6M14 15v3M17 6v6M17 15v3M6 3H3v3M2 12h20M18 3h3v3M6 21H3v-3M18 21h3v-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgScanBarcode);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgSearchEngine(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...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"
/>
<Path
d="M13.856 13.85a3.429 3.429 0 10-4.855-4.842 3.429 3.429 0 004.855 4.842zm0 0L16 16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSearchEngine);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgThumbsDown(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M16.472 3.5H4.1a.6.6 0 00-.6.6v9.8a.6.6 0 00.6.6h2.768a2 2 0 011.715.971l2.71 4.517a1.631 1.631 0 002.961-1.308l-1.022-3.408a.6.6 0 01.574-.772h4.575a2 2 0 001.93-2.526l-1.91-7A2 2 0 0016.473 3.5z"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M7 14.5v-11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgThumbsDown);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgThumbsUp(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M16.472 20H4.1a.6.6 0 01-.6-.6V9.6a.6.6 0 01.6-.6h2.768a2 2 0 001.715-.971l2.71-4.517a1.631 1.631 0 012.961 1.308l-1.022 3.408a.6.6 0 00.574.772h4.575a2 2 0 011.93 2.526l-1.91 7A2 2 0 0116.473 20z"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M7 20V9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgThumbsUp);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgTruck(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 19a2 2 0 100-4 2 2 0 000 4zM17 19a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M14 17V6.6a.6.6 0 00-.6-.6H2.6a.6.6 0 00-.6.6v9.8a.6.6 0 00.6.6h2.05M14 17H9.05M14 9h5.61a.6.6 0 01.548.356l1.79 4.028a.6.6 0 01.052.243V16.4a.6.6 0 01-.6.6h-1.9M14 17h1"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTruck);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgTruckLength(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 16a2 2 0 100-4 2 2 0 000 4zM17 16a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M14 14V3.6a.6.6 0 00-.6-.6H2.6a.6.6 0 00-.6.6v9.8a.6.6 0 00.6.6h2.05M14 14H9.05M14 6h5.61a.6.6 0 01.548.356l1.79 4.028a.6.6 0 01.052.243V13.4a.6.6 0 01-.6.6h-1.9M14 14h1"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M3 20h17.75M3 20l1.75 1.75M3 20l1.75-1.75m16 1.75L19 21.75M20.75 20L19 18.25"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTruckLength);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgWash(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M22 5l-1.954 12.314A2 2 0 0118.07 19H5.93a2 2 0 01-1.975-1.686L2 5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M21 11c-2 0-4.5-3-4.5-3s-2.149 3-4.5 3-4.5-3-4.5-3S5 11 3 11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgWash);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgWashingMachine(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M21 4v16a2 2 0 01-2 2H5a2 2 0 01-2-2V4a2 2 0 012-2h14a2 2 0 012 2zM18 5.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12 19a6 6 0 100-12 6 6 0 000 12zM12 16a3 3 0 01-3-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgWashingMachine);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgWww(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3.338 17A9.996 9.996 0 0012 22a9.996 9.996 0 008.662-5M3.338 7A9.996 9.996 0 0112 2a9.996 9.996 0 018.662 5M13 21.95s1.408-1.853 2.295-4.95M13 2.05S14.408 3.902 15.295 7M11 21.95S9.592 20.098 8.705 17M11 2.05S9.592 3.902 8.705 7M9 10l1.5 5 1.5-5 1.5 5 1.5-5M1 10l1.5 5L4 10l1.5 5L7 10M17 10l1.5 5 1.5-5 1.5 5 1.5-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgWww);
export default ForwardRef;

View file

@ -74,9 +74,11 @@ export { default as Asana } from './Asana'
export { default as Atom } from './Atom'
export { default as Attachment } from './Attachment'
export { default as AutoFlash } from './AutoFlash'
export { default as Axes } from './Axes'
export { default as Backward15Seconds } from './Backward15Seconds'
export { default as Bag } from './Bag'
export { default as Bank } from './Bank'
export { default as Barcode } from './Barcode'
export { default as BasketBallAlt } from './BasketBallAlt'
export { default as BasketBall } from './BasketBall'
export { default as BasketballField } from './BasketballField'
@ -197,6 +199,7 @@ export { default as CompactDisc } from './CompactDisc'
export { default as CompressLines } from './CompressLines'
export { default as Compress } from './Compress'
export { default as Computer } from './Computer'
export { default as Consumable } from './Consumable'
export { default as ControlSlider } from './ControlSlider'
export { default as Cookie } from './Cookie'
export { default as Copy } from './Copy'
@ -247,8 +250,11 @@ export { default as DbWarning } from './DbWarning'
export { default as Db } from './Db'
export { default as DeCompress } from './DeCompress'
export { default as DeleteCircledOutline } from './DeleteCircledOutline'
export { default as DeliveryTruck } from './DeliveryTruck'
export { default as Delivery } from './Delivery'
export { default as DesignPencil } from './DesignPencil'
export { default as Dialpad } from './Dialpad'
export { default as Dishwasher } from './Dishwasher'
export { default as Display4K } from './Display4K'
export { default as DivideSelection1 } from './DivideSelection1'
export { default as DivideSelection2 } from './DivideSelection2'
@ -288,6 +294,7 @@ export { default as EmojiLookBottom } from './EmojiLookBottom'
export { default as EmojiLookLeft } from './EmojiLookLeft'
export { default as EmojiLookRight } from './EmojiLookRight'
export { default as EmojiLookTop } from './EmojiLookTop'
export { default as EmojiPuzzled } from './EmojiPuzzled'
export { default as EmojiQuite } from './EmojiQuite'
export { default as EmojiReally } from './EmojiReally'
export { default as EmojiSad } from './EmojiSad'
@ -395,6 +402,7 @@ export { default as GlassEmpty } from './GlassEmpty'
export { default as GlassHalfAlt } from './GlassHalfAlt'
export { default as GlassHalf } from './GlassHalf'
export { default as Glasses } from './Glasses'
export { default as Globe } from './Globe'
export { default as Golf } from './Golf'
export { default as GoogleCircled } from './GoogleCircled'
export { default as GoogleDocs } from './GoogleDocs'
@ -460,14 +468,17 @@ export { default as InfoEmpty } from './InfoEmpty'
export { default as InputField } from './InputField'
export { default as InputSearch } from './InputSearch'
export { default as Instagram } from './Instagram'
export { default as Internet } from './Internet'
export { default as IntersectAlt } from './IntersectAlt'
export { default as Intersect } from './Intersect'
export { default as IosSettings } from './IosSettings'
export { default as IpAddress } from './IpAddress'
export { default as IrisScan } from './IrisScan'
export { default as ItalicSquareOutline } from './ItalicSquareOutline'
export { default as Italic } from './Italic'
export { default as JournalPage } from './JournalPage'
export { default as Journal } from './Journal'
export { default as KanbanBoard } from './KanbanBoard'
export { default as KeyAltBack } from './KeyAltBack'
export { default as KeyAltMinus } from './KeyAltMinus'
export { default as KeyAltPlus } from './KeyAltPlus'
@ -610,6 +621,7 @@ export { default as NetworkAlt } from './NetworkAlt'
export { default as NetworkLeft } from './NetworkLeft'
export { default as NetworkRight } from './NetworkRight'
export { default as Network } from './Network'
export { default as NewTab } from './NewTab'
export { default as Nitrogen } from './Nitrogen'
export { default as NoBattery } from './NoBattery'
export { default as NoCoin } from './NoCoin'
@ -624,6 +636,7 @@ export { default as OffRounded } from './OffRounded'
export { default as OilIndustry } from './OilIndustry'
export { default as OnRounded } from './OnRounded'
export { default as OneFingerSelectHandGesture } from './OneFingerSelectHandGesture'
export { default as OpenBook } from './OpenBook'
export { default as OpenInBrowser } from './OpenInBrowser'
export { default as OpenInWindow } from './OpenInWindow'
export { default as OpenSelectHandGesture } from './OpenSelectHandGesture'
@ -632,6 +645,9 @@ export { default as OrangeHalf } from './OrangeHalf'
export { default as OrangeSliceAlt } from './OrangeSliceAlt'
export { default as OrangeSlice } from './OrangeSlice'
export { default as Oxygen } from './Oxygen'
export { default as PackageLock } from './PackageLock'
export { default as Package } from './Package'
export { default as Packages } from './Packages'
export { default as PageEdit } from './PageEdit'
export { default as PageFlip } from './PageFlip'
export { default as PageSearch } from './PageSearch'
@ -647,7 +663,11 @@ export { default as PasswordCursor } from './PasswordCursor'
export { default as PasswordError } from './PasswordError'
export { default as PasswordPass } from './PasswordPass'
export { default as PauseOutline } from './PauseOutline'
export { default as PcCheck } from './PcCheck'
export { default as PcFirewall } from './PcFirewall'
export { default as PcMouse } from './PcMouse'
export { default as PcNoEntry } from './PcNoEntry'
export { default as PcWarning } from './PcWarning'
export { default as PenConnectBluetooth } from './PenConnectBluetooth'
export { default as PenConnectWifi } from './PenConnectWifi'
export { default as PenTabletConnectUsb } from './PenTabletConnectUsb'
@ -696,10 +716,13 @@ export { default as PriorityDown } from './PriorityDown'
export { default as PriorityUp } from './PriorityUp'
export { default as ProfileCircled } from './ProfileCircled'
export { default as Prohibition } from './Prohibition'
export { default as Puzzle } from './Puzzle'
export { default as QrCode } from './QrCode'
export { default as QuestionMarkCircle } from './QuestionMarkCircle'
export { default as QuestionMark } from './QuestionMark'
export { default as QuestionSquareOutline } from './QuestionSquareOutline'
export { default as QuoteMessage } from './QuoteMessage'
export { default as Quote } from './Quote'
export { default as Rain } from './Rain'
export { default as ReceiveDollars } from './ReceiveDollars'
export { default as ReceiveEuros } from './ReceiveEuros'
@ -733,6 +756,7 @@ export { default as RepeatOnce } from './RepeatOnce'
export { default as Repeat } from './Repeat'
export { default as ReportColumns } from './ReportColumns'
export { default as Reports } from './Reports'
export { default as Restart } from './Restart'
export { default as RewindOutline } from './RewindOutline'
export { default as Rhombus } from './Rhombus'
export { default as RightRoundArrow } from './RightRoundArrow'
@ -753,6 +777,7 @@ export { default as SaveActionFloppy } from './SaveActionFloppy'
export { default as SaveFloppyDisk } from './SaveFloppyDisk'
export { default as ScaleFrameEnlarge } from './ScaleFrameEnlarge'
export { default as ScaleFrameReduce } from './ScaleFrameReduce'
export { default as ScanBarcode } from './ScanBarcode'
export { default as ScanQrCode } from './ScanQrCode'
export { default as Scanning } from './Scanning'
export { default as Scarf } from './Scarf'
@ -760,6 +785,7 @@ export { default as ScissorAlt } from './ScissorAlt'
export { default as Scissor } from './Scissor'
export { default as SeaAndSun } from './SeaAndSun'
export { default as SeaWaves } from './SeaWaves'
export { default as SearchEngine } from './SearchEngine'
export { default as SearchFont } from './SearchFont'
export { default as Search } from './Search'
export { default as SecurityPass } from './SecurityPass'
@ -873,6 +899,8 @@ export { default as TextAlt } from './TextAlt'
export { default as TextSize } from './TextSize'
export { default as Text } from './Text'
export { default as ThreeStars } from './ThreeStars'
export { default as ThumbsDown } from './ThumbsDown'
export { default as ThumbsUp } from './ThumbsUp'
export { default as Thunderstorm } from './Thunderstorm'
export { default as TikTok } from './TikTok'
export { default as TimerOff } from './TimerOff'
@ -898,6 +926,8 @@ export { default as TriangleFlagFull } from './TriangleFlagFull'
export { default as TriangleFlag } from './TriangleFlag'
export { default as Triangle } from './Triangle'
export { default as Trophy } from './Trophy'
export { default as TruckLength } from './TruckLength'
export { default as Truck } from './Truck'
export { default as Tunnel } from './Tunnel'
export { default as TvFix } from './TvFix'
export { default as TvIssue } from './TvIssue'
@ -951,6 +981,8 @@ export { default as Wallet } from './Wallet'
export { default as WarningCircledOutline } from './WarningCircledOutline'
export { default as WarningSquareOutline } from './WarningSquareOutline'
export { default as WarningTriangleOutline } from './WarningTriangleOutline'
export { default as Wash } from './Wash'
export { default as WashingMachine } from './WashingMachine'
export { default as WebWindowClose } from './WebWindowClose'
export { default as WebWindowEnergyConsumption } from './WebWindowEnergyConsumption'
export { default as WebWindow } from './WebWindow'
@ -966,6 +998,7 @@ export { default as Wind } from './Wind'
export { default as Windows } from './Windows'
export { default as WrapText } from './WrapText'
export { default as Wristwatch } from './Wristwatch'
export { default as Www } from './Www'
export { default as YenSquare } from './YenSquare'
export { default as Yen } from './Yen'
export { default as Yoga } from './Yoga'

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgAxes(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M21 19.452l-9-6.61m0 0V3m0 9.843l-9 6.609M20.438 16.71L21 19.452 18.187 20M9.75 5.194L12 3l2.25 2.194M5.813 20L3 19.452l.563-2.742"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAxes);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgBarcode(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M5 19V5h1M12 19V5h1M9 5v14M16 5v14M19 5v14M6 5v14H5M13 5v14h-1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgBarcode);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
function SvgConsumable(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M22.003 3v4.497A.503.503 0 0121.5 8v0a.52.52 0 01-.466-.3A10 10 0 0012.003 2c-5.185 0-9.449 3.947-9.95 9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M17 10v5a2 2 0 01-2 2H9a2 2 0 01-2-2v-5a2 2 0 012-2h6a2 2 0 012 2zM12 11V8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2.05 21v-4.497c0-.278.226-.503.504-.503v0c.2 0 .38.119.466.3a10.001 10.001 0 009.03 5.7c5.186 0 9.45-3.947 9.951-9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgConsumable);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgDelivery(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M2 4h16a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2v-6M12 9V4M8 8H3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDelivery);
export default ForwardRef;

View file

@ -0,0 +1,47 @@
import * as React from 'react';
function SvgDeliveryTruck(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M8 19a2 2 0 100-4 2 2 0 000 4zM18 19a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M10.05 17H15V6.6a.6.6 0 00-.6-.6H1M5.65 17H3.6a.6.6 0 01-.6-.6v-4.9"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M2 9h4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15 9h5.61a.6.6 0 01.548.356l1.79 4.028a.6.6 0 01.052.243V16.4a.6.6 0 01-.6.6h-1.9M15 17h1"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDeliveryTruck);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgDishwasher(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M7.5 21H5a2 2 0 01-2-2V5a2 2 0 012-2h14a2 2 0 012 2v14a2 2 0 01-2 2h-2.5M21 7H3M12 16v5m0 0h-2m2 0h2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 16c1.657 0 3-1.492 3-3.333V10H9v2.667C9 14.507 10.343 16 12 16zM18 5.01l.01-.011M15 5.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDishwasher);
export default ForwardRef;

View file

@ -0,0 +1,43 @@
import * as React from 'react';
function SvgEmojiPuzzled(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M2 12c0 5.523 4.477 10 10 10s10-4.477 10-10S17.523 2 12 2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M11.5 15.5s1.5-2 4.5-2 4.5 2 4.5 2M3 4c0-2.754 4-2.754 4 0 0 1.967-2 1.64-2 4M5 11.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M17.5 9a.5.5 0 110-1 .5.5 0 010 1zM10.5 9a.5.5 0 110-1 .5.5 0 010 1z"
fill="#000"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgEmojiPuzzled);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgGlobe(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 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"
/>
<path
d="M2.5 12.5l5.5 2L7 18l1 3M17 20.5l-.5-2.5-2.5-1v-3.5l3-1 4.5.5M19 5.5L18.5 7l-3.5.5v3l2.5-1h2l2 1M2.5 10.5l2.5-2L7.5 8l2-3-1-2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgGlobe);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from 'react';
function SvgInternet(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10M13 2.05S16 6 16 12"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M11 21.95S8 18 8 12c0-6 3-9.95 3-9.95M2.63 15.5H12M2.63 8.5h18.74"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
clipRule="evenodd"
d="M21.879 17.917c.494.304.463 1.043-.045 1.101l-2.567.291-1.151 2.312c-.228.459-.933.234-1.05-.334l-1.255-6.116c-.099-.48.333-.782.75-.525l5.318 3.271z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgInternet);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from 'react';
function SvgIpAddress(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...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"
/>
<path
d="M12 9v6M9 9v6M12 12h2.5a1.5 1.5 0 001.5-1.5v0A1.5 1.5 0 0014.5 9H12"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgIpAddress);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgKanbanBoard(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 3.6v16.8a.6.6 0 00.6.6h16.8a.6.6 0 00.6-.6V3.6a.6.6 0 00-.6-.6H3.6a.6.6 0 00-.6.6zM6 6v10M10 6v3M14 6v7M18 6v5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgKanbanBoard);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from 'react';
function SvgNewTab(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...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"
/>
<path
d="M2 7h20M9 14h3m3 0h-3m0 0v-3m0 3v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgNewTab);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
function SvgOpenBook(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M12 21V7a2 2 0 012-2h7.4a.6.6 0 01.6.6v13.114M12 21V7a2 2 0 00-2-2H2.6a.6.6 0 00-.6.6v13.114M14 19h8M10 19H2"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M12 21a2 2 0 012-2M12 21a2 2 0 00-2-2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgOpenBook);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgPackage(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M20 6v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2h12a2 2 0 012 2zM12 9V4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPackage);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgPackageLock(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M14 20H6a2 2 0 01-2-2V6a2 2 0 012-2h12a2 2 0 012 2v6M12 9V4M21.167 18.5h.233a.6.6 0 01.6.6v2.3a.6.6 0 01-.6.6h-3.8a.6.6 0 01-.6-.6v-2.3a.6.6 0 01.6-.6h.233m3.334 0v-1.75c0-.583-.334-1.75-1.667-1.75s-1.667 1.167-1.667 1.75v1.75m3.334 0h-3.334"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPackageLock);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgPackages(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M10 15v4a2 2 0 01-2 2H4a2 2 0 01-2-2v-4a2 2 0 012-2h4a2 2 0 012 2zM16 5v4a2 2 0 01-2 2h-4a2 2 0 01-2-2V5a2 2 0 012-2h4a2 2 0 012 2zM22 15v4a2 2 0 01-2 2h-4a2 2 0 01-2-2v-4a2 2 0 012-2h4a2 2 0 012 2zM6 16v-3M12 6V3M18 16v-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPackages);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from 'react';
function SvgPcCheck(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M7 22h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2 17V4a2 2 0 012-2h16a2 2 0 012 2v13a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
/>
<path
d="M9 10.5l2 2 4-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPcCheck);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from 'react';
function SvgPcFirewall(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M7 22h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2 17V4a2 2 0 012-2h16a2 2 0 012 2v13a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
/>
<path
d="M12.485 6.121l3.06.765a.59.59 0 01.449.586C15.818 14 12 15 12 15s-3.818-1-3.994-7.528a.59.59 0 01.448-.586l3.06-.765a2 2 0 01.971 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPcFirewall);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from 'react';
function SvgPcNoEntry(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M7 22h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2 17V4a2 2 0 012-2h16a2 2 0 012 2v13a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
/>
<path
d="M14.857 7.7a4 4 0 10-5.713 5.6m5.713-5.6a4 4 0 01-5.713 5.6m5.713-5.6l-5.714 5.6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPcNoEntry);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from 'react';
function SvgPcWarning(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M7 22h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2 17V4a2 2 0 012-2h16a2 2 0 012 2v13a2 2 0 01-2 2H4a2 2 0 01-2-2z"
stroke="currentColor"
/>
<path
d="M12 7v3M12 14.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPcWarning);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgPuzzle(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M4 14v4.4a.6.6 0 00.6.6H10M19 14v4.4a.6.6 0 01-.6.6H14M14 5h4.4a.6.6 0 01.6.6V10M4 10V5.6a.6.6 0 01.6-.6H10M14 19v1a2 2 0 11-4 0v-1M4 10h1a2 2 0 110 4H4M19 10h1a2 2 0 110 4h-1M14 5V4a2 2 0 10-4 0v1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPuzzle);
export default ForwardRef;

View file

@ -0,0 +1,29 @@
import * as React from 'react';
function SvgQuote(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M10 12H5a1 1 0 01-1-1V7.5a1 1 0 011-1h4a1 1 0 011 1V12zm0 0c0 2.5-1 4-4 5.5M20 12h-5a1 1 0 01-1-1V7.5a1 1 0 011-1h4a1 1 0 011 1V12zm0 0c0 2.5-1 4-4 5.5"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgQuote);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from 'react';
function SvgQuoteMessage(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 20.29V5a2 2 0 012-2h14a2 2 0 012 2v10a2 2 0 01-2 2H7.961a2 2 0 00-1.561.75l-2.331 2.914A.6.6 0 013 20.29z"
stroke="currentColor"
/>
<path
d="M10.5 10h-2a1 1 0 01-1-1V8a1 1 0 011-1h1a1 1 0 011 1v2zm0 0c0 1-1 2-2 3M16.5 10h-2a1 1 0 01-1-1V8a1 1 0 011-1h1a1 1 0 011 1v2zm0 0c0 1-1 2-2 3"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgQuoteMessage);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from 'react';
function SvgRestart(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<g
clipPath="url(#restart_svg__clip0_1735_6488)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M6.677 20.567C2.531 18.021.758 12.758 2.717 8.144 4.875 3.06 10.745.688 15.829 2.846c5.084 2.158 7.456 8.029 5.298 13.113a9.954 9.954 0 01-3.962 4.608" />
<path d="M17 16v4.4a.6.6 0 00.6.6H22M12 22.01l.01-.011" />
</g>
<defs>
<clipPath id="restart_svg__clip0_1735_6488">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgRestart);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgScanBarcode(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M10 12V6h1M10 12h1V6M10 18v-3h1M11 15v3h-1M7 6v6M7 15v3M14 6v6M14 15v3M17 6v6M17 15v3M6 3H3v3M2 12h20M18 3h3v3M6 21H3v-3M18 21h3v-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgScanBarcode);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from 'react';
function SvgSearchEngine(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...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"
/>
<path
d="M13.856 13.85a3.429 3.429 0 10-4.855-4.842 3.429 3.429 0 004.855 4.842zm0 0L16 16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgSearchEngine);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
function SvgThumbsDown(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M16.472 3.5H4.1a.6.6 0 00-.6.6v9.8a.6.6 0 00.6.6h2.768a2 2 0 011.715.971l2.71 4.517a1.631 1.631 0 002.961-1.308l-1.022-3.408a.6.6 0 01.574-.772h4.575a2 2 0 001.93-2.526l-1.91-7A2 2 0 0016.473 3.5z"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M7 14.5v-11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgThumbsDown);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from 'react';
function SvgThumbsUp(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M16.472 20H4.1a.6.6 0 01-.6-.6V9.6a.6.6 0 01.6-.6h2.768a2 2 0 001.715-.971l2.71-4.517a1.631 1.631 0 012.961 1.308l-1.022 3.408a.6.6 0 00.574.772h4.575a2 2 0 011.93 2.526l-1.91 7A2 2 0 0116.473 20z"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M7 20V9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgThumbsUp);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgTruck(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M7 19a2 2 0 100-4 2 2 0 000 4zM17 19a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M14 17V6.6a.6.6 0 00-.6-.6H2.6a.6.6 0 00-.6.6v9.8a.6.6 0 00.6.6h2.05M14 17H9.05M14 9h5.61a.6.6 0 01.548.356l1.79 4.028a.6.6 0 01.052.243V16.4a.6.6 0 01-.6.6h-1.9M14 17h1"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgTruck);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
function SvgTruckLength(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M7 16a2 2 0 100-4 2 2 0 000 4zM17 16a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M14 14V3.6a.6.6 0 00-.6-.6H2.6a.6.6 0 00-.6.6v9.8a.6.6 0 00.6.6h2.05M14 14H9.05M14 6h5.61a.6.6 0 01.548.356l1.79 4.028a.6.6 0 01.052.243V13.4a.6.6 0 01-.6.6h-1.9M14 14h1"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M3 20h17.75M3 20l1.75 1.75M3 20l1.75-1.75m16 1.75L19 21.75M20.75 20L19 18.25"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgTruckLength);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgWash(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M22 5l-1.954 12.314A2 2 0 0118.07 19H5.93a2 2 0 01-1.975-1.686L2 5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M21 11c-2 0-4.5-3-4.5-3s-2.149 3-4.5 3-4.5-3-4.5-3S5 11 3 11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgWash);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgWashingMachine(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M21 4v16a2 2 0 01-2 2H5a2 2 0 01-2-2V4a2 2 0 012-2h14a2 2 0 012 2zM18 5.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 19a6 6 0 100-12 6 6 0 000 12zM12 16a3 3 0 01-3-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgWashingMachine);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgWww(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3.338 17A9.996 9.996 0 0012 22a9.996 9.996 0 008.662-5M3.338 7A9.996 9.996 0 0112 2a9.996 9.996 0 018.662 5M13 21.95s1.408-1.853 2.295-4.95M13 2.05S14.408 3.902 15.295 7M11 21.95S9.592 20.098 8.705 17M11 2.05S9.592 3.902 8.705 7M9 10l1.5 5 1.5-5 1.5 5 1.5-5M1 10l1.5 5L4 10l1.5 5L7 10M17 10l1.5 5 1.5-5 1.5 5 1.5-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgWww);
export default ForwardRef;

View file

@ -74,9 +74,11 @@ export { default as Asana } from './Asana'
export { default as Atom } from './Atom'
export { default as Attachment } from './Attachment'
export { default as AutoFlash } from './AutoFlash'
export { default as Axes } from './Axes'
export { default as Backward15Seconds } from './Backward15Seconds'
export { default as Bag } from './Bag'
export { default as Bank } from './Bank'
export { default as Barcode } from './Barcode'
export { default as BasketBallAlt } from './BasketBallAlt'
export { default as BasketBall } from './BasketBall'
export { default as BasketballField } from './BasketballField'
@ -197,6 +199,7 @@ export { default as CompactDisc } from './CompactDisc'
export { default as CompressLines } from './CompressLines'
export { default as Compress } from './Compress'
export { default as Computer } from './Computer'
export { default as Consumable } from './Consumable'
export { default as ControlSlider } from './ControlSlider'
export { default as Cookie } from './Cookie'
export { default as Copy } from './Copy'
@ -247,8 +250,11 @@ export { default as DbWarning } from './DbWarning'
export { default as Db } from './Db'
export { default as DeCompress } from './DeCompress'
export { default as DeleteCircledOutline } from './DeleteCircledOutline'
export { default as DeliveryTruck } from './DeliveryTruck'
export { default as Delivery } from './Delivery'
export { default as DesignPencil } from './DesignPencil'
export { default as Dialpad } from './Dialpad'
export { default as Dishwasher } from './Dishwasher'
export { default as Display4K } from './Display4K'
export { default as DivideSelection1 } from './DivideSelection1'
export { default as DivideSelection2 } from './DivideSelection2'
@ -288,6 +294,7 @@ export { default as EmojiLookBottom } from './EmojiLookBottom'
export { default as EmojiLookLeft } from './EmojiLookLeft'
export { default as EmojiLookRight } from './EmojiLookRight'
export { default as EmojiLookTop } from './EmojiLookTop'
export { default as EmojiPuzzled } from './EmojiPuzzled'
export { default as EmojiQuite } from './EmojiQuite'
export { default as EmojiReally } from './EmojiReally'
export { default as EmojiSad } from './EmojiSad'
@ -395,6 +402,7 @@ export { default as GlassEmpty } from './GlassEmpty'
export { default as GlassHalfAlt } from './GlassHalfAlt'
export { default as GlassHalf } from './GlassHalf'
export { default as Glasses } from './Glasses'
export { default as Globe } from './Globe'
export { default as Golf } from './Golf'
export { default as GoogleCircled } from './GoogleCircled'
export { default as GoogleDocs } from './GoogleDocs'
@ -460,14 +468,17 @@ export { default as InfoEmpty } from './InfoEmpty'
export { default as InputField } from './InputField'
export { default as InputSearch } from './InputSearch'
export { default as Instagram } from './Instagram'
export { default as Internet } from './Internet'
export { default as IntersectAlt } from './IntersectAlt'
export { default as Intersect } from './Intersect'
export { default as IosSettings } from './IosSettings'
export { default as IpAddress } from './IpAddress'
export { default as IrisScan } from './IrisScan'
export { default as ItalicSquareOutline } from './ItalicSquareOutline'
export { default as Italic } from './Italic'
export { default as JournalPage } from './JournalPage'
export { default as Journal } from './Journal'
export { default as KanbanBoard } from './KanbanBoard'
export { default as KeyAltBack } from './KeyAltBack'
export { default as KeyAltMinus } from './KeyAltMinus'
export { default as KeyAltPlus } from './KeyAltPlus'
@ -610,6 +621,7 @@ export { default as NetworkAlt } from './NetworkAlt'
export { default as NetworkLeft } from './NetworkLeft'
export { default as NetworkRight } from './NetworkRight'
export { default as Network } from './Network'
export { default as NewTab } from './NewTab'
export { default as Nitrogen } from './Nitrogen'
export { default as NoBattery } from './NoBattery'
export { default as NoCoin } from './NoCoin'
@ -624,6 +636,7 @@ export { default as OffRounded } from './OffRounded'
export { default as OilIndustry } from './OilIndustry'
export { default as OnRounded } from './OnRounded'
export { default as OneFingerSelectHandGesture } from './OneFingerSelectHandGesture'
export { default as OpenBook } from './OpenBook'
export { default as OpenInBrowser } from './OpenInBrowser'
export { default as OpenInWindow } from './OpenInWindow'
export { default as OpenSelectHandGesture } from './OpenSelectHandGesture'
@ -632,6 +645,9 @@ export { default as OrangeHalf } from './OrangeHalf'
export { default as OrangeSliceAlt } from './OrangeSliceAlt'
export { default as OrangeSlice } from './OrangeSlice'
export { default as Oxygen } from './Oxygen'
export { default as PackageLock } from './PackageLock'
export { default as Package } from './Package'
export { default as Packages } from './Packages'
export { default as PageEdit } from './PageEdit'
export { default as PageFlip } from './PageFlip'
export { default as PageSearch } from './PageSearch'
@ -647,7 +663,11 @@ export { default as PasswordCursor } from './PasswordCursor'
export { default as PasswordError } from './PasswordError'
export { default as PasswordPass } from './PasswordPass'
export { default as PauseOutline } from './PauseOutline'
export { default as PcCheck } from './PcCheck'
export { default as PcFirewall } from './PcFirewall'
export { default as PcMouse } from './PcMouse'
export { default as PcNoEntry } from './PcNoEntry'
export { default as PcWarning } from './PcWarning'
export { default as PenConnectBluetooth } from './PenConnectBluetooth'
export { default as PenConnectWifi } from './PenConnectWifi'
export { default as PenTabletConnectUsb } from './PenTabletConnectUsb'
@ -696,10 +716,13 @@ export { default as PriorityDown } from './PriorityDown'
export { default as PriorityUp } from './PriorityUp'
export { default as ProfileCircled } from './ProfileCircled'
export { default as Prohibition } from './Prohibition'
export { default as Puzzle } from './Puzzle'
export { default as QrCode } from './QrCode'
export { default as QuestionMarkCircle } from './QuestionMarkCircle'
export { default as QuestionMark } from './QuestionMark'
export { default as QuestionSquareOutline } from './QuestionSquareOutline'
export { default as QuoteMessage } from './QuoteMessage'
export { default as Quote } from './Quote'
export { default as Rain } from './Rain'
export { default as ReceiveDollars } from './ReceiveDollars'
export { default as ReceiveEuros } from './ReceiveEuros'
@ -733,6 +756,7 @@ export { default as RepeatOnce } from './RepeatOnce'
export { default as Repeat } from './Repeat'
export { default as ReportColumns } from './ReportColumns'
export { default as Reports } from './Reports'
export { default as Restart } from './Restart'
export { default as RewindOutline } from './RewindOutline'
export { default as Rhombus } from './Rhombus'
export { default as RightRoundArrow } from './RightRoundArrow'
@ -753,6 +777,7 @@ export { default as SaveActionFloppy } from './SaveActionFloppy'
export { default as SaveFloppyDisk } from './SaveFloppyDisk'
export { default as ScaleFrameEnlarge } from './ScaleFrameEnlarge'
export { default as ScaleFrameReduce } from './ScaleFrameReduce'
export { default as ScanBarcode } from './ScanBarcode'
export { default as ScanQrCode } from './ScanQrCode'
export { default as Scanning } from './Scanning'
export { default as Scarf } from './Scarf'
@ -760,6 +785,7 @@ export { default as ScissorAlt } from './ScissorAlt'
export { default as Scissor } from './Scissor'
export { default as SeaAndSun } from './SeaAndSun'
export { default as SeaWaves } from './SeaWaves'
export { default as SearchEngine } from './SearchEngine'
export { default as SearchFont } from './SearchFont'
export { default as Search } from './Search'
export { default as SecurityPass } from './SecurityPass'
@ -873,6 +899,8 @@ export { default as TextAlt } from './TextAlt'
export { default as TextSize } from './TextSize'
export { default as Text } from './Text'
export { default as ThreeStars } from './ThreeStars'
export { default as ThumbsDown } from './ThumbsDown'
export { default as ThumbsUp } from './ThumbsUp'
export { default as Thunderstorm } from './Thunderstorm'
export { default as TikTok } from './TikTok'
export { default as TimerOff } from './TimerOff'
@ -898,6 +926,8 @@ export { default as TriangleFlagFull } from './TriangleFlagFull'
export { default as TriangleFlag } from './TriangleFlag'
export { default as Triangle } from './Triangle'
export { default as Trophy } from './Trophy'
export { default as TruckLength } from './TruckLength'
export { default as Truck } from './Truck'
export { default as Tunnel } from './Tunnel'
export { default as TvFix } from './TvFix'
export { default as TvIssue } from './TvIssue'
@ -951,6 +981,8 @@ export { default as Wallet } from './Wallet'
export { default as WarningCircledOutline } from './WarningCircledOutline'
export { default as WarningSquareOutline } from './WarningSquareOutline'
export { default as WarningTriangleOutline } from './WarningTriangleOutline'
export { default as Wash } from './Wash'
export { default as WashingMachine } from './WashingMachine'
export { default as WebWindowClose } from './WebWindowClose'
export { default as WebWindowEnergyConsumption } from './WebWindowEnergyConsumption'
export { default as WebWindow } from './WebWindow'
@ -966,6 +998,7 @@ export { default as Wind } from './Wind'
export { default as Windows } from './Windows'
export { default as WrapText } from './WrapText'
export { default as Wristwatch } from './Wristwatch'
export { default as Www } from './Www'
export { default as YenSquare } from './YenSquare'
export { default as Yen } from './Yen'
export { default as Yoga } from './Yoga'