aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/Author.js
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/Author.js')
-rw-r--r--webui/src/Author.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/webui/src/Author.js b/webui/src/Author.js
new file mode 100644
index 00000000..37de7aa7
--- /dev/null
+++ b/webui/src/Author.js
@@ -0,0 +1,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)