import React from "react"; import { Popover as PopoverPrimitive } from "radix-ui"; const NAME = "PopoverRoot"; export type PopoverRootProps = PopoverPrimitive.PopoverProps; export const PopoverRoot = ({ children, ...props }: PopoverRootProps) => ( {children} ); PopoverRoot.displayName = NAME;