React component for individual character input box
npm install --save react-individual-input-box
import * as React from "react";
import InputBox from "react-individual-input-box";
class Example extends React.Component {
render() {
return (
<InputBox
size={4}
value={this.value}
onChange={() => this.onChange()}
isPassword
onlyNumbers
/>
);
}
}
Common props you may want to specify include:
-
size
- number of input boxes -
value
- control the current value -
isPassword
- apply password dots to hide input data -
onlyNumber
- allow only numbers -
isConfirmInput
- allow use the input box component two times in screent as a confirm data input -
onChange
- subscribe to change events
MIT © lucasga