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

27 lines
1.1 KiB
Dart

import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class GitMerge extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const GitMerge({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="M18 20C19.1046 20 20 19.1046 20 18C20 16.8954 19.1046 16 18 16C16.8954 16 16 16.8954 16 18C16 19.1046 16.8954 20 18 20Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 21V7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 7V9C6 12.5 8.5 18 14.5 18H16" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6 7C7.10457 7 8 6.10457 8 5C8 3.89543 7.10457 3 6 3C4.89543 3 4 3.89543 4 5C4 6.10457 4.89543 7 6 7Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
color: color,
width: width,
height: height,
);
}