8 lines
237 B
TypeScript
8 lines
237 B
TypeScript
import { TextInputProps, StyleProp, ViewStyle } from 'react-native';
|
|
|
|
export interface InputFieldProps extends TextInputProps {
|
|
label?: string;
|
|
containerStyle?: StyleProp<ViewStyle>;
|
|
renderRightAccessory?: () => React.ReactNode;
|
|
}
|