Dropdown Menu

Displays a menu of actions or options that the user can choose from, triggered by a button.

Installation

pnpm add @notion-kit/ui

Anatomy

<DropdownMenu>
  <DropdownMenuTrigger />
  <DropdownMenuContent>
    <DropdownMenuGroup>
      <DropdownMenuLabel />
      <DropdownMenuItem />
      <DropdownMenuItem />
    </DropdownMenuGroup>
    <DropdownMenuSeparator />
    <DropdownMenuSub>
      <DropdownMenuSubTrigger />
      <DropdownMenuContent>
        <DropdownMenuGroup>
          <DropdownMenuItem />
        </DropdownMenuGroup>
      </DropdownMenuContent>
    </DropdownMenuSub>
  </DropdownMenuContent>
</DropdownMenu>

Examples


Default

A dropdown menu with groups, shortcuts, submenus, and a warning item.

Checkbox Items

Use DropdownMenuCheckboxItem for toggling options on and off.

API Reference

The root component. Wraps the trigger and content.

The element that toggles the dropdown menu.

PropTypeDefaultDescription
renderReact.ReactElement | (props, state) => React.ReactElement-Renders a custom trigger element and merges trigger props onto it.

The popover panel that appears when the menu is open.

PropTypeDefaultDescription
sideOffsetnumber4Distance in pixels from the trigger.

A single actionable item in the menu. Extends the shared MenuItem props.

PropTypeDefaultDescription
labelReact.ReactNode-The label text or content of the item.
iconReact.ReactNode-An optional leading icon.
descstring-An optional description below the label.
variant"default" | "secondary" | "sidebar" | "warning" | "error""default"The visual style of the item.
disabledboolean-Whether the item is disabled.
onClickReact.MouseEventHandler<HTMLElement>-Handler called when the item is clicked.

A menu item that can be toggled on and off. Extends DropdownMenuItem props.

PropTypeDefaultDescription
checkedboolean-Whether the item is checked.
onCheckedChange(checked: boolean) => void-Handler called when the checked state changes.

A non-interactive label used to title a group of items.

PropTypeDefaultDescription
titlestring-The group label text.

A visual divider between groups of items.

Displays a keyboard shortcut hint aligned to the right of an item.

Groups related menu items together with consistent spacing.

Wraps a sub-menu trigger and its content.

A menu item that opens a sub-menu. Accepts the same props as DropdownMenuItem.