Popover

An accessible popup anchored to a button.

Usage

API Reference

Popover

Root component.

PopoverTrigger

Trigger button that opens the popover.

PopoverPopup

Popup container that displays the popover content. Also exported as PopoverContent.

PopoverTitle

Title text for the popover.

PopoverDescription

Description text for the popover.

PopoverClose

Close button for the popover.

PopoverCreateHandle

Creates a handle for detached popover triggers. Returns a handle object to attach to multiple triggers.

Examples

With Close Button

Tooltip Style

Use the tooltipStyle prop to make a popover look like a tooltip. This is recommended when you have an info icon button whose only purpose is to show additional information. See the tooltip accessibility guidelines for best practices.

Animated Popovers

You can create animated popovers that smoothly transition between different triggers using detached triggers. This pattern allows multiple triggers to share a single popover popup, with automatic animations for position, size, and content changes.

To create detached triggers:

  1. Create a handle using PopoverCreateHandle
  2. Attach the same handle to multiple PopoverTrigger components
  3. Each trigger provides a payload prop containing the content component
  4. Use a single Popover component with the handle to render the popup