UNPKG

softlofy-rn-components

Version:

A collection of commonly used components on React Native project developed by [Softlofy](https://softlofy.com/).

16 lines (14 loc) 407 B
import {KeyboardTypeOptions} from 'react-native'; export type TInputCommonProps = { bgColor?: string; textColor?: string; error?: string; placeholder?: string; placeholderTextColor?: string; cursorColor?: string; onFocus?: () => void; onChangeText?: (text: string) => void; value?: string; keyboardType?: KeyboardTypeOptions | undefined; leftIcon?: React.ReactNode; };