Components
Loading preview...
A segmented input for one-time passwords and verification codes.
npx shadcn@latest add https://21st.dev/r/coss.com/input-otpimport {
InputOTP,
InputOTPGroup,
InputOTPSlot,
} from "@/components/ui/component";
export default function InputOTPLarge() {
return (
<InputOTP aria-label="One-time password" maxLength={4}>
<InputOTPGroup size="lg">
<InputOTPSlot index={0} />
<InputOTPSlot index={1} />
<InputOTPSlot index={2} />
<InputOTPSlot index={3} />
</InputOTPGroup>
</InputOTP>
);
}