Popover

Lightweight hover/click surface sharing the glass styling from other overlays.

Popover component

Resource summary
Popovers use the same square, glass surface as menus and tooltips.

Installation

pnpm dlx shadcn@latest add @omni/popover

Usage

import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover"
<Popover>
  <PopoverTrigger>Open</PopoverTrigger>
  <PopoverContent>Analytics summary</PopoverContent>
</Popover>