aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-10 23:06:49 +0000
committerMohamedBassem <me@mbassem.com>2024-03-10 23:06:49 +0000
commitf14c6f43c386fde627d786cf695c63eb1feab09a (patch)
treee73ae8b7aa3c4da94aae2c2a25ae81fec69b2d08 /components
parent3616e1aa7c1da030f5155e4fffa5c3c0b9769e8c (diff)
downloadkarakeep-f14c6f43c386fde627d786cf695c63eb1feab09a.tar.zst
prep: Install lucide react native
Diffstat (limited to 'components')
-rw-r--r--components/Logo.tsx11
1 files changed, 11 insertions, 0 deletions
diff --git a/components/Logo.tsx b/components/Logo.tsx
new file mode 100644
index 00000000..8b1d0654
--- /dev/null
+++ b/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>
+ );
+}