export type Country = {
    flag: string;
    code: string;
    country: string;
    dialCode: string;
};
