'use client'
import { useId } from 'react'
import { REGEXP_ONLY_DIGITS } from 'input-otp'
import { InputOTP, InputOTPGroup, InputOTPSlot } from '@/registry/new-york/ui/input-otp'
import { Label } from '@/registry/new-york/ui/label'
const InputOTPNumberDemo = () => {
const id = useId()
return (
<div className='space-y-3'>
<Label htmlFor={id}>Input OTP number</Label>
<InputOTP id={id} maxLength={4} pattern={REGEXP_ONLY_DIGITS}>
<InputOTPGroup>
<InputOTPSlot index={0} />
<InputOTPSlot index={1} />
<InputOTPSlot index={2} />
<InputOTPSlot index={3} />
</InputOTPGroup>
</InputOTP>
</div>
)
}
export default InputOTPNumberDemo