The Input component draws a basic element for data input.

Basic example:

<Input
placeholder="Type your name"
value={this.state.name}
onChange={value => {
this.setState({ name: value })
}}
/>

Param

Input Properties

Has Children

Hierarchy