// fallow-ignore-file unused-file // (consumers land in the sidebar/panels PR later in this stack) import { type InputHTMLAttributes } from "react"; interface SearchInputProps extends Omit, "type"> { /** Accessible name — placeholder alone is not one. */ "aria-label": string; } /** * Shared search input — one visual system (panel-input tokens) for every * panel search box, with a required accessible name. */ export function SearchInput({ className = "", ...props }: SearchInputProps) { return (
); }