21 lines
420 B
TypeScript
Raw Normal View History

import { 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
const Logo = () => {
return (
<XStack
style={{
alignItems: 'center',
2023-07-21 16:42:20 +03:00
}}
space={'$2'}
2023-07-21 16:42:20 +03:00
>
<Icon source={'/icons/marks.png'} width={45} height={50} />
<Icon source={'/icons/nimbus.png'} width={80} height={16} />
2023-07-21 16:42:20 +03:00
<Tag bc="#2A4AF5" text="BETA" />
</XStack>
)
}
2023-07-21 16:42:20 +03:00
export default Logo