platform-bible-react
    Preparing search index...

    Function CommandInput

    • Command menu for React. These components are built on cmdk and styled with Shadcn UI.

      Parameters

      • __namedParameters: Omit<
            Pick<
                Pick<
                    DetailedHTMLProps<
                        InputHTMLAttributes<HTMLInputElement>,
                        HTMLInputElement,
                    >,
                    "key" | (keyof InputHTMLAttributes<HTMLInputElement>),
                > & { ref?: Ref<HTMLInputElement> } & { asChild?: boolean },
                "key" | "asChild" | (keyof InputHTMLAttributes<HTMLInputElement>),
            >,
            "type" | "value" | "onChange",
        > & { onValueChange?: (search: string) => void; value?: string } & RefAttributes<
            HTMLInputElement,
        >
        • OptionalonValueChange?: (search: string) => void

          Event handler called when the search value changes.

        • Optionalvalue?: string

          Optional controlled state for the value of the search input.

      Returns Element