import { ReactNode } from 'react'; import clsx from 'clsx'; import { Menu, MenuList, MenuButton } from '@reach/menu-button'; import { MoreVertical } from 'lucide-react'; import { Icon } from '@@/Icon'; import styles from './ActionsMenu.module.css'; interface Props { children: ReactNode; } export function ActionsMenu({ children }: Props) { return ( {({ isExpanded }) => ( <>
{children}
)}
); }