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