Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
variable CommandInput
import { CommandInput } from "https://deno.land/x/netzo@0.3.66/deps/cmdk.ts";

Command menu input. All props are forwarded to the underyling input element.

type

React.ForwardRefExoticComponent<Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "type"> & { value?: string; onValueChange?: (search: string) => void; } & React.RefAttributes<HTMLInputElement>>