UNPKG

@kadoui/react

Version:

Kadoui primitive components for React

7 lines 358 B
import { InputHTMLAttributes } from "react"; export type OtpInputsPropsT = InputHTMLAttributes<HTMLInputElement> & { length: number; onLastChange?: (otp: string) => void; }; export declare function OtpInputs({ name, length, onLastChange, ...props }: OtpInputsPropsT): import("react/jsx-runtime").JSX.Element[]; //# sourceMappingURL=OtpInputs.d.ts.map