Search input with debounce and loading state.
import { SearchInput } from "@/components/ui";<SearchInput
placeholder="Search..."
onChange={(value) => setSearchQuery(value)}
/>Custom debounce delay
<SearchInput placeholder="Search users..." debounce={500} onChange={handleSearch}/>Show loading state while searching
<SearchInput placeholder="Search..." loading={isSearching} onChange={handleSearch}/>Configure your app with the features you need and download production-ready code.
Start Configuring