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