import React from "react"; import { View, Pressable, Image } from "react-native"; import { Link } from "expo-router"; import { ROUTES } from "~/lib/routes"; import { useAuthWithProfile } from "~/lib/hooks/useAuthWithProfile"; import { Icons } from "~/assets/icons"; function SendMoneyBar() { const { user, profile, profileLoading } = useAuthWithProfile(); const fullName = profile?.fullName; const firstName = fullName?.split(" ")[0]; const avatarSource = profile?.photoUrl ? { uri: profile.photoUrl } : Icons.avatar; return ( ); } export default SendMoneyBar;