import { MenuAlt4Icon } from "@heroicons/react/outline" import clsx from "clsx" import React from "react" import { linkClass } from "./components" export function PopoverMenu({ children }: { children: React.ReactNode }) { return (
{children}
) } PopoverMenu.itemClass = clsx` px-3 py-2 transition text-left font-medium block opacity-50 hover:opacity-100 hover:bg-black/30 `