Having trouble changing the color of the icon using this method. The image is being sourced from "next/image"
<Image
className={styles.icon}
alt="arrow"
src={ArrowIcon}
/>
module.css
.icon {
stroke: blanchedalmond;
& path {
stroke: blanchedalmond;
color: blanchedalmond;
}
}