A command menu with search and keyboard navigation.
Loading...
import {
Calculator,
Calendar,Installation
pnpmnpmyarnbun
Usage
import {
Command,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
CommandList,
} from "@/components/ui/command"<Command>
<CommandInput placeholder="Type a command or search..." />
<CommandList>
<CommandEmpty>No results found.</CommandEmpty>
<CommandGroup heading="Suggestions">
<CommandItem>Calendar</CommandItem>
<CommandItem>Search</CommandItem>
</CommandGroup>
</CommandList>
</Command>Examples
Dialog
Use CommandDialog to show the command menu in a dialog (⌘K style).
Loading...
"use client"
import * as React from "react"