UNPKG

@brainsbeards/react-native-animated-code-input

Version:

Animated code input component for React Native, with support for iOS, Android, and React Native Web. It works with one-time code autofill on iOS and Android.

10 lines (9 loc) 342 B
import React from "react"; import { ICodeInputProps } from "./InputSingleItem"; import { IInputProps } from "./InputField"; interface IProps extends ICodeInputProps, IInputProps { numberOfInputs: number; onSubmitCode: (codeValue: string) => void; } declare const AnimatedCodeInput: React.FC<IProps>; export default AnimatedCodeInput;