A
Auralix UI

Popover

Floating popover with backdrop blur.

Preview

Installation

bash
npx auralix-ui add popover

Usage

Basic Popover

tsx
import { Popover } from "@/components/ui/Popover";

<Popover trigger={<Button>Open</Button>}>
  <p>Popover content here</p>
</Popover>

Props

NameTypeDefaultDescription
triggerReactNode-Element that triggers the popover.
childrenReactNode-Popover content.
side"top" | "bottom" | "left" | "right""bottom"Popover position.
align"start" | "center" | "end""center"Alignment.