currency code added
This commit was merged in pull request #812.
This commit is contained in:
@@ -75,4 +75,23 @@ export const AmountTo2DP = (
|
||||
|
||||
// return formattedNumber;
|
||||
return formattedNumber;
|
||||
};
|
||||
|
||||
|
||||
|
||||
// FUNCTION TO RETURN CURRENCY SYMBOL
|
||||
export const currencySymbol = (
|
||||
currencyName = "naira",
|
||||
amount = "00",
|
||||
) => {
|
||||
// Cureency Array
|
||||
let currencyArray = [
|
||||
{currencyName:'naira', symbol:'₦'},
|
||||
{currencyName:'usd', symbol:'$'},
|
||||
]
|
||||
|
||||
const matchedCurrency = currencyArray.filter(item => item.currencyName.toLocaleLowerCase() == currencyName.toLocaleLowerCase())
|
||||
const amountTo2DP = AmountTo2DP(amount)
|
||||
// return formattedNumber;
|
||||
return matchedCurrency.length ? <><span>{matchedCurrency[0].symbol}</span><span>{amountTo2DP}</span></> : <><span>$</span><span>{amountTo2DP}</span></>;
|
||||
};
|
||||
Reference in New Issue
Block a user