mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-24 21:25:55 +00:00
29 lines
749 B
TypeScript
29 lines
749 B
TypeScript
"use client"
|
|
|
|
import { REGEXP_ONLY_DIGITS } from "input-otp"
|
|
|
|
import { Field, FieldLabel } from "@/styles/base-nova/ui/field"
|
|
import {
|
|
InputOTP,
|
|
InputOTPGroup,
|
|
InputOTPSlot,
|
|
} from "@/styles/base-nova/ui/input-otp"
|
|
|
|
export function InputOTPPattern() {
|
|
return (
|
|
<Field className="w-fit">
|
|
<FieldLabel htmlFor="digits-only">Digits Only</FieldLabel>
|
|
<InputOTP id="digits-only" 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>
|
|
</Field>
|
|
)
|
|
}
|