export default function getFlags(code){ if(code == 'AUD') return '🇦🇺'; if(code == 'ARS') return '🇦🇷'; if(code == 'BRL') return '🇧🇷'; if(code == 'CAD') return '🇨🇦'; if(code == 'CHF') return '🇨🇭'; if(code == 'CLP') return '🇨🇱'; if(code == 'CNY') return '🇨🇳'; if(code == 'EUR') return '🇪🇺'; if(code == 'HRK') return '🇨🇷'; if(code == 'CZK') return '🇨🇿'; if(code == 'DKK') return '🇩🇰'; if(code == 'GBP') return '🇬🇧'; if(code == 'HKD') return '🇭🇰'; if(code == 'HUF') return '🇭🇺'; if(code == 'INR') return '🇮🇳'; if(code == 'ISK') return '🇮🇸'; if(code == 'JPY') return '🇯🇵'; if(code == 'KRW') return '🇰🇷'; if(code == 'MXN') return '🇲🇽'; if(code == 'NOK') return '🇳🇴'; if(code == 'NZD') return '🇳🇿'; if(code == 'PLN') return '🇵🇱'; if(code == 'RON') return '🇷🇴'; if(code == 'RUB') return '🇷🇺'; if(code == 'SEK') return '🇸🇪'; if(code == 'SGD') return '🇸🇬'; if(code == 'VES') return '🇻🇪'; if(code == 'TRY') return '🇹🇷'; if(code == 'USD') return '🇺🇸'; if(code == 'ZAR') return '🇿🇦'; return '🏳'; };