mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-01-23 17:59:11 +00:00
Create Nimbus logo component
This commit is contained in:
parent
f3859b911b
commit
c16f2834dc
BIN
public/icons/marks.png
Normal file
BIN
public/icons/marks.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 424 B |
BIN
public/icons/nimbus.png
Normal file
BIN
public/icons/nimbus.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 844 B |
19
src/components/Logo/Logo.jsx
Normal file
19
src/components/Logo/Logo.jsx
Normal 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 };
|
1
src/components/Logo/index.jsx
Normal file
1
src/components/Logo/index.jsx
Normal file
@ -0,0 +1 @@
|
|||||||
|
export { Logo } from "./Logo";
|
Loading…
x
Reference in New Issue
Block a user