react-native-modern-elements
Version:
A modern, customizable UI component library for React Native
10 lines (9 loc) • 320 B
TypeScript
import { TextInput, TextInputProps, TextStyle, ViewStyle } from "react-native";
export interface InputProps extends TextInputProps {
icon?: React.ReactNode;
containerStyle?: ViewStyle;
inputStyle?: TextStyle;
inputRef?: React.RefObject<TextInput>;
secureTextEntry?: boolean;
cancellIcon?: any;
}