Update build artifacts

This commit is contained in:
lucaburgio 2023-03-04 14:55:31 +00:00 committed by github-actions[bot]
parent 876503b8bf
commit 3a29bdbae7
42 changed files with 1218 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,29 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CutSolidWithCurve extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CutSolidWithCurve({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.52844 7.29346L9 10.3332" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22 2L20 2M12 12L12 10C12 6.45478 14.3061 3.44817 17.5 2.39838" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22 12L20 12M12 22L12 20C12 16.4548 14.3061 13.4482 17.5 12.3984" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 22L3.30861 17.1715C3.11813 17.0656 3 16.8649 3 16.647L2.99998 7.35304C2.99998 7.13514 3.11812 6.93437 3.3086 6.82855L11.7086 2.16188C11.8898 2.06121 12.1102 2.06121 12.2914 2.16188L15 3.66667" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 11.9999L3.52842 7.29346" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 21L12 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15 13.5L15 4" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,26 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Extrude extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Extrude({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 12.353L21 16.647C21 16.8649 20.8819 17.0656 20.6914 17.1715L12.2914 21.8381C12.1102 21.9388 11.8898 21.9388 11.7086 21.8381L3.30861 17.1715C3.11814 17.0656 3 16.8649 3 16.647L2.99998 12.353C2.99998 12.1351 3.11812 11.9344 3.3086 11.8285L11.7086 7.16188C11.8898 7.06121 12.1102 7.06121 12.2914 7.16188L20.6914 11.8285C20.8818 11.9344 21 12.1351 21 12.353Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.52844 12.2936L11.7086 16.8382C11.8898 16.9388 12.1102 16.9388 12.2914 16.8382L20.5 12.2778" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 21.5V17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 12V2M12 2L14.5 4.5M12 2L9.5 4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Fillet3D extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Fillet3D({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 20V16C2 8.26801 8.26801 2 16 2H20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20.8388 20.8391H17.3033M20.8388 20.8391V17.3035M20.8388 20.8391L18 18.0003" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 9L16 16" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="2 3"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -309,6 +309,7 @@ export './css_3.dart';
export './cursor_pointer.dart';
export './cut.dart';
export './cut_alt.dart';
export './cut_solid_with_curve.dart';
export './cycling.dart';
export './cylinder.dart';
export './dash_flag.dart';
@ -448,6 +449,7 @@ export './ev_tag.dart';
export './exclude.dart';
export './expand.dart';
export './expand_lines.dart';
export './extrude.dart';
export './eye_alt.dart';
export './eye_close.dart';
export './eye_empty.dart';
@ -475,6 +477,7 @@ export './female.dart';
export './figma.dart';
export './file_not_found.dart';
export './fill_color.dart';
export './fillet_3_d.dart';
export './filter.dart';
export './filter_alt.dart';
export './filter_list.dart';
@ -688,6 +691,7 @@ export './lock.dart';
export './lock_key.dart';
export './locked_book.dart';
export './locked_window.dart';
export './loft_3_d.dart';
export './log_denied.dart';
export './log_in.dart';
export './log_out.dart';
@ -862,6 +866,7 @@ export './password_cursor.dart';
export './password_error.dart';
export './password_pass.dart';
export './paste_clipboard.dart';
export './patch_holes_3_d.dart';
export './path_arrow.dart';
export './pause.dart';
export './pause_window.dart';
@ -899,6 +904,7 @@ export './pin.dart';
export './pin_alt.dart';
export './pine_tree.dart';
export './pinterest.dart';
export './pipe_3_d.dart';
export './pizza_slice.dart';
export './planet.dart';
export './planet_alt.dart';
@ -933,6 +939,7 @@ export './privacy_policy.dart';
export './private_wifi.dart';
export './profile_circle.dart';
export './prohibition.dart';
export './project_curve_3_d.dart';
export './puzzle.dart';
export './qr_code.dart';
export './question_mark.dart';
@ -1127,6 +1134,7 @@ export './substract.dart';
export './suggestion.dart';
export './sun_light.dart';
export './svg_format.dart';
export './sweep_3_d.dart';
export './swimming.dart';
export './swipe_down_gesture.dart';
export './swipe_left_gesture.dart';
@ -1217,6 +1225,7 @@ export './union_alt.dart';
export './union_horiz_alt.dart';
export './unity.dart';
export './unity_5.dart';
export './unjoin_3_d.dart';
export './up_round_arrow.dart';
export './upload.dart';
export './upload_data_window.dart';

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Loft3D extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Loft3D({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M22 17C13 17 11 22.9999 2 22.9999" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22 1C13 1 11 6.9999 2 6.9999" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 16.5V7.5M12 16.5L14.5 14M12 16.5L9.5 14M12 7.5L14.5 10M12 7.5L9.5 10" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,29 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class PatchHoles3D extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const PatchHoles3D({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 22L3.30863 17.1715C3.11815 17.0656 3.00001 16.8649 3.00001 16.647L2.99999 7.35304C2.99999 7.13514 3.11813 6.93437 3.30861 6.82855L11.7086 2.16188C11.8898 2.06121 12.1102 2.06121 12.2914 2.16188L20.6914 6.82855C20.8819 6.93437 21 7.13514 21 7.35304L21 11" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.52844 7.29363L11.7086 11.8382C11.8898 11.9388 12.1102 11.9388 12.2914 11.8382L20.5 7.27783" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 12V17.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 2V9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.6569 17.2427L19.364 17.9498" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.2426 18.6567L17.9497 19.3638" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.6569 14.4144L14.4142 18.6571C13.6332 19.4381 13.6332 20.7045 14.4142 21.4855L15.1213 22.1926C15.9024 22.9737 17.1687 22.9737 17.9497 22.1926L22.1924 17.95C22.9734 17.1689 22.9734 15.9026 22.1924 15.1215L21.4853 14.4144C20.7042 13.6334 19.4379 13.6334 18.6569 14.4144Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,28 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Pipe3D extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Pipe3D({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10 20C6.68629 20 4 17.3137 4 14C4 10.6863 6.68629 8 10 8C13.3137 8 16 10.6863 16 14C16 17.3137 13.3137 20 10 20Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.773 4.74173C11.8576 3.66513 13.3511 3 15 3C18.3137 3 21 5.68629 21 9C21 10.5367 20.4223 11.9385 19.4722 13" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 21L9.5 14.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 3L19.5 4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 9.5L10.5 5L10.75 4.75" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.5 18L19.2188 13.2812" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,26 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ProjectCurve3D extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ProjectCurve3D({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 21C7.02944 21 3 19.2091 3 17C3 14.7909 7.02944 13 12 13C16.9706 13 21 14.7909 21 17C21 19.2091 16.9706 21 12 21Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 2C13.6569 2 15 3.34315 15 5V6H9V5C9 3.34315 10.3431 2 12 2Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.5 15.5L7.5 8.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20.5 15.5L16.5 8.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,28 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Sweep3D extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Sweep3D({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 22L8.5 16.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20 5L17.5 7.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7 21H15.5L8.49996 9L2.66663 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.5 3L21.5 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.5 9L14.5 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.5 21L21.5 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Unjoin3D extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Unjoin3D({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.5 7L9 12H15L12.5 17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20.8388 20.8391H17.3033M20.8388 20.8391V17.3035M20.8388 20.8391L17 17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M2.76777 2.76788H6.3033M2.76777 2.76788V6.30341M2.76777 2.76788L6.60657 6.60693" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -0,0 +1,40 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgCutSolidWithCurve(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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.528 7.293L9 10.333M22 2h-2m-8 10v-2a8.004 8.004 0 015.5-7.602M22 12h-2m-8 10v-2a8.004 8.004 0 015.5-7.602"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12 22l-8.691-4.828A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0L15 3.667M12 12L3.528 7.293M12 21v-9M15 13.5V4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCutSolidWithCurve);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgExtrude(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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 12.353v4.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647v-4.294a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M3.528 12.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 21.5V17M12 12V2m0 0l2.5 2.5M12 2L9.5 4.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgExtrude);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgFillet3D(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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 20v-4C2 8.268 8.268 2 16 2h4M20.839 20.84h-3.536m3.536 0v-3.537m0 3.536L18 18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M9 9l7 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeDasharray="2 3"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgFillet3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgLoft3D(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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="M22 17c-9 0-11 6-20 6M22 1C13 1 11 7 2 7M12 16.5v-9m0 9l2.5-2.5M12 16.5L9.5 14M12 7.5l2.5 2.5M12 7.5L9.5 10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgLoft3D);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgPatchHoles3D(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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 22l-8.691-4.828A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524V11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M3.528 7.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 12v5.5M12 2v7M18.657 17.243l.707.707M17.243 18.657l.707.707M18.657 14.414l-4.243 4.243a2 2 0 000 2.828l.707.708a2 2 0 002.829 0l4.242-4.243a2 2 0 000-2.829l-.707-.707a2 2 0 00-2.828 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPatchHoles3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgPipe3D(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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 20a6 6 0 110-12 6 6 0 010 12zM10.773 4.742a6 6 0 018.7 8.258M3 21l6.5-6.5M21 3l-1.5 1.5M6 9.5L10.5 5l.25-.25M14.5 18l4.719-4.719"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgPipe3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgProjectCurve3D(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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 21c-4.97 0-9-1.79-9-4s4.03-4 9-4 9 1.79 9 4-4.03 4-9 4zM12 2a3 3 0 013 3v1H9V5a3 3 0 013-3zM3.5 15.5l4-7M20.5 15.5l-4-7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgProjectCurve3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgSweep3D(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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 22l5.5-5.5M20 5l-2.5 2.5M7 21h8.5l-7-12-5.833 10M14.5 3l7 12M8.5 9l6-6M15.5 21l6-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgSweep3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgUnjoin3D(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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="M11.5 7L9 12h6l-2.5 5M20.839 20.84h-3.536m3.536 0v-3.537m0 3.536L17 17M2.768 2.768h3.535m-3.535 0v3.535m0-3.535l3.839 3.839"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgUnjoin3D);
export default ForwardRef;

View file

@ -306,6 +306,7 @@ export { default as Crown } from './Crown'
export { default as Css3 } from './Css3'
export { default as CursorPointer } from './CursorPointer'
export { default as CutAlt } from './CutAlt'
export { default as CutSolidWithCurve } from './CutSolidWithCurve'
export { default as Cut } from './Cut'
export { default as Cycling } from './Cycling'
export { default as Cylinder } from './Cylinder'
@ -446,6 +447,7 @@ export { default as EvTag } from './EvTag'
export { default as Exclude } from './Exclude'
export { default as ExpandLines } from './ExpandLines'
export { default as Expand } from './Expand'
export { default as Extrude } from './Extrude'
export { default as EyeAlt } from './EyeAlt'
export { default as EyeClose } from './EyeClose'
export { default as EyeEmpty } from './EyeEmpty'
@ -473,6 +475,7 @@ export { default as Female } from './Female'
export { default as Figma } from './Figma'
export { default as FileNotFound } from './FileNotFound'
export { default as FillColor } from './FillColor'
export { default as Fillet3D } from './Fillet3D'
export { default as FilterAlt } from './FilterAlt'
export { default as FilterListCircle } from './FilterListCircle'
export { default as FilterList } from './FilterList'
@ -686,6 +689,7 @@ export { default as LockKey } from './LockKey'
export { default as Lock } from './Lock'
export { default as LockedBook } from './LockedBook'
export { default as LockedWindow } from './LockedWindow'
export { default as Loft3D } from './Loft3D'
export { default as LogDenied } from './LogDenied'
export { default as LogIn } from './LogIn'
export { default as LogOut } from './LogOut'
@ -860,6 +864,7 @@ export { default as PasswordCursor } from './PasswordCursor'
export { default as PasswordError } from './PasswordError'
export { default as PasswordPass } from './PasswordPass'
export { default as PasteClipboard } from './PasteClipboard'
export { default as PatchHoles3D } from './PatchHoles3D'
export { default as PathArrow } from './PathArrow'
export { default as PauseWindow } from './PauseWindow'
export { default as Pause } from './Pause'
@ -897,6 +902,7 @@ export { default as PinAlt } from './PinAlt'
export { default as Pin } from './Pin'
export { default as PineTree } from './PineTree'
export { default as Pinterest } from './Pinterest'
export { default as Pipe3D } from './Pipe3D'
export { default as PizzaSlice } from './PizzaSlice'
export { default as PlanetAlt } from './PlanetAlt'
export { default as PlanetSat } from './PlanetSat'
@ -931,6 +937,7 @@ export { default as PrivacyPolicy } from './PrivacyPolicy'
export { default as PrivateWifi } from './PrivateWifi'
export { default as ProfileCircle } from './ProfileCircle'
export { default as Prohibition } from './Prohibition'
export { default as ProjectCurve3D } from './ProjectCurve3D'
export { default as Puzzle } from './Puzzle'
export { default as QrCode } from './QrCode'
export { default as QuestionMark } from './QuestionMark'
@ -1125,6 +1132,7 @@ export { default as Substract } from './Substract'
export { default as Suggestion } from './Suggestion'
export { default as SunLight } from './SunLight'
export { default as SvgFormat } from './SvgFormat'
export { default as Sweep3D } from './Sweep3D'
export { default as Swimming } from './Swimming'
export { default as SwipeDownGesture } from './SwipeDownGesture'
export { default as SwipeLeftGesture } from './SwipeLeftGesture'
@ -1215,6 +1223,7 @@ export { default as UnionHorizAlt } from './UnionHorizAlt'
export { default as Union } from './Union'
export { default as Unity5 } from './Unity5'
export { default as Unity } from './Unity'
export { default as Unjoin3D } from './Unjoin3D'
export { default as UpRoundArrow } from './UpRoundArrow'
export { default as UploadDataWindow } from './UploadDataWindow'
export { default as UploadSquare } from './UploadSquare'

View file

@ -0,0 +1,40 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgCutSolidWithCurve(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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.528 7.293L9 10.333M22 2h-2m-8 10v-2a8.004 8.004 0 015.5-7.602M22 12h-2m-8 10v-2a8.004 8.004 0 015.5-7.602"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 22l-8.691-4.828A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0L15 3.667M12 12L3.528 7.293M12 21v-9M15 13.5V4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCutSolidWithCurve);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgExtrude(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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 12.353v4.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647v-4.294a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M3.528 12.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 21.5V17M12 12V2m0 0l2.5 2.5M12 2L9.5 4.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgExtrude);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgFillet3D(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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 20v-4C2 8.268 8.268 2 16 2h4M20.839 20.84h-3.536m3.536 0v-3.537m0 3.536L18 18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9 9l7 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeDasharray="2 3"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgFillet3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgLoft3D(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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="M22 17c-9 0-11 6-20 6M22 1C13 1 11 7 2 7M12 16.5v-9m0 9l2.5-2.5M12 16.5L9.5 14M12 7.5l2.5 2.5M12 7.5L9.5 10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgLoft3D);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgPatchHoles3D(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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="M12 22l-8.691-4.828A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524V11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M3.528 7.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 12v5.5M12 2v7M18.657 17.243l.707.707M17.243 18.657l.707.707M18.657 14.414l-4.243 4.243a2 2 0 000 2.828l.707.708a2 2 0 002.829 0l4.242-4.243a2 2 0 000-2.829l-.707-.707a2 2 0 00-2.828 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPatchHoles3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgPipe3D(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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="M10 20a6 6 0 110-12 6 6 0 010 12zM10.773 4.742a6 6 0 018.7 8.258M3 21l6.5-6.5M21 3l-1.5 1.5M6 9.5L10.5 5l.25-.25M14.5 18l4.719-4.719"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPipe3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgProjectCurve3D(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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="M12 21c-4.97 0-9-1.79-9-4s4.03-4 9-4 9 1.79 9 4-4.03 4-9 4zM12 2a3 3 0 013 3v1H9V5a3 3 0 013-3zM3.5 15.5l4-7M20.5 15.5l-4-7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgProjectCurve3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgSweep3D(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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 22l5.5-5.5M20 5l-2.5 2.5M7 21h8.5l-7-12-5.833 10M14.5 3l7 12M8.5 9l6-6M15.5 21l6-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgSweep3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgUnjoin3D(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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="M11.5 7L9 12h6l-2.5 5M20.839 20.84h-3.536m3.536 0v-3.537m0 3.536L17 17M2.768 2.768h3.535m-3.535 0v3.535m0-3.535l3.839 3.839"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgUnjoin3D);
export default ForwardRef;

View file

@ -306,6 +306,7 @@ export { default as Crown } from './Crown'
export { default as Css3 } from './Css3'
export { default as CursorPointer } from './CursorPointer'
export { default as CutAlt } from './CutAlt'
export { default as CutSolidWithCurve } from './CutSolidWithCurve'
export { default as Cut } from './Cut'
export { default as Cycling } from './Cycling'
export { default as Cylinder } from './Cylinder'
@ -446,6 +447,7 @@ export { default as EvTag } from './EvTag'
export { default as Exclude } from './Exclude'
export { default as ExpandLines } from './ExpandLines'
export { default as Expand } from './Expand'
export { default as Extrude } from './Extrude'
export { default as EyeAlt } from './EyeAlt'
export { default as EyeClose } from './EyeClose'
export { default as EyeEmpty } from './EyeEmpty'
@ -473,6 +475,7 @@ export { default as Female } from './Female'
export { default as Figma } from './Figma'
export { default as FileNotFound } from './FileNotFound'
export { default as FillColor } from './FillColor'
export { default as Fillet3D } from './Fillet3D'
export { default as FilterAlt } from './FilterAlt'
export { default as FilterListCircle } from './FilterListCircle'
export { default as FilterList } from './FilterList'
@ -686,6 +689,7 @@ export { default as LockKey } from './LockKey'
export { default as Lock } from './Lock'
export { default as LockedBook } from './LockedBook'
export { default as LockedWindow } from './LockedWindow'
export { default as Loft3D } from './Loft3D'
export { default as LogDenied } from './LogDenied'
export { default as LogIn } from './LogIn'
export { default as LogOut } from './LogOut'
@ -860,6 +864,7 @@ export { default as PasswordCursor } from './PasswordCursor'
export { default as PasswordError } from './PasswordError'
export { default as PasswordPass } from './PasswordPass'
export { default as PasteClipboard } from './PasteClipboard'
export { default as PatchHoles3D } from './PatchHoles3D'
export { default as PathArrow } from './PathArrow'
export { default as PauseWindow } from './PauseWindow'
export { default as Pause } from './Pause'
@ -897,6 +902,7 @@ export { default as PinAlt } from './PinAlt'
export { default as Pin } from './Pin'
export { default as PineTree } from './PineTree'
export { default as Pinterest } from './Pinterest'
export { default as Pipe3D } from './Pipe3D'
export { default as PizzaSlice } from './PizzaSlice'
export { default as PlanetAlt } from './PlanetAlt'
export { default as PlanetSat } from './PlanetSat'
@ -931,6 +937,7 @@ export { default as PrivacyPolicy } from './PrivacyPolicy'
export { default as PrivateWifi } from './PrivateWifi'
export { default as ProfileCircle } from './ProfileCircle'
export { default as Prohibition } from './Prohibition'
export { default as ProjectCurve3D } from './ProjectCurve3D'
export { default as Puzzle } from './Puzzle'
export { default as QrCode } from './QrCode'
export { default as QuestionMark } from './QuestionMark'
@ -1125,6 +1132,7 @@ export { default as Substract } from './Substract'
export { default as Suggestion } from './Suggestion'
export { default as SunLight } from './SunLight'
export { default as SvgFormat } from './SvgFormat'
export { default as Sweep3D } from './Sweep3D'
export { default as Swimming } from './Swimming'
export { default as SwipeDownGesture } from './SwipeDownGesture'
export { default as SwipeLeftGesture } from './SwipeLeftGesture'
@ -1215,6 +1223,7 @@ export { default as UnionHorizAlt } from './UnionHorizAlt'
export { default as Union } from './Union'
export { default as Unity5 } from './Unity5'
export { default as Unity } from './Unity'
export { default as Unjoin3D } from './Unjoin3D'
export { default as UpRoundArrow } from './UpRoundArrow'
export { default as UploadDataWindow } from './UploadDataWindow'
export { default as UploadSquare } from './UploadSquare'

View file

@ -0,0 +1,34 @@
import * as React from "react";
function SvgCutSolidWithCurve(
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.528 7.293L9 10.333M22 2h-2m-8 10v-2a8.004 8.004 0 015.5-7.602M22 12h-2m-8 10v-2a8.004 8.004 0 015.5-7.602"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 22l-8.691-4.828A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0L15 3.667M12 12L3.528 7.293M12 21v-9M15 13.5V4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCutSolidWithCurve);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
function SvgExtrude(
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 12.353v4.294a.6.6 0 01-.309.525l-8.4 4.666a.6.6 0 01-.582 0l-8.4-4.666A.6.6 0 013 16.647v-4.294a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M3.528 12.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 21.5V17M12 12V2m0 0l2.5 2.5M12 2L9.5 4.5"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgExtrude);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from "react";
function SvgFillet3D(
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 20v-4C2 8.268 8.268 2 16 2h4M20.839 20.84h-3.536m3.536 0v-3.537m0 3.536L18 18"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9 9l7 7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeDasharray="2 3"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgFillet3D);
export default ForwardRef;

View file

@ -0,0 +1,28 @@
import * as React from "react";
function SvgLoft3D(
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="M22 17c-9 0-11 6-20 6M22 1C13 1 11 7 2 7M12 16.5v-9m0 9l2.5-2.5M12 16.5L9.5 14M12 7.5l2.5 2.5M12 7.5L9.5 10"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgLoft3D);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
function SvgPatchHoles3D(
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="M12 22l-8.691-4.828A.6.6 0 013 16.647V7.353a.6.6 0 01.309-.524l8.4-4.667a.6.6 0 01.582 0l8.4 4.667a.6.6 0 01.309.524V11"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M3.528 7.294l8.18 4.544a.6.6 0 00.583 0l8.209-4.56M12 12v5.5M12 2v7M18.657 17.243l.707.707M17.243 18.657l.707.707M18.657 14.414l-4.243 4.243a2 2 0 000 2.828l.707.708a2 2 0 002.829 0l4.242-4.243a2 2 0 000-2.829l-.707-.707a2 2 0 00-2.828 0z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPatchHoles3D);
export default ForwardRef;

View file

@ -0,0 +1,28 @@
import * as React from "react";
function SvgPipe3D(
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="M10 20a6 6 0 110-12 6 6 0 010 12zM10.773 4.742a6 6 0 018.7 8.258M3 21l6.5-6.5M21 3l-1.5 1.5M6 9.5L10.5 5l.25-.25M14.5 18l4.719-4.719"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPipe3D);
export default ForwardRef;

View file

@ -0,0 +1,28 @@
import * as React from "react";
function SvgProjectCurve3D(
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="M12 21c-4.97 0-9-1.79-9-4s4.03-4 9-4 9 1.79 9 4-4.03 4-9 4zM12 2a3 3 0 013 3v1H9V5a3 3 0 013-3zM3.5 15.5l4-7M20.5 15.5l-4-7"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgProjectCurve3D);
export default ForwardRef;

View file

@ -0,0 +1,28 @@
import * as React from "react";
function SvgSweep3D(
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 22l5.5-5.5M20 5l-2.5 2.5M7 21h8.5l-7-12-5.833 10M14.5 3l7 12M8.5 9l6-6M15.5 21l6-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgSweep3D);
export default ForwardRef;

View file

@ -0,0 +1,28 @@
import * as React from "react";
function SvgUnjoin3D(
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="M11.5 7L9 12h6l-2.5 5M20.839 20.84h-3.536m3.536 0v-3.537m0 3.536L17 17M2.768 2.768h3.535m-3.535 0v3.535m0-3.535l3.839 3.839"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgUnjoin3D);
export default ForwardRef;

View file

@ -306,6 +306,7 @@ export { default as Crown } from './Crown'
export { default as Css3 } from './Css3'
export { default as CursorPointer } from './CursorPointer'
export { default as CutAlt } from './CutAlt'
export { default as CutSolidWithCurve } from './CutSolidWithCurve'
export { default as Cut } from './Cut'
export { default as Cycling } from './Cycling'
export { default as Cylinder } from './Cylinder'
@ -446,6 +447,7 @@ export { default as EvTag } from './EvTag'
export { default as Exclude } from './Exclude'
export { default as ExpandLines } from './ExpandLines'
export { default as Expand } from './Expand'
export { default as Extrude } from './Extrude'
export { default as EyeAlt } from './EyeAlt'
export { default as EyeClose } from './EyeClose'
export { default as EyeEmpty } from './EyeEmpty'
@ -473,6 +475,7 @@ export { default as Female } from './Female'
export { default as Figma } from './Figma'
export { default as FileNotFound } from './FileNotFound'
export { default as FillColor } from './FillColor'
export { default as Fillet3D } from './Fillet3D'
export { default as FilterAlt } from './FilterAlt'
export { default as FilterListCircle } from './FilterListCircle'
export { default as FilterList } from './FilterList'
@ -686,6 +689,7 @@ export { default as LockKey } from './LockKey'
export { default as Lock } from './Lock'
export { default as LockedBook } from './LockedBook'
export { default as LockedWindow } from './LockedWindow'
export { default as Loft3D } from './Loft3D'
export { default as LogDenied } from './LogDenied'
export { default as LogIn } from './LogIn'
export { default as LogOut } from './LogOut'
@ -860,6 +864,7 @@ export { default as PasswordCursor } from './PasswordCursor'
export { default as PasswordError } from './PasswordError'
export { default as PasswordPass } from './PasswordPass'
export { default as PasteClipboard } from './PasteClipboard'
export { default as PatchHoles3D } from './PatchHoles3D'
export { default as PathArrow } from './PathArrow'
export { default as PauseWindow } from './PauseWindow'
export { default as Pause } from './Pause'
@ -897,6 +902,7 @@ export { default as PinAlt } from './PinAlt'
export { default as Pin } from './Pin'
export { default as PineTree } from './PineTree'
export { default as Pinterest } from './Pinterest'
export { default as Pipe3D } from './Pipe3D'
export { default as PizzaSlice } from './PizzaSlice'
export { default as PlanetAlt } from './PlanetAlt'
export { default as PlanetSat } from './PlanetSat'
@ -931,6 +937,7 @@ export { default as PrivacyPolicy } from './PrivacyPolicy'
export { default as PrivateWifi } from './PrivateWifi'
export { default as ProfileCircle } from './ProfileCircle'
export { default as Prohibition } from './Prohibition'
export { default as ProjectCurve3D } from './ProjectCurve3D'
export { default as Puzzle } from './Puzzle'
export { default as QrCode } from './QrCode'
export { default as QuestionMark } from './QuestionMark'
@ -1125,6 +1132,7 @@ export { default as Substract } from './Substract'
export { default as Suggestion } from './Suggestion'
export { default as SunLight } from './SunLight'
export { default as SvgFormat } from './SvgFormat'
export { default as Sweep3D } from './Sweep3D'
export { default as Swimming } from './Swimming'
export { default as SwipeDownGesture } from './SwipeDownGesture'
export { default as SwipeLeftGesture } from './SwipeLeftGesture'
@ -1215,6 +1223,7 @@ export { default as UnionHorizAlt } from './UnionHorizAlt'
export { default as Union } from './Union'
export { default as Unity5 } from './Unity5'
export { default as Unity } from './Unity'
export { default as Unjoin3D } from './Unjoin3D'
export { default as UpRoundArrow } from './UpRoundArrow'
export { default as UploadDataWindow } from './UploadDataWindow'
export { default as UploadSquare } from './UploadSquare'