import { Box, Button, Dialog, DialogContent, Stack, Typography } from '@mui/material'; import { alpha } from '@mui/material/styles'; import PauseCircleOutlineIcon from '@mui/icons-material/PauseCircleOutline'; import { useLocaleContext } from '@arcblock/ux/lib/Locale/context'; export default function ServiceSuspendedDialog({ open, onClose }: { open: boolean; onClose: () => void }) { const { t } = useLocaleContext(); return ( alpha(theme.palette.warning.main, 0.1), mb: 2.5, }}> {t('payment.checkout.stopAcceptingOrders.title')} {t('payment.checkout.stopAcceptingOrders.description')} ); }