'use client'; import * as React from 'react'; import { Popover as PopoverPrimitive } from 'radix-ui'; import { cn } from '@/lib/utils'; function Popover({ ...props }: React.ComponentProps) { return ; } function PopoverTrigger({ ...props }: React.ComponentProps) { return ; } function PopoverContent({ className, align = 'center', sideOffset = 4, container, ...props }: React.ComponentProps & { container?: | React.ComponentProps['container'] | React.RefObject; }) { const portalContainer = container && 'current' in container ? container.current : container; return ( ); } function PopoverAnchor({ ...props }: React.ComponentProps) { return ; } function PopoverHeader({ className, ...props }: React.ComponentProps<'div'>) { return (
); } function PopoverTitle({ className, ...props }: React.ComponentProps<'h2'>) { return (
); } function PopoverDescription({ className, ...props }: React.ComponentProps<'p'>) { return (

); } export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor, PopoverHeader, PopoverTitle, PopoverDescription, };