pagraphcontrol/components/checkbox/index.js
2018-11-22 02:57:50 +03:00

18 lines
244 B
JavaScript

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