UNPKG

react-native-confirmation-code-field

Version:

A react-native component to input confirmation code for both Android and IOS

9 lines (8 loc) 260 B
import type { FC } from 'react'; export declare const DEFAULT_BLINKING_SPEED = 500; export declare const DEFAULT_CURSOR_SYMBOL = "|"; export interface CursorProps { cursorSymbol?: string; delay?: number; } export declare const Cursor: FC<CursorProps>;