import Styles from "@/constants/Styles"; import { useState } from "react"; import { Image } from "react-native"; type Props = { src: string, size?: 'sm' | 'xs' | 'lg' border?: boolean } export default function ImageUser({ src, size }: Props) { const [error, setError] = useState(false) return ( setError(true) } /> ) }