UNPKG

rn-awesome-pin-input

Version:
16 lines (14 loc) 415 B
import { StyleProp, ViewStyle } from "react-native"; export interface PinInputProps { pinLength?: number; value: string; onChange?: (newValue: string) => void; blinkingSpeed?: number; cursorColor?: string; containerStyle?: StyleProp<ViewStyle>; pinStyle?: StyleProp<ViewStyle>; activePinStyle?: ViewStyle; showCursor?: boolean; secureTextEntry?: boolean; shouldOnlyAcceptNumbers?: boolean; }