Ubah Warna SVG di Hover, CSS
<style>
.x-svg:hover g, .x-svg:hover path{
fill: red;
}
</style>
Determined Dragonfly
<style>
.x-svg:hover g, .x-svg:hover path{
fill: red;
}
</style>
svg { width: 100px; height: 100px;}svg:hover path { fill: red;}