import React, {FC} from 'react'; import {Image, ImageStyle, StyleProp} from 'react-native'; type AvatarProps = { style: StyleProp; uri: string | undefined; }; const Avatar: FC = ({style, uri}) => { return ( ); }; export default Avatar;