const Label = require('../Label');

Input element

```js
<Label title="Name">
  <Input type="text" name="field" value="Value" placeholder="placeholeer" />
</Label>
```

error
```js
<Label title="Name" error="Error hint">
  <Input type="text" name="field" value="Value" placeholder="placeholeer" error={true} />
</Label>
```

Input hint
```js
<Label title="Name" tip="Input hint">
  <Input type="text" name="field" value="Value" placeholder="placeholeer" />
</Label>
```
