> ## Documentation Index
> Fetch the complete documentation index at: https://docs.turbostack.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Popover

Displays rich content in a portal, triggered by a button.

## Usage

```ts theme={null}
import {
  Popover,
  PopoverContent,
  PopoverTrigger,
} from "@turbostack/ui"
```

```tsx theme={null}
<Popover>
  <PopoverTrigger>Open</PopoverTrigger>
  <PopoverContent>Place content for the popover here.</PopoverContent>
</Popover>
```
