2017-05-18 21:21:33 +03:00
|
|
|
import Baseline from '../baseline';
|
|
|
|
import BaseInput, { Stylable } from './base/input';
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
const Select = Baseline(BaseInput(Stylable('select')));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @example ./usage-select.md
|
|
|
|
*/
|
2017-08-28 22:21:08 +03:00
|
|
|
export default ({ children, ...rest }) => <Select {...rest}>{children}</Select>;
|