Reddot UI Library
Docs
Input OTP
Input OTP
An accessible one-time password component with copy-paste functionality.
Installation
$npx shadcn@latest add https://reddot.dottools.xyz/r/input-otp.json
Usage
import {
InputOTP,
InputOTPGroup,
InputOTPSeparator,
InputOTPSlot,
} from "@/components/ui/input-otp"<InputOTP maxLength={6}>
<InputOTPGroup>
<InputOTPSlot index={0} />
<InputOTPSlot index={1} />
<InputOTPSlot index={2} />
</InputOTPGroup>
<InputOTPSeparator />
<InputOTPGroup>
<InputOTPSlot index={3} />
<InputOTPSlot index={4} />
<InputOTPSlot index={5} />
</InputOTPGroup>
</InputOTP>Examples
Pattern
Use the pattern prop to define a custom pattern for the OTP input.
Separator
You can use the <InputOTPSeparator /> component to add a separator between groups.