import type { InputHTMLAttributes } from "react"; type SearchInputProps = InputHTMLAttributes & { label?: string; }; export function SearchInput({ label = "Search", className = "", ...props }: SearchInputProps) { return ( {label} ); }