'use client'; import * as PopoverPrimitive from '@radix-ui/react-popover'; import { cn } from '@/lib/utils'; export const Popover = PopoverPrimitive.Root; export const PopoverTrigger = PopoverPrimitive.Trigger; export function PopoverContent({ className, align = 'start', sideOffset = 8, ...props }: React.ComponentProps) { return ( ); }