Components
Loading preview...
Here is Input OTP component
@ShadcnStudio
npx shadcn@latest add https://21st.dev/r/ShadcnStudio/input-otps'use client'
import { useId } from 'react'
import { REGEXP_ONLY_DIGITS_AND_CHARS } from 'input-otp'
import { InputOTP, InputOTPGroup, InputOTPSlot } from '@/components/ui/input-otp'
import { Label } from '@/components/ui/label'
const InputOTPAlphanumericDemo = () => {
const id = useId()
return (
<div className='space-y-3'>
<Label htmlFor={id}>Input OTP Alphanumeric</Label>
<InputOTP id={id} maxLength={4} pattern={REGEXP_ONLY_DIGITS_AND_CHARS}>
<InputOTPGroup>
<InputOTPSlot index={0} />
<InputOTPSlot index={1} />
<InputOTPSlot index={2} />
<InputOTPSlot index={3} />
</InputOTPGroup>
</InputOTP>
</div>
)
}
export default InputOTPAlphanumericDemo