"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>
)
}
npx shadcn@latest add @intentui/input-otp-separator-demoUsage varies by registry entry. Refer to the registry docs or source files below for details.