See it all in action
Live demo shop with every component working together
SearchBar
Product search input with clear button
npx shadcn@latest add https://registry.rifan.xyz/r/search-bar.jsonProps
| Prop | Type | Default | Description |
|---|---|---|---|
value | string | — | Input value |
onChange | Function | — | Change handler |
onSearch | Function | — | Search submit handler |
placeholder | string | — | Input placeholder |
Usage
import { SearchBar } from '@revannasser/ecommerce-ui'
// Product search input with clear button
<SearchBar
value={...}
onChange={...}
onSearch={...}
/>