2026-07-16 20:04:40 +05:30

11 lines
265 B
TypeScript

import { TextInputProps } from 'react-native';
export interface FormInputProps extends Omit<TextInputProps, 'style'> {
label: string;
value: string;
onChangeText: (text: string) => void;
placeholder?: string;
required?: boolean;
multiline?: boolean;
}