export const Avatar: React.FC = ({ name, img, href }) => { const Component = href ? "a" : "div"; return (
{name}

{name}

); };