const currencySymbols = [
  { title: 'U.S Dollar', code: 'USD', symbol: '$', currency: 1 },
  { title: 'Euro', code: 'EUR', symbol: '€', currency: 0.86 },
  { title: 'South African Rand', code: 'ZAR', symbol: 'R', currency: 14.85 },
  { title: 'Australian Dollar', code: 'AUD', symbol: 'A$', currency: 1.34 },
  { title: 'Botswana Pula', code: 'BWP', symbol: 'P', currency: 11.17 },
  { title: 'Brazil Reals', code: 'BRL', symbol: 'R$', currency: 5.65 },
  { title: 'Canadian Dollar', code: 'CAD', symbol: '$', currency: 1.24 },
  { title: 'Danish Krone', code: 'DKK', symbol: 'kr', currency: 6.39 },
  { title: 'Hong Kong, Dollar', code: 'HKD', symbol: '$', currency: 7.77 },
  { title: 'India Rupees', code: 'INR', symbol: '₹', currency: 74.99 },
  { title: 'Japanese Yen', code: 'JPY', symbol: '¥', currency: 113.47 },
  { title: 'Kenyan Shilling', code: 'KSH', symbol: 'KSh', currency: 111.10 },
  { title: 'Mauritian Rupees', code: 'MUR', symbol: 'Rs', currency: 42.76 },
  { title: 'Namibian Dollar', code: 'NAD', symbol: '$', currency: 14.80 },
  { title: 'New Zealand Dollar', code: 'NZD', symbol: '$', currency: 1.40 },
  { title: 'Nigerian Naira', code: 'NGN', symbol: '₦', currency: 410.91 },
  { title: 'Norwegian Krone', code: 'NOK', symbol: 'kr', currency: 8.35 },
  { title: 'Pound Sterling', code: 'GBP', symbol: '£', currency: 0.73 },
  { title: 'Saudi Arabia Riyals', code: 'SAR', symbol: 'SAR', currency: 3.75 },
  { title: 'Singapore Dollar', code: 'SGD', symbol: 'S$', currency: 1.35 },
  { title: 'Swaziland Emalangeni', code: 'SZL', symbol: 'SZL', currency: 14.85 },
  { title: 'Swedish Krona', code: 'SEK', symbol: 'kr', currency: 8.57 },
  { title: 'Swiss Franc', code: 'CHF', symbol: 'CHF', currency: 0.92 }
];