Components
Loading preview...
A segmented input for one-time passwords and verification codes.
npx shadcn@latest add https://21st.dev/r/coss.com/input-otp"use client";
import { REGEXP_ONLY_DIGITS } from "input-otp";
import {
InputOTP,
InputOTPGroup,
InputOTPSlot,
} from "@/components/ui/component";
export default function InputOTPDigitsOnly() {
return (
<InputOTP
aria-label="Verification code"
inputMode="numeric"
maxLength={6}
pattern={REGEXP_ONLY_DIGITS}
>
<InputOTPGroup>
<InputOTPSlot index={0} />
<InputOTPSlot index={1} />
<InputOTPSlot index={2} />
<InputOTPSlot index={3} />
<InputOTPSlot index={4} />
<InputOTPSlot index={5} />
</InputOTPGroup>
</InputOTP>
);
}