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