Menu

The Menu component provide end users with a list of options on temporary surfaces.

Give FeedbackWAI-ARIABundle Size

Installation

Base UI components are all available as a single package.

npm install @base-ui-components/react

Once you have the package installed, import the component.

import { Menu } from '@base-ui-components/react/Menu';

Anatomy

Menus are implemented using a collection of related components:

<Menu.Root>
  <Menu.Trigger />

  <Menu.Positioner>
    <Menu.Popup>
      <Menu.Group>
        <Menu.GroupLabel />
        <Menu.Item />
        <Menu.Item />
      </Menu.Group>

      <Menu.Separator />

      <Menu.Root>
        <Menu.SubmenuTrigger />

        <Menu.Positioner>
          <Menu.Popup>
            <Menu.Arrow />
            <Menu.Item />
            <Menu.Item />
          </Menu.Popup>
        </Menu.Positioner>
      </Menu.Root>
    </Menu.Popup>
  </Menu.Positioner>
</Menu.Root>

Placement

By default, the menu is placed on the bottom side of its trigger, the default anchor. To change this, use the side prop:

<Menu.Root>
  <Menu.Trigger />
  <Menu.Positioner side="right">
    <Menu.Popup>
      <Menu.Item>Item 1</Menu.Item>
    </Menu.Popup>
  </Menu.Positioner>
</Menu.Root>

You can also change the alignment of the menu in relation to its anchor. By default, aligned to the leading edge of an anchor, but it can be configured otherwise using the alignment prop:

<Menu.Root>
  <Menu.Trigger />
  <Menu.Positioner side="right" alignment="end">
    <Menu.Popup>
      <Menu.Item>Item 1</Menu.Item>
    </Menu.Popup>
  </Menu.Positioner>
</Menu.Root>

Due to collision detection, the menu may change its placement to avoid overflow. Therefore, your explicitly specified side and alignment props act as "ideal", or preferred, values.

To access the true rendered values, which may change as the result of a collision, the menu element receives data attributes:

// Rendered HTML (simplified)
<div>
  <div data-side="left" data-alignment="end">
    <div>Item 1</div>
  </div>
</div>

This allows you to conditionally style the menu based on its rendered side or alignment.

Offset

The sideOffset prop creates a gap between the anchor and menu popup, while alignmentOffset slides the menu popup from its alignment, acting logically for start and end alignments.

<Menu.Positioner sideOffset={10} alignmentOffset={10}>

Orientation

By default, menus are vertical, so the up/down arrow keys navigate through options and left/right keys open and close submenus. You can change this with the orientation prop"

<Menu.Root orientation="horizontal">
  <Menu.Trigger />
  <Menu.Positioner>
    <Menu.Popup>
      <Menu.Item>Item 1</Menu.Item>
    </Menu.Popup>
  </Menu.Positioner>
</Menu.Root>

Hover

To open the Menu on hover, add the openOnHover prop:

<Menu.Root openOnHover>

By default submenus are opened on hover, but top-level menus aren't.

Delay

To change how long the menu waits until it opens or closes when openOnHover is enabled, use the delay prop, which represent how long the Menu waits after the cursor enters the trigger, in milliseconds:

<Menu.Root openOnHover delay={200}>

Radio items

Menu items can be used as radio buttons. To group them together, use the Menu.RadioGroup component:

RadioItems.tsx

If you rely on the RadioItem to manage its state (for example, you use the defaultChecked and onCheckedChange props), ensure that the item is not unmounted when its parent menu is closed. Unmounting the component resets its state.

To do this, add the keepMounted prop to the Menu.Positioner the checkbox item is in (and all parent positioners, in the case of a nested menu):

<Menu.Root>
  <Menu.Positioner keepMounted>
    <Menu.Popup>
      <Menu.RadioGroup>
        <Menu.RadioItem defaultChecked>
          <Menu.RadioItemIndicator /> Light
        </Menu.RadioItem>
        <Menu.RadioItem>
          <Menu.RadioItemIndicator /> Dark
        </Menu.RadioItem>
      </Menu.RadioGroup>
    </Menu.Popup>
  </Menu.Positioner>
</Menu.Root>

If you keep the state externally (and use the checked prop), this isn't required.

Checkbox items

Menu items can act as checkboxes.

CheckboxItems.tsx

If you rely on the CheckboxItem to manage its state (for example, you use the defaultChecked and onCheckedChange props), ensure that the item is not unmounted when its parent menu is closed. Unmounting the component resets its state.

To do this, add the keepMounted prop to the Menu.Positioner the checkbox item is in (and all parent positioners, in the case of a nested menu):

<Menu.Root>
  <Menu.Positioner keepMounted>
    <Menu.Popup>
      <Menu.CheckboxItem defaultChecked>
        <Menu.CheckboxItemIndicator /> Item 1
      </Menu.CheckboxItem>
    </Menu.Popup>
  </Menu.Positioner>
</Menu.Root>

If you keep the state externally (and use the checked prop), this isn't required.

Nested menu

Menu items can open submenus. To make this happen, place the <Menu.Root> with all its required children where a submenu trigger has to be placed, but instead of <Menu.Trigger>, use <Menu.SubitemTrigger>, as on the demo below.

NestedMenu.tsx

Escape key behavior

You can control if pressing the Escape key closes just the current submenu or the whole tree. By default, the whole menu closes, but setting the closeParentOnEsc prop modifies this behavior:

<Menu.Root>
  <Menu.Trigger />
  <Menu.Positioner>
    <Menu.Popup>
      <Menu.Item>Item 1</Menu.Item>
      <Menu.Root closeParentOnEsc={false}>
        <Menu.SubmenuTrigger>Submenu</Menu.SubmenuTrigger>

        <Menu.Positioner>
          <Menu.Popup>
            <Menu.Item>Submenu item 1</Menu.Item>
            <Menu.Item>Submenu item 2</Menu.Item>
          </Menu.Popup>
        </Menu.Positioner>
      </Menu.Root>
    </Menu.Popup>
  </Menu.Positioner>
</Menu.Root>

Arrow

To add an arrow (caret or triangle) inside the menu popup that points toward the center of the anchor element, use the Menu.Arrow component:

<Menu.Positioner>
  <Menu.Popup>
    <Menu.Arrow />
    <Menu.Item>Item 1</Menu.Item>
    <Menu.Item>Item 2</Menu.Item>
  </Menu.Popup>
</Menu.Positioner>

It automatically positions a wrapper element that can be styled or contain a custom SVG shape.

Separator

To visually separate items, use the Menu.Separator component:

<Menu.Popup>
  <Menu.Item>Item 1</Menu.Item>
  <Menu.Separator />
  <Menu.Item>Item 2</Menu.Item>
</Menu.Popup>

The Menu.Separator is a re-exported Separator component. See the Separator docs to learn about its API.

Animations

The menu can animate when opening or closing with either:

CSS transitions

Here is an example of how to apply a symmetric scale and fade transition with the default conditionally-rendered behavior:

<Menu.Popup className="MenuPopup">
  <Menu.Item>Item 1</Menu.Item>
</Menu.Popup>
.MenuPopup {
  transform-origin: var(--transform-origin);
  transition-property: opacity, transform;
  transition-duration: 0.2s;
  /* Represents the final styles once exited */
  opacity: 0;
  transform: scale(0.9);
}

/* Represents the final styles once entered */
.MenuPopup[data-open] {
  opacity: 1;
  transform: scale(1);
}

/* Represents the initial styles when entering */
.MenuPopup[data-entering] {
  opacity: 0;
  transform: scale(0.9);
}

Styles need to be applied in three states:

In newer browsers, there is a feature called @starting-style which allows transitions to occur on open for conditionally-mounted components:

/* Base UI API - Polyfill */
.MenuPopup[data-entering] {
  opacity: 0;
  transform: scale(0.9);
}

/* Official Browser API - no Firefox support as of May 2024 */
@starting-style {
  .MenuPopup[data-open] {
    opacity: 0;
    transform: scale(0.9);
  }
}

CSS animations

CSS animations can also be used, requiring only two separate declarations:

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
}

@keyframes scale-out {
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}

.MenuPopup {
  animation: scale-in 0.2s forwards;
}

.MenuPopup[data-exiting] {
  animation: scale-out 0.2s forwards;
}

JavaScript animations

The keepMounted prop lets an external library control the mounting, for example framer-motion's AnimatePresence component.

function App() {
  const [open, setOpen] = useState(false);
  return (
    <Menu.Root open={open} onOpenChange={setOpen}>
      <Menu.Trigger>Trigger</Menu.Trigger>
      <AnimatePresence>
        {open && (
          <Menu.Positioner keepMounted>
            <Menu.Popup
              render={
                <motion.div
                  initial={{ opacity: 0 }}
                  animate={{ opacity: 1 }}
                  exit={{ opacity: 0 }}
                />
              }
            >
              <Menu.Item>Item 1</Menu.Item>
              <Menu.Item>Item 2</Menu.Item>
            </Menu.Popup>
          </Menu.Positioner>
        )}
      </AnimatePresence>
    </Menu.Root>
  );
}

Animation states

Four states are available as data attributes to animate the popup, which enables full control depending on whether the popup is being animated with CSS transitions or animations, JavaScript, or is using the keepMounted prop.

Overriding default components

Use the render prop to override the rendered elements with your own components.

// Element shorthand
<Menu.Popup render={<MyMenuPopup />} />
// Function
<Menu.Popup render={(props) => <MyMenuPopup {...props} />} />

API Reference

MenuItem

An unstyled menu item to be used within a Menu.

PropTypeDefaultDescription
closeOnClickbooltrueIf true, the menu will close when the menu item is clicked.
disabledboolfalseIf true, the menu item will be disabled.
idstringThe id of the menu item.
labelstringA text representation of the menu item's content. Used for keyboard text navigation matching.
onClickfuncThe click handler for the menu item.

MenuPositioner

Renders the element that positions the Menu popup.

PropTypeDefaultDescription
alignmentenum'center'The alignment of the Menu element to the anchor element along its cross axis.
alignmentOffsetnumber0The offset of the Menu element along its alignment axis.
anchorunionThe anchor element to which the Menu popup will be placed at.
arrowPaddingnumber5Determines the padding between the arrow and the Menu popup's edges. Useful when the popover popup has rounded corners via border-radius.
classNameunionClass names applied to the element or a function that returns them based on the component's state.
collisionBoundaryunion'clipping-ancestors'The boundary that the Menu element should be constrained to.
collisionPaddingunion5The padding of the collision boundary.
containerunionThe container element to which the Menu popup will be appended to.
hideWhenDetachedboolfalseIf true, the Menu will be hidden if it is detached from its anchor element due to differing clipping contexts.
keepMountedboolfalseWhether the menu popup remains mounted in the DOM while closed.
positionMethodenum'absolute'The CSS position strategy for positioning the Menu popup element.
renderunionA function to customize rendering of the component.
sideenum'bottom'The side of the anchor element that the Menu element should align to.
sideOffsetnumber0The gap between the anchor element and the Menu element.
stickyboolfalseIf true, allow the Menu to remain in stuck view while the anchor element is scrolled out of view.

MenuPopup

PropTypeDefaultDescription
classNameunionClass names applied to the element or a function that returns them based on the component's state.
idstringThe id of the popup element.
renderunionA function to customize rendering of the component.

MenuRoot

PropTypeDefaultDescription
animatedbooltrueIf true, the Menu supports CSS-based animations and transitions. It is kept in the DOM until the animation completes.
closeParentOnEscbooltrueDetermines if pressing the Esc key closes the parent menus. This is only applicable for nested menus.
If set to false pressing Esc closes only the current menu.
defaultOpenboolfalseIf true, the Menu is initially open.
delaynumber100The delay in milliseconds until the menu popup is opened when openOnHover is true.
direnum'ltr'The direction of the Menu (left-to-right or right-to-left).
disabledboolfalseIf true, the Menu is disabled.
loopbooltrueIf true, using keyboard navigation will wrap focus to the other end of the list once the end is reached.
onOpenChangefuncCallback fired when the component requests to be opened or closed.
openboolAllows to control whether the dropdown is open. This is a controlled counterpart of defaultOpen.
openOnHoverboolWhether the menu popup opens when the trigger is hovered after the provided delay. By default, openOnHover is set to true for nested menus.
orientationenum'vertical'The orientation of the Menu (horizontal or vertical).

MenuTrigger

PropTypeDefaultDescription
classNameunionClass names applied to the element or a function that returns them based on the component's state.
disabledboolfalseIf true, the component is disabled.
labelstringLabel of the button
renderunionA function to customize rendering of the component.

SubmenuTrigger

PropTypeDefaultDescription
classNameunionClass names applied to the element or a function that returns them based on the component's state.
disabledboolfalseIf true, the menu item will be disabled.
labelstringA text representation of the menu item's content. Used for keyboard text navigation matching.
renderunionA function to customize rendering of the component.

MenuArrow

Renders an arrow that points to the center of the anchor element.

PropTypeDefaultDescription
classNameunionClass names applied to the element or a function that returns them based on the component's state.
hideWhenUncenteredboolfalseIf true, the arrow is hidden when it can't point to the center of the anchor element.
renderunionA function to customize rendering of the component.

MenuRadioGroup

PropTypeDefaultDescription
childrennodeThe content of the component.
classNameunionClass names applied to the element or a function that returns them based on the component's state.
defaultValueanyThe default value of the selected radio button. This is the uncontrolled equivalent of value.
onValueChangefunc() => {}Function called when the selected value changes.
renderunionA function to customize rendering of the component.
valueanyThe value of the selected radio button.

MenuRadioItem

An unstyled radio menu item to be used within a Menu.

PropTypeDefaultDescription
valueanyValue of the radio item. This is the value that will be set in the MenuRadioGroup when the item is selected.
closeOnClickbooltrueIf true, the menu will close when the menu item is clicked.
disabledboolfalseIf true, the menu item will be disabled.
idstringThe id of the menu item.
labelstringA text representation of the menu item's content. Used for keyboard text navigation matching.
onClickfuncThe click handler for the menu item.

MenuRadioItemIndicator

PropTypeDefaultDescription
classNameunionClass names applied to the element or a function that returns them based on the component's state.
keepMountedbooltrueIf true, the component is mounted even if the Radio is not checked.
renderunionA function to customize rendering of the component.

MenuCheckboxItem

An unstyled checkbox menu item to be used within a Menu.

PropTypeDefaultDescription
checkedboolIf true, the checkbox is checked.
closeOnClickbooltrueIf true, the menu will close when the menu item is clicked.
defaultCheckedboolfalseThe default checked state. Use when the component is uncontrolled.
disabledboolfalseIf true, the menu item will be disabled.
idstringThe id of the menu item.
labelstringA text representation of the menu item's content. Used for keyboard text navigation matching.
onCheckedChangefuncCallback fired when the checked state is changed.
onClickfuncThe click handler for the menu item.

MenuCheckboxItemIndicator

PropTypeDefaultDescription
classNameunionClass names applied to the element or a function that returns them based on the component's state.
keepMountedbooltrueIf true, the component is mounted even if the checkbox is not checked.
renderunionA function to customize rendering of the component.

MenuGroup

PropTypeDefaultDescription
childrennodeThe content of the component.
classNameunionClass names applied to the element or a function that returns them based on the component's state.
renderunionA function to customize rendering of the component.

MenuGroupLabel

PropTypeDefaultDescription
classNameunionClass names applied to the element or a function that returns them based on the component's state.
renderunionA function to customize rendering of the component.

Contents