import React, { FC } from "react"; interface IProps { picture: string; } export const Avatar: FC = ({ picture }) => { return ( <> user avatar ); };