diff options
Diffstat (limited to 'webui/src/Label.js')
-rw-r--r-- | webui/src/Label.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/webui/src/Label.js b/webui/src/Label.js new file mode 100644 index 00000000..93a9a358 --- /dev/null +++ b/webui/src/Label.js @@ -0,0 +1,15 @@ +import React from 'react' +import { withStyles } from '@material-ui/core/styles' + +const styles = theme => ({ + label: { + padding: '0 4px', + margin: '0 1px', + backgroundColor: '#da9898', + borderRadius: '3px' + }, +}) + +const Label = ({label, classes}) => <span className={classes.label}>{label}</span> + +export default withStyles(styles)(Label) |