1
0
mirror of https://github.com/yldio/copilot.git synced 2025-01-23 09:20:12 +02:00
copilot/ui/src/components/form/checkbox/index.js

16 lines
275 B
JavaScript
Raw Normal View History

const composers = require('../../../shared/composers');
const BaseInput = require('../base-input');
const Toggle = require('../toggle');
2017-02-20 18:15:36 +02:00
const {
Baseline
} = composers;
const Checkbox = Toggle({
type: 'checkbox'
});
module.exports = Baseline(
BaseInput(Checkbox)
);