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">&#9733;</span>
  <span class="star" data-value="2">&#9733;</span>
  <span class="star" data-value="3">&#9733;</span>
  <span class="star" data-value="4">&#9733;</span>
  <span class="star" data-value="5">&#9733;</span>
</div>