blob: 7bb1bf3ca7402af163c34d8e7f0021a0549e8ee0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import Tooltip from '@material-ui/core/Tooltip/Tooltip';
import MAvatar from '@material-ui/core/Avatar';
import React from 'react';
const Author = ({ author, ...props }) => {
if (!author.email) {
return <span {...props}>{author.displayName}</span>;
}
return (
<Tooltip title={author.email}>
<span {...props}>{author.displayName}</span>
</Tooltip>
);
};
export const Avatar = ({ author, ...props }) => {
if (author.avatarUrl) {
return <MAvatar src={author.avatarUrl} {...props} />;
}
return <MAvatar {...props}>{author.displayName[0]}</MAvatar>;
};
export default Author;
|