feat: style NimbusLogo

This commit is contained in:
RadoslavDimchev 2023-08-10 10:15:40 +03:00
parent 81ed2f1b8b
commit c5c1029f23
1 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
import { XStack } from 'tamagui' import { Text, XStack } from 'tamagui'
import Icon from './Icon' import Icon from './Icon'
import Tag from './Tag' import Tag from './Tag'
@ -7,12 +7,13 @@ const NimbusLogo = () => {
<XStack <XStack
style={{ style={{
alignItems: 'center', alignItems: 'center',
justifyContent: 'center',
}} }}
space={'$2'} space={'$2'}
> >
<Icon source={'/icons/marks.png'} width={45} height={50} /> <Icon source={'/icons/marks.png'} width={55} height={60} />
<Icon source={'/icons/nimbus.png'} width={80} height={16} /> <Text style={{ fontWeight: '650', fontSize: '24px' }}>Nimbus</Text>
<Tag bc="#2A4AF5" text="BETA" /> <Tag text="BETA" />
</XStack> </XStack>
) )
} }