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

29 lines
1.3 KiB
Dart

import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class WifiError extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const WifiError({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="M12 18.51L12.01 18.4989" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M2 7C8 2.5 16 2.5 22 7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 11C9 8 15 8 19 11" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.5 14.5C10.7504 13.1 13.2498 13.0996 15.5001 14.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.1213 21.364L19.2426 19.2427M21.364 17.1214L19.2426 19.2427M19.2426 19.2427L17.1213 17.1214M19.2426 19.2427L21.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,
);
}