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

29 lines
1.5 KiB
Dart

import 'package:flutter/widgets.dart';
import 'package:flutter_svg/flutter_svg.dart';
class GoogleDriveSync extends StatelessWidget {
final Color? color;
final double? width;
final double? height;
const GoogleDriveSync({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="M9.14286 3.00375L14.8571 3M9.14286 3.00375L2 15.0038M9.14286 3.00375L14.0446 12.5M14.8571 3L5.575 21M14.8571 3L20.2126 12M5.575 21L2 15.0038M5.575 21H12.0036M2 15.0038H12.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M22.6663 17.6667C22.0476 16.097 20.6344 15 18.9901 15C17.2317 15 15.7376 16.2545 15.1967 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20.9951 17.7722H22.4C22.7314 17.7722 23 17.5036 23 17.1722V15.55" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.3337 20.3333C15.9524 21.903 17.3656 23 19.0099 23C20.7683 23 22.2624 21.7455 22.8033 20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.0049 20.2278H15.6C15.2686 20.2278 15 20.4964 15 20.8278V22.45" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
''',
colorFilter:
color != null ? ColorFilter.mode(color!, BlendMode.srcIn) : null,
width: width,
height: height,
);
}