React Number input component. Allow to input formatted number values. Also you can use this component as example of inputCore component with reformat user function
npm install react-numberinputDEMO: https://xnimorz.github.io/masked-input/
Component that allow to format only numbers. (5 000, 123 456 789, etc.)
```
npm install --save react-numberinput
or
``
yarn add react-numberinput
This component work on top of react-maskinput and define custom formatting function called reformat. Also you can use this component as example to create you own components based on react-maskinput.
`javascript
import NumberInput from 'react-numberinput';
ReactDOM.render(someElement,
`
You also can set up different input element properties, such as class, data-attributes, etc.
This component works well with another libraries, styled-components as example:
`javascript
import React, { Component } from 'react';
import MaskInput from 'react-maskinput';
import NumberInput from 'react-numberinput';
const StyledNumberInput = styled(NumberInput)
border-radius: 10px;
border-color: rgb(219, 112, 147);;
render(
``
See https://github.com/xnimorz/masked-input/tree/master/packages/react-maskinput#props
MIT