Implement Star Rating component
You are required to Implement a star rating component.
Requirements
- By hovering over a star, the star should be filled with the color of the star
- By clicking on a star, the star should be filled with the color of the star
- Star rating should support 5 stars from 1 to 5
Example
<div class="star-rating">
<span class="star" data-value="1">★</span>
<span class="star" data-value="2">★</span>
<span class="star" data-value="3">★</span>
<span class="star" data-value="4">★</span>
<span class="star" data-value="5">★</span>
</div>