import { Search, X, Command } from 'lucide-react'; import { Input } from '@/components/ui/input'; import { Button } from '@/components/ui/button'; import { cn } from '@/lib/utils'; interface SearchBarProps { value: string; onChange: (value: string) => void; placeholder?: string; className?: string; compact?: boolean; } export function SearchBar({ value, onChange, placeholder = 'Search skills, aliases, keywords…', className, compact = false, }: SearchBarProps) { return (