Update build artifacts

This commit is contained in:
lucaburgio 2023-01-08 12:19:52 +00:00 committed by github-actions[bot]
parent 80c638b599
commit 9671e3d5d4
290 changed files with 921 additions and 1016 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,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class AddCircledOutline extends StatelessWidget {
class AddCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AddCircledOutline({Key? key, this.color, this.width, this.height})
const AddCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class AntennaSignalRounded extends StatelessWidget {
class AntennaSignalTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AntennaSignalRounded({Key? key, this.color, this.width, this.height})
const AntennaSignalTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowBlCircled extends StatelessWidget {
class ArrowBlCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowBlCircled({Key? key, this.color, this.width, this.height})
const ArrowBlCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowBrCircled extends StatelessWidget {
class ArrowBrCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowBrCircled({Key? key, this.color, this.width, this.height})
const ArrowBrCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowDownCircled extends StatelessWidget {
class ArrowDownCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowDownCircled({Key? key, this.color, this.width, this.height})
const ArrowDownCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -0,0 +1,23 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowEmailForward extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowEmailForward({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 10L8 10C0 10 0 21 8 21M22 10L15 3M22 10L15 17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowLeftCircled extends StatelessWidget {
class ArrowLeftCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowLeftCircled({Key? key, this.color, this.width, this.height})
const ArrowLeftCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowRightCircled extends StatelessWidget {
class ArrowRightCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowRightCircled({Key? key, this.color, this.width, this.height})
const ArrowRightCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowTlCircled extends StatelessWidget {
class ArrowTlCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowTlCircled({Key? key, this.color, this.width, this.height})
const ArrowTlCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowTrCircled extends StatelessWidget {
class ArrowTrCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowTrCircled({Key? key, this.color, this.width, this.height})
const ArrowTrCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowUpCircled extends StatelessWidget {
class ArrowUpCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowUpCircled({Key? key, this.color, this.width, this.height})
const ArrowUpCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class BehanceSquared extends StatelessWidget {
class BehanceTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const BehanceSquared({Key? key, this.color, this.width, this.height})
const BehanceTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class BluetoothRounded extends StatelessWidget {
class BluetoothTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const BluetoothRounded({Key? key, this.color, this.width, this.height})
const BluetoothTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class BoldSquareOutline extends StatelessWidget {
class BoldSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const BoldSquareOutline({Key? key, this.color, this.width, this.height})
const BoldSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class BookmarkCircled extends StatelessWidget {
class BookmarkCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const BookmarkCircled({Key? key, this.color, this.width, this.height})
const BookmarkCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class BusOutline extends StatelessWidget {
class Bus extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const BusOutline({Key? key, this.color, this.width, this.height})
const Bus({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CableRounded extends StatelessWidget {
class CableTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CableRounded({Key? key, this.color, this.width, this.height})
const CableTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CarOutline extends StatelessWidget {
class Car extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CarOutline({Key? key, this.color, this.width, this.height})
const Car({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CheckCircledOutline extends StatelessWidget {
class CheckCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CheckCircledOutline({Key? key, this.color, this.width, this.height})
const CheckCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ClockOutline extends StatelessWidget {
class Clock extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ClockOutline({Key? key, this.color, this.width, this.height})
const Clock({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,24 +0,0 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class CreditCard2 extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const CreditCard2({Key? key, this.color, this.width, this.height})
: super(key: key);
@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="M2 9V5.6C2 5.26863 2.26863 5 2.6 5H21.4C21.7314 5 22 5.26863 22 5.6V9V18.4C22 18.7314 21.7314 19 21.4 19H2.6C2.26863 19 2 18.7314 2 18.4V9ZM2 9H16" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="15" y="12" width="4" height="4" rx="0.6" fill="currentColor"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class DatabaseRounded extends StatelessWidget {
class DatabaseTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const DatabaseRounded({Key? key, this.color, this.width, this.height})
const DatabaseTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class DeleteCircledOutline extends StatelessWidget {
class DeleteCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const DeleteCircledOutline({Key? key, this.color, this.width, this.height})
const DeleteCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class DownloadCircledOutline extends StatelessWidget {
class DownloadCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const DownloadCircledOutline({Key? key, this.color, this.width, this.height})
const DownloadCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class DownloadSquareOutline extends StatelessWidget {
class DownloadSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const DownloadSquareOutline({Key? key, this.color, this.width, this.height})
const DownloadSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class EmojiLookBottom extends StatelessWidget {
class EmojiLookDown extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const EmojiLookBottom({Key? key, this.color, this.width, this.height})
const EmojiLookDown({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class EmojiLookTop extends StatelessWidget {
class EmojiLookUp extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const EmojiLookTop({Key? key, this.color, this.width, this.height})
const EmojiLookUp({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class EvRounded extends StatelessWidget {
class EvTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const EvRounded({Key? key, this.color, this.width, this.height})
const EvTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FacebookSquared extends StatelessWidget {
class FacebookTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FacebookSquared({Key? key, this.color, this.width, this.height})
const FacebookTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FastArrowTop extends StatelessWidget {
class FastArrowUp extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FastArrowTop({Key? key, this.color, this.width, this.height})
const FastArrowUp({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FastBottomCircle extends StatelessWidget {
class FastDownCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FastBottomCircle({Key? key, this.color, this.width, this.height})
const FastDownCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FastTopCircle extends StatelessWidget {
class FastUpCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FastTopCircle({Key? key, this.color, this.width, this.height})
const FastUpCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FingerprintCircledOk extends StatelessWidget {
class FingerprintCheckCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FingerprintCircledOk({Key? key, this.color, this.width, this.height})
const FingerprintCheckCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FingerprintCircled extends StatelessWidget {
class FingerprintCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FingerprintCircled({Key? key, this.color, this.width, this.height})
const FingerprintCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FingerprintCircledError extends StatelessWidget {
class FingerprintErrorCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FingerprintCircledError({Key? key, this.color, this.width, this.height})
const FingerprintErrorCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FingerprintCircledLock extends StatelessWidget {
class FingerprintLockCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FingerprintCircledLock({Key? key, this.color, this.width, this.height})
const FingerprintLockCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FingerprintSquared extends StatelessWidget {
class FingerprintSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FingerprintSquared({Key? key, this.color, this.width, this.height})
const FingerprintSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FingerPrintWindow extends StatelessWidget {
class FingerprintWindow extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FingerPrintWindow({Key? key, this.color, this.width, this.height})
const FingerprintWindow({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -12,8 +12,9 @@ class Forward extends StatelessWidget {
@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 10L8 10C0 10 0 21 8 21M22 10L15 3M22 10L15 17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<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="M2.95592 5.70436C2.55976 5.41246 2 5.69531 2 6.1874V17.8126C2 18.3047 2.55976 18.5875 2.95592 18.2956L10.8445 12.483C11.1699 12.2432 11.1699 11.7568 10.8445 11.517L2.95592 5.70436Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.9559 5.70436C13.5598 5.41246 13 5.69531 13 6.1874V17.8126C13 18.3047 13.5598 18.5875 13.9559 18.2956L21.8445 12.483C22.1699 12.2432 22.1699 11.7568 21.8445 11.517L13.9559 5.70436Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,

View file

@ -1,24 +0,0 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ForwardOutline extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ForwardOutline({Key? key, this.color, this.width, this.height})
: super(key: key);
@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="M2.95592 5.70436C2.55976 5.41246 2 5.69531 2 6.1874V17.8126C2 18.3047 2.55976 18.5875 2.95592 18.2956L10.8445 12.483C11.1699 12.2432 11.1699 11.7568 10.8445 11.517L2.95592 5.70436Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.9559 5.70436C13.5598 5.41246 13 5.69531 13 6.1874V17.8126C13 18.3047 13.5598 18.5875 13.9559 18.2956L21.8445 12.483C22.1699 12.2432 22.1699 11.7568 21.8445 11.517L13.9559 5.70436Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class FxRounded extends StatelessWidget {
class FxTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const FxRounded({Key? key, this.color, this.width, this.height})
const FxTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class GitHubOutline extends StatelessWidget {
class GithubCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const GitHubOutline({Key? key, this.color, this.width, this.height})
const GithubCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class GoogleCircled extends StatelessWidget {
class GoogleCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const GoogleCircled({Key? key, this.color, this.width, this.height})
const GoogleCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class QuestionMarkCircle extends StatelessWidget {
class HelpCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const QuestionMarkCircle({Key? key, this.color, this.width, this.height})
const HelpCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class QuestionSquareOutline extends StatelessWidget {
class HelpSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const QuestionSquareOutline({Key? key, this.color, this.width, this.height})
const HelpSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -20,7 +20,7 @@ export './accessibility.dart';
export './accessibility_sign.dart';
export './accessibility_tech.dart';
export './activity.dart';
export './add_circled_outline.dart';
export './add_circle.dart';
export './add_database_script.dart';
export './add_folder.dart';
export './add_frame.dart';
@ -63,7 +63,7 @@ export './angle_tool.dart';
export './antenna.dart';
export './antenna_off.dart';
export './antenna_signal.dart';
export './antenna_signal_rounded.dart';
export './antenna_signal_tag.dart';
export './app_notification.dart';
export './app_window.dart';
export './apple.dart';
@ -81,26 +81,27 @@ export './archery_match.dart';
export './archive.dart';
export './area_search.dart';
export './arrow_archery.dart';
export './arrow_bl_circled.dart';
export './arrow_bl_circle.dart';
export './arrow_bl_square.dart';
export './arrow_br_circled.dart';
export './arrow_br_circle.dart';
export './arrow_br_square.dart';
export './arrow_down.dart';
export './arrow_down_circled.dart';
export './arrow_down_circle.dart';
export './arrow_email_forward.dart';
export './arrow_left.dart';
export './arrow_left_circled.dart';
export './arrow_left_circle.dart';
export './arrow_right.dart';
export './arrow_right_circled.dart';
export './arrow_right_circle.dart';
export './arrow_separate.dart';
export './arrow_separate_vertical.dart';
export './arrow_tl_circled.dart';
export './arrow_tl_circle.dart';
export './arrow_tl_square.dart';
export './arrow_tr_circled.dart';
export './arrow_tr_circle.dart';
export './arrow_tr_square.dart';
export './arrow_union.dart';
export './arrow_union_vertical.dart';
export './arrow_up.dart';
export './arrow_up_circled.dart';
export './arrow_up_circle.dart';
export './asana.dart';
export './at_sign.dart';
export './at_sign_circle.dart';
@ -131,7 +132,7 @@ export './beach_bag_big.dart';
export './bed.dart';
export './bed_ready.dart';
export './behance.dart';
export './behance_squared.dart';
export './behance_tag.dart';
export './bell.dart';
export './bell_notification.dart';
export './bell_off.dart';
@ -144,14 +145,14 @@ export './bin_minus.dart';
export './bishop.dart';
export './bitbucket.dart';
export './bluetooth.dart';
export './bluetooth_rounded.dart';
export './bluetooth_tag.dart';
export './bold.dart';
export './bold_square_outline.dart';
export './bold_square.dart';
export './bonfire.dart';
export './book.dart';
export './book_stack.dart';
export './bookmark_book.dart';
export './bookmark_circled.dart';
export './bookmark_circle.dart';
export './bookmark_empty.dart';
export './border_bl.dart';
export './border_bottom.dart';
@ -185,15 +186,15 @@ export './bubble_star.dart';
export './bubble_upload.dart';
export './bubble_warning.dart';
export './building.dart';
export './bus_outline.dart';
export './bus.dart';
export './bus_stop.dart';
export './cable_rounded.dart';
export './cable_tag.dart';
export './calculator.dart';
export './calendar.dart';
export './camera.dart';
export './cancel.dart';
export './candlestick_chart.dart';
export './car_outline.dart';
export './car.dart';
export './carbon.dart';
export './card_issue.dart';
export './card_locked.dart';
@ -216,7 +217,7 @@ export './chat_bubble_warning.dart';
export './chat_lines.dart';
export './chat_remove.dart';
export './check.dart';
export './check_circled_outline.dart';
export './check_circle.dart';
export './check_window.dart';
export './chocolate.dart';
export './chromecast.dart';
@ -228,7 +229,7 @@ export './circle.dart';
export './city.dart';
export './clean_water.dart';
export './clipboard_check.dart';
export './clock_outline.dart';
export './clock.dart';
export './closed_captions.dart';
export './closet.dart';
export './cloud.dart';
@ -273,7 +274,6 @@ export './cpu_warning.dart';
export './cracked_egg.dart';
export './creative_commons.dart';
export './credit_card.dart';
export './credit_card_2.dart';
export './credit_cards.dart';
export './crib.dart';
export './crop.dart';
@ -300,11 +300,11 @@ export './database_backup.dart';
export './database_export.dart';
export './database_monitor.dart';
export './database_restore.dart';
export './database_rounded.dart';
export './database_script.dart';
export './database_settings.dart';
export './database_star.dart';
export './database_stats.dart';
export './database_tag.dart';
export './db.dart';
export './db_check.dart';
export './db_error.dart';
@ -312,7 +312,7 @@ export './db_search.dart';
export './db_star.dart';
export './db_warning.dart';
export './de_compress.dart';
export './delete_circled_outline.dart';
export './delete_circle.dart';
export './delivery.dart';
export './delivery_truck.dart';
export './depth.dart';
@ -347,9 +347,9 @@ export './donate.dart';
export './double_check.dart';
export './down_round_arrow.dart';
export './download.dart';
export './download_circled_outline.dart';
export './download_circle.dart';
export './download_data_window.dart';
export './download_square_outline.dart';
export './download_square.dart';
export './drag.dart';
export './drag_hand_gesture.dart';
export './drawer.dart';
@ -382,10 +382,10 @@ export './emoji.dart';
export './emoji_ball.dart';
export './emoji_blink_left.dart';
export './emoji_blink_right.dart';
export './emoji_look_bottom.dart';
export './emoji_look_down.dart';
export './emoji_look_left.dart';
export './emoji_look_right.dart';
export './emoji_look_top.dart';
export './emoji_look_up.dart';
export './emoji_puzzled.dart';
export './emoji_quite.dart';
export './emoji_really.dart';
@ -414,8 +414,8 @@ export './ev_charge_alt.dart';
export './ev_plug.dart';
export './ev_plug_charging.dart';
export './ev_plug_error.dart';
export './ev_rounded.dart';
export './ev_station.dart';
export './ev_tag.dart';
export './exclude.dart';
export './expand.dart';
export './expand_lines.dart';
@ -425,7 +425,7 @@ export './eye_empty.dart';
export './eye_off.dart';
export './face_id.dart';
export './facebook.dart';
export './facebook_squared.dart';
export './facebook_tag.dart';
export './facetime.dart';
export './farm.dart';
export './fast_arrow_down.dart';
@ -434,12 +434,12 @@ export './fast_arrow_left.dart';
export './fast_arrow_left_box.dart';
export './fast_arrow_right.dart';
export './fast_arrow_right_box.dart';
export './fast_arrow_top.dart';
export './fast_arrow_up.dart';
export './fast_arrow_up_box.dart';
export './fast_bottom_circle.dart';
export './fast_down_circle.dart';
export './fast_left_circle.dart';
export './fast_right_circle.dart';
export './fast_top_circle.dart';
export './fast_up_circle.dart';
export './favourite_book.dart';
export './favourite_window.dart';
export './female.dart';
@ -448,15 +448,15 @@ export './file_not_found.dart';
export './filter.dart';
export './filter_alt.dart';
export './finder.dart';
export './finger_print_window.dart';
export './fingerprint.dart';
export './fingerprint_circled.dart';
export './fingerprint_circled_error.dart';
export './fingerprint_circled_lock.dart';
export './fingerprint_circled_ok.dart';
export './fingerprint_check_circle.dart';
export './fingerprint_circle.dart';
export './fingerprint_error_circle.dart';
export './fingerprint_lock_circle.dart';
export './fingerprint_phone.dart';
export './fingerprint_scan.dart';
export './fingerprint_squared.dart';
export './fingerprint_square.dart';
export './fingerprint_window.dart';
export './fire_flame.dart';
export './fishing.dart';
export './flare.dart';
@ -477,7 +477,6 @@ export './football_ball.dart';
export './forward.dart';
export './forward_15_seconds.dart';
export './forward_message.dart';
export './forward_outline.dart';
export './frame.dart';
export './frame_alt.dart';
export './frame_alt_empty.dart';
@ -486,7 +485,7 @@ export './frame_simple.dart';
export './frame_tool.dart';
export './fridge.dart';
export './fx.dart';
export './fx_rounded.dart';
export './fx_tag.dart';
export './gamepad.dart';
export './garage.dart';
export './gas.dart';
@ -500,10 +499,10 @@ export './git_commit.dart';
export './git_compare.dart';
export './git_fork.dart';
export './git_hub.dart';
export './git_hub_outline.dart';
export './git_lab_full.dart';
export './git_merge.dart';
export './git_pull_request.dart';
export './github_circle.dart';
export './glass_empty.dart';
export './glass_half.dart';
export './glass_half_alt.dart';
@ -511,7 +510,7 @@ export './glasses.dart';
export './globe.dart';
export './golf.dart';
export './google.dart';
export './google_circled.dart';
export './google_circle.dart';
export './google_docs.dart';
export './google_drive.dart';
export './google_drive_check.dart';
@ -550,9 +549,10 @@ export './healthcare.dart';
export './heart.dart';
export './heating.dart';
export './heavy_rain.dart';
export './help_circle.dart';
export './help_square.dart';
export './heptagon.dart';
export './her_slips.dart';
export './hesa_warning_outline.dart';
export './hexagon.dart';
export './hexagon_alt.dart';
export './hexagon_dice.dart';
@ -598,7 +598,7 @@ export './ios_settings.dart';
export './ip_address.dart';
export './iris_scan.dart';
export './italic.dart';
export './italic_square_outline.dart';
export './italic_square.dart';
export './journal.dart';
export './journal_page.dart';
export './jpeg_format.dart';
@ -616,7 +616,7 @@ export './keyframe_align_vertical.dart';
export './keyframe_position.dart';
export './keyframes.dart';
export './keyframes_couple.dart';
export './label_outline.dart';
export './label.dart';
export './lamp.dart';
export './language.dart';
export './laptop.dart';
@ -710,6 +710,7 @@ export './mic_warning.dart';
export './microscope.dart';
export './minus.dart';
export './minus_1.dart';
export './minus_circle.dart';
export './minus_hexagon.dart';
export './minus_pin_alt.dart';
export './minus_square.dart';
@ -720,9 +721,9 @@ export './modern_tv_4_k.dart';
export './money_square.dart';
export './moon_sat.dart';
export './more_horiz.dart';
export './more_horiz_circled_outline.dart';
export './more_horiz_circle.dart';
export './more_vert.dart';
export './more_vert_circled_outline.dart';
export './more_vert_circle.dart';
export './motorcycle.dart';
export './mouse_button_left.dart';
export './mouse_button_right.dart';
@ -742,10 +743,10 @@ export './multiple_pages_add.dart';
export './multiple_pages_delete.dart';
export './multiple_pages_empty.dart';
export './multiple_pages_remove.dart';
export './music_1.dart';
export './music_1_add.dart';
export './music_2.dart';
export './music_2_add.dart';
export './music_double_note.dart';
export './music_double_note_add.dart';
export './music_note.dart';
export './music_note_add.dart';
export './nav_arrow_down.dart';
export './nav_arrow_left.dart';
export './nav_arrow_right.dart';
@ -766,16 +767,16 @@ export './no_credit_card.dart';
export './no_link.dart';
export './no_lock.dart';
export './no_smoking.dart';
export './no_smoking_circled.dart';
export './no_smoking_circle.dart';
export './notes.dart';
export './npm.dart';
export './npm_square.dart';
export './numbered_list_left.dart';
export './numbered_list_right.dart';
export './octagon.dart';
export './off_rounded.dart';
export './off_tag.dart';
export './oil_industry.dart';
export './on_rounded.dart';
export './on_tag.dart';
export './one_finger_select_hand_gesture.dart';
export './one_point_circle.dart';
export './open_book.dart';
@ -788,7 +789,7 @@ export './orange_half.dart';
export './orange_slice.dart';
export './orange_slice_alt.dart';
export './organic_food.dart';
export './organic_food_squared.dart';
export './organic_food_square.dart';
export './orthogonal_view.dart';
export './oxygen.dart';
export './package.dart';
@ -815,7 +816,7 @@ export './password_error.dart';
export './password_pass.dart';
export './paste_clipboard.dart';
export './path_arrow.dart';
export './pause_outline.dart';
export './pause.dart';
export './pause_window.dart';
export './paypal.dart';
export './pc_check.dart';
@ -830,13 +831,13 @@ export './pen_tablet.dart';
export './pen_tablet_connect_usb.dart';
export './pen_tablet_connect_wifi.dart';
export './pentagon.dart';
export './people_rounded.dart';
export './people_tag.dart';
export './percentage.dart';
export './percentage_round.dart';
export './percentage_circle.dart';
export './percentage_square.dart';
export './perspective_view.dart';
export './pharmacy_circled_cross.dart';
export './pharmacy_squared_cross.dart';
export './pharmacy_cross_circle.dart';
export './pharmacy_cross_square.dart';
export './phone.dart';
export './phone_add.dart';
export './phone_delete.dart';
@ -855,7 +856,7 @@ export './pizza_slice.dart';
export './planet.dart';
export './planet_alt.dart';
export './planet_sat.dart';
export './play_outline.dart';
export './play.dart';
export './playlist.dart';
export './playlist_add.dart';
export './playlist_play.dart';
@ -880,13 +881,11 @@ export './printing_page.dart';
export './priority_down.dart';
export './priority_up.dart';
export './private_wifi.dart';
export './profile_circled.dart';
export './profile_circle.dart';
export './prohibition.dart';
export './puzzle.dart';
export './qr_code.dart';
export './question_mark.dart';
export './question_mark_circle.dart';
export './question_square_outline.dart';
export './quote.dart';
export './quote_message.dart';
export './radiation.dart';
@ -908,7 +907,6 @@ export './refresh_double.dart';
export './reload_window.dart';
export './reminder_hand_gesture.dart';
export './remove_database_script.dart';
export './remove_empty.dart';
export './remove_folder.dart';
export './remove_frame.dart';
export './remove_from_cart.dart';
@ -933,7 +931,7 @@ export './report_columns.dart';
export './reports.dart';
export './repository.dart';
export './restart.dart';
export './rewind_outline.dart';
export './rewind.dart';
export './rhombus.dart';
export './right_round_arrow.dart';
export './rings.dart';
@ -944,7 +942,7 @@ export './rotate_camera_right.dart';
export './round_flask.dart';
export './rounded_mirror.dart';
export './rss_feed.dart';
export './rss_feed_squared.dart';
export './rss_feed_tag.dart';
export './rubik_cube.dart';
export './ruler.dart';
export './ruler_add.dart';
@ -1027,8 +1025,8 @@ export './simple_cart.dart';
export './single_tap_gesture.dart';
export './skateboard.dart';
export './skateboarding.dart';
export './skip_next_outline.dart';
export './skip_prev_outline.dart';
export './skip_next.dart';
export './skip_prev.dart';
export './sleeper_chair.dart';
export './small_lamp.dart';
export './small_lamp_alt.dart';
@ -1057,14 +1055,14 @@ export './spiral.dart';
export './spock_hand_gesture.dart';
export './square.dart';
export './stackoverflow.dart';
export './star.dart';
export './star_dashed.dart';
export './star_half_dashed.dart';
export './star_outline.dart';
export './stat_down.dart';
export './stat_up.dart';
export './stats_down_square.dart';
export './stats_report.dart';
export './stats_square_down.dart';
export './stats_square_up.dart';
export './stats_up_square.dart';
export './stretching.dart';
export './stroller.dart';
export './style_border.dart';
@ -1082,8 +1080,8 @@ export './swipe_two_fingers_left_gesture.dart';
export './swipe_two_fingers_right_gesture.dart';
export './swipe_two_fingers_up_gesture.dart';
export './swipe_up_gesture.dart';
export './switch_off_outline.dart';
export './switch_on_outline.dart';
export './switch_off.dart';
export './switch_on.dart';
export './system_restart.dart';
export './system_shut.dart';
export './table.dart';
@ -1091,11 +1089,11 @@ export './table_2_columns.dart';
export './table_rows.dart';
export './task_list.dart';
export './telegram.dart';
export './telegram_circled.dart';
export './telegram_circle.dart';
export './tennis_ball.dart';
export './tennis_ball_alt.dart';
export './terminal_outline.dart';
export './terminal_simple.dart';
export './terminal.dart';
export './terminal_tag.dart';
export './test_tube.dart';
export './text.dart';
export './text_alt.dart';
@ -1118,12 +1116,12 @@ export './tower_check.dart';
export './tower_no_access.dart';
export './tower_warning.dart';
export './trademark.dart';
export './train_outline.dart';
export './train.dart';
export './tram.dart';
export './transition_bottom.dart';
export './transition_down.dart';
export './transition_left.dart';
export './transition_right.dart';
export './transition_top.dart';
export './transition_up.dart';
export './translate.dart';
export './trash.dart';
export './treadmill.dart';
@ -1133,7 +1131,7 @@ export './trello.dart';
export './triangle.dart';
export './triangle_flag.dart';
export './triangle_flag_circle.dart';
export './triangle_flag_full.dart';
export './triangle_flag_two_stripes.dart';
export './trophy.dart';
export './truck.dart';
export './truck_length.dart';
@ -1148,7 +1146,7 @@ export './two_seater_sofa.dart';
export './type.dart';
export './umbrella_full.dart';
export './underline.dart';
export './underline_square_outline.dart';
export './underline_square.dart';
export './undo.dart';
export './undo_action.dart';
export './undo_circle.dart';
@ -1160,17 +1158,17 @@ export './unity_5.dart';
export './up_round_arrow.dart';
export './upload.dart';
export './upload_data_window.dart';
export './upload_square_outline.dart';
export './upload_square.dart';
export './usb.dart';
export './user.dart';
export './user_bag.dart';
export './user_cart.dart';
export './user_circle_alt.dart';
export './user_circle.dart';
export './user_scan.dart';
export './user_square_alt.dart';
export './user_square.dart';
export './vegan.dart';
export './vegan_rounded.dart';
export './vegan_squared.dart';
export './vegan_circle.dart';
export './vegan_square.dart';
export './verified_badge.dart';
export './verified_user.dart';
export './vertical_merge.dart';
@ -1185,20 +1183,21 @@ export './view_grid.dart';
export './view_structure_down.dart';
export './view_structure_up.dart';
export './voice.dart';
export './voice_circled.dart';
export './voice_circled_lock.dart';
export './voice_circle.dart';
export './voice_error.dart';
export './voice_lock_circle.dart';
export './voice_ok.dart';
export './voice_phone.dart';
export './voice_scan.dart';
export './voice_squared.dart';
export './voice_square.dart';
export './vr_symbol.dart';
export './waist.dart';
export './walking.dart';
export './wallet.dart';
export './warning_circled_outline.dart';
export './warning_square_outline.dart';
export './warning_triangle_outline.dart';
export './warning_circle.dart';
export './warning_hexagon.dart';
export './warning_square.dart';
export './warning_triangle.dart';
export './warning_window.dart';
export './wash.dart';
export './washing_machine.dart';
@ -1214,8 +1213,8 @@ export './wifi.dart';
export './wifi_error.dart';
export './wifi_issue.dart';
export './wifi_off.dart';
export './wifi_rounded.dart';
export './wifi_signal_none.dart';
export './wifi_tag.dart';
export './wind.dart';
export './windows.dart';
export './wrap_text.dart';

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ItalicSquareOutline extends StatelessWidget {
class ItalicSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ItalicSquareOutline({Key? key, this.color, this.width, this.height})
const ItalicSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class LabelOutline extends StatelessWidget {
class Label extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const LabelOutline({Key? key, this.color, this.width, this.height})
const Label({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class RemoveEmpty extends StatelessWidget {
class MinusCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const RemoveEmpty({Key? key, this.color, this.width, this.height})
const MinusCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class MoreHorizCircledOutline extends StatelessWidget {
class MoreHorizCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const MoreHorizCircledOutline({Key? key, this.color, this.width, this.height})
const MoreHorizCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class MoreVertCircledOutline extends StatelessWidget {
class MoreVertCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const MoreVertCircledOutline({Key? key, this.color, this.width, this.height})
const MoreVertCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Music1 extends StatelessWidget {
class MusicDoubleNote extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Music1({Key? key, this.color, this.width, this.height})
const MusicDoubleNote({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Music1Add extends StatelessWidget {
class MusicDoubleNoteAdd extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Music1Add({Key? key, this.color, this.width, this.height})
const MusicDoubleNoteAdd({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Music2 extends StatelessWidget {
class MusicNote extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Music2({Key? key, this.color, this.width, this.height})
const MusicNote({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Music2Add extends StatelessWidget {
class MusicNoteAdd extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Music2Add({Key? key, this.color, this.width, this.height})
const MusicNoteAdd({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class NoSmokingCircled extends StatelessWidget {
class NoSmokingCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const NoSmokingCircled({Key? key, this.color, this.width, this.height})
const NoSmokingCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class OffRounded extends StatelessWidget {
class OffTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const OffRounded({Key? key, this.color, this.width, this.height})
const OffTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class OnRounded extends StatelessWidget {
class OnTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const OnRounded({Key? key, this.color, this.width, this.height})
const OnTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class OrganicFoodSquared extends StatelessWidget {
class OrganicFoodSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const OrganicFoodSquared({Key? key, this.color, this.width, this.height})
const OrganicFoodSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class PauseOutline extends StatelessWidget {
class Pause extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const PauseOutline({Key? key, this.color, this.width, this.height})
const Pause({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class PeopleRounded extends StatelessWidget {
class PeopleTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const PeopleRounded({Key? key, this.color, this.width, this.height})
const PeopleTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class PercentageRound extends StatelessWidget {
class PercentageCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const PercentageRound({Key? key, this.color, this.width, this.height})
const PercentageCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class PharmacyCircledCross extends StatelessWidget {
class PharmacyCrossCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const PharmacyCircledCross({Key? key, this.color, this.width, this.height})
const PharmacyCrossCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class PharmacySquaredCross extends StatelessWidget {
class PharmacyCrossSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const PharmacySquaredCross({Key? key, this.color, this.width, this.height})
const PharmacyCrossSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class PlayOutline extends StatelessWidget {
class Play extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const PlayOutline({Key? key, this.color, this.width, this.height})
const Play({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ProfileCircled extends StatelessWidget {
class ProfileCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ProfileCircled({Key? key, this.color, this.width, this.height})
const ProfileCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class RewindOutline extends StatelessWidget {
class Rewind extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const RewindOutline({Key? key, this.color, this.width, this.height})
const Rewind({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class RssFeedSquared extends StatelessWidget {
class RssFeedTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const RssFeedSquared({Key? key, this.color, this.width, this.height})
const RssFeedTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class SkipNextOutline extends StatelessWidget {
class SkipNext extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const SkipNextOutline({Key? key, this.color, this.width, this.height})
const SkipNext({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class SkipPrevOutline extends StatelessWidget {
class SkipPrev extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const SkipPrevOutline({Key? key, this.color, this.width, this.height})
const SkipPrev({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class StarOutline extends StatelessWidget {
class Star extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const StarOutline({Key? key, this.color, this.width, this.height})
const Star({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class StatsSquareDown extends StatelessWidget {
class StatsDownSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const StatsSquareDown({Key? key, this.color, this.width, this.height})
const StatsDownSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class StatsSquareUp extends StatelessWidget {
class StatsUpSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const StatsSquareUp({Key? key, this.color, this.width, this.height})
const StatsUpSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class SwitchOffOutline extends StatelessWidget {
class SwitchOff extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const SwitchOffOutline({Key? key, this.color, this.width, this.height})
const SwitchOff({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class SwitchOnOutline extends StatelessWidget {
class SwitchOn extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const SwitchOnOutline({Key? key, this.color, this.width, this.height})
const SwitchOn({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class TelegramCircled extends StatelessWidget {
class TelegramCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TelegramCircled({Key? key, this.color, this.width, this.height})
const TelegramCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class TerminalSimple extends StatelessWidget {
class Terminal extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TerminalSimple({Key? key, this.color, this.width, this.height})
const Terminal({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class TerminalOutline extends StatelessWidget {
class TerminalTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TerminalOutline({Key? key, this.color, this.width, this.height})
const TerminalTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class TrainOutline extends StatelessWidget {
class Train extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TrainOutline({Key? key, this.color, this.width, this.height})
const Train({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class TransitionBottom extends StatelessWidget {
class TransitionDown extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TransitionBottom({Key? key, this.color, this.width, this.height})
const TransitionDown({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class TransitionTop extends StatelessWidget {
class TransitionUp extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TransitionTop({Key? key, this.color, this.width, this.height})
const TransitionUp({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class TriangleFlagFull extends StatelessWidget {
class TriangleFlagTwoStripes extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const TriangleFlagFull({Key? key, this.color, this.width, this.height})
const TriangleFlagTwoStripes({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class UnderlineSquareOutline extends StatelessWidget {
class UnderlineSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const UnderlineSquareOutline({Key? key, this.color, this.width, this.height})
const UnderlineSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class UploadSquareOutline extends StatelessWidget {
class UploadSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const UploadSquareOutline({Key? key, this.color, this.width, this.height})
const UploadSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class UserCircleAlt extends StatelessWidget {
class UserCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const UserCircleAlt({Key? key, this.color, this.width, this.height})
const UserCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class UserSquareAlt extends StatelessWidget {
class UserSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const UserSquareAlt({Key? key, this.color, this.width, this.height})
const UserSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class VeganRounded extends StatelessWidget {
class VeganCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const VeganRounded({Key? key, this.color, this.width, this.height})
const VeganCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class VeganSquared extends StatelessWidget {
class VeganSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const VeganSquared({Key? key, this.color, this.width, this.height})
const VeganSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class VoiceCircled extends StatelessWidget {
class VoiceCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const VoiceCircled({Key? key, this.color, this.width, this.height})
const VoiceCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class VoiceCircledLock extends StatelessWidget {
class VoiceLockCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const VoiceCircledLock({Key? key, this.color, this.width, this.height})
const VoiceLockCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class VoiceSquared extends StatelessWidget {
class VoiceSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const VoiceSquared({Key? key, this.color, this.width, this.height})
const VoiceSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class WarningCircledOutline extends StatelessWidget {
class WarningCircle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const WarningCircledOutline({Key? key, this.color, this.width, this.height})
const WarningCircle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class HesaWarningOutline extends StatelessWidget {
class WarningHexagon extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const HesaWarningOutline({Key? key, this.color, this.width, this.height})
const WarningHexagon({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class WarningSquareOutline extends StatelessWidget {
class WarningSquare extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const WarningSquareOutline({Key? key, this.color, this.width, this.height})
const WarningSquare({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class WarningTriangleOutline extends StatelessWidget {
class WarningTriangle extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const WarningTriangleOutline({Key? key, this.color, this.width, this.height})
const WarningTriangle({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -1,12 +1,12 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class WifiRounded extends StatelessWidget {
class WifiTag extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const WifiRounded({Key? key, this.color, this.width, this.height})
const WifiTag({Key? key, this.color, this.width, this.height})
: super(key: key);
@override

View file

@ -2,7 +2,7 @@ import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAddCircledOutline(
function SvgAddCircle(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
@ -29,5 +29,5 @@ function SvgAddCircledOutline(
);
}
const ForwardRef = React.forwardRef(SvgAddCircledOutline);
const ForwardRef = React.forwardRef(SvgAddCircle);
export default ForwardRef;

View file

@ -2,7 +2,7 @@ import * as React from "react";
import Svg, { SvgProps, Path } from "react-native-svg";
import { IconoirContext } from "./IconoirContext";
function SvgAntennaSignalRounded(
function SvgAntennaSignalTag(
passedProps: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
@ -33,5 +33,5 @@ function SvgAntennaSignalRounded(
);
}
const ForwardRef = React.forwardRef(SvgAntennaSignalRounded);
const ForwardRef = React.forwardRef(SvgAntennaSignalTag);
export default ForwardRef;

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