Update build artifacts

This commit is contained in:
lucaburgio 2022-06-08 08:59:39 +00:00 committed by github-actions[bot]
parent 116c48a8b2
commit 9d21090f68
140 changed files with 4770 additions and 90 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,37 @@
import * as React from 'react';
import Svg, { SvgProps, G, Path, Defs, ClipPath } from 'react-native-svg';
function SvgAfricanTree(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<G
clipPath="url(#african-tree_svg__clip0_2032_8254)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<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" />
</G>
<Defs>
<ClipPath id="african-tree_svg__clip0_2032_8254">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAfricanTree);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgBed(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
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 2z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M3 8h8V6M21 8h-8V6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBed);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgBedReady(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M21 16V4a2 2 0 00-2-2H5a2 2 0 00-2 2v16a2 2 0 002 2h9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M3 8h8V6M21 8h-8V6M16 20l2 2 4-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBedReady);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgBitbucket(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M20.916 4.674l-1.85 14.8a.6.6 0 01-.596.526H5.53a.6.6 0 01-.596-.526l-1.85-14.8A.6.6 0 013.68 4h16.64a.6.6 0 01.596.674z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16.75 7.75l-.938 7.97a.6.6 0 01-.595.53H8.784a.6.6 0 01-.596-.53l-.859-7.3a.6.6 0 01.596-.67h8.825zm0 0h3.75"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBitbucket);
export default ForwardRef;

View file

@ -0,0 +1,37 @@
import * as React from 'react';
import Svg, { SvgProps, G, Path, Defs, ClipPath } from 'react-native-svg';
function SvgCleanWater(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<G
clipPath="url(#clean-water_svg__clip0_2032_8261)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<Path d="M13 21.57A8.132 8.132 0 016.25 7.75l5.326-5.326a.6.6 0 01.848 0L17.75 7.75A8.131 8.131 0 0119.74 16M16 20l2 2 4-4" />
</G>
<Defs>
<ClipPath id="clean-water_svg__clip0_2032_8261">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCleanWater);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgCrib(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 5v16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M3 16h18M3 7h18M18 16V7M14 16V7M10 16V7M6 16V7M3 19h18"
stroke="currentColor"
strokeLinejoin="round"
/>
<Path
d="M21 5v16M21 5a1 1 0 100-2 1 1 0 000 2zM3 5a1 1 0 100-2 1 1 0 000 2z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCrib);
export default ForwardRef;

View file

@ -9,27 +9,21 @@ function SvgCropRotateBl(
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M5.5 12v4a4 4 0 004 4h1"
d="M4 14v3a4 4 0 004 4h4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M3 14.5L5.5 12 8 14.5M11.5 4v8a1 1 0 001 1h8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M18.5 15V7a1 1 0 00-1-1h-8"
d="M1.5 16.5L4 14l2.5 2.5M20 11V5a1 1 0 00-1-1h-6M8 4h2M20 16v-2M10 2v11a1 1 0 001 1h11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -9,27 +9,21 @@ function SvgCropRotateBr(
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M11.748 18.25h4a4 4 0 004-4v-1"
d="M14 20h3a4 4 0 004-4v-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M14.248 20.75l-2.5-2.5 2.5-2.5M3.748 12.25h8a1 1 0 001-1v-8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M14.748 5.25h-8a1 1 0 00-1 1v8"
d="M16.5 22.5L14 20l2.5-2.5M14 11V5a1 1 0 00-1-1H7M2 4h2M14 16v-2M4 2v11a1 1 0 001 1h11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -9,27 +9,21 @@ function SvgCropRotateTl(
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M11.746 5.75h-4a4 4 0 00-4 4v1"
d="M10 4H7a4 4 0 00-4 4v4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M9.246 3.25l2.5 2.5-2.5 2.5M19.746 11.75h-8a1 1 0 00-1 1v8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M8.746 18.75h8a1 1 0 001-1v-8"
d="M7.5 1.5L10 4 7.5 6.5M20 17v-6a1 1 0 00-1-1h-6M8 10h2M20 22v-2M10 8v11a1 1 0 001 1h11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -9,27 +9,21 @@ function SvgCropRotateTr(
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M18 12V8a4 4 0 00-4-4h-1"
d="M20 10V7a4 4 0 00-4-4h-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M20.5 9.5L18 12l-2.5-2.5M12 20v-8a1 1 0 00-1-1H3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M5 9v8a1 1 0 001 1h8"
d="M22.5 7.5L20 10l-2.5-2.5M14 17v-6a1 1 0 00-1-1H7M2 10h2M14 22v-2M4 8v11a1 1 0 001 1h11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDepth(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M2 20h20M5 4h14M3 16.01l.01-.011M21.01 16.01l-.01-.011M4 12.01l.01-.011M20.01 12.01l-.01-.011M5 8.01l.01-.011M19.01 8.01L19 7.999M12 7v10m0-10l-1.5 1.5M12 7l1.5 1.5M12 17l-3-3m3 3l3-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDepth);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDesk(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M4 7v10M1 7h22M4 10h16M14 14h6M20 7v10M14 7v10M17 10v1M17 14v1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDesk);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDimmerSwitch(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M21 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"
/>
<Path
d="M12 18a6 6 0 100-12 6 6 0 000 12zM15.5 7.5L12 12"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDimmerSwitch);
export default ForwardRef;

View file

@ -0,0 +1,31 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDirectorChair(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M19 12L5 21M5 3v9M19 3v9M5 12l14 9M4 12h16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path d="M5 4h14M5 7h14" stroke="currentColor" strokeLinejoin="round" />
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDirectorChair);
export default ForwardRef;

View file

@ -0,0 +1,49 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDrone(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M13.463 17h-2.926a.6.6 0 01-.596-.534l-.867-7.8A.6.6 0 019.67 8h4.66a.6.6 0 01.596.666l-.867 7.8a.6.6 0 01-.596.534z"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8M19.5 19.5l-5-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDrone);
export default ForwardRef;

View file

@ -0,0 +1,59 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDroneChargeFull(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M14.25 14.75l.25-2.25.426-3.834A.6.6 0 0014.33 8H9.67a.6.6 0 00-.596.666l.867 7.8a.6.6 0 00.596.534H11"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M23 19v2M15 19v2M17 19v2M19 19v2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M13 22.4v-4.8a.6.6 0 01.6-.6h6.8a.6.6 0 01.6.6v4.8a.6.6 0 01-.6.6h-6.8a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneChargeFull);
export default ForwardRef;

View file

@ -0,0 +1,59 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDroneChargeHalf(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M14.25 14.75l.25-2.25.426-3.834A.6.6 0 0014.33 8H9.67a.6.6 0 00-.596.666l.867 7.8a.6.6 0 00.596.534H11"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M23 19v2M15 19v2M17 19v2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M13 22.4v-4.8a.6.6 0 01.6-.6h6.8a.6.6 0 01.6.6v4.8a.6.6 0 01-.6.6h-6.8a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneChargeHalf);
export default ForwardRef;

View file

@ -0,0 +1,59 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDroneChargeLow(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M14.25 14.75l.25-2.25.426-3.834A.6.6 0 0014.33 8H9.67a.6.6 0 00-.596.666l.867 7.8a.6.6 0 00.596.534H11"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M23 19v2M15 19v2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M13 22.4v-4.8a.6.6 0 01.6-.6h6.8a.6.6 0 01.6.6v4.8a.6.6 0 01-.6.6h-6.8a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneChargeLow);
export default ForwardRef;

View file

@ -0,0 +1,55 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDroneCheck(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M13.463 17h-2.926a.6.6 0 01-.596-.534l-.867-7.8A.6.6 0 019.67 8h4.66a.6.6 0 01.596.666l-.867 7.8a.6.6 0 01-.596.534z"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8M14.5 15.5l1.25 1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16 20l2 2 4-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneCheck);
export default ForwardRef;

View file

@ -0,0 +1,55 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDroneError(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M13.463 17h-2.926a.6.6 0 01-.596-.534l-.867-7.8A.6.6 0 019.67 8h4.66a.6.6 0 01.596.666l-.867 7.8a.6.6 0 01-.596.534z"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8M14.5 15.5l1.25 1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M18 22.243l2.121-2.122m0 0L22.243 18m-2.122 2.121L18 18m2.121 2.121l2.122 2.122"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneError);
export default ForwardRef;

View file

@ -0,0 +1,55 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDroneLanding(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M13.463 17h-2.926a.6.6 0 01-.596-.534l-.867-7.8A.6.6 0 019.67 8h4.66a.6.6 0 01.596.666l-.867 7.8a.6.6 0 01-.596.534z"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8M14.5 15.5l1.25 1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M19.5 16v6m0 0L17 19.5m2.5 2.5l2.5-2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneLanding);
export default ForwardRef;

View file

@ -0,0 +1,67 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDroneRefresh(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M14.5 12.5l.426-3.834A.6.6 0 0014.33 8H9.67a.6.6 0 00-.596.666l.867 7.8a.6.6 0 00.596.534H11"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M21.666 16.667C21.048 15.097 19.634 14 17.99 14c-1.758 0-3.252 1.255-3.793 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M19.995 16.772H21.4a.6.6 0 00.6-.6V14.55M14.334 19.333C14.952 20.903 16.366 22 18.01 22c1.758 0 3.252-1.255 3.793-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16.005 19.228H14.6a.6.6 0 00-.6.6v1.622"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneRefresh);
export default ForwardRef;

View file

@ -0,0 +1,55 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgDroneTakeOff(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M13.463 17h-2.926a.6.6 0 01-.596-.534l-.867-7.8A.6.6 0 019.67 8h4.66a.6.6 0 01.596.666l-.867 7.8a.6.6 0 01-.596.534z"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8M14.5 15.5l1.25 1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M19.5 22v-6m0 0L17 18.5m2.5-2.5l2.5 2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneTakeOff);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgEcologyBook(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M4 19V5a2 2 0 012-2h13.4a.6.6 0 01.6.6v13.114"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M10 14s.9-3.118 3-5M12.802 12.425l-.134.012a3.094 3.094 0 01-3.366-2.774 3.06 3.06 0 012.761-3.35l2.986-.28a.35.35 0 01.381.314l.255 2.58a3.194 3.194 0 01-2.883 3.498z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path d="M6 17h14M6 21h14" stroke="currentColor" strokeLinecap="round" />
<Path
d="M6 21a2 2 0 110-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgEcologyBook);
export default ForwardRef;

View file

@ -0,0 +1,43 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgFolderSettings(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M2.6 4h6.178a.6.6 0 01.39.144l3.164 2.712a.6.6 0 00.39.144H21.4a.6.6 0 01.6.6v2.8a.6.6 0 01-.6.6H2.6a.6.6 0 01-.6-.6V4.6a.6.6 0 01.6-.6zM22 10v4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2 10v9.4a.6.6 0 00.6.6H13M19 21a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M19 22a3 3 0 100-6 3 3 0 000 6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeDasharray="0.3 2"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgFolderSettings);
export default ForwardRef;

View file

@ -9,15 +9,21 @@ function SvgGitBranch(
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M18 9a3 3 0 100-6 3 3 0 000 6zM6 21a3 3 0 100-6 3 3 0 000 6zM6 15V3M9 18c3.5 0 9-2.1 9-8.5"
d="M18 8a2 2 0 100-4 2 2 0 000 4zM6 20a2 2 0 100-4 2 2 0 000 4zM6 16V3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M8 18h1c3.5 0 9-2.1 9-8.5V8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgGitCommand(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M21 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.6zM10 16l4-8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGitCommand);
export default ForwardRef;

View file

@ -9,15 +9,15 @@ function SvgGitCommit(
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 16a4 4 0 100-8 4 4 0 000 8zM8 12H3M16 12h5"
d="M12 15a3 3 0 100-6 3 3 0 000 6zM9 12H3M15 12h6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgGitCompare(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M18 21a2 2 0 100-4 2 2 0 000 4zM6 7a2 2 0 100-4 2 2 0 000 4zM18 17V7s0-2-2-2h-3M6 7v10s0 2 2 2h3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M15 7.5L12.5 5 15 2.5M8.5 16.5L11 19l-2.5 2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGitCompare);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgGitFork(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M17 7a2 2 0 100-4 2 2 0 000 4zM7 7a2 2 0 100-4 2 2 0 000 4zM7 21a2 2 0 100-4 2 2 0 000 4zM7 7v10M17 7v1c0 2.5-2 3-2 3l-6 2s-2 .5-2 3v1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGitFork);
export default ForwardRef;

View file

@ -9,15 +9,21 @@ function SvgGitMerge(
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M18 21a3 3 0 100-6 3 3 0 000 6zM6 9a3 3 0 100-6 3 3 0 000 6zm0 0v12M6 9c0 3.5 2.5 9 8.5 9"
d="M18 20a2 2 0 100-4 2 2 0 000 4zM6 21V7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M6 7v2c0 3.5 2.5 9 8.5 9H16M6 7a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgGitPullRequest(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M18 21a2 2 0 100-4 2 2 0 000 4zM6 7a2 2 0 100-4 2 2 0 000 4zM6 21a2 2 0 100-4 2 2 0 000 4zM6 7v10M18 17V7s0-2-2-2h-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M15 7.5L12.5 5 15 2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGitPullRequest);
export default ForwardRef;

View file

@ -0,0 +1,37 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgGreenBus(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 16.01l.01-.011M21 12H3v7a1 1 0 001 1h9M17 23s.9-3.118 3-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M19.802 21.424l-.134.013a3.094 3.094 0 01-3.366-2.774 3.06 3.06 0 012.761-3.35l2.986-.28a.35.35 0 01.381.314l.255 2.58a3.194 3.194 0 01-2.883 3.497zM21 8V6a4 4 0 00-4-4H7a4 4 0 00-4 4v2M7 8h10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path d="M4 20h4v2a1 1 0 01-1 1H5a1 1 0 01-1-1v-2z" fill="currentColor" />
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGreenBus);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgGreenTruck(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 17a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M14 15V4.6a.6.6 0 00-.6-.6H2.6a.6.6 0 00-.6.6v9.8a.6.6 0 00.6.6h2.05M14 15H9.05M14 7h5.61a.6.6 0 01.548.356l1.29 2.903a.6.6 0 01.052.243V12"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M17 23s.9-3.118 3-5M19.802 21.424l-.134.013a3.094 3.094 0 01-3.366-2.774 3.06 3.06 0 012.761-3.35l2.986-.28a.35.35 0 01.381.314l.255 2.58a3.194 3.194 0 01-2.883 3.497z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGreenTruck);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgGreenVehicle(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 10h8M6 14h1M15 14h1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M6 18H2v2.4a.6.6 0 00.6.6h2.8a.6.6 0 00.6-.6V18zm0 0h7M2 18v-6.59a2 2 0 01.162-.787l2.319-5.41A2 2 0 016.319 4h9.362a2 2 0 011.839 1.212l2.318 5.41a2 2 0 01.162.789V12.5"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M17 23s.9-3.118 3-5M19.802 21.424l-.134.013a3.094 3.094 0 01-3.366-2.774 3.06 3.06 0 012.761-3.35l2.986-.28a.35.35 0 01.381.314l.255 2.58a3.194 3.194 0 01-2.883 3.497z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGreenVehicle);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgHomeSale(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M14 9.846c-1-.923-3.667-1.23-3.667.616S14 11.385 14 13.23s-3 1.846-4 .615M12 14.702V16M12 9.113V8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgHomeSale);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgHomeSecure(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M14 12h.4a.6.6 0 01.6.6v2.8a.6.6 0 01-.6.6H9.6a.6.6 0 01-.6-.6v-2.8a.6.6 0 01.6-.6h.4m4 0v-2c0-.667-.4-2-2-2s-2 1.333-2 2v2m4 0h-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgHomeSecure);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgHomeShield(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M3 9.5L12 4l9 5.5M19 13v6.4a.6.6 0 01-.6.6H5.6a.6.6 0 01-.6-.6V13"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12.502 9.13l2.049.531c.264.069.45.309.441.582C14.826 15.232 12 16 12 16s-2.826-.768-2.992-5.757a.584.584 0 01.441-.582l2.05-.53a2 2 0 011.003 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgHomeShield);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgHomeTable(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M4 7v10M1 7h22M4 10h16M20 7v10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgHomeTable);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgHotAirBalloon(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M4 9.5c0 4.571 5.714 8 5.714 8h4.572S20 14.071 20 9.5s-3.582-8-8-8-8 3.429-8 8z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M9 2c-3 6 1 15.5 1 15.5M14.884 2c3 6-1 15.5-1 15.5"
stroke="currentColor"
strokeLinejoin="round"
/>
<Path
d="M13.4 23h-2.8a.6.6 0 01-.6-.6v-1.8a.6.6 0 01.6-.6h2.8a.6.6 0 01.6.6v1.8a.6.6 0 01-.6.6z"
stroke="currentColor"
strokeLinecap="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgHotAirBalloon);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgInfinite(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M14 9l-.25.375M10 9a5 5 0 100 6l.334-.5M10 9l4 6a5 5 0 100-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgInfinite);
export default ForwardRef;

View file

@ -0,0 +1,37 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgInputOutput(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M14 19a7 7 0 100-14 7 7 0 000 14z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M3 19V5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgInputOutput);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgLeaf(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7 21s.5-4.5 4-8.5M19.13 4.242l.594 6.175c.374 3.886-2.54 7.346-6.425 7.72-3.813.367-7.267-2.42-7.634-6.233a6.936 6.936 0 016.239-7.569l6.571-.632a.6.6 0 01.655.54z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgLeaf);
export default ForwardRef;

View file

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

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgNoLink(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M14 11.998C14 9.506 11.683 7 8.857 7H7.143C4.303 7 2 9.238 2 11.998c0 2.378 1.71 4.368 4 4.873a5.3 5.3 0 001.143.124M16.857 7c.393 0 .775.043 1.143.124 2.29.505 4 2.495 4 4.874a4.92 4.92 0 01-1.634 3.653M10 11.998c0 2.491 2.317 4.997 5.143 4.997M18 22.243l2.121-2.122m0 0L22.243 18m-2.122 2.121L18 18m2.121 2.121l2.122 2.122"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgNoLink);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgOrganicFood(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M9 18s.9-3.741 3-6M16.186 7.241l.374 3.89c.243 2.523-1.649 4.77-4.172 5.012-2.475.238-4.718-1.571-4.956-4.047a4.503 4.503 0 014.05-4.914l4.147-.4a.51.51 0 01.557.46z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<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"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgOrganicFood);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgOrganicFoodSquared(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M9 18s.9-3.741 3-6M16.186 7.241l.374 3.89c.243 2.523-1.649 4.77-4.172 5.012-2.475.238-4.718-1.571-4.956-4.047a4.503 4.503 0 014.05-4.914l4.147-.4a.51.51 0 01.557.46z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M21 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"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgOrganicFoodSquared);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPillow(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M21.04 12.283l.599 4.19a2 2 0 01-2.179 2.273L12.2 18.02a2.005 2.005 0 00-.398 0l-7.261.726a2 2 0 01-2.179-2.273l.599-4.19a2 2 0 000-.566l-.599-4.19A2 2 0 014.54 5.254l7.261.726a2 2 0 00.398 0l7.261-.726a2 2 0 012.179 2.273l-.599 4.19a2 2 0 000 .566zM21 6l-4 3M7 15l-4 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPillow);
export default ForwardRef;

View file

@ -9,15 +9,15 @@ function SvgPin(
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M11.572 12.5l-7.643 7.57M21.192 8.465a5.657 5.657 0 10-11.313 0 5.657 5.657 0 0011.313 0zM12.903 9.5a2.829 2.829 0 013.808-3.609"
d="M9.5 14.5L3 21M5 9.485l9.193 9.193 1.697-1.697-.393-3.787 5.51-4.673-5.85-5.85-4.674 5.51-3.786-.393L5 9.485z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgPineTree(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 2L7 6.643S10.042 7 12 7c1.958 0 5-.357 5-.357L12 2zM8.5 7L5 10.94S7.625 12 12 12s7-1.06 7-1.06L15.5 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M6.5 11.5L3 15.523S5.7 18 12 18s9-2.477 9-2.477L17.5 11.5M12 22v-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPineTree);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgRemoveLink(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M7.143 16.995c-.393 0-.775-.043-1.143-.123-2.29-.506-4-2.496-4-4.874 0-2.714 2.226-4.923 5-4.996M13.318 9.634A5.517 5.517 0 0011 7.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16.857 7c.393 0 .775.043 1.143.124 2.29.505 4 2.495 4 4.874 0 2.76-2.302 4.997-5.143 4.997h-1.714c-2.826 0-5.143-2.506-5.143-4.997 0 0 0-.998.5-1.498M3 3l18 18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgRemoveLink);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgRemovePin(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M9.5 14.5L3 21M7.676 7.89l-.979-.102L5 9.485l9.193 9.193 1.697-1.697-.102-.981m-4.303-9l3.672-4.329 5.85 5.85-4.308 3.654M3 3l18 18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgRemovePin);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgRepository(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M4 19V5a2 2 0 012-2h13.4a.6.6 0 01.6.6v13.114"
stroke="currentColor"
strokeLinecap="round"
/>
<Path
d="M15 17v5l2.5-1.6L20 22v-5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path d="M6 17h14" stroke="currentColor" strokeLinecap="round" />
<Path
d="M6 17a2 2 0 100 4h5.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgRepository);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgRocket(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M16.061 10.404L14 17h-4l-2.061-6.596a6 6 0 01.998-5.484l2.59-3.315a.6.6 0 01.946 0l2.59 3.315a6 6 0 01.998 5.484zM10 20c0 2 2 3 2 3s2-1 2-3M8.5 12.5C5 15 7 19 7 19l3-2M15.931 12.5c3.5 2.5 1.5 6.5 1.5 6.5l-3-2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12 11a2 2 0 110-4 2 2 0 010 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgRocket);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgRoundedMirror(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M20 10v4a8 8 0 11-16 0v-4a8 8 0 1116 0zM17.5 4.5L13 8M19 7l-7.5 6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgRoundedMirror);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgSleeperChair(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M4 18v3M5 10V5a2 2 0 012-2h10a2 2 0 012 2v5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M19.5 10a2.5 2.5 0 00-2.5 2.5V14H7v-1.5a2.5 2.5 0 10-3 2.45V18h16v-3.05a2.5 2.5 0 00-.5-4.95zM20 18v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSleeperChair);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgSmallLamp(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M6.872 3.428l-2.64 8.8a.6.6 0 00.574.772h14.388a.6.6 0 00.574-.772l-2.64-8.8A.6.6 0 0016.554 3H7.446a.6.6 0 00-.574.428zM12 17v-2M8.6 21h6.8c.331 0 .595-.268.542-.596C15.763 19.29 15.026 17 12 17c-3.026 0-3.763 2.29-3.942 3.404-.053.328.21.596.542.596z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSmallLamp);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgSmallLampAlt(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M6.872 3.428l-2.64 8.8a.6.6 0 00.574.772h14.388a.6.6 0 00.574-.772l-2.64-8.8A.6.6 0 0016.554 3H7.446a.6.6 0 00-.574.428zM8 15v-2M8 21h8m-4-6v6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSmallLampAlt);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgSofa(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M2 16v3M4 9V7a2 2 0 012-2h12a2 2 0 012 2v2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M20 9a2 2 0 00-2 2v2H6v-2a2 2 0 10-4 0v6h20v-6a2 2 0 00-2-2zM22 16v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSofa);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgSoil(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M2 4h20M3 8.01l.01-.011M3 16.01l.01-.011M6 12.01l.01-.011M6 20.01l.01-.011M9 8.01l.01-.011M9 16.01l.01-.011M12 12.01l.01-.011M12 20.01l.01-.011M15 8.01l.01-.011M15 16.01l.01-.011M18 12.01l.01-.011M18 20.01l.01-.011M21 8.01l.01-.011M21 16.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSoil);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgSoilAlt(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M2 12h4M17 12h5M3 20.01l.01-.011M6 16.01l.01-.011M9 20.01l.01-.011M12 16.01l.01-.011M15 20.01l.01-.011M18 16.01l.01-.011M21 20.01l.01-.011M9 13s.9-3.741 3-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M16.186 2.241l.374 3.89c.243 2.523-1.649 4.77-4.172 5.012-2.475.238-4.718-1.571-4.956-4.047a4.503 4.503 0 014.05-4.914l4.147-.4a.51.51 0 01.557.46z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSoilAlt);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgSort(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M10 14H2M8 10H2M6 6H2M12 18H2M19 20V4m0 16l3-3m-3 3l-3-3m3-13l3 3m-3-3l-3 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSort);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgTree(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M12 22v-8m0-4v4m0 0l4-2M17 7A5 5 0 007 7M12 18H7.5a5.5 5.5 0 110-11H9M12 18h4.5A5.5 5.5 0 0017 7.022"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTree);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgTwoSeaterSofa(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M2 16v3M12 13V7a2 2 0 012-2h4a2 2 0 012 2v2M12 13V7a2 2 0 00-2-2H6a2 2 0 00-2 2v2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M20 9a2 2 0 00-2 2v2H6v-2a2 2 0 10-4 0v6h20v-6a2 2 0 00-2-2zM22 16v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgTwoSeaterSofa);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgVegan(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M15 11.063C12.53 13.65 10.059 20 10.059 20S6.529 11.062 3 9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M20.496 5.577l.426 4.424c.276 2.87-1.875 5.425-4.745 5.702-2.816.27-5.367-1.788-5.638-4.604a5.122 5.122 0 014.608-5.59l4.716-.454a.58.58 0 01.633.522z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgVegan);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgVeganRounded(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M14.5 11.5C12.75 13.382 11 18 11 18s-2.5-6.5-5-8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M18.015 7.73l.297 3.08c.192 1.998-1.306 3.777-3.304 3.97-1.96.188-3.736-1.245-3.925-3.205a3.566 3.566 0 013.208-3.892l3.284-.316a.404.404 0 01.44.363z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<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"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgVeganRounded);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgVeganSquared(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M21 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"
/>
<Path
d="M14.5 10.5C12.75 12.382 11 17 11 17s-2.5-6.5-5-8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M18.015 6.73l.297 3.08c.192 1.998-1.306 3.777-3.304 3.97-1.96.188-3.736-1.245-3.925-3.205a3.566 3.566 0 013.208-3.892l3.284-.316a.404.404 0 01.44.363z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgVeganSquared);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgWateringSoil(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M2 12h2M20 12h2M3 20.01l.01-.011M6 16.01l.01-.011M9 20.01l.01-.011M15 20.01l.01-.011M18 16.01l.01-.011M21 20.01l.01-.011M12.396 3.396L15.5 6.5a4.95 4.95 0 11-7 0l3.104-3.104a.56.56 0 01.792 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgWateringSoil);
export default ForwardRef;

View file

@ -35,6 +35,7 @@ export { default as AddSelection } from './AddSelection'
export { default as AddSquare } from './AddSquare'
export { default as AddToCart } from './AddToCart'
export { default as AddUser } from './AddUser'
export { default as AfricanTree } from './AfricanTree'
export { default as AirConditioner } from './AirConditioner'
export { default as AirplaneHelix45Deg } from './AirplaneHelix45Deg'
export { default as AirplaneHelix } from './AirplaneHelix'
@ -112,6 +113,8 @@ export { default as BatteryWarning } from './BatteryWarning'
export { default as Bbq } from './Bbq'
export { default as BeachBagBig } from './BeachBagBig'
export { default as BeachBag } from './BeachBag'
export { default as BedReady } from './BedReady'
export { default as Bed } from './Bed'
export { default as BehanceSquared } from './BehanceSquared'
export { default as Behance } from './Behance'
export { default as BellNotification } from './BellNotification'
@ -124,6 +127,7 @@ export { default as BinHalf } from './BinHalf'
export { default as BinMinus } from './BinMinus'
export { default as Bin } from './Bin'
export { default as Bishop } from './Bishop'
export { default as Bitbucket } from './Bitbucket'
export { default as BluetoothRounded } from './BluetoothRounded'
export { default as Bluetooth } from './Bluetooth'
export { default as BoldSquareOutline } from './BoldSquareOutline'
@ -198,6 +202,7 @@ export { default as Church } from './Church'
export { default as CinemaOld } from './CinemaOld'
export { default as Circle } from './Circle'
export { default as City } from './City'
export { default as CleanWater } from './CleanWater'
export { default as ClipboardCheck } from './ClipboardCheck'
export { default as ClockOutline } from './ClockOutline'
export { default as Closet } from './Closet'
@ -241,6 +246,7 @@ export { default as CrackedEgg } from './CrackedEgg'
export { default as CreativeCommons } from './CreativeCommons'
export { default as CreditCard2 } from './CreditCard2'
export { default as CreditCard } from './CreditCard'
export { default as Crib } from './Crib'
export { default as CropRotateBl } from './CropRotateBl'
export { default as CropRotateBr } from './CropRotateBr'
export { default as CropRotateTl } from './CropRotateTl'
@ -280,7 +286,9 @@ 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 Depth } from './Depth'
export { default as DesignPencil } from './DesignPencil'
export { default as Desk } from './Desk'
export { default as Dialpad } from './Dialpad'
export { default as DiceFive } from './DiceFive'
export { default as DiceFour } from './DiceFour'
@ -288,6 +296,8 @@ export { default as DiceOne } from './DiceOne'
export { default as DiceSix } from './DiceSix'
export { default as DiceThree } from './DiceThree'
export { default as DiceTwo } from './DiceTwo'
export { default as DimmerSwitch } from './DimmerSwitch'
export { default as DirectorChair } from './DirectorChair'
export { default as Discord } from './Discord'
export { default as Dishwasher } from './Dishwasher'
export { default as Display4K } from './Display4K'
@ -309,6 +319,15 @@ export { default as Download } from './Download'
export { default as DragHandGesture } from './DragHandGesture'
export { default as Drawer } from './Drawer'
export { default as Dribbble } from './Dribbble'
export { default as DroneChargeFull } from './DroneChargeFull'
export { default as DroneChargeHalf } from './DroneChargeHalf'
export { default as DroneChargeLow } from './DroneChargeLow'
export { default as DroneCheck } from './DroneCheck'
export { default as DroneError } from './DroneError'
export { default as DroneLanding } from './DroneLanding'
export { default as DroneRefresh } from './DroneRefresh'
export { default as DroneTakeOff } from './DroneTakeOff'
export { default as Drone } from './Drone'
export { default as DropletHalf } from './DropletHalf'
export { default as Droplet } from './Droplet'
export { default as EaseCurveControlPoints } from './EaseCurveControlPoints'
@ -317,6 +336,7 @@ export { default as EaseInOut } from './EaseInOut'
export { default as EaseIn } from './EaseIn'
export { default as EaseOutControlPoint } from './EaseOutControlPoint'
export { default as EaseOut } from './EaseOut'
export { default as EcologyBook } from './EcologyBook'
export { default as EditPencil } from './EditPencil'
export { default as Edit } from './Edit'
export { default as Egg } from './Egg'
@ -414,6 +434,7 @@ export { default as Flower } from './Flower'
export { default as Fluorine } from './Fluorine'
export { default as Fog } from './Fog'
export { default as FolderAlert } from './FolderAlert'
export { default as FolderSettings } from './FolderSettings'
export { default as Folder } from './Folder'
export { default as FontSize } from './FontSize'
export { default as FootballBall } from './FootballBall'
@ -436,8 +457,12 @@ export { default as GasTank } from './GasTank'
export { default as Gas } from './Gas'
export { default as Gift } from './Gift'
export { default as GitBranch } from './GitBranch'
export { default as GitCommand } from './GitCommand'
export { default as GitCommit } from './GitCommit'
export { default as GitCompare } from './GitCompare'
export { default as GitFork } from './GitFork'
export { default as GitMerge } from './GitMerge'
export { default as GitPullRequest } from './GitPullRequest'
export { default as GitHub } from './GitHub'
export { default as GitHubOutline } from './GitHubOutline'
export { default as GitLabFull } from './GitLabFull'
@ -459,6 +484,9 @@ export { default as Google } from './Google'
export { default as Gps } from './Gps'
export { default as GraphDown } from './GraphDown'
export { default as GraphUp } from './GraphUp'
export { default as GreenBus } from './GreenBus'
export { default as GreenTruck } from './GreenTruck'
export { default as GreenVehicle } from './GreenVehicle'
export { default as GridAdd } from './GridAdd'
export { default as GridMinus } from './GridMinus'
export { default as GridRemove } from './GridRemove'
@ -494,22 +522,29 @@ export { default as HomeAltSlimHoriz } from './HomeAltSlimHoriz'
export { default as HomeAltSlim } from './HomeAltSlim'
export { default as HomeAlt } from './HomeAlt'
export { default as HomeHospital } from './HomeHospital'
export { default as HomeSale } from './HomeSale'
export { default as HomeSecure } from './HomeSecure'
export { default as HomeShield } from './HomeShield'
export { default as HomeSimpleDoor } from './HomeSimpleDoor'
export { default as HomeSimple } from './HomeSimple'
export { default as HomeTable } from './HomeTable'
export { default as HomeUser } from './HomeUser'
export { default as Home } from './Home'
export { default as HorizDistributionLeft } from './HorizDistributionLeft'
export { default as HorizDistributionRight } from './HorizDistributionRight'
export { default as HospitalSign } from './HospitalSign'
export { default as Hospital } from './Hospital'
export { default as HotAirBalloon } from './HotAirBalloon'
export { default as Hourglass } from './Hourglass'
export { default as Html5 } from './Html5'
export { default as Hydrogen } from './Hydrogen'
export { default as Iconoir } from './Iconoir'
export { default as Import } from './Import'
export { default as Industry } from './Industry'
export { default as Infinite } from './Infinite'
export { default as InfoEmpty } from './InfoEmpty'
export { default as InputField } from './InputField'
export { default as InputOutput } from './InputOutput'
export { default as InputSearch } from './InputSearch'
export { default as Instagram } from './Instagram'
export { default as Internet } from './Internet'
@ -547,6 +582,7 @@ export { default as LayoutLeft } from './LayoutLeft'
export { default as LayoutRight } from './LayoutRight'
export { default as LeaderboardStar } from './LeaderboardStar'
export { default as Leaderboard } from './Leaderboard'
export { default as Leaf } from './Leaf'
export { default as LeftRoundArrow } from './LeftRoundArrow'
export { default as Lens } from './Lens'
export { default as Lifebelt } from './Lifebelt'
@ -626,6 +662,7 @@ export { default as MinusHexagon } from './MinusHexagon'
export { default as MinusPinAlt } from './MinusPinAlt'
export { default as MinusSquare } from './MinusSquare'
export { default as Minus } from './Minus'
export { default as Mirror } from './Mirror'
export { default as MissingFont } from './MissingFont'
export { default as ModernTv4K } from './ModernTv4K'
export { default as ModernTv } from './ModernTv'
@ -674,6 +711,7 @@ export { default as NoAccessWindow } from './NoAccessWindow'
export { default as NoBattery } from './NoBattery'
export { default as NoCoin } from './NoCoin'
export { default as NoCreditCard } from './NoCreditCard'
export { default as NoLink } from './NoLink'
export { default as NoLock } from './NoLock'
export { default as NoSmokingCircled } from './NoSmokingCircled'
export { default as NoSmoking } from './NoSmoking'
@ -695,6 +733,8 @@ export { default as OpenVpn } from './OpenVpn'
export { default as OrangeHalf } from './OrangeHalf'
export { default as OrangeSliceAlt } from './OrangeSliceAlt'
export { default as OrangeSlice } from './OrangeSlice'
export { default as OrganicFoodSquared } from './OrganicFoodSquared'
export { default as OrganicFood } from './OrganicFood'
export { default as OrthogonalView } from './OrthogonalView'
export { default as Oxygen } from './Oxygen'
export { default as PackageLock } from './PackageLock'
@ -746,8 +786,10 @@ export { default as PhonePaused } from './PhonePaused'
export { default as PhoneRemove } from './PhoneRemove'
export { default as Phone } from './Phone'
export { default as PiggyBank } from './PiggyBank'
export { default as Pillow } from './Pillow'
export { default as PinAlt } from './PinAlt'
export { default as Pin } from './Pin'
export { default as PineTree } from './PineTree'
export { default as Pinterest } from './Pinterest'
export { default as PizzaSlice } from './PizzaSlice'
export { default as PlanetAlt } from './PlanetAlt'
@ -809,10 +851,12 @@ export { default as RemoveFromCart } from './RemoveFromCart'
export { default as RemoveKeyframeAlt } from './RemoveKeyframeAlt'
export { default as RemoveKeyframe } from './RemoveKeyframe'
export { default as RemoveKeyframes } from './RemoveKeyframes'
export { default as RemoveLink } from './RemoveLink'
export { default as RemoveMediaImage } from './RemoveMediaImage'
export { default as RemoveMediaVideo } from './RemoveMediaVideo'
export { default as RemovePage } from './RemovePage'
export { default as RemovePinAlt } from './RemovePinAlt'
export { default as RemovePin } from './RemovePin'
export { default as RemoveSelection } from './RemoveSelection'
export { default as RemoveSquare } from './RemoveSquare'
export { default as RemoveUser } from './RemoveUser'
@ -820,15 +864,18 @@ 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 Repository } from './Repository'
export { default as Restart } from './Restart'
export { default as RewindOutline } from './RewindOutline'
export { default as Rhombus } from './Rhombus'
export { default as RightRoundArrow } from './RightRoundArrow'
export { default as Rings } from './Rings'
export { default as Rocket } from './Rocket'
export { default as Rook } from './Rook'
export { default as RotateCameraLeft } from './RotateCameraLeft'
export { default as RotateCameraRight } from './RotateCameraRight'
export { default as RoundFlask } from './RoundFlask'
export { default as RoundedMirror } from './RoundedMirror'
export { default as RssFeedSquared } from './RssFeedSquared'
export { default as RssFeed } from './RssFeed'
export { default as RulerAdd } from './RulerAdd'
@ -909,6 +956,9 @@ export { default as Skateboard } from './Skateboard'
export { default as Skateboarding } from './Skateboarding'
export { default as SkipNextOutline } from './SkipNextOutline'
export { default as SkipPrevOutline } from './SkipPrevOutline'
export { default as SleeperChair } from './SleeperChair'
export { default as SmallLampAlt } from './SmallLampAlt'
export { default as SmallLamp } from './SmallLamp'
export { default as SmallShopAlt } from './SmallShopAlt'
export { default as SmallShop } from './SmallShop'
export { default as SmartphoneDevice } from './SmartphoneDevice'
@ -918,8 +968,12 @@ export { default as SnowFlake } from './SnowFlake'
export { default as Snow } from './Snow'
export { default as Soap } from './Soap'
export { default as SoccerBall } from './SoccerBall'
export { default as Sofa } from './Sofa'
export { default as SoilAlt } from './SoilAlt'
export { default as Soil } from './Soil'
export { default as SortDown } from './SortDown'
export { default as SortUp } from './SortUp'
export { default as Sort } from './Sort'
export { default as SoundHigh } from './SoundHigh'
export { default as SoundLow } from './SoundLow'
export { default as SoundMin } from './SoundMin'
@ -994,6 +1048,7 @@ export { default as TransitionTop } from './TransitionTop'
export { default as Translate } from './Translate'
export { default as Trash } from './Trash'
export { default as Treadmill } from './Treadmill'
export { default as Tree } from './Tree'
export { default as Trekking } from './Trekking'
export { default as Trello } from './Trello'
export { default as TriangleFlagCircle } from './TriangleFlagCircle'
@ -1010,6 +1065,7 @@ export { default as Tv } from './Tv'
export { default as TwitterVerifiedBadge } from './TwitterVerifiedBadge'
export { default as Twitter } from './Twitter'
export { default as TwoPointsCircle } from './TwoPointsCircle'
export { default as TwoSeaterSofa } from './TwoSeaterSofa'
export { default as Type } from './Type'
export { default as UmbrellaFull } from './UmbrellaFull'
export { default as UnderlineSquareOutline } from './UnderlineSquareOutline'
@ -1033,6 +1089,9 @@ export { default as UserCircleAlt } from './UserCircleAlt'
export { default as UserScan } from './UserScan'
export { default as UserSquareAlt } from './UserSquareAlt'
export { default as User } from './User'
export { default as VeganRounded } from './VeganRounded'
export { default as VeganSquared } from './VeganSquared'
export { default as Vegan } from './Vegan'
export { default as VerifiedBadge } from './VerifiedBadge'
export { default as VerifiedUser } from './VerifiedUser'
export { default as VideoCameraOff } from './VideoCameraOff'
@ -1061,6 +1120,7 @@ export { default as WarningTriangleOutline } from './WarningTriangleOutline'
export { default as WarningWindow } from './WarningWindow'
export { default as Wash } from './Wash'
export { default as WashingMachine } from './WashingMachine'
export { default as WateringSoil } from './WateringSoil'
export { default as WebWindowClose } from './WebWindowClose'
export { default as WebWindowEnergyConsumption } from './WebWindowEnergyConsumption'
export { default as WebWindow } from './WebWindow'

View file

@ -0,0 +1,37 @@
import * as React from 'react';
function SvgAfricanTree(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<g
clipPath="url(#african-tree_svg__clip0_2032_8254)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<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" />
</g>
<defs>
<clipPath id="african-tree_svg__clip0_2032_8254">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAfricanTree);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgBed(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
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 2z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M3 8h8V6M21 8h-8V6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgBed);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgBedReady(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M21 16V4a2 2 0 00-2-2H5a2 2 0 00-2 2v16a2 2 0 002 2h9"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M3 8h8V6M21 8h-8V6M16 20l2 2 4-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgBedReady);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgBitbucket(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M20.916 4.674l-1.85 14.8a.6.6 0 01-.596.526H5.53a.6.6 0 01-.596-.526l-1.85-14.8A.6.6 0 013.68 4h16.64a.6.6 0 01.596.674z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M16.75 7.75l-.938 7.97a.6.6 0 01-.595.53H8.784a.6.6 0 01-.596-.53l-.859-7.3a.6.6 0 01.596-.67h8.825zm0 0h3.75"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgBitbucket);
export default ForwardRef;

View file

@ -0,0 +1,37 @@
import * as React from 'react';
function SvgCleanWater(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<g
clipPath="url(#clean-water_svg__clip0_2032_8261)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M13 21.57A8.132 8.132 0 016.25 7.75l5.326-5.326a.6.6 0 01.848 0L17.75 7.75A8.131 8.131 0 0119.74 16M16 20l2 2 4-4" />
</g>
<defs>
<clipPath id="clean-water_svg__clip0_2032_8261">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCleanWater);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from 'react';
function SvgCrib(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 5v16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M3 16h18M3 7h18M18 16V7M14 16V7M10 16V7M6 16V7M3 19h18"
stroke="currentColor"
strokeLinejoin="round"
/>
<path
d="M21 5v16M21 5a1 1 0 100-2 1 1 0 000 2zM3 5a1 1 0 100-2 1 1 0 000 2z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCrib);
export default ForwardRef;

View file

@ -8,8 +8,8 @@ function SvgCropRotateBl(
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
@ -17,19 +17,13 @@ function SvgCropRotateBl(
{...props}
>
<path
d="M5.5 12v4a4 4 0 004 4h1"
d="M4 14v3a4 4 0 004 4h4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M3 14.5L5.5 12 8 14.5M11.5 4v8a1 1 0 001 1h8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M18.5 15V7a1 1 0 00-1-1h-8"
d="M1.5 16.5L4 14l2.5 2.5M20 11V5a1 1 0 00-1-1h-6M8 4h2M20 16v-2M10 2v11a1 1 0 001 1h11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -8,8 +8,8 @@ function SvgCropRotateBr(
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
@ -17,19 +17,13 @@ function SvgCropRotateBr(
{...props}
>
<path
d="M11.748 18.25h4a4 4 0 004-4v-1"
d="M14 20h3a4 4 0 004-4v-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M14.248 20.75l-2.5-2.5 2.5-2.5M3.748 12.25h8a1 1 0 001-1v-8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M14.748 5.25h-8a1 1 0 00-1 1v8"
d="M16.5 22.5L14 20l2.5-2.5M14 11V5a1 1 0 00-1-1H7M2 4h2M14 16v-2M4 2v11a1 1 0 001 1h11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -8,8 +8,8 @@ function SvgCropRotateTl(
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
@ -17,19 +17,13 @@ function SvgCropRotateTl(
{...props}
>
<path
d="M11.746 5.75h-4a4 4 0 00-4 4v1"
d="M10 4H7a4 4 0 00-4 4v4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9.246 3.25l2.5 2.5-2.5 2.5M19.746 11.75h-8a1 1 0 00-1 1v8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8.746 18.75h8a1 1 0 001-1v-8"
d="M7.5 1.5L10 4 7.5 6.5M20 17v-6a1 1 0 00-1-1h-6M8 10h2M20 22v-2M10 8v11a1 1 0 001 1h11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -8,8 +8,8 @@ function SvgCropRotateTr(
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
@ -17,19 +17,13 @@ function SvgCropRotateTr(
{...props}
>
<path
d="M18 12V8a4 4 0 00-4-4h-1"
d="M20 10V7a4 4 0 00-4-4h-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M20.5 9.5L18 12l-2.5-2.5M12 20v-8a1 1 0 00-1-1H3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M5 9v8a1 1 0 001 1h8"
d="M22.5 7.5L20 10l-2.5-2.5M14 17v-6a1 1 0 00-1-1H7M2 10h2M14 22v-2M4 8v11a1 1 0 001 1h11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgDepth(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M2 20h20M5 4h14M3 16.01l.01-.011M21.01 16.01l-.01-.011M4 12.01l.01-.011M20.01 12.01l-.01-.011M5 8.01l.01-.011M19.01 8.01L19 7.999M12 7v10m0-10l-1.5 1.5M12 7l1.5 1.5M12 17l-3-3m3 3l3-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDepth);
export default ForwardRef;

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgDesk(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M4 7v10M1 7h22M4 10h16M14 14h6M20 7v10M14 7v10M17 10v1M17 14v1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDesk);
export default ForwardRef;

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgDimmerSwitch(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M21 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"
/>
<path
d="M12 18a6 6 0 100-12 6 6 0 000 12zM15.5 7.5L12 12"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDimmerSwitch);
export default ForwardRef;

View file

@ -0,0 +1,31 @@
import * as React from 'react';
function SvgDirectorChair(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M19 12L5 21M5 3v9M19 3v9M5 12l14 9M4 12h16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path d="M5 4h14M5 7h14" stroke="currentColor" strokeLinejoin="round" />
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDirectorChair);
export default ForwardRef;

View file

@ -0,0 +1,49 @@
import * as React from 'react';
function SvgDrone(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M13.463 17h-2.926a.6.6 0 01-.596-.534l-.867-7.8A.6.6 0 019.67 8h4.66a.6.6 0 01.596.666l-.867 7.8a.6.6 0 01-.596.534z"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8M19.5 19.5l-5-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDrone);
export default ForwardRef;

View file

@ -0,0 +1,59 @@
import * as React from 'react';
function SvgDroneChargeFull(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M14.25 14.75l.25-2.25.426-3.834A.6.6 0 0014.33 8H9.67a.6.6 0 00-.596.666l.867 7.8a.6.6 0 00.596.534H11"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M23 19v2M15 19v2M17 19v2M19 19v2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M13 22.4v-4.8a.6.6 0 01.6-.6h6.8a.6.6 0 01.6.6v4.8a.6.6 0 01-.6.6h-6.8a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneChargeFull);
export default ForwardRef;

View file

@ -0,0 +1,59 @@
import * as React from 'react';
function SvgDroneChargeHalf(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M14.25 14.75l.25-2.25.426-3.834A.6.6 0 0014.33 8H9.67a.6.6 0 00-.596.666l.867 7.8a.6.6 0 00.596.534H11"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M23 19v2M15 19v2M17 19v2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M13 22.4v-4.8a.6.6 0 01.6-.6h6.8a.6.6 0 01.6.6v4.8a.6.6 0 01-.6.6h-6.8a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneChargeHalf);
export default ForwardRef;

View file

@ -0,0 +1,59 @@
import * as React from 'react';
function SvgDroneChargeLow(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M14.25 14.75l.25-2.25.426-3.834A.6.6 0 0014.33 8H9.67a.6.6 0 00-.596.666l.867 7.8a.6.6 0 00.596.534H11"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M23 19v2M15 19v2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M13 22.4v-4.8a.6.6 0 01.6-.6h6.8a.6.6 0 01.6.6v4.8a.6.6 0 01-.6.6h-6.8a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneChargeLow);
export default ForwardRef;

View file

@ -0,0 +1,55 @@
import * as React from 'react';
function SvgDroneCheck(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M13.463 17h-2.926a.6.6 0 01-.596-.534l-.867-7.8A.6.6 0 019.67 8h4.66a.6.6 0 01.596.666l-.867 7.8a.6.6 0 01-.596.534z"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8M14.5 15.5l1.25 1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M16 20l2 2 4-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneCheck);
export default ForwardRef;

View file

@ -0,0 +1,55 @@
import * as React from 'react';
function SvgDroneError(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M13.463 17h-2.926a.6.6 0 01-.596-.534l-.867-7.8A.6.6 0 019.67 8h4.66a.6.6 0 01.596.666l-.867 7.8a.6.6 0 01-.596.534z"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8M14.5 15.5l1.25 1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M18 22.243l2.121-2.122m0 0L22.243 18m-2.122 2.121L18 18m2.121 2.121l2.122 2.122"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneError);
export default ForwardRef;

View file

@ -0,0 +1,55 @@
import * as React from 'react';
function SvgDroneLanding(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M13.463 17h-2.926a.6.6 0 01-.596-.534l-.867-7.8A.6.6 0 019.67 8h4.66a.6.6 0 01.596.666l-.867 7.8a.6.6 0 01-.596.534z"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8M14.5 15.5l1.25 1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M19.5 16v6m0 0L17 19.5m2.5 2.5l2.5-2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneLanding);
export default ForwardRef;

View file

@ -0,0 +1,67 @@
import * as React from 'react';
function SvgDroneRefresh(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M14.5 12.5l.426-3.834A.6.6 0 0014.33 8H9.67a.6.6 0 00-.596.666l.867 7.8a.6.6 0 00.596.534H11"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M21.666 16.667C21.048 15.097 19.634 14 17.99 14c-1.758 0-3.252 1.255-3.793 3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M19.995 16.772H21.4a.6.6 0 00.6-.6V14.55M14.334 19.333C14.952 20.903 16.366 22 18.01 22c1.758 0 3.252-1.255 3.793-3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M16.005 19.228H14.6a.6.6 0 00-.6.6v1.622"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneRefresh);
export default ForwardRef;

View file

@ -0,0 +1,55 @@
import * as React from 'react';
function SvgDroneTakeOff(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M13.463 17h-2.926a.6.6 0 01-.596-.534l-.867-7.8A.6.6 0 019.67 8h4.66a.6.6 0 01.596.666l-.867 7.8a.6.6 0 01-.596.534z"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M4.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 4.5L9 8M4.5 19.5l5-4M19.5 4.5L15 8M14.5 15.5l1.25 1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4.5 22a2.5 2.5 0 100-5 2.5 2.5 0 000 5zM19.5 7a2.5 2.5 0 100-5 2.5 2.5 0 000 5z"
stroke="currentColor"
strokeMiterlimit={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M19.5 22v-6m0 0L17 18.5m2.5-2.5l2.5 2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgDroneTakeOff);
export default ForwardRef;

View file

@ -0,0 +1,42 @@
import * as React from 'react';
function SvgEcologyBook(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M4 19V5a2 2 0 012-2h13.4a.6.6 0 01.6.6v13.114"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M10 14s.9-3.118 3-5M12.802 12.425l-.134.012a3.094 3.094 0 01-3.366-2.774 3.06 3.06 0 012.761-3.35l2.986-.28a.35.35 0 01.381.314l.255 2.58a3.194 3.194 0 01-2.883 3.498z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path d="M6 17h14M6 21h14" stroke="currentColor" strokeLinecap="round" />
<path
d="M6 21a2 2 0 110-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgEcologyBook);
export default ForwardRef;

View file

@ -0,0 +1,43 @@
import * as React from 'react';
function SvgFolderSettings(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M2.6 4h6.178a.6.6 0 01.39.144l3.164 2.712a.6.6 0 00.39.144H21.4a.6.6 0 01.6.6v2.8a.6.6 0 01-.6.6H2.6a.6.6 0 01-.6-.6V4.6a.6.6 0 01.6-.6zM22 10v4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2 10v9.4a.6.6 0 00.6.6H13M19 21a2 2 0 100-4 2 2 0 000 4z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M19 22a3 3 0 100-6 3 3 0 000 6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeDasharray="0.3 2"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgFolderSettings);
export default ForwardRef;

View file

@ -8,8 +8,8 @@ function SvgGitBranch(
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
@ -17,7 +17,13 @@ function SvgGitBranch(
{...props}
>
<path
d="M18 9a3 3 0 100-6 3 3 0 000 6zM6 21a3 3 0 100-6 3 3 0 000 6zM6 15V3M9 18c3.5 0 9-2.1 9-8.5"
d="M18 8a2 2 0 100-4 2 2 0 000 4zM6 20a2 2 0 100-4 2 2 0 000 4zM6 16V3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8 18h1c3.5 0 9-2.1 9-8.5V8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -0,0 +1,30 @@
import * as React from 'react';
function SvgGitCommand(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M21 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.6zM10 16l4-8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgGitCommand);
export default ForwardRef;

View file

@ -8,8 +8,8 @@ function SvgGitCommit(
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
@ -17,7 +17,7 @@ function SvgGitCommit(
{...props}
>
<path
d="M12 16a4 4 0 100-8 4 4 0 000 8zM8 12H3M16 12h5"
d="M12 15a3 3 0 100-6 3 3 0 000 6zM9 12H3M15 12h6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -0,0 +1,36 @@
import * as React from 'react';
function SvgGitCompare(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M18 21a2 2 0 100-4 2 2 0 000 4zM6 7a2 2 0 100-4 2 2 0 000 4zM18 17V7s0-2-2-2h-3M6 7v10s0 2 2 2h3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15 7.5L12.5 5 15 2.5M8.5 16.5L11 19l-2.5 2.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgGitCompare);
export default ForwardRef;

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