import * as React from 'react'
import { Popover as PopoverPrimitive } from '@base-ui/react/popover'
import { cn } from '@/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,
collisionPadding,
collisionBoundary,
collisionAvoidance,
...props
}: PopoverPrimitive.Popup.Props &
Pick<
PopoverPrimitive.Positioner.Props,
| 'align'
| 'alignOffset'
| 'side'
| 'sideOffset'
| 'collisionPadding'
| 'collisionBoundary'
| 'collisionAvoidance'
>) {
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,
}