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.json

Props

PropTypeDefaultDescription
value*numberCurrent rating value
maxnumber5Maximum stars
onChangeFunctionRating change callback
readonlybooleanfalseDisable interaction
sizestringmdStar size

Usage

import { Rating } from '@revannasser/ecommerce-ui'

// Interactive star rating component
<Rating
  value={...}
  max={...}
  onChange={...}
/>