react-native-element-dropdown
Version:
React Native Element Dropdown is a library that provides a customizable dropdown component for React Native applications.
13 lines (10 loc) • 301 B
text/typescript
import type { ImageStyle } from 'react-native';
import type { DropdownProps } from '../Dropdown/model';
export type ISelectCountryRef = {
open: () => void;
close: () => void;
};
export interface SelectCountryProps<T> extends DropdownProps<T> {
imageField: string;
imageStyle?: ImageStyle;
}