See it all in action
Live demo shop with every component working together
CartItem
Individual item in shopping cart
npx shadcn@latest add https://registry.rifan.xyz/r/cart-item.jsonProps
| Prop | Type | Default | Description |
|---|---|---|---|
item* | CartItem | — | Cart item data |
onUpdateQuantity* | Function | — | Quantity update handler |
onRemove* | Function | — | Item remove handler |
Usage
import { CartItem } from '@revannasser/ecommerce-ui'
// Individual item in shopping cart
<CartItem
item={...}
onUpdateQuantity={...}
onRemove={...}
/>