Files
shadcn-ui/apps/v4/examples/base/input-otp-four-digits.tsx
2026-01-19 15:34:34 +04:00

22 lines
469 B
TypeScript

"use client"
import {
InputOTP,
InputOTPGroup,
InputOTPSlot,
} from "@/examples/base/ui/input-otp"
import { REGEXP_ONLY_DIGITS } from "input-otp"
export function InputOTPFourDigits() {
return (
<InputOTP maxLength={4} pattern={REGEXP_ONLY_DIGITS}>
<InputOTPGroup>
<InputOTPSlot index={0} />
<InputOTPSlot index={1} />
<InputOTPSlot index={2} />
<InputOTPSlot index={3} />
</InputOTPGroup>
</InputOTP>
)
}