react-native-phone-country-picker-input
Version:
A React Native component to input phone numbers with a country picker modal.
12 lines (11 loc) • 446 B
TypeScript
import { Country } from '../types/types';
/**
* @description Each country object contains the following properties:
*
* @property {string} name - The country's name.
* @property {string} iso2 - The country's ISO 2-letter code.
* @property {string} dialCode - The country's dial code.
* @property {string} flag - The country's flag (emoji).
* @exports Countries - An array of country objects.
*/
export declare const Countries: Country[];