react-native-country-select
Version:
🌍 React Native country picker with flags, search, TypeScript, i18n, and offline support. Lightweight, customizable, and designed with a modern UI.
14 lines (12 loc) • 448 B
text/typescript
import { ICountrySelectLanguages } from './countrySelectLanguages';
import { ICountrySelectStyle } from './countrySelectStyles';
import { IThemeProps } from './theme';
export interface ICloseButtonProps {
theme?: IThemeProps;
language: ICountrySelectLanguages;
onClose: () => void;
countrySelectStyle?: ICountrySelectStyle;
accessibilityLabelCloseButton?: string;
accessibilityHintCloseButton?: string;
allowFontScaling?: boolean;
}