iconoir/packages/iconoir-flutter/lib/archery.dart

26 lines
1,008 B
Dart
Raw Normal View History

2022-07-05 16:24:49 +02:00
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Archery extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Archery({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
2023-02-06 20:20:59 +01:00
<svg width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8 12H17M8 12L6 10H2L4 12L2 14H6L8 12ZM17 12L15 10M17 12L15 14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 22.5C18.7614 22.5 21 17.799 21 12C21 6.20101 18.7614 1.5 16 1.5C13.2386 1.5 11 6.20101 11 12C11 17.799 13.2386 22.5 16 22.5Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
2022-07-05 16:24:49 +02:00
</svg>
''',
2023-03-20 18:33:01 +01:00
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
2022-07-05 16:24:49 +02:00
width: width,
height: height,
);
}