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

Props

PropTypeDefaultDescription
valuestringInput value
onChangeFunctionChange handler
onSearchFunctionSearch submit handler
placeholderstringInput placeholder

Usage

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

// Product search input with clear button
<SearchBar
  value={...}
  onChange={...}
  onSearch={...}
/>