aboutsummaryrefslogtreecommitdiffstats
path: root/components/Logo.tsx
blob: a15d85615f0ea52180e23417a9416d5ae3654f39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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>
  );
}