feat: create add card component

This commit is contained in:
RadoslavDimchev 2023-09-11 13:59:26 +03:00
parent a2fa47d2bf
commit 2d58b44361

View File

@ -0,0 +1,31 @@
import { Stack } from 'tamagui'
import { AddIcon } from '@status-im/icons'
const AddCard = () => {
return (
<Stack
style={{
border: '2px dashed #DCE0E5',
borderRadius: '16px',
cursor: 'pointer',
height: '150px',
width: '260px',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'white',
}}
>
<AddIcon
size={12}
color="white"
style={{
backgroundColor: '#2A4AF5',
borderRadius: '50%',
padding: '6px',
}}
/>
</Stack>
)
}
export default AddCard