This component no longer exists. It was in skyroc-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Input Otp
skyroc-ui/input-otpRemovedBlock
skyroc-ui publishes no description for this item.
Install it
npx shadcn@latest add https://ui-play.skyroc.me/r/input-otp.jsonSource
1'use client';23import type { ComponentRef } from 'react';4import { forwardRef } from 'react';5import { useComponentConfig } from '../config-provider/context';6import InputOTPUI from './InputOTPUI';7import type { InputOTPProps } from './types';89const InputOTP = forwardRef<ComponentRef<typeof InputOTPUI>, InputOTPProps>((props, ref) => {10 const config = useComponentConfig('inputOtp');1112 const mergedProps = {13 ...config,14 ...props15 };1617 return (18 <InputOTPUI19 {...mergedProps}20 ref={ref}21 />22 );23});2425InputOTP.displayName = 'InputOTP';2627export default InputOTP;
What it pulls in
Other registry items
