Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/netzo/deps/cmdk.ts>CommandDialog

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
variable CommandDialog
import { CommandDialog } from "https://deno.land/x/netzo@0.5.65/deps/cmdk.ts";

Renders the command menu in a Radix Dialog.

type

React.ForwardRefExoticComponent<
& RadixDialog.DialogProps
& Children
& DivProps
& { label?: string; shouldFilter?: boolean; filter?: (value: string, search: string) => number; value?: string; onValueChange?: (value: string) => void; loop?: boolean; }
& { container?: HTMLElement; }
& React.RefAttributes<HTMLDivElement>
>