Themes
- Default
- Catppuccin
- Dracula
- High Contrast
- High Contrast Light
- Monokai
- Nord
- One Dark
- Solarized
- Tokyo Night
- AMOLED
- Aura
- Ayu
- Carbonfox
- Catppuccin Frappe
- Catppuccin Macchiato
- Cobalt2
- Cursor
- Everforest
- Flexoki
- GitHub
- Gruvbox
- Kanagawa
- Lucent Orng
- Material
- Matrix
- Mercury
- Night Owl
- OC-2
- One Dark Pro
- OpenCode
- Orng
- Osaka Jade
- Palenight
- Rose Pine
- Shades of Purple
- Synthwave '84
- Vercel
- Vesper
- Zenburn
Utility
AI
Terminal
Installation
$ pnpm dlx shadcn@latest add @termcn/search-input
Usage
import { SearchInput } from "@/components/ui/search-input";<SearchInput
label="Search Packages"
options={["react", "vue", "svelte", "angular", "solid"]}
placeholder="Search..."
onSelect={(item) => console.log("Selected:", item)}
/>API Reference
SearchInput
| Prop | Type | Default |
|---|---|---|
options | T[] | - |
getValue | (item: T) => string | - |
value | string | - |
onChange | (query: string) => void | - |
onSelect | (item: T) => void | - |
placeholder | string | "Search..." |
label | string | - |
maxResults | number | 5 |
id | string | - |
borderStyle | "single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic" | "round" |
paddingX | number | 1 |
cursor | string | "█" |
searchIcon | string | "🔍 " |
resultCursor | string | "› " |