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

31 lines
1.5 KiB
Dart

import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class NumberedListRight extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const NumberedListRight({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="M3 5L15 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20.5 7L20.5 3L19 4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M21 14L19 14L20.9047 11.0371C20.9669 10.9403 21.0021 10.8268 20.9771 10.7145C20.9193 10.4557 20.716 10 20 10C19 10 19 10.8889 19 10.8889C19 10.8889 19 10.8889 19 10.8889L19 11.1111" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.5 19L20 19C20.5523 19 21 19.4477 21 20V20C21 20.5523 20.5523 21 20 21L19 21" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19 17L21 17L19.5 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 12L15 12" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 19L15 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}