Create Nimbus logo component

This commit is contained in:
RadoslavDimchev 2023-07-21 16:42:20 +03:00
parent f3859b911b
commit c16f2834dc
4 changed files with 20 additions and 0 deletions

BIN
public/icons/marks.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 B

BIN
public/icons/nimbus.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 844 B

View File

@ -0,0 +1,19 @@
import { Image, XStack } from "tamagui";
import { Tag } from "../Tag";
const Logo = () => {
return (
<XStack
style={{
alignItems: "center",
}}
space={"$2"}
>
<Image source={{ uri: "/icons/marks.png" }} width={60} height={60} />
<Image source={{ uri: "/icons/nimbus.png" }} width={80} height={17} />
<Tag bc="#2A4AF5" text="BETA" />
</XStack>
);
};
export { Logo };

View File

@ -0,0 +1 @@
export { Logo } from "./Logo";