import type { PopoverMenuProps } from "$/types/NavTypes"; import { Popover, PopoverButton, PopoverPanel } from "@headlessui/react"; import clsx from "clsx"; import { RiArrowRightSLine } from "react-icons/ri"; export default function PopoverMenu(props: PopoverMenuProps){ const { buttonContent, anchor, children } = props; return ( {buttonContent} {children} ); }