"use client"
import * as React from "react"
import { Popover as PopoverPrimitive } from "@base-ui/react/popover"
import { cn } from "@/lib/utils"
export type PopoverRootProps = PopoverPrimitive.Root.Props
export type PopoverTriggerProps = PopoverPrimitive.Trigger.Props
export type PopoverContentProps = PopoverPrimitive.Popup.Props &
Pick<
PopoverPrimitive.Positioner.Props,
"align" | "alignOffset" | "collisionBoundary" | "collisionPadding" | "side" | "sideOffset"
>
export type PopoverHeaderProps = React.ComponentProps<"div">
export type PopoverTitleProps = PopoverPrimitive.Title.Props
export type PopoverDescriptionProps = PopoverPrimitive.Description.Props
function Popover({ ...props }: PopoverPrimitive.Root.Props) {
return