import { TextInput } from 'react-native-paper'; import { DropdownInputProps } from './types'; function DropdownInput(props: DropdownInputProps) { const { placeholder, label, rightIcon, selectedLabel, mode, disabled, error, } = props; return ( ); } export default DropdownInput;