UNPKG

react-native-country-select

Version:

🌍 A lightweight and customizable country picker for React Native with modern UI, flags, search engine, and i18n support. Includes TypeScript types, offline support and no dependencies.

14 lines (12 loc) 431 B
import {ICountry} from './country'; import {ICountrySelectStyle} from './countrySelectStyles'; import {ICountrySelectLanguages} from './countrySelectLanguages'; export interface ICountryItemProps { item: ICountry; onSelect: (country: ICountry) => void; onClose: () => void; language: ICountrySelectLanguages; theme?: 'light' | 'dark'; modalType?: 'bottomSheet' | 'popup'; countrySelectStyle?: ICountrySelectStyle; }