blob: 0ad7e257f37b54301a15d433a263aac3c9b894fb (
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
|
import Tooltip from '@material-ui/core/Tooltip/Tooltip';
import React from 'react';
import { withStyles } from '@material-ui/core/styles';
const styles = theme => ({
author: {
...theme.typography.body2,
},
bold: {
fontWeight: 'bold',
},
});
const Author = ({ author, bold, classes }) => {
const klass = bold ? [classes.author, classes.bold] : [classes.author];
return (
<Tooltip title={author.email}>
<span className={klass.join(' ')}>{author.name}</span>
</Tooltip>
);
};
export default withStyles(styles)(Author);
|