minor changes

This commit is contained in:
xsahil03x
2020-11-25 16:59:54 +05:30
parent 305b920970
commit 806b34f092
2 changed files with 35 additions and 19 deletions
+12
View File
@@ -387,4 +387,16 @@ class StreamSvgIcon extends StatelessWidget {
height: size,
);
}
factory StreamSvgIcon.close_small({
double size,
Color color,
}) {
return StreamSvgIcon(
assetName: 'Icon_close_sml.svg',
color: color,
width: size,
height: size,
);
}
}