mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
23 lines
473 B
TypeScript
23 lines
473 B
TypeScript
"use client"
|
|
|
|
import { REGEXP_ONLY_DIGITS } from "input-otp"
|
|
|
|
import {
|
|
InputOTP,
|
|
InputOTPGroup,
|
|
InputOTPSlot,
|
|
} from "@/styles/base-nova/ui/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>
|
|
)
|
|
}
|