import React from 'react' import FallbackImage from './FallbackImage' const Avatar: React.FC<{ url: string | null | undefined }> = ({ url }) => { return ( ) } export default Avatar