11 lines
265 B
TypeScript
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;
|
|
}
|