mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 15:50:06 +02:00
14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
import Baseline from '../baseline';
|
|
import BaseInput, { Stylable } from './base/input';
|
|
import React from 'react';
|
|
|
|
const Select = Baseline(BaseInput(Stylable('select')));
|
|
|
|
/**
|
|
* @example ./usage-select.md
|
|
*/
|
|
export default ({ children, ...rest }) =>
|
|
<Select {...rest}>
|
|
{children}
|
|
</Select>;
|