Input Otp Separator

PreviousNext

input-otp-separator-demo

Docs
intentuipage

Preview

Loading preview…
components/docs/forms/input-otp/input-otp-separator-demo.tsx
"use client"

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

export default function InputOtpSeparatorDemo() {
  return (
    <InputOTP maxLength={6}>
      <InputOTPControl>
        <InputOTPGroup>
          <InputOTPSlot index={0} />
          <InputOTPSlot index={1} />
          <InputOTPSlot index={2} />
        </InputOTPGroup>
        <InputOTPSeparator />
        <InputOTPGroup>
          <InputOTPSlot index={3} />
          <InputOTPSlot index={4} />
          <InputOTPSlot index={5} />
        </InputOTPGroup>
      </InputOTPControl>
    </InputOTP>
  )
}

Installation

npx shadcn@latest add @intentui/input-otp-separator-demo

Usage

Usage varies by registry entry. Refer to the registry docs or source files below for details.