import Styles from "@/constants/Styles"; import { Text, TouchableOpacity } from "react-native"; import ImageUser from "./imageNew"; type Props = { src: string label: string onClick?: () => void } export default function ImageWithLabel({ src, label, onClick }: Props) { return ( {label} ) }