Update build artifacts

This commit is contained in:
lucaburgio 2023-07-14 22:52:50 +00:00 committed by github-actions[bot]
parent 834d7184e1
commit cd7e32d60e
37 changed files with 898 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,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class AlignHorizontalCenters extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AlignHorizontalCenters({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 22L12 2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19 16H5C3.89543 16 3 15.1046 3 14L3 10C3 8.89543 3.89543 8 5 8H19C20.1046 8 21 8.89543 21 10V14C21 15.1046 20.1046 16 19 16Z" stroke="currentColor"/>
</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 AlignHorizontalSpacing extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AlignHorizontalSpacing({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 22L3 2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 22V2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15 16H9C7.89543 16 7 15.1046 7 14V10C7 8.89543 7.89543 8 9 8H15C16.1046 8 17 8.89543 17 10V14C17 15.1046 16.1046 16 15 16Z" stroke="currentColor"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}

View file

@ -0,0 +1,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class AlignVerticalCenters extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AlignVerticalCenters({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 12L2 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 19V5C8 3.89543 8.89543 3 10 3H14C15.1046 3 16 3.89543 16 5V19C16 20.1046 15.1046 21 14 21H10C8.89543 21 8 20.1046 8 19Z" stroke="currentColor"/>
</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 AlignVerticalSpacing extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AlignVerticalSpacing({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 3L2 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22 21L2 21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 15V9C8 7.89543 8.89543 7 10 7H14C15.1046 7 16 7.89543 16 9V15C16 16.1046 15.1046 17 14 17H10C8.89543 17 8 16.1046 8 15Z" stroke="currentColor"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}

View file

@ -0,0 +1,28 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class AppStore extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AppStore({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 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10.5 5.5L17.5 16.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.5 5.5L6.5 16.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.5 14H6.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 14H16" 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,25 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CircleSpark extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CircleSpark({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 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13 6.5C16.1338 6.5 17.5 5.18153 17.5 2C17.5 5.18153 18.8567 6.5 22 6.5C18.8567 6.5 17.5 7.85669 17.5 11C17.5 7.85669 16.1338 6.5 13 6.5Z" stroke="currentColor" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}

View file

@ -61,18 +61,23 @@ export './album_list.dart';
export './album_open.dart';
export './align_bottom_box.dart';
export './align_center.dart';
export './align_horizontal_centers.dart';
export './align_horizontal_spacing.dart';
export './align_justify.dart';
export './align_left.dart';
export './align_left_box.dart';
export './align_right.dart';
export './align_right_box.dart';
export './align_top_box.dart';
export './align_vertical_centers.dart';
export './align_vertical_spacing.dart';
export './angle_tool.dart';
export './antenna.dart';
export './antenna_off.dart';
export './antenna_signal.dart';
export './antenna_signal_tag.dart';
export './app_notification.dart';
export './app_store.dart';
export './app_window.dart';
export './apple.dart';
export './apple_half.dart';
@ -253,6 +258,7 @@ export './church.dart';
export './church_alt.dart';
export './cinema_old.dart';
export './circle.dart';
export './circle_spark.dart';
export './city.dart';
export './clean_water.dart';
export './clipboard_check.dart';

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAlignHorizontalCenters(
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 22V2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M19 16H5a2 2 0 01-2-2v-4a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2z"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignHorizontalCenters);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAlignHorizontalSpacing(
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 22V2M21 22V2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M15 16H9a2 2 0 01-2-2v-4a2 2 0 012-2h6a2 2 0 012 2v4a2 2 0 01-2 2z"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignHorizontalSpacing);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAlignVerticalCenters(
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 12H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M8 19V5a2 2 0 012-2h4a2 2 0 012 2v14a2 2 0 01-2 2h-4a2 2 0 01-2-2z"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignVerticalCenters);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAlignVerticalSpacing(
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 3H2M22 21H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M8 15V9a2 2 0 012-2h4a2 2 0 012 2v6a2 2 0 01-2 2h-4a2 2 0 01-2-2z"
stroke="currentColor"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignVerticalSpacing);
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 SvgAppStore(
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 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zM10.5 5.5l7 11M13.5 5.5l-7 11M13.5 14h-7M17.5 14H16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgAppStore);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgCircleSpark(
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 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M13 6.5c3.134 0 4.5-1.318 4.5-4.5 0 3.182 1.357 4.5 4.5 4.5-3.143 0-4.5 1.357-4.5 4.5 0-3.143-1.366-4.5-4.5-4.5z"
stroke="currentColor"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgCircleSpark);
export default ForwardRef;

View file

@ -59,18 +59,23 @@ export { default as AlbumOpen } from './AlbumOpen'
export { default as Album } from './Album'
export { default as AlignBottomBox } from './AlignBottomBox'
export { default as AlignCenter } from './AlignCenter'
export { default as AlignHorizontalCenters } from './AlignHorizontalCenters'
export { default as AlignHorizontalSpacing } from './AlignHorizontalSpacing'
export { default as AlignJustify } from './AlignJustify'
export { default as AlignLeftBox } from './AlignLeftBox'
export { default as AlignLeft } from './AlignLeft'
export { default as AlignRightBox } from './AlignRightBox'
export { default as AlignRight } from './AlignRight'
export { default as AlignTopBox } from './AlignTopBox'
export { default as AlignVerticalCenters } from './AlignVerticalCenters'
export { default as AlignVerticalSpacing } from './AlignVerticalSpacing'
export { default as AngleTool } from './AngleTool'
export { default as AntennaOff } from './AntennaOff'
export { default as AntennaSignalTag } from './AntennaSignalTag'
export { default as AntennaSignal } from './AntennaSignal'
export { default as Antenna } from './Antenna'
export { default as AppNotification } from './AppNotification'
export { default as AppStore } from './AppStore'
export { default as AppWindow } from './AppWindow'
export { default as AppleHalfAlt } from './AppleHalfAlt'
export { default as AppleHalf } from './AppleHalf'
@ -250,6 +255,7 @@ export { default as Chromecast } from './Chromecast'
export { default as ChurchAlt } from './ChurchAlt'
export { default as Church } from './Church'
export { default as CinemaOld } from './CinemaOld'
export { default as CircleSpark } from './CircleSpark'
export { default as Circle } from './Circle'
export { default as City } from './City'
export { default as CleanWater } from './CleanWater'

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgAlignHorizontalCenters(
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 22V2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M19 16H5a2 2 0 01-2-2v-4a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignHorizontalCenters);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgAlignHorizontalSpacing(
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 22V2M21 22V2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15 16H9a2 2 0 01-2-2v-4a2 2 0 012-2h6a2 2 0 012 2v4a2 2 0 01-2 2z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignHorizontalSpacing);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgAlignVerticalCenters(
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 12H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8 19V5a2 2 0 012-2h4a2 2 0 012 2v14a2 2 0 01-2 2h-4a2 2 0 01-2-2z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignVerticalCenters);
export default ForwardRef;

View file

@ -0,0 +1,38 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgAlignVerticalSpacing(
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 3H2M22 21H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8 15V9a2 2 0 012-2h4a2 2 0 012 2v6a2 2 0 01-2 2h-4a2 2 0 01-2-2z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignVerticalSpacing);
export default ForwardRef;

View file

@ -0,0 +1,34 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgAppStore(
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 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zM10.5 5.5l7 11M13.5 5.5l-7 11M13.5 14h-7M17.5 14H16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAppStore);
export default ForwardRef;

View file

@ -0,0 +1,39 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgCircleSpark(
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 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M13 6.5c3.134 0 4.5-1.318 4.5-4.5 0 3.182 1.357 4.5 4.5 4.5-3.143 0-4.5 1.357-4.5 4.5 0-3.143-1.366-4.5-4.5-4.5z"
stroke="currentColor"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCircleSpark);
export default ForwardRef;

View file

@ -59,18 +59,23 @@ export { default as AlbumOpen } from './AlbumOpen'
export { default as Album } from './Album'
export { default as AlignBottomBox } from './AlignBottomBox'
export { default as AlignCenter } from './AlignCenter'
export { default as AlignHorizontalCenters } from './AlignHorizontalCenters'
export { default as AlignHorizontalSpacing } from './AlignHorizontalSpacing'
export { default as AlignJustify } from './AlignJustify'
export { default as AlignLeftBox } from './AlignLeftBox'
export { default as AlignLeft } from './AlignLeft'
export { default as AlignRightBox } from './AlignRightBox'
export { default as AlignRight } from './AlignRight'
export { default as AlignTopBox } from './AlignTopBox'
export { default as AlignVerticalCenters } from './AlignVerticalCenters'
export { default as AlignVerticalSpacing } from './AlignVerticalSpacing'
export { default as AngleTool } from './AngleTool'
export { default as AntennaOff } from './AntennaOff'
export { default as AntennaSignalTag } from './AntennaSignalTag'
export { default as AntennaSignal } from './AntennaSignal'
export { default as Antenna } from './Antenna'
export { default as AppNotification } from './AppNotification'
export { default as AppStore } from './AppStore'
export { default as AppWindow } from './AppWindow'
export { default as AppleHalfAlt } from './AppleHalfAlt'
export { default as AppleHalf } from './AppleHalf'
@ -250,6 +255,7 @@ export { default as Chromecast } from './Chromecast'
export { default as ChurchAlt } from './ChurchAlt'
export { default as Church } from './Church'
export { default as CinemaOld } from './CinemaOld'
export { default as CircleSpark } from './CircleSpark'
export { default as Circle } from './Circle'
export { default as City } from './City'
export { default as CleanWater } from './CleanWater'

View file

@ -0,0 +1,32 @@
import * as React from "react";
function SvgAlignHorizontalCenters(
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 22V2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M19 16H5a2 2 0 01-2-2v-4a2 2 0 012-2h14a2 2 0 012 2v4a2 2 0 01-2 2z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignHorizontalCenters);
export default ForwardRef;

View file

@ -0,0 +1,32 @@
import * as React from "react";
function SvgAlignHorizontalSpacing(
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 22V2M21 22V2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M15 16H9a2 2 0 01-2-2v-4a2 2 0 012-2h6a2 2 0 012 2v4a2 2 0 01-2 2z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignHorizontalSpacing);
export default ForwardRef;

View file

@ -0,0 +1,32 @@
import * as React from "react";
function SvgAlignVerticalCenters(
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 12H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8 19V5a2 2 0 012-2h4a2 2 0 012 2v14a2 2 0 01-2 2h-4a2 2 0 01-2-2z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignVerticalCenters);
export default ForwardRef;

View file

@ -0,0 +1,32 @@
import * as React from "react";
function SvgAlignVerticalSpacing(
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 3H2M22 21H2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8 15V9a2 2 0 012-2h4a2 2 0 012 2v6a2 2 0 01-2 2h-4a2 2 0 01-2-2z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAlignVerticalSpacing);
export default ForwardRef;

View file

@ -0,0 +1,28 @@
import * as React from "react";
function SvgAppStore(
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 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zM10.5 5.5l7 11M13.5 5.5l-7 11M13.5 14h-7M17.5 14H16"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAppStore);
export default ForwardRef;

View file

@ -0,0 +1,33 @@
import * as React from "react";
function SvgCircleSpark(
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 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M13 6.5c3.134 0 4.5-1.318 4.5-4.5 0 3.182 1.357 4.5 4.5 4.5-3.143 0-4.5 1.357-4.5 4.5 0-3.143-1.366-4.5-4.5-4.5z"
stroke="currentColor"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCircleSpark);
export default ForwardRef;

View file

@ -59,18 +59,23 @@ export { default as AlbumOpen } from './AlbumOpen'
export { default as Album } from './Album'
export { default as AlignBottomBox } from './AlignBottomBox'
export { default as AlignCenter } from './AlignCenter'
export { default as AlignHorizontalCenters } from './AlignHorizontalCenters'
export { default as AlignHorizontalSpacing } from './AlignHorizontalSpacing'
export { default as AlignJustify } from './AlignJustify'
export { default as AlignLeftBox } from './AlignLeftBox'
export { default as AlignLeft } from './AlignLeft'
export { default as AlignRightBox } from './AlignRightBox'
export { default as AlignRight } from './AlignRight'
export { default as AlignTopBox } from './AlignTopBox'
export { default as AlignVerticalCenters } from './AlignVerticalCenters'
export { default as AlignVerticalSpacing } from './AlignVerticalSpacing'
export { default as AngleTool } from './AngleTool'
export { default as AntennaOff } from './AntennaOff'
export { default as AntennaSignalTag } from './AntennaSignalTag'
export { default as AntennaSignal } from './AntennaSignal'
export { default as Antenna } from './Antenna'
export { default as AppNotification } from './AppNotification'
export { default as AppStore } from './AppStore'
export { default as AppWindow } from './AppWindow'
export { default as AppleHalfAlt } from './AppleHalfAlt'
export { default as AppleHalf } from './AppleHalf'
@ -250,6 +255,7 @@ export { default as Chromecast } from './Chromecast'
export { default as ChurchAlt } from './ChurchAlt'
export { default as Church } from './Church'
export { default as CinemaOld } from './CinemaOld'
export { default as CircleSpark } from './CircleSpark'
export { default as Circle } from './Circle'
export { default as City } from './City'
export { default as CleanWater } from './CleanWater'

View file

@ -0,0 +1,12 @@
<script lang="ts">
import { defineComponent, inject } from "vue-demi";
import type { SVGAttributes } from "vue-demi";
import providerKey from "./providerKey";
export default defineComponent<SVGAttributes>(() => {
const context = inject(providerKey);
return { context };
});
</script>
<template>
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="context"><path d="M12 22L12 2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M19 16H5C3.89543 16 3 15.1046 3 14L3 10C3 8.89543 3.89543 8 5 8H19C20.1046 8 21 8.89543 21 10V14C21 15.1046 20.1046 16 19 16Z" stroke="currentColor"></path></svg>
</template>

View file

@ -0,0 +1,12 @@
<script lang="ts">
import { defineComponent, inject } from "vue-demi";
import type { SVGAttributes } from "vue-demi";
import providerKey from "./providerKey";
export default defineComponent<SVGAttributes>(() => {
const context = inject(providerKey);
return { context };
});
</script>
<template>
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="context"><path d="M3 22L3 2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M21 22V2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M15 16H9C7.89543 16 7 15.1046 7 14V10C7 8.89543 7.89543 8 9 8H15C16.1046 8 17 8.89543 17 10V14C17 15.1046 16.1046 16 15 16Z" stroke="currentColor"></path></svg>
</template>

View file

@ -0,0 +1,12 @@
<script lang="ts">
import { defineComponent, inject } from "vue-demi";
import type { SVGAttributes } from "vue-demi";
import providerKey from "./providerKey";
export default defineComponent<SVGAttributes>(() => {
const context = inject(providerKey);
return { context };
});
</script>
<template>
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="context"><path d="M22 12L2 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8 19V5C8 3.89543 8.89543 3 10 3H14C15.1046 3 16 3.89543 16 5V19C16 20.1046 15.1046 21 14 21H10C8.89543 21 8 20.1046 8 19Z" stroke="currentColor"></path></svg>
</template>

View file

@ -0,0 +1,12 @@
<script lang="ts">
import { defineComponent, inject } from "vue-demi";
import type { SVGAttributes } from "vue-demi";
import providerKey from "./providerKey";
export default defineComponent<SVGAttributes>(() => {
const context = inject(providerKey);
return { context };
});
</script>
<template>
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="context"><path d="M22 3L2 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M22 21L2 21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M8 15V9C8 7.89543 8.89543 7 10 7H14C15.1046 7 16 7.89543 16 9V15C16 16.1046 15.1046 17 14 17H10C8.89543 17 8 16.1046 8 15Z" stroke="currentColor"></path></svg>
</template>

View file

@ -0,0 +1,12 @@
<script lang="ts">
import { defineComponent, inject } from "vue-demi";
import type { SVGAttributes } from "vue-demi";
import providerKey from "./providerKey";
export default defineComponent<SVGAttributes>(() => {
const context = inject(providerKey);
return { context };
});
</script>
<template>
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="context"><path d="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M10.5 5.5L17.5 16.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M13.5 5.5L6.5 16.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M13.5 14H6.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M17.5 14H16" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path></svg>
</template>

View file

@ -0,0 +1,12 @@
<script lang="ts">
import { defineComponent, inject } from "vue-demi";
import type { SVGAttributes } from "vue-demi";
import providerKey from "./providerKey";
export default defineComponent<SVGAttributes>(() => {
const context = inject(providerKey);
return { context };
});
</script>
<template>
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="context"><path d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path><path d="M13 6.5C16.1338 6.5 17.5 5.18153 17.5 2C17.5 5.18153 18.8567 6.5 22 6.5C18.8567 6.5 17.5 7.85669 17.5 11C17.5 7.85669 16.1338 6.5 13 6.5Z" stroke="currentColor" stroke-linejoin="round"></path></svg>
</template>

View file

@ -59,18 +59,23 @@ export { default as AlbumOpen } from './AlbumOpen.vue'
export { default as Album } from './Album.vue'
export { default as AlignBottomBox } from './AlignBottomBox.vue'
export { default as AlignCenter } from './AlignCenter.vue'
export { default as AlignHorizontalCenters } from './AlignHorizontalCenters.vue'
export { default as AlignHorizontalSpacing } from './AlignHorizontalSpacing.vue'
export { default as AlignJustify } from './AlignJustify.vue'
export { default as AlignLeftBox } from './AlignLeftBox.vue'
export { default as AlignLeft } from './AlignLeft.vue'
export { default as AlignRightBox } from './AlignRightBox.vue'
export { default as AlignRight } from './AlignRight.vue'
export { default as AlignTopBox } from './AlignTopBox.vue'
export { default as AlignVerticalCenters } from './AlignVerticalCenters.vue'
export { default as AlignVerticalSpacing } from './AlignVerticalSpacing.vue'
export { default as AngleTool } from './AngleTool.vue'
export { default as AntennaOff } from './AntennaOff.vue'
export { default as AntennaSignalTag } from './AntennaSignalTag.vue'
export { default as AntennaSignal } from './AntennaSignal.vue'
export { default as Antenna } from './Antenna.vue'
export { default as AppNotification } from './AppNotification.vue'
export { default as AppStore } from './AppStore.vue'
export { default as AppWindow } from './AppWindow.vue'
export { default as AppleHalfAlt } from './AppleHalfAlt.vue'
export { default as AppleHalf } from './AppleHalf.vue'
@ -250,6 +255,7 @@ export { default as Chromecast } from './Chromecast.vue'
export { default as ChurchAlt } from './ChurchAlt.vue'
export { default as Church } from './Church.vue'
export { default as CinemaOld } from './CinemaOld.vue'
export { default as CircleSpark } from './CircleSpark.vue'
export { default as Circle } from './Circle.vue'
export { default as City } from './City.vue'
export { default as CleanWater } from './CleanWater.vue'