iconoir/packages/iconoir-flutter/lib/pound.dart
2023-03-20 13:33:01 -04:00

27 lines
1.1 KiB
Dart

import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Pound extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Pound({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="M10.6667 13.6C9.55558 16.2666 7.88891 18.9333 5.66669 20H16.2222C16.2222 20 17.8889 20 19 18.9333" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.1111 13.6H4" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.3333 8.8C17.3333 6.14903 15.0947 4 12.3333 4C9.57189 4 7.33331 6.14903 7.33331 8.8C7.33331 11.451 9.57189 13.6 12.3333 13.6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}