add auth modals & settings, connect app modals

This commit is contained in:
Bekbolsun
2023-12-25 15:05:16 +06:00
parent a72038ae04
commit 66adabb9e3
50 changed files with 1731 additions and 307 deletions

View File

@@ -0,0 +1,11 @@
import { Stack, StackProps, styled } from '@mui/material'
export const StyledContainer = styled(
(props: StackProps & { copied: number }) => (
<Stack {...props} direction={'row'} alignItems={'center'} />
),
)(({ theme, copied }) => ({
color: copied
? theme.palette.success.main
: theme.palette.textSecondaryDecorate.main,
}))