Files
noauth/src/components/Modal/ModalEditName/styled.tsx
2024-02-19 19:35:12 +06:00

11 lines
340 B
TypeScript

import { Stack, StackProps, styled } from '@mui/material'
export const StyledSettingContainer = styled((props: StackProps) => (
<Stack gap={'0.75rem'} component={'form'} {...props} />
))(({ theme }) => ({
padding: '1rem',
borderRadius: '1rem',
background: theme.palette.background.default,
color: theme.palette.text.primary,
}))