'use client' import * as PopoverPrimitive from '@radix-ui/react-popover' import { forwardRef } from 'react' import { cn } from '../lib/utils' const Popover = PopoverPrimitive.Root const PopoverTrigger = PopoverPrimitive.Trigger const PopoverClose = PopoverPrimitive.Close const PopoverContent = forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, align = 'center', sideOffset = 4, ...props }, ref) => ( )) PopoverContent.displayName = PopoverPrimitive.Content.displayName export { Popover, PopoverTrigger, PopoverContent, PopoverClose }