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

12 lines
226 B
JavaScript
Raw Normal View History

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