Basic Input:

```jsx
<Input
  children=""
  inputLabel="ibsd"
  inputValue="asdsa"
  inputType="text"
  preProps={{
    onChange: event => {
      console.log("You have change value!", event.target.value);
    }
  }}
/>
```
