import { Rating, RatingButton } from '@/components/ui/rating'; const Demo = () => ( <Rating defaultValue={3}> {Array.from({ length: 5 }).map((_, index) => ( <RatingButton key={index} /> ))} </Rating> ); export default { Demo }
Part of Kibo UI — browse the full library on 21st.dev.