react-toolbox/components/checkbox/index.js

13 lines
490 B
JavaScript
Raw Normal View History

2016-05-29 13:38:20 +03:00
import { themr } from 'react-css-themr';
import { CHECKBOX } from '../identifiers.js';
import themedRippleFactory from '../ripple';
import { checkboxFactory } from './Checkbox.js';
import checkFactory from './Check.js';
import theme from './theme.scss';
const ThemedCheck = checkFactory(themedRippleFactory({ centered: true, spread: 2.6}));
const ThemedCheckbox = themr(CHECKBOX, theme)(checkboxFactory(ThemedCheck));
export default ThemedCheckbox;
export { ThemedCheckbox as Checkbox };