UNPKG

@easykit/design

Version:

Easy kit design components

12 lines (11 loc) 647 B
import { OTPInput } from 'input-otp'; import * as React from "react"; declare function InputOTP({ className, containerClassName, ...props }: React.ComponentProps<typeof OTPInput> & { containerClassName?: string; }): React.JSX.Element; declare function InputOTPGroup({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element; declare function InputOTPSlot({ index, className, ...props }: React.ComponentProps<"div"> & { index: number; }): React.JSX.Element; declare function InputOTPSeparator({ ...props }: React.ComponentProps<"div">): React.JSX.Element; export { InputOTP, InputOTPGroup, InputOTPSlot, InputOTPSeparator };