import { View } from "react-native"; import { Avatar } from "@/components/ui/Avatar"; import { Text } from "@/components/ui/Text"; interface UserProfileHeaderProps { image?: string | null; name?: string | null; email?: string | null; } export function UserProfileHeader({ image, name, email, }: UserProfileHeaderProps) { return ( {name || "User"} {email && ( {email} )} ); }