aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/components/Logo.tsx
blob: 57f7a5c3ac5606402a1c9516d4d85626a38be10b (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 items-center justify-center gap-2 ">
      <PackageOpen color="black" size={70} />
      <Text className="text-5xl">Hoarder</Text>
    </View>
  );
}