@quantfive/react-verification-code-input
Version:
🎉A verification code input
17 lines (14 loc) • 339 B
TypeScript
interface ReactCodeInput {
type: string;
onChange: (val: string) => void;
onComplete: (val: string) => void;
fields: number;
loading: boolean;
title: string;
fieldWidth: number;
fieldHeight: number;
autoFocus: boolean;
className: string;
}
declare const ReactCodeInput: ReactCodeInput;
export default ReactCodeInput;