nimbus-gui/src/components/NimbusLogo.tsx

22 lines
466 B
TypeScript
Raw Normal View History

2023-08-10 10:15:40 +03:00
import { Text, XStack } from 'tamagui'
2023-08-08 09:45:40 +03:00
import Icon from './Icon'
import Tag from './Tag'
2023-07-21 16:42:20 +03:00
2023-08-10 09:17:48 +03:00
const NimbusLogo = () => {
2023-07-21 16:42:20 +03:00
return (
<XStack
style={{
alignItems: 'center',
2023-08-10 10:15:40 +03:00
justifyContent: 'center',
2023-07-21 16:42:20 +03:00
}}
space={'$2'}
2023-07-21 16:42:20 +03:00
>
2023-08-10 10:15:40 +03:00
<Icon source={'/icons/marks.png'} width={55} height={60} />
<Text style={{ fontWeight: '650', fontSize: '24px' }}>Nimbus</Text>
<Tag text="BETA" />
2023-07-21 16:42:20 +03:00
</XStack>
)
}
2023-07-21 16:42:20 +03:00
2023-08-10 09:17:48 +03:00
export default NimbusLogo