aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/components/Logo.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-11 01:37:22 +0000
committerMohamedBassem <me@mbassem.com>2024-03-11 01:37:22 +0000
commit2b720405ae3a19ac78fbf3e7231394364ba83c99 (patch)
tree9fb5ab84f827aa81239acb3e58198f99505575db /packages/mobile/components/Logo.tsx
parent00dd4d0b549fdfe1c5224fc94141926925aab13d (diff)
downloadkarakeep-2b720405ae3a19ac78fbf3e7231394364ba83c99.tar.zst
mobile: Prepare to merge into main repo
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>
+ );
+}