aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/components/Logo.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/mobile/components/Logo.tsx')
-rw-r--r--packages/mobile/components/Logo.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/mobile/components/Logo.tsx b/packages/mobile/components/Logo.tsx
new file mode 100644
index 00000000..a15d8561
--- /dev/null
+++ b/packages/mobile/components/Logo.tsx
@@ -0,0 +1,11 @@
+import { PackageOpen } from "lucide-react-native";
+import { View, Text } from "react-native";
+
+export default function Logo() {
+ return (
+ <View className="flex flex-row gap-2 justify-center items-center ">
+ <PackageOpen color="black" size={70} />
+ <Text className="text-5xl">Hoarder</Text>
+ </View>
+ );
+}