aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/Author.js
blob: 37de7aa7ffa6a77da870192405be678822f46025 (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)