aboutsummaryrefslogtreecommitdiffstats
path: root/components/Logo.tsx
blob: 8b1d065456a1f2544ae5850df6bbce0415a38961 (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>
    );
}