import { Box, styled, Typography } from '@mui/material' import type React from 'react' export const CenterContainer: React.FC> = styled(Box)(() => ({ display: 'grid', placeItems: 'center', position: 'relative', })) export const ContentContainer: React.FC> = styled(Box)(({ theme }) => ({ padding: theme.spacing(3), })) export const WarningTitle: React.FC> = styled(Typography)(({ theme }) => ({ paddingTop: theme.spacing(1), paddingBottom: theme.spacing(1), fontSize: 18, fontWeight: 700, })) export const WarningMessage: React.FC> = styled(Typography)(({ theme }) => ({ marginBottom: theme.spacing(2.5), fontSize: 14, fontWeight: 500, })) export const DetailRow: React.FC> = styled( Box )(({ theme }) => ({ display: 'flex', justifyContent: 'space-between', alignItems: 'center', paddingTop: theme.spacing(0.75), paddingBottom: theme.spacing(0.75), })) export const DetailLabel: React.FC> = styled(Typography)(({ theme }) => ({ fontSize: 14, fontWeight: 500, color: theme.vars.palette.text.secondary, })) export const DetailValue: React.FC> = styled(Typography)({ fontSize: 14, fontWeight: 700, }) export const ButtonRow: React.FC> = styled( Box )(({ theme }) => ({ display: 'flex', marginTop: theme.spacing(3), gap: theme.spacing(1.5), }))