import * as PopoverPrimitive from "@radix-ui/react-popover"; import { cn } from "@reactive-resume/utils"; import { forwardRef } from "react"; export const Popover = PopoverPrimitive.Root; export const PopoverArrow = PopoverPrimitive.Arrow; export const PopoverTrigger = PopoverPrimitive.Trigger; export const PopoverContent = forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, align = "center", sideOffset = 6, ...props }, ref) => ( )); PopoverContent.displayName = PopoverPrimitive.Content.displayName;