import React from 'react'; import { View, TextInput, Text } from 'react-native'; import { InputFieldProps } from './inputField.props'; import { styles } from './inputField.styles'; export function InputField({ label, containerStyle, renderRightAccessory, style, placeholderTextColor = '#a0abcc', ...rest }: InputFieldProps) { return ( {label && {label}} {renderRightAccessory && ( {renderRightAccessory()} )} ); }