import { Avatar } from 'components/design/Avatar' import { API_URL } from 'utils/api' import { User } from 'utils/authentication' export interface UserAvatarProps { user: User } export const UserAvatar: React.FC = (props) => { return ( <> ) }