pagraphcontrol/components/checkbox/index.js
2018-11-08 20:39:54 +03:00

16 lines
214 B
JavaScript

const r = require('r-dom');
const Checkbox = props => r.label({
classSet: { checkbox: true },
}, [
r.input({
...props,
type: 'checkbox',
}),
...[].concat(props.children),
]);
module.exports = Checkbox;