See it all in action
Live demo shop with every component working together
Rating
Interactive star rating component
npx shadcn@latest add https://registry.rifan.xyz/r/rating.jsonProps
| Prop | Type | Default | Description |
|---|---|---|---|
value* | number | — | Current rating value |
max | number | 5 | Maximum stars |
onChange | Function | — | Rating change callback |
readonly | boolean | false | Disable interaction |
size | string | md | Star size |
Usage
import { Rating } from '@revannasser/ecommerce-ui'
// Interactive star rating component
<Rating
value={...}
max={...}
onChange={...}
/>