Rating components can be used as to get feedback of a product or services from the user or the overall review of the product which is calculated from multiple value of review from the user
Here is the Rating component and you can give any rating from one star to five star
<div class="star-rating"> | |
<input type="radio" name="stars" id="star-a" value="5" /> | |
<label for="star-a"></label> | |
<input type="radio" name="stars" id="star-b" value="4" /> | |
<label for="star-b"></label> | |
<input type="radio" name="stars" id="star-c" value="3" /> | |
<label for="star-c"></label> | |
<input type="radio" name="stars" id="star-d" value="2" /> | |
<label for="star-d"></label> | |
<input type="radio" name="stars" id="star-e" value="1" /> | |
<label for="star-e"></label> | |
</div> | |