eye static method
Implementation
static Widget eye({double? width, double? height, required Color color}) {
return SvgPicture.asset(
"${path}icon-eye.svg",
width: width,
height: height,
colorFilter: ColorFilter.mode(color, BlendMode.srcIn),
);
}