diff options
Diffstat (limited to '')
| -rw-r--r-- | components/Logo.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/Logo.tsx b/components/Logo.tsx index 8b1d0654..a15d8561 100644 --- a/components/Logo.tsx +++ b/components/Logo.tsx @@ -2,10 +2,10 @@ 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> - ); + return ( + <View className="flex flex-row gap-2 justify-center items-center "> + <PackageOpen color="black" size={70} /> + <Text className="text-5xl">Hoarder</Text> + </View> + ); } |
