Popover
Displays rich content in a portal, triggered by a button.
Installation
Install the following dependencies:
pnpm add @radix-ui/react-popover
Copy and paste the following code into your project.
import * as PopoverPrimitive from "@radix-ui/react-popover";
import { cn } from "~/utils/tailwind";
const Popover = PopoverPrimitive.Root;
const PopoverTrigger = PopoverPrimitive.Trigger;
const PopoverAnchor = PopoverPrimitive.Anchor;
function PopoverContent({
className,
align = "center",
sideOffset = 8,
...props
}: React.ComponentProps<typeof PopoverPrimitive.Content>) {
return (
<PopoverPrimitive.Portal>
<PopoverPrimitive.Content
align={align}
sideOffset={sideOffset}
className={cn(
"z-50 w-72 rounded-2.5 border bg-popover p-3 text-popover-foreground outline-none",
"data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95",
"data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95",
"data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
className,
)}
{...props}
/>
</PopoverPrimitive.Portal>
);
}
export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor };
Update the import paths to match your project setup.
Usage
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "~/components/ui/Popover";
<Popover>
<PopoverTrigger>Open</PopoverTrigger>
<PopoverContent>Place content for the popover here.</PopoverContent>
</Popover>