import { Image, StyleSheet, Text, View } from 'react-native'; import { variants, variantTexts, innerBorders } from '../common/styles'; import { avatars, texts } from './styles'; import type { IAvatarProps } from './types'; export default function Avatar(props: IAvatarProps) { const { children, size = 'medium', source, style, textStyle } = props; return ( {source ? ( ) : ( {children} )} ); }