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

25 lines
786 B
Dart
Raw Normal View History

2023-02-22 23:51:18 +01:00
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ArrowBr extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ArrowBr({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.00005 6.00004L19 19M19 19V6.52004M19 19H6.52005" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
2023-03-20 18:33:01 +01:00
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
2023-02-22 23:51:18 +01:00
width: width,
height: height,
);
}