See it all in action

Live demo shop with every component working together

CartSummary

Cart totals and checkout section

npx shadcn@latest add https://registry.rifan.xyz/r/cart-summary.json

Props

PropTypeDefaultDescription
subtotal*numberCart subtotal
shippingnumberShipping cost
taxnumberTax amount

Usage

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

// Cart totals and checkout section
<CartSummary
  subtotal={...}
  shipping={...}
  tax={...}
/>