mirror of
https://github.com/yldio/copilot.git
synced 2025-01-23 01:10:12 +02:00
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
import { Baseline } from '../../../shared/composers';
|
|
import BaseInput from '../base-input';
|
|
import ToggleBase from '../toggle-base';
|
|
|
|
const Checkbox = ToggleBase({
|
|
type: 'checkbox'
|
|
});
|
|
|
|
export default Baseline(
|
|
BaseInput(Checkbox)
|
|
);
|