I've tried to use the Rating component with the below code. But the icons aren't rendering.
import { Rating } from "@progress/kendo-react-inputs";
function RatingExample() {
return <Rating />
}
export default RatingExample;
Taking a quick peak into the html shows a list of span - which makes sense.
<span dir="ltr" data-half="false" title="1" class="k-rating-item"><span class="k-icon k-i-star-outline-icon" role="presentation"></span></span>
The Icon is different from the one listed here. To check it I made a quick change:
<span class="k-icon k-i-star-outline" role="presentation"></span>
And it shows up.
It seems like there a small bug here, if I'm using the component wrong please advise.