10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import { TextInputProps } from 'react-native';
|
|
|
|
export interface CustomInputProps extends TextInputProps {
|
|
label: string;
|
|
isPassword?: boolean;
|
|
rightActionText?: string;
|
|
onRightActionPress?: () => void;
|
|
error?: string;
|
|
}
|