UNPKG

@centreon/react-components

Version:
17 lines (13 loc) 332 B
/* 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);