import React from 'react'; import MAvatar from '@material-ui/core/Avatar'; import Tooltip from '@material-ui/core/Tooltip/Tooltip'; import { AuthoredFragment } from '../graphql/fragments.generated'; type Props = AuthoredFragment & { className?: string; bold?: boolean; }; const Author = ({ author, ...props }: Props) => { if (!author.email) { return {author.displayName}; } return ( {author.displayName} ); }; export const Avatar = ({ author, ...props }: Props) => { if (author.avatarUrl) { return ; } return {author.displayName[0]}; }; export default Author;