feat: add brazilian real currency (#5989)
Added support to Brazilian Real currency code, added the new code on `CurrencyCode.ts` and on `SETTINGS_FIELD_CURRENCY_CODES`
This commit is contained in:
committed by
GitHub
parent
d126b148a1
commit
91b0c2bb8e
@ -15,4 +15,5 @@ export enum CurrencyCode {
|
|||||||
QAR = 'QAR',
|
QAR = 'QAR',
|
||||||
AED = 'AED',
|
AED = 'AED',
|
||||||
KRW = 'KRW',
|
KRW = 'KRW',
|
||||||
|
BRL = 'BRL',
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,6 +8,7 @@ import {
|
|||||||
IconCurrencyKroneCzech,
|
IconCurrencyKroneCzech,
|
||||||
IconCurrencyKroneSwedish,
|
IconCurrencyKroneSwedish,
|
||||||
IconCurrencyPound,
|
IconCurrencyPound,
|
||||||
|
IconCurrencyReal,
|
||||||
IconCurrencyRiyal,
|
IconCurrencyRiyal,
|
||||||
IconCurrencyWon,
|
IconCurrencyWon,
|
||||||
IconCurrencyYen,
|
IconCurrencyYen,
|
||||||
@ -84,4 +85,8 @@ export const SETTINGS_FIELD_CURRENCY_CODES: Record<
|
|||||||
label: 'South Korean won',
|
label: 'South Korean won',
|
||||||
Icon: IconCurrencyWon,
|
Icon: IconCurrencyWon,
|
||||||
},
|
},
|
||||||
|
BRL: {
|
||||||
|
label: 'Brazilian real',
|
||||||
|
Icon: IconCurrencyReal,
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@ -60,6 +60,7 @@ export {
|
|||||||
IconCurrencyKroneCzech,
|
IconCurrencyKroneCzech,
|
||||||
IconCurrencyKroneSwedish,
|
IconCurrencyKroneSwedish,
|
||||||
IconCurrencyPound,
|
IconCurrencyPound,
|
||||||
|
IconCurrencyReal,
|
||||||
IconCurrencyRiyal,
|
IconCurrencyRiyal,
|
||||||
IconCurrencyWon,
|
IconCurrencyWon,
|
||||||
IconCurrencyYen,
|
IconCurrencyYen,
|
||||||
|
|||||||
Reference in New Issue
Block a user