add auth modals & settings, connect app modals
This commit is contained in:
11
src/shared/InputCopyButton/styled.tsx
Normal file
11
src/shared/InputCopyButton/styled.tsx
Normal 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,
|
||||
}))
|
||||
Reference in New Issue
Block a user