Update build artifacts

This commit is contained in:
lucaburgio 2023-04-12 17:29:51 +00:00 committed by github-actions[bot]
parent 333b8c9f33
commit fc94c6a909
34 changed files with 1013 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,28 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Svg3DDraftFace extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Svg3DDraftFace({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="M20 7.77961V15.5763C20 15.7783 19.8983 15.9668 19.7295 16.0778L13.1137 20.4253C13.0388 20.4745 12.954 20.5063 12.8652 20.5184L2.68109 21.9071C2.32083 21.9563 2.00002 21.6762 2.00002 21.3126L2 9.01164C2 8.79805 2.11354 8.60057 2.29813 8.49311L13.087 2.21229C13.3057 2.08493 13.5809 2.10857 13.7747 2.27137L19.7859 7.32017C19.9216 7.43417 20 7.60236 20 7.77961Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M2.5 9L12.727 11.922C12.8998 11.9714 13.0857 11.9407 13.2334 11.8384L19.5 7.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13 20.5L13 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.5 14.01L16.51 13.9989" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22 17.01L22.01 16.9989" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}

View file

@ -0,0 +1,32 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class AppleShortcuts extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AppleShortcuts({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">
<g clip-path="url(#clip0_3190_17433)">
<path d="M9.8525 14.6334L3.65151 10.6873C2.41651 9.90141 2.41651 8.09858 3.65151 7.31268L9.8525 3.36659C11.1628 2.53279 12.8372 2.53279 14.1475 3.36659L20.3485 7.31268C21.5835 8.09859 21.5835 9.90142 20.3485 10.6873L14.1475 14.6334C12.8372 15.4672 11.1628 15.4672 9.8525 14.6334Z" stroke="currentColor"/>
<path d="M18.2857 12L20.3485 13.3127C21.5835 14.0986 21.5835 15.9014 20.3485 16.6873L14.1475 20.6334C12.8372 21.4672 11.1628 21.4672 9.8525 20.6334L3.65151 16.6873C2.41651 15.9014 2.41651 14.0986 3.65151 13.3127L5.71429 12" stroke="currentColor"/>
</g>
<defs>
<clipPath id="clip0_3190_17433">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}

View file

@ -0,0 +1,26 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowsUpFromLine extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowsUpFromLine({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 20L21 20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 17L6 4M6 4L2 8M6 4L10 8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 17V4M18 4L14 8M18 4L22 8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}

View file

@ -0,0 +1,26 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ClockRotateRight extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ClockRotateRight({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 6L12 12L18 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21.8883 10.5C21.1645 5.68874 17.013 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C16.1006 22 19.6248 19.5318 21.1679 16" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17 16H21.4C21.7314 16 22 16.2686 22 16.6V21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}

View file

@ -0,0 +1,36 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CubeReplaceFace extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CubeReplaceFace({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">
<g clip-path="url(#clip0_3377_18972)">
<path d="M19 13.5V18.6518C19 18.8671 18.8846 19.0659 18.6977 19.1728L12.2977 22.8299C12.1132 22.9353 11.8868 22.9353 11.7023 22.8299L5.30233 19.1728C5.11539 19.0659 5.00001 18.8671 5.00001 18.6518L5 13" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 22.5V17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M23 8L11 1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13 15L0.999995 8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M1 8C4 3 8 6 11 1" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13 15C16 10 20 13 23 8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_3377_18972">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}

View file

@ -0,0 +1,26 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class GlassFragile extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const GlassFragile({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="M8 22H12M16 22H12M12 22L12 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.57808 10.0476C7.78286 12.6823 12 15 12 15C12 15 16.2171 12.6823 17.4219 10.0476C18.7226 7.20319 17.4219 2 17.4219 2L6.57808 2C6.57808 2 5.2774 7.20319 6.57808 10.0476Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.5 2L10.5 6H13.5L11.5 10" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}

View file

@ -0,0 +1,26 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class HeartArrowDown extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const HeartArrowDown({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="M5.47752 14.8833L3.65376 12.9929C1.44875 10.7072 1.44875 7.01723 3.65376 4.73157C5.88044 2.42345 9.50794 2.42345 11.7346 4.73157L11.9998 5.00642L12.2648 4.73173C13.3324 3.6245 14.7864 3 16.3053 3C17.8242 3 19.2781 3.62444 20.3458 4.73157C21.4063 5.83045 22 7.31577 22 8.86222C22 10.4087 21.4062 11.8941 20.3458 12.9929C19.7427 13.618 19.1442 14.2497 18.5465 14.8833" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 21.5V11" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 17.5C14.4379 19.0621 13.5621 19.9379 12 21.5C10.4379 19.9379 9.5621 19.0621 8 17.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}

View file

@ -5,6 +5,7 @@ export './3_d_arc.dart';
export './3_d_arc_center_pt.dart';
export './3_d_bridge.dart';
export './3_d_center_box.dart';
export './3_d_draft_face.dart';
export './3_d_ellipse.dart';
export './3_d_ellipse_three_pts.dart';
export './3_d_pt_box.dart';
@ -79,6 +80,7 @@ export './apple_half_alt.dart';
export './apple_imac_2021.dart';
export './apple_imac_2021_side.dart';
export './apple_mac.dart';
export './apple_shortcuts.dart';
export './apple_swift.dart';
export './apple_wallet.dart';
export './ar_symbol.dart';
@ -113,6 +115,7 @@ export './arrow_union.dart';
export './arrow_union_vertical.dart';
export './arrow_up.dart';
export './arrow_up_circle.dart';
export './arrows_up_from_line.dart';
export './asana.dart';
export './at_sign.dart';
export './at_sign_circle.dart';
@ -253,6 +256,7 @@ export './city.dart';
export './clean_water.dart';
export './clipboard_check.dart';
export './clock.dart';
export './clock_rotate_right.dart';
export './closed_captions.dart';
export './closet.dart';
export './cloud.dart';
@ -313,6 +317,7 @@ export './crop_rotate_tr.dart';
export './crown.dart';
export './crown_circle.dart';
export './css_3.dart';
export './cube_replace_face.dart';
export './cursor_pointer.dart';
export './cut.dart';
export './cut_alt.dart';
@ -553,6 +558,7 @@ export './git_pull_request.dart';
export './git_pull_request_closed.dart';
export './github_circle.dart';
export './glass_empty.dart';
export './glass_fragile.dart';
export './glass_half.dart';
export './glass_half_alt.dart';
export './glasses.dart';
@ -599,6 +605,7 @@ export './headset_issue.dart';
export './health_shield.dart';
export './healthcare.dart';
export './heart.dart';
export './heart_arrow_down.dart';
export './heating.dart';
export './heavy_rain.dart';
export './help_circle.dart';

View file

@ -0,0 +1,40 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function Svg3DDraftFace(
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="M20 7.78v7.796a.6.6 0 01-.27.502l-6.616 4.347a.6.6 0 01-.249.093l-10.184 1.39A.6.6 0 012 21.312V9.012a.6.6 0 01.298-.519l10.789-6.28a.6.6 0 01.688.058l6.01 5.05A.6.6 0 0120 7.78z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M2.5 9l10.227 2.922a.6.6 0 00.506-.084L19.5 7.5M13 20.5V12M16.5 14.01l.01-.011M22 17.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(Svg3DDraftFace);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAppleShortcuts(
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}
>
<G
clipPath="url(#apple-shortcuts_svg__clip0_3190_17433)"
stroke="currentColor"
>
<Path d="M9.852 14.633l-6.2-3.946a2 2 0 010-3.374l6.2-3.946a4 4 0 014.296 0l6.2 3.946a2 2 0 010 3.374l-6.2 3.946a4 4 0 01-4.296 0z" />
<Path d="M18.286 12l2.063 1.313a2 2 0 010 3.374l-6.201 3.946a4 4 0 01-4.296 0l-6.2-3.946a2 2 0 010-3.374L5.714 12" />
</G>
<Defs>
<ClipPath id="apple-shortcuts_svg__clip0_3190_17433">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleShortcuts);
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 SvgArrowsUpFromLine(
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 20h18M6 17V4m0 0L2 8m4-4l4 4M18 17V4m0 0l-4 4m4-4l4 4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgArrowsUpFromLine);
export default ForwardRef;

View file

@ -0,0 +1,46 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgClockRotateRight(
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 6v6h6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M21.888 10.5C21.164 5.689 17.013 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10c4.1 0 7.625-2.468 9.168-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M17 16h4.4a.6.6 0 01.6.6V21"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgClockRotateRight);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import Svg, { SvgProps, G, Path, Defs, ClipPath } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgCubeReplaceFace(
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}
>
<G
clipPath="url(#cube-replace-face_svg__clip0_3377_18972)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<Path d="M19 13.5v5.152a.6.6 0 01-.302.52l-6.4 3.658a.6.6 0 01-.596 0l-6.4-3.657A.6.6 0 015 18.652V13M12 22.5V17M23 8L11 1M13 15L1 8M1 8c3-5 7-2 10-7M13 15c3-5 7-2 10-7" />
</G>
<Defs>
<ClipPath id="cube-replace-face_svg__clip0_3377_18972">
<Path fill="#fff" d="M0 0h24v24H0z" />
</ClipPath>
</Defs>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCubeReplaceFace);
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 SvgGlassFragile(
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="M8 22h4m4 0h-4m0 0v-7M6.578 10.048C7.783 12.682 12 15 12 15s4.217-2.318 5.422-4.952c1.3-2.845 0-8.048 0-8.048H6.578s-1.3 5.203 0 8.048z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M12.5 2l-2 4h3l-2 4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgGlassFragile);
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 SvgHeartArrowDown(
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="M5.478 14.883l-1.824-1.89c-2.205-2.286-2.205-5.976 0-8.261a5.58 5.58 0 018.08 0l.266.274.265-.274A5.612 5.612 0 0116.305 3c1.52 0 2.973.624 4.04 1.732A5.95 5.95 0 0122 8.862a5.95 5.95 0 01-1.654 4.13c-.603.626-1.202 1.258-1.8 1.891M12 21.5V11M16 17.5l-4 4-4-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgHeartArrowDown);
export default ForwardRef;

View file

@ -3,6 +3,7 @@ export { default as Svg3DArcCenterPt } from './3DArcCenterPt'
export { default as Svg3DArc } from './3DArc'
export { default as Svg3DBridge } from './3DBridge'
export { default as Svg3DCenterBox } from './3DCenterBox'
export { default as Svg3DDraftFace } from './3DDraftFace'
export { default as Svg3DEllipseThreePts } from './3DEllipseThreePts'
export { default as Svg3DEllipse } from './3DEllipse'
export { default as Svg3DPtBox } from './3DPtBox'
@ -76,6 +77,7 @@ export { default as AppleHalf } from './AppleHalf'
export { default as AppleImac2021Side } from './AppleImac2021Side'
export { default as AppleImac2021 } from './AppleImac2021'
export { default as AppleMac } from './AppleMac'
export { default as AppleShortcuts } from './AppleShortcuts'
export { default as AppleSwift } from './AppleSwift'
export { default as AppleWallet } from './AppleWallet'
export { default as Apple } from './Apple'
@ -111,6 +113,7 @@ export { default as ArrowUnionVertical } from './ArrowUnionVertical'
export { default as ArrowUnion } from './ArrowUnion'
export { default as ArrowUpCircle } from './ArrowUpCircle'
export { default as ArrowUp } from './ArrowUp'
export { default as ArrowsUpFromLine } from './ArrowsUpFromLine'
export { default as Asana } from './Asana'
export { default as AtSignCircle } from './AtSignCircle'
export { default as AtSign } from './AtSign'
@ -250,6 +253,7 @@ export { default as Circle } from './Circle'
export { default as City } from './City'
export { default as CleanWater } from './CleanWater'
export { default as ClipboardCheck } from './ClipboardCheck'
export { default as ClockRotateRight } from './ClockRotateRight'
export { default as Clock } from './Clock'
export { default as ClosedCaptions } from './ClosedCaptions'
export { default as Closet } from './Closet'
@ -311,6 +315,7 @@ export { default as Crop } from './Crop'
export { default as CrownCircle } from './CrownCircle'
export { default as Crown } from './Crown'
export { default as Css3 } from './Css3'
export { default as CubeReplaceFace } from './CubeReplaceFace'
export { default as CursorPointer } from './CursorPointer'
export { default as CutAlt } from './CutAlt'
export { default as CutSolidWithCurve } from './CutSolidWithCurve'
@ -551,6 +556,7 @@ export { default as GitHub } from './GitHub'
export { default as GitLabFull } from './GitLabFull'
export { default as GithubCircle } from './GithubCircle'
export { default as GlassEmpty } from './GlassEmpty'
export { default as GlassFragile } from './GlassFragile'
export { default as GlassHalfAlt } from './GlassHalfAlt'
export { default as GlassHalf } from './GlassHalf'
export { default as Glasses } from './Glasses'
@ -596,6 +602,7 @@ export { default as HeadsetIssue } from './HeadsetIssue'
export { default as Headset } from './Headset'
export { default as HealthShield } from './HealthShield'
export { default as Healthcare } from './Healthcare'
export { default as HeartArrowDown } from './HeartArrowDown'
export { default as Heart } from './Heart'
export { default as Heating } from './Heating'
export { default as HeavyRain } from './HeavyRain'

View file

@ -0,0 +1,40 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function Svg3DDraftFace(
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="M20 7.78v7.796a.6.6 0 01-.27.502l-6.616 4.347a.6.6 0 01-.249.093l-10.184 1.39A.6.6 0 012 21.312V9.012a.6.6 0 01.298-.519l10.789-6.28a.6.6 0 01.688.058l6.01 5.05A.6.6 0 0120 7.78z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2.5 9l10.227 2.922a.6.6 0 00.506-.084L19.5 7.5M13 20.5V12M16.5 14.01l.01-.011M22 17.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(Svg3DDraftFace);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgAppleShortcuts(
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}
>
<g
clipPath="url(#apple-shortcuts_svg__clip0_3190_17433)"
stroke="currentColor"
>
<path d="M9.852 14.633l-6.2-3.946a2 2 0 010-3.374l6.2-3.946a4 4 0 014.296 0l6.2 3.946a2 2 0 010 3.374l-6.2 3.946a4 4 0 01-4.296 0z" />
<path d="M18.286 12l2.063 1.313a2 2 0 010 3.374l-6.201 3.946a4 4 0 01-4.296 0l-6.2-3.946a2 2 0 010-3.374L5.714 12" />
</g>
<defs>
<clipPath id="apple-shortcuts_svg__clip0_3190_17433">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleShortcuts);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgArrowsUpFromLine(
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 20h18M6 17V4m0 0L2 8m4-4l4 4M18 17V4m0 0l-4 4m4-4l4 4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgArrowsUpFromLine);
export default ForwardRef;

View file

@ -0,0 +1,46 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgClockRotateRight(
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 6v6h6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M21.888 10.5C21.164 5.689 17.013 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10c4.1 0 7.625-2.468 9.168-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M17 16h4.4a.6.6 0 01.6.6V21"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgClockRotateRight);
export default ForwardRef;

View file

@ -0,0 +1,41 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgCubeReplaceFace(
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}
>
<g
clipPath="url(#cube-replace-face_svg__clip0_3377_18972)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M19 13.5v5.152a.6.6 0 01-.302.52l-6.4 3.658a.6.6 0 01-.596 0l-6.4-3.657A.6.6 0 015 18.652V13M12 22.5V17M23 8L11 1M13 15L1 8M1 8c3-5 7-2 10-7M13 15c3-5 7-2 10-7" />
</g>
<defs>
<clipPath id="cube-replace-face_svg__clip0_3377_18972">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCubeReplaceFace);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgGlassFragile(
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="M8 22h4m4 0h-4m0 0v-7M6.578 10.048C7.783 12.682 12 15 12 15s4.217-2.318 5.422-4.952c1.3-2.845 0-8.048 0-8.048H6.578s-1.3 5.203 0 8.048z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12.5 2l-2 4h3l-2 4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgGlassFragile);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgHeartArrowDown(
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="M5.478 14.883l-1.824-1.89c-2.205-2.286-2.205-5.976 0-8.261a5.58 5.58 0 018.08 0l.266.274.265-.274A5.612 5.612 0 0116.305 3c1.52 0 2.973.624 4.04 1.732A5.95 5.95 0 0122 8.862a5.95 5.95 0 01-1.654 4.13c-.603.626-1.202 1.258-1.8 1.891M12 21.5V11M16 17.5l-4 4-4-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgHeartArrowDown);
export default ForwardRef;

View file

@ -3,6 +3,7 @@ export { default as Svg3DArcCenterPt } from './3DArcCenterPt'
export { default as Svg3DArc } from './3DArc'
export { default as Svg3DBridge } from './3DBridge'
export { default as Svg3DCenterBox } from './3DCenterBox'
export { default as Svg3DDraftFace } from './3DDraftFace'
export { default as Svg3DEllipseThreePts } from './3DEllipseThreePts'
export { default as Svg3DEllipse } from './3DEllipse'
export { default as Svg3DPtBox } from './3DPtBox'
@ -76,6 +77,7 @@ export { default as AppleHalf } from './AppleHalf'
export { default as AppleImac2021Side } from './AppleImac2021Side'
export { default as AppleImac2021 } from './AppleImac2021'
export { default as AppleMac } from './AppleMac'
export { default as AppleShortcuts } from './AppleShortcuts'
export { default as AppleSwift } from './AppleSwift'
export { default as AppleWallet } from './AppleWallet'
export { default as Apple } from './Apple'
@ -111,6 +113,7 @@ export { default as ArrowUnionVertical } from './ArrowUnionVertical'
export { default as ArrowUnion } from './ArrowUnion'
export { default as ArrowUpCircle } from './ArrowUpCircle'
export { default as ArrowUp } from './ArrowUp'
export { default as ArrowsUpFromLine } from './ArrowsUpFromLine'
export { default as Asana } from './Asana'
export { default as AtSignCircle } from './AtSignCircle'
export { default as AtSign } from './AtSign'
@ -250,6 +253,7 @@ export { default as Circle } from './Circle'
export { default as City } from './City'
export { default as CleanWater } from './CleanWater'
export { default as ClipboardCheck } from './ClipboardCheck'
export { default as ClockRotateRight } from './ClockRotateRight'
export { default as Clock } from './Clock'
export { default as ClosedCaptions } from './ClosedCaptions'
export { default as Closet } from './Closet'
@ -311,6 +315,7 @@ export { default as Crop } from './Crop'
export { default as CrownCircle } from './CrownCircle'
export { default as Crown } from './Crown'
export { default as Css3 } from './Css3'
export { default as CubeReplaceFace } from './CubeReplaceFace'
export { default as CursorPointer } from './CursorPointer'
export { default as CutAlt } from './CutAlt'
export { default as CutSolidWithCurve } from './CutSolidWithCurve'
@ -551,6 +556,7 @@ export { default as GitHub } from './GitHub'
export { default as GitLabFull } from './GitLabFull'
export { default as GithubCircle } from './GithubCircle'
export { default as GlassEmpty } from './GlassEmpty'
export { default as GlassFragile } from './GlassFragile'
export { default as GlassHalfAlt } from './GlassHalfAlt'
export { default as GlassHalf } from './GlassHalf'
export { default as Glasses } from './Glasses'
@ -596,6 +602,7 @@ export { default as HeadsetIssue } from './HeadsetIssue'
export { default as Headset } from './Headset'
export { default as HealthShield } from './HealthShield'
export { default as Healthcare } from './Healthcare'
export { default as HeartArrowDown } from './HeartArrowDown'
export { default as Heart } from './Heart'
export { default as Heating } from './Heating'
export { default as HeavyRain } from './HeavyRain'

View file

@ -0,0 +1,34 @@
import * as React from "react";
function Svg3DDraftFace(
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 7.78v7.796a.6.6 0 01-.27.502l-6.616 4.347a.6.6 0 01-.249.093l-10.184 1.39A.6.6 0 012 21.312V9.012a.6.6 0 01.298-.519l10.789-6.28a.6.6 0 01.688.058l6.01 5.05A.6.6 0 0120 7.78z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2.5 9l10.227 2.922a.6.6 0 00.506-.084L19.5 7.5M13 20.5V12M16.5 14.01l.01-.011M22 17.01l.01-.011"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(Svg3DDraftFace);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
function SvgAppleShortcuts(
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(#apple-shortcuts_svg__clip0_3190_17433)"
stroke="currentColor"
>
<path d="M9.852 14.633l-6.2-3.946a2 2 0 010-3.374l6.2-3.946a4 4 0 014.296 0l6.2 3.946a2 2 0 010 3.374l-6.2 3.946a4 4 0 01-4.296 0z" />
<path d="M18.286 12l2.063 1.313a2 2 0 010 3.374l-6.201 3.946a4 4 0 01-4.296 0l-6.2-3.946a2 2 0 010-3.374L5.714 12" />
</g>
<defs>
<clipPath id="apple-shortcuts_svg__clip0_3190_17433">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAppleShortcuts);
export default ForwardRef;

View file

@ -0,0 +1,28 @@
import * as React from "react";
function SvgArrowsUpFromLine(
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 20h18M6 17V4m0 0L2 8m4-4l4 4M18 17V4m0 0l-4 4m4-4l4 4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgArrowsUpFromLine);
export default ForwardRef;

View file

@ -0,0 +1,40 @@
import * as React from "react";
function SvgClockRotateRight(
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 6v6h6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M21.888 10.5C21.164 5.689 17.013 2 12 2 6.477 2 2 6.477 2 12s4.477 10 10 10c4.1 0 7.625-2.468 9.168-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M17 16h4.4a.6.6 0 01.6.6V21"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgClockRotateRight);
export default ForwardRef;

View file

@ -0,0 +1,35 @@
import * as React from "react";
function SvgCubeReplaceFace(
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(#cube-replace-face_svg__clip0_3377_18972)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M19 13.5v5.152a.6.6 0 01-.302.52l-6.4 3.658a.6.6 0 01-.596 0l-6.4-3.657A.6.6 0 015 18.652V13M12 22.5V17M23 8L11 1M13 15L1 8M1 8c3-5 7-2 10-7M13 15c3-5 7-2 10-7" />
</g>
<defs>
<clipPath id="cube-replace-face_svg__clip0_3377_18972">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCubeReplaceFace);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
function SvgGlassFragile(
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="M8 22h4m4 0h-4m0 0v-7M6.578 10.048C7.783 12.682 12 15 12 15s4.217-2.318 5.422-4.952c1.3-2.845 0-8.048 0-8.048H6.578s-1.3 5.203 0 8.048z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12.5 2l-2 4h3l-2 4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgGlassFragile);
export default ForwardRef;

View file

@ -0,0 +1,28 @@
import * as React from "react";
function SvgHeartArrowDown(
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="M5.478 14.883l-1.824-1.89c-2.205-2.286-2.205-5.976 0-8.261a5.58 5.58 0 018.08 0l.266.274.265-.274A5.612 5.612 0 0116.305 3c1.52 0 2.973.624 4.04 1.732A5.95 5.95 0 0122 8.862a5.95 5.95 0 01-1.654 4.13c-.603.626-1.202 1.258-1.8 1.891M12 21.5V11M16 17.5l-4 4-4-4"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgHeartArrowDown);
export default ForwardRef;

View file

@ -3,6 +3,7 @@ export { default as Svg3DArcCenterPt } from './3DArcCenterPt'
export { default as Svg3DArc } from './3DArc'
export { default as Svg3DBridge } from './3DBridge'
export { default as Svg3DCenterBox } from './3DCenterBox'
export { default as Svg3DDraftFace } from './3DDraftFace'
export { default as Svg3DEllipseThreePts } from './3DEllipseThreePts'
export { default as Svg3DEllipse } from './3DEllipse'
export { default as Svg3DPtBox } from './3DPtBox'
@ -76,6 +77,7 @@ export { default as AppleHalf } from './AppleHalf'
export { default as AppleImac2021Side } from './AppleImac2021Side'
export { default as AppleImac2021 } from './AppleImac2021'
export { default as AppleMac } from './AppleMac'
export { default as AppleShortcuts } from './AppleShortcuts'
export { default as AppleSwift } from './AppleSwift'
export { default as AppleWallet } from './AppleWallet'
export { default as Apple } from './Apple'
@ -111,6 +113,7 @@ export { default as ArrowUnionVertical } from './ArrowUnionVertical'
export { default as ArrowUnion } from './ArrowUnion'
export { default as ArrowUpCircle } from './ArrowUpCircle'
export { default as ArrowUp } from './ArrowUp'
export { default as ArrowsUpFromLine } from './ArrowsUpFromLine'
export { default as Asana } from './Asana'
export { default as AtSignCircle } from './AtSignCircle'
export { default as AtSign } from './AtSign'
@ -250,6 +253,7 @@ export { default as Circle } from './Circle'
export { default as City } from './City'
export { default as CleanWater } from './CleanWater'
export { default as ClipboardCheck } from './ClipboardCheck'
export { default as ClockRotateRight } from './ClockRotateRight'
export { default as Clock } from './Clock'
export { default as ClosedCaptions } from './ClosedCaptions'
export { default as Closet } from './Closet'
@ -311,6 +315,7 @@ export { default as Crop } from './Crop'
export { default as CrownCircle } from './CrownCircle'
export { default as Crown } from './Crown'
export { default as Css3 } from './Css3'
export { default as CubeReplaceFace } from './CubeReplaceFace'
export { default as CursorPointer } from './CursorPointer'
export { default as CutAlt } from './CutAlt'
export { default as CutSolidWithCurve } from './CutSolidWithCurve'
@ -551,6 +556,7 @@ export { default as GitHub } from './GitHub'
export { default as GitLabFull } from './GitLabFull'
export { default as GithubCircle } from './GithubCircle'
export { default as GlassEmpty } from './GlassEmpty'
export { default as GlassFragile } from './GlassFragile'
export { default as GlassHalfAlt } from './GlassHalfAlt'
export { default as GlassHalf } from './GlassHalf'
export { default as Glasses } from './Glasses'
@ -596,6 +602,7 @@ export { default as HeadsetIssue } from './HeadsetIssue'
export { default as Headset } from './Headset'
export { default as HealthShield } from './HealthShield'
export { default as Healthcare } from './Healthcare'
export { default as HeartArrowDown } from './HeartArrowDown'
export { default as Heart } from './Heart'
export { default as Heating } from './Heating'
export { default as HeavyRain } from './HeavyRain'