See it all in action

Live demo shop with every component working together

SortSelect

Sorting dropdown component

npx shadcn@latest add https://registry.rifan.xyz/r/sort-select.json

Props

PropTypeDefaultDescription
options*SortOption[]Available sort options
value*stringCurrent sort value
onChange*FunctionChange handler

Usage

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

// Sorting dropdown component
<SortSelect
  options={...}
  value={...}
  onChange={...}
/>