Update build artifacts

This commit is contained in:
lucaburgio 2022-11-01 20:40:33 +00:00 committed by github-actions[bot]
parent 1e31060d41
commit cc59657579
11 changed files with 9 additions and 102 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

@ -1,24 +0,0 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FastArrowBottom extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FastArrowBottom({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="M6 13L12 19L18 13" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 5L12 11L18 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -12,9 +12,9 @@ class FastArrowDown extends StatelessWidget {
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
<svg width="24" height="24" stroke-width="1.5" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.5 7L12 10.5L8.5 7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.5 13L12 16.5L8.5 13" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<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="M6 13L12 19L18 13" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 5L12 11L18 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,

View file

@ -414,7 +414,6 @@ export './facebook.dart';
export './facebook_squared.dart';
export './facetime.dart';
export './farm.dart';
export './fast_arrow_bottom.dart';
export './fast_arrow_down.dart';
export './fast_arrow_down_box.dart';
export './fast_arrow_left.dart';

View file

@ -1,33 +0,0 @@
import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgFastArrowBottom(
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="M6 13l6 6 6-6M6 5l6 6 6-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgFastArrowBottom);
export default ForwardRef;

View file

@ -12,15 +12,15 @@ function SvgFastArrowDown(
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M15.5 7L12 10.5 8.5 7M15.5 13L12 16.5 8.5 13"
d="M6 13l6 6 6-6M6 5l6 6 6-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -412,7 +412,6 @@ export { default as FacebookSquared } from './FacebookSquared'
export { default as Facebook } from './Facebook'
export { default as Facetime } from './Facetime'
export { default as Farm } from './Farm'
export { default as FastArrowBottom } from './FastArrowBottom'
export { default as FastArrowDownBox } from './FastArrowDownBox'
export { default as FastArrowDown } from './FastArrowDown'
export { default as FastArrowLeftBox } from './FastArrowLeftBox'

View file

@ -1,33 +0,0 @@
import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgFastArrowBottom(
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="M6 13l6 6 6-6M6 5l6 6 6-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgFastArrowBottom);
export default ForwardRef;

View file

@ -11,8 +11,8 @@ function SvgFastArrowDown(
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
@ -20,7 +20,7 @@ function SvgFastArrowDown(
{...props}
>
<path
d="M15.5 7L12 10.5 8.5 7M15.5 13L12 16.5 8.5 13"
d="M6 13l6 6 6-6M6 5l6 6 6-6"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"

View file

@ -412,7 +412,6 @@ export { default as FacebookSquared } from './FacebookSquared'
export { default as Facebook } from './Facebook'
export { default as Facetime } from './Facetime'
export { default as Farm } from './Farm'
export { default as FastArrowBottom } from './FastArrowBottom'
export { default as FastArrowDownBox } from './FastArrowDownBox'
export { default as FastArrowDown } from './FastArrowDown'
export { default as FastArrowLeftBox } from './FastArrowLeftBox'