mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-24 09:08:14 +00:00
22 lines
466 B
TypeScript
22 lines
466 B
TypeScript
import { Text, XStack } from 'tamagui'
|
|
import Icon from './Icon'
|
|
import Tag from './Tag'
|
|
|
|
const NimbusLogo = () => {
|
|
return (
|
|
<XStack
|
|
style={{
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
}}
|
|
space={'$2'}
|
|
>
|
|
<Icon source={'/icons/marks.png'} width={55} height={60} />
|
|
<Text style={{ fontWeight: '650', fontSize: '24px' }}>Nimbus</Text>
|
|
<Tag text="BETA" />
|
|
</XStack>
|
|
)
|
|
}
|
|
|
|
export default NimbusLogo
|