mirror of
https://github.com/yldio/copilot.git
synced 2025-01-09 10:30:12 +02:00
15 lines
229 B
JavaScript
15 lines
229 B
JavaScript
const composers = require('../../shared/composers');
|
|
const BaseInput = require('./base-input');
|
|
|
|
const {
|
|
Baseline
|
|
} = composers;
|
|
|
|
const {
|
|
Stylable
|
|
} = BaseInput;
|
|
|
|
module.exports = Baseline(
|
|
BaseInput(Stylable('select'))
|
|
);
|