# Form
A container where there is a label on the left and a component on the right.
Each form component has a single prop, `label` which sets the label to its left. It is required.
```jsx
import React, { Component } from 'react';
import { render, Window, App, Form, TextInput } from 'proton-native';
class Example extends Component {
render() {
return (
);
}
}
render();
```
## Props
* [enabled](#enabled)
* [visible](#visible)
* [padded](#padded)
## Reference
### enabled
Whether the Form is enabled.
| **Type** | **Required** | **Default** |
| -------- | ------------ | ----------- |
| bool | No | true |
### visible
Whether the Form can be seen.
| **Type** | **Required** | **Default** |
| -------- | ------------ | ----------- |
| bool | No | true |
### padded
Whether there is padding between the components
| **Type** | **Required** | **Default** |
| -------- | ------------ | ----------- |
| bool | No | false |