import React, { useRef } from 'react'; import { MoreVertSharp } from '@mui/icons-material'; import { IconButton, ListItemIcon, ListItemText, Menu, MenuItem } from '@mui/material'; export const ActionsMenu: FCWithChildren<{ open: boolean; children: React.ReactNode; onOpen: () => void; onClose: () => void; }> = ({ children, open, onOpen, onClose }) => { const anchorEl: any = useRef(); return ( <> t.palette.nym.nymWallet.text.main }} /> {children} ); }; export const ActionsMenuItem = ({ title, description, onClick, Icon, disabled, }: { title: string; description?: string; onClick?: () => void; Icon?: React.ReactNode; disabled?: boolean; }) => ( {Icon} );