import * as React from "react" import { Popover as PopoverPrimitive } from "radix-ui" import { cn } from "@/lib/utils" const Popover = PopoverPrimitive.Root const PopoverTrigger = PopoverPrimitive.Trigger const PopoverAnchor = PopoverPrimitive.Anchor function PopoverContent({ className, align = "center", sideOffset = 4, ...props }: React.ComponentProps) { return ( ) } export { Popover, PopoverTrigger, PopoverAnchor, PopoverContent }