Create Nimbus logo component
This commit is contained in:
parent
f3859b911b
commit
c16f2834dc
Binary file not shown.
After Width: | Height: | Size: 424 B |
Binary file not shown.
After Width: | Height: | Size: 844 B |
|
@ -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 };
|
|
@ -0,0 +1 @@
|
||||||
|
export { Logo } from "./Logo";
|
Loading…
Reference in New Issue