import * as PopoverPrimitive from "@radix-ui/react-popover"; import type { ComponentPropsWithoutRef } from "@radix-ui/react-primitive"; import React from "react"; export const Popover = PopoverPrimitive.Root; export const PopoverTrigger = React.forwardRef< React.ElementRef, ComponentPropsWithoutRef >((props, ref) => { return ; }); export const PopoverContent = React.forwardRef< React.ElementRef, ComponentPropsWithoutRef >(({ children, ...props }, ref) => { return ( {children} ); }); export const PopoverArrow = PopoverPrimitive.Arrow;