Trigger button styled as a search field that opens a CommandMenu.
SearchCommand is the trigger pattern for global command/search surfaces. It looks like a search field but acts as a <button> and opens a CommandMenu on click. Pair with the ⌘K shortcut.
Render inside TopBar.search.
<SearchCommand />import { SearchCommand } from "@froggdesign/enter-ui-react";SearchCommand is a real <button>, so it integrates with focus order, keyboard, and screen readers. The shortcut shows up as Kbd for sighted users; bind the keyboard handler at the route level to actually open the command palette.
placeholder: text shown inside the trigger (also default aria-label).shortcut: keyboard hint rendered as a Kbd. Pass empty string to hide.hint: optional muted text rendered before the shortcut.Every exported component accepts className. EnterUI styles use .eui-* classes and --eui-* variables mapped from FroggDesign theme tokens.