Search documentation

Search components and pages

Input OTP

Accessible one-time password component with copy-paste.

01

Installation

Add the input otp component with the shadcn CLI.

bash
npx shadcn@latest add https://swiss.ui.unsanity.ai/r/input-otp.json
02

Usage

tsx
import { InputOTP } from "@/components/ui/input-otp"
03

Examples

Default

import {
  InputOTP,
  InputOTPGroup,
  InputOTPSeparator,
  InputOTPSlot,
} from "@/components/ui/input-otp"

<InputOTP 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>