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

12 lines
239 B
JavaScript
Raw Normal View History

import { Baseline } from '../../../shared/composers';
import BaseInput from '../base-input';
2017-02-24 19:10:44 +02:00
import ToggleBase from '../toggle-base';
2017-02-20 18:15:36 +02:00
2017-02-24 19:10:44 +02:00
const Checkbox = ToggleBase({
2017-02-20 18:15:36 +02:00
type: 'checkbox'
});
export default Baseline(
2017-02-20 18:15:36 +02:00
BaseInput(Checkbox)
);