import { PowerSettingsNewRounded } from '@mui/icons-material'; import { IconButton } from '@mui/material'; // @ts-ignore import { useWallet } from '@suiet/wallet-kit'; export const MVMDisconnectIconButton = () => { const wallet = useWallet(); return ( { e.stopPropagation(); wallet?.disconnect(); }} > ); };