# InputNumber

```js
import  { InputNumber } from 'deepsight-react-components';

return <InputNumber ... />
```

## Props

| prop           | type       | required | default             | description                                                         |
| :------------- | :--------- | :------: | :------------------ | :------------------------------------------------------------------ |
| `value`        | `number`   |  `true`  |                     | value of the input                                                  |
| `onChange`     | `function` |  `true`  |                     | function to handle the change of the input value                    |
| `display`      | `string`   | `false`  | `single`            | type of input to display (single, multiple)                         |
| `limitValues`  | `object`   | `false`  | `{}`                | minValue and maxValue when display is set to multiple               |
| `min`          | `number`   | `false`  | `0`                 | minimum value of the input                                          |
| `height`       | `string`   | `false`  | `30px`              | when set, override the height of the input container                |
| `borderStyle`  | `string`   | `false`  | `1px solid #dbdbdb` | when set, override the default border style of the input container  |
| `borderRadius` | `string`   | `false`  | `4px`               | when set, override the default border-radius of the input container |
