# Select

<!-- STORY -->

## Installation

```shell
$ yarn add @roo-ui/components
```

## Example

```js
import { Select } from '@roo-ui/components';

export default (
  <Select>
    <option>Apples</option>
    <option>Bananas</option>
    <option>Oranges</option>
  </Select>
);
```

## Properties

| Name    | Description        | Type   | Default | Required? |
|:--------|:-------------------|:-------|:--------|:----------|
| `error` | render error style | `bool` | false   | -         |

## Customization

This component can be customized with props supported by [`<Input />`](../Input/README.md).
