13 lines
574 B
TypeScript
13 lines
574 B
TypeScript
// Paystack supported currencies (6 currencies across 5 African countries)
|
|
// Source: https://support.paystack.com/en/articles/2130690
|
|
const paystackCurrencies = [
|
|
{ label: 'Nigerian Naira', value: 'NGN', symbol: '₦' },
|
|
{ label: 'U.S. Dollar', value: 'USD', symbol: '$' },
|
|
{ label: 'Ghanaian Cedi', value: 'GHS', symbol: '₵' },
|
|
{ label: 'South African Rand', value: 'ZAR', symbol: 'R' },
|
|
{ label: 'Kenyan Shilling', value: 'KES', symbol: 'KSh' },
|
|
{ label: 'West African CFA Franc', value: 'XOF', symbol: 'CFA' },
|
|
];
|
|
|
|
export default paystackCurrencies;
|