The RhOTPInput is a customizable input field for users to enter a One-Time Password (OTP). With the mentioned props developers can customize the input field according to their application's needs.
Once installed, you can import the RhOTPInput component into your React application:
import {RhOTPInput} from "@rhythm-ui/react"
Then, you can use the RhOTPInput component in your JSX code:
function Default() { const [OTP, setOTP] = useState(""); return ( <RhOTPInput length={6} value={OTP} onChange={(value) => setOTP(value)} /> ); }
Name | Type | Default | Description |
---|---|---|---|
value | string | OTP value | |
length | number | Length of the string | |
error | boolean | false | To be given true When the wrong OTP is entered |
errorMessage | string | Error message to show below input when OTP is wrong | |
autoFocus | boolean | First OTP input box will be focused if autoFocus is true | |
onChange | (value: string) => void | Change event will fire when value is changed | |
className | string | ClassName to give custom classes |
The autoFocus sets the focus on the input field when the component is rendered.
function Default() { const [OTP, setOTP] = useState(""); return ( <RhOTPInput autoFocus length={6} value={OTP} onChange={(value) => setOTP(value)} /> ); }
The error and errorMessage props are there to display an error message if the entered OTP is incorrect,
function Default() { const [OTP, setOTP] = useState(""); return ( <RhOTPInput length={6} value={OTP} onChange={(value) => setOTP(value)} error={true} errorMessage="Wrong One Time Password" /> ); }