UNPKG

react-native-confirmation-code-field

Version:

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

12 lines (11 loc) 363 B
import React from 'react'; export declare const DEFAULT_BLINKING_SPEED = 500; export declare const DEFAULT_CURSOR_SYMBOL = "|"; export interface CursorProps { cursorSymbol?: string; delay?: number; } export declare function Cursor({ cursorSymbol, delay, }: CursorProps): React.JSX.Element; export declare namespace Cursor { var displayName: string; }