UNPKG

react-native-confirmation-code-field

Version:

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

10 lines (9 loc) 306 B
import type { FC, PropsWithChildren, ReactNode } from 'react'; export declare const DEFAULT_BLINKING_SPEED = 500; interface MaskSymbolProps { delay?: number; maskSymbol: ReactNode; isLastFilledCell: boolean; } export declare const MaskSymbol: FC<PropsWithChildren<MaskSymbolProps>>; export {};