"use client"; import * as React from "react"; import * as PopoverPrimitive from "@radix-ui/react-popover"; import { cn } from "@/lib/utils"; export const Popover = PopoverPrimitive.Root; export const PopoverTrigger = PopoverPrimitive.Trigger; export const PopoverAnchor = PopoverPrimitive.Anchor; export const PopoverClose = PopoverPrimitive.Close; export const PopoverContent = React.forwardRef, React.ComponentPropsWithoutRef>( function PopoverContent({ className, align = "center", sideOffset = 6, ...props }, ref) { return ( ); }, );