sgcart/app/components/inputField/inputField.props.ts
2026-07-03 13:10:46 +05:30

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