import { type FC } from "react"; import { Image } from "react-native"; import { StyledView } from "../StyledComponents"; import { verticalScale } from "../../helpers/ResponsiveCalculations"; import type { AvatarImageProps } from "../../types"; const AvatarImage: FC = ({ size = 70, source, resizeMode = 'cover', containerStyle, imageStyle }) => { return (<> ) } export default AvatarImage; export type { AvatarImageProps };