import React from "react"; import { Avatar as BaseAvatar } from "baseui/avatar"; export interface AvatarProps { src: string; size?: string; name: string; } /** * This is the `` component
* You can use this to render the profile image of a user */ const Avatar: React.FC = ( props: React.PropsWithChildren ) => { return ; }; export default Avatar;