import { MEMOS_LOGO_URL } from "../helpers/consts"; interface Props { avatarUrl?: string; className?: string; } const UserAvatar = (props: Props) => { const { avatarUrl, className } = props; return (
); }; export default UserAvatar;