15 lines
306 B
JavaScript
15 lines
306 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>
|
||
|
);
|