ivt
Version:
Ivt Components Library
15 lines (12 loc) • 753 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { OTPInput } from 'input-otp';
import * as React from 'react';
declare function InputOTP({ className, containerClassName, ...props }: React.ComponentProps<typeof OTPInput> & {
containerClassName?: string;
}): react_jsx_runtime.JSX.Element;
declare function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
declare function InputOTPSlot({ index, className, ...props }: React.ComponentProps<"div"> & {
index: number;
}): react_jsx_runtime.JSX.Element;
declare function InputOTPSeparator({ ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
export { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot };