import 'package:flutter/widgets.dart'; import 'package:flutter_svg/flutter_svg.dart'; class AlbumOpen extends StatelessWidget { final Color? color; final double? width; final double? height; const AlbumOpen({Key? key, this.color, this.width, this.height}) : super(key: key); @override Widget build(BuildContext context) => SvgPicture.string( ''' ''', color: color, width: width, height: height, ); }