2026-06-30 12:47:44 +05:30

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;
}