iconoir/packages/iconoir-flutter/lib/electronics_chip.dart
2022-07-05 10:24:49 -04:00

34 lines
1.7 KiB
Dart

import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class ElectronicsChip extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const ElectronicsChip({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="M7 19.4V4.6C7 4.26863 7.26863 4 7.6 4H16.4C16.7314 4 17 4.26863 17 4.6V19.4C17 19.7314 16.7314 20 16.4 20H7.6C7.26863 20 7 19.7314 7 19.4Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14 20V22.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 20V22.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14 4V1.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M10 4V1.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7 12H4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.5 12H17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7 6.5H4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.5 6.5H17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7 17.5H4.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.5 17.5H17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}