import { Box, ButtonBase, styled, Typography } from '@mui/material' import type React from 'react' export const Container: React.FC> = styled( Box )(({ theme }) => ({ display: 'flex', flexDirection: 'column', gap: theme.spacing(1), })) export const SettingsRow: React.FC> = styled( Box )(({ theme }) => ({ display: 'flex', justifyContent: 'space-between', alignItems: 'center', gap: theme.spacing(2), padding: theme.spacing(1.5, 2), })) export const ToggleLabel: React.FC> = styled( Box )(({ theme }) => ({ fontSize: 14, fontWeight: 700, lineHeight: 1, color: theme.vars.palette.text.primary, flex: '1 0 0', minWidth: 0, })) export const ExpiryValue: React.FC> = styled( Box )(({ theme }) => ({ display: 'flex', alignItems: 'center', gap: theme.spacing(0.5), color: theme.vars.palette.text.secondary, height: 14, })) export const SettingItemButton: React.FC< React.ComponentProps > = styled(ButtonBase)(({ theme }) => ({ display: 'flex', justifyContent: 'space-between', alignItems: 'center', width: '100%', padding: theme.spacing(2), borderRadius: theme.vars.shape.borderRadius, })) export const SettingItemTitle: React.FC< React.ComponentProps > = styled(Typography)(({ theme }) => ({ fontSize: 14, fontWeight: 700, color: theme.vars.palette.text.primary, lineHeight: 1, })) export const SettingItemValue: React.FC< React.ComponentProps > = styled(Typography)(({ theme }) => ({ fontSize: 14, fontWeight: 700, color: theme.vars.palette.text.primary, }))