Components
ReUI Input OTP with the first 6 official ReUI examples, preserved from the MIT-licensed source registry.

import { Field, FieldLabel } from "@/components/ui/reui-input-otp-utils/field"
import {
InputOTP,
InputOTPGroup,
InputOTPSeparator,
InputOTPSlot,
} from "@/components/ui/reui-input-otp"
export default function Pattern() {
return (
<div className="flex items-center justify-center">
<Field>
<FieldLabel htmlFor="simple-otp">Simple OTP</FieldLabel>
<InputOTP id="simple-otp" maxLength={6}>
<InputOTPGroup>
<InputOTPSlot index={0} />
<InputOTPSlot index={1} />
<InputOTPSlot index={2} />
</InputOTPGroup>
<InputOTPSeparator />
<InputOTPGroup>
<InputOTPSlot index={3} />
<InputOTPSlot index={4} />
<InputOTPSlot index={5} />
</InputOTPGroup>
</InputOTP>
</Field>
</div>
)
}



