Made with create-react-library
npm install react-input-number-clf> Made with create-react-library
 
``bash`
npm install --save react-input-number-clf
`jsx``
import React, { useState } from 'react'
import { InputNumber } from 'react-input-number-clf'
function Example(){
const [value, setValue] = useState(0)
const onChange = (e) => {
console.log(e)
setValue(e)
}
return (
label={'number'}
background={'#f1f1f1'}
onChange={(e) => onChange(e)}
/>
)
}
MIT © [](https://github.com/)