import { Button, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, } from '@material-ui/core'; import IpcInvokeButton from '../IpcInvokeButton'; type SwapCancelAlertProps = { open: boolean; onClose: () => void; }; export default function SwapSuspendAlert({ open, onClose, }: SwapCancelAlertProps) { return ( Force stop running operation? Are you sure you want to force stop the running swap? Force stop ); }