import { FC } from 'react' import { Avatar } from 'react-native-paper' import { IconSource } from 'react-native-paper/lib/typescript/components/Icon' import { ProfileIcon } from '../../icons' import { AvatarWithPlaceholderProps } from './types' const AvatarWithPlaceholder: FC = ({ size = 40, imgSource }) => { if (!imgSource) { return } return } export default AvatarWithPlaceholder