import * as React from 'react'; import Box from '@mui/joy/Box'; import Button from '@mui/joy/Button'; import Modal from '@mui/joy/Modal'; import ModalDialog from '@mui/joy/ModalDialog'; import Typography from '@mui/joy/Typography'; export default function ResponsiveModal() { const [open, setOpen] = React.useState(false); return ( setOpen(false)}> ({ [theme.breakpoints.only('xs')]: { top: 'unset', bottom: 0, left: 0, right: 0, borderRadius: 0, transform: 'none', maxWidth: 'unset', }, })} > Are you absolutely sure? This action cannot be undone. This will permanently delete your account and remove your data from our servers. ); }