import * as React from 'react';
import { Popover as PopoverPrimitive } from '@base-ui/react/popover';
import { cn } from '@/web/lib/utils';
function Popover({ ...props }: PopoverPrimitive.Root.Props) {
return ;
}
function PopoverTrigger({ ...props }: PopoverPrimitive.Trigger.Props) {
return ;
}
function PopoverContent({
className,
align = 'center',
alignOffset = 0,
side = 'bottom',
sideOffset = 4,
...props
}: PopoverPrimitive.Popup.Props &
Pick) {
return (
);
}
function PopoverHeader({ className, ...props }: React.ComponentProps<'div'>) {
return (
);
}
function PopoverTitle({ className, ...props }: PopoverPrimitive.Title.Props) {
return (
);
}
function PopoverDescription({ className, ...props }: PopoverPrimitive.Description.Props) {
return (
);
}
export { Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger };