Pando’s <Popover /> is used display a non-modal dialog that floats around a trigger.
Popover anatomy
Popover
Title
Content Slot
Close Button (optional)
Dismiss Button (optional)
Import
Basic Usage
To display a popover, wrap the popover trigger and content with a <Popover /> component, use the <PopoverTrigger /> component to wrap the trigger, and the <PopoverContent /> component to wrap the content.
Popover is a controlled component, so you will manage the state of the popover within the parent component. You will pass the open prop to the <Popover /> component to control the visibility of the popover, and the onOpenChange prop to handle the state change.