@centreon/react-components
Version:
react components used by centreon web frontend
17 lines (13 loc) • 332 B
JavaScript
/* eslint-disable no-unused-vars */
import React, { Component } from 'react';
import Checkbox from '@material-ui/core/Checkbox';
import { withStyles } from '@material-ui/core/styles';
const styles = {
root: {
'&$checked': {
color: '#232f39',
},
},
checked: {},
};
export default withStyles(styles)(Checkbox);