iconoir/packages/iconoir-flutter/lib/add_keyframe_alt.dart

26 lines
1.1 KiB
Dart
Raw Normal View History

2022-07-05 16:24:49 +02:00
import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class AddKeyframeAlt extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const AddKeyframeAlt({Key? key, this.color, this.width, this.height})
: super(key: key);
@override
Widget build(BuildContext context) => SvgPicture.string(
'''
2023-02-06 20:20:59 +01:00
<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="M20.777 13.3453L13.4799 21.3721C12.6864 22.245 11.3136 22.245 10.5201 21.3721L3.22304 13.3453C2.52955 12.5825 2.52955 11.4175 3.22304 10.6547L10.5201 2.62787C11.3136 1.755 12.6864 1.755 13.4799 2.62787L20.777 10.6547C21.4705 11.4175 21.4705 12.5825 20.777 13.3453Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
2022-07-05 16:24:49 +02:00
<path d="M9 12H12M15 12H12M12 12V9M12 12V15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
2023-03-20 18:33:01 +01:00
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
2022-07-05 16:24:49 +02:00
width: width,
height: height,
);
}