import * as React from 'react' import * as PopoverPrimitive from '@radix-ui/react-popover' import { cn } from '@/lib/utils' export const Popover = PopoverPrimitive.Root export const PopoverTrigger = PopoverPrimitive.Trigger export const PopoverAnchor = PopoverPrimitive.Anchor export const PopoverContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(function PopoverContent({ className, align = 'center', sideOffset = 6, ...props }, ref) { return ( ) })