Command

Command component documentation.

Usage

import {
  Command,
  CommandInput,
  CommandList,
  CommandEmpty,
  CommandGroup,
  CommandSeparator,
  CommandItem,
} from "@aqqo/aqqo-ui";
<Command>
  <CommandInput placeholder="Type a command or search..." />
  <CommandList>
    <CommandEmpty>No results found.</CommandEmpty>
    <CommandGroup>
      <CommandItem>First Command</CommandItem>
      <CommandItem>Second Command</CommandItem>
    </CommandGroup>
    <CommandSeparator />
    <CommandGroup>
      <CommandItem>Third Command</CommandItem>
      <CommandItem>Fourth Command</CommandItem>
    </CommandGroup>
  </CommandList>
</Command>

On this page

  1. Usage
Scroll to top