import { Popover as PopoverPrimitive } from "@base-ui/react/popover" import { cn } from "@/lib/utils" function Popover({ ...props }: PopoverPrimitive.Root.Props) { return } function PopoverTrigger({ ...props }: PopoverPrimitive.Trigger.Props) { return } function PopoverContent({ className, align = "center", sideOffset = 8, children, ...props }: PopoverPrimitive.Popup.Props & Pick) { return ( {children} ) } export { Popover, PopoverTrigger, PopoverContent }