Components
Loading preview...
An interactive star rating component with configurable scale, sizes (sm/md/lg), and readonly mode. Users can click stars to set ratings with smooth hover animations and visual feedback.
@molecule-ui
npx shadcn@latest add https://21st.dev/r/molecule-lab-rushil/star-rating// TODO: Add code
import { StarRating } from "@/components/ui/star-rating";
export default function DemoOne() {
return <StarRating ratingScale={5} value={4} readonly />;
}