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