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

30 lines
1.3 KiB
Dart

import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class Stackoverflow extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const Stackoverflow({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="M19 15V21H5V15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 17L8 17" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.9126 14.6633L8.0874 13" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16.7127 12.3809L9.46228 9" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.1728 10.6423L12.0444 5.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20.0338 8.80409L15.1085 2.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}