import { Button, DialogTrigger, Icon, Menu, Popover } from '@umami/react-zen'; import type { Key, ReactNode } from 'react'; import { Ellipsis } from '@/components/icons'; export function MenuButton({ children, onAction, isDisabled, }: { children: ReactNode; onAction?: (action: string) => void; isDisabled?: boolean; }) { const handleAction = (key: Key) => { onAction?.(key.toString()); }; return ( {children} ); }