react-native-country-picker-modal-xkelxmc
Version:
react-native country picker
16 lines (15 loc) • 419 B
TypeScript
import { CountryCode } from './types';
interface FlagType {
countryCode: CountryCode;
withEmoji?: boolean;
withFlagButton?: boolean;
flagSize: number;
}
export declare const Flag: {
({ countryCode, withEmoji, withFlagButton, flagSize, }: FlagType): import("react/jsx-runtime").JSX.Element | null;
defaultProps: {
withEmoji: boolean;
withFlagButton: boolean;
};
};
export {};