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

35 lines
1.7 KiB
Dart

import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ShoppingCodeError extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ShoppingCodeError({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="M6 5V7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 5V11" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 5V6" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 10V16" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 18.5V19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 18.5V19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 14V16" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14 13V15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14 5V10" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18 9V13" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.1213 21.364L18.2427 19.2427M18.2427 19.2427L20.364 17.1213M18.2427 19.2427L16.1213 17.1213M18.2427 19.2427L20.364 21.364" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}