feat: Currencies NOK and SEK (#5359)
Related to #5351 and #5353 Adding both currencies NOK and SEK, using icon https://tabler.io/icons/icon/currency-krone-swedish --------- Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
This commit is contained in:
@ -7,6 +7,8 @@ export enum CurrencyCode {
|
|||||||
HKD = 'HKD',
|
HKD = 'HKD',
|
||||||
JPY = 'JPY',
|
JPY = 'JPY',
|
||||||
USD = 'USD',
|
USD = 'USD',
|
||||||
|
NOK = 'NOK',
|
||||||
|
SEK = 'SEK',
|
||||||
MAD = 'MAD',
|
MAD = 'MAD',
|
||||||
QAR = 'QAR',
|
QAR = 'QAR',
|
||||||
AED = 'AED',
|
AED = 'AED',
|
||||||
|
|||||||
@ -4,6 +4,7 @@ import {
|
|||||||
IconCurrencyDollar,
|
IconCurrencyDollar,
|
||||||
IconCurrencyEuro,
|
IconCurrencyEuro,
|
||||||
IconCurrencyFrank,
|
IconCurrencyFrank,
|
||||||
|
IconCurrencyKroneSwedish,
|
||||||
IconCurrencyPound,
|
IconCurrencyPound,
|
||||||
IconCurrencyRiyal,
|
IconCurrencyRiyal,
|
||||||
IconCurrencyYen,
|
IconCurrencyYen,
|
||||||
@ -48,6 +49,14 @@ export const SETTINGS_FIELD_CURRENCY_CODES: Record<
|
|||||||
label: 'Hong Kong dollar',
|
label: 'Hong Kong dollar',
|
||||||
Icon: IconCurrencyDollar,
|
Icon: IconCurrencyDollar,
|
||||||
},
|
},
|
||||||
|
NOK: {
|
||||||
|
label: 'Norwegian krone',
|
||||||
|
Icon: IconCurrencyKroneSwedish,
|
||||||
|
},
|
||||||
|
SEK: {
|
||||||
|
label: 'Swedish krona',
|
||||||
|
Icon: IconCurrencyKroneSwedish,
|
||||||
|
},
|
||||||
MAD: {
|
MAD: {
|
||||||
label: 'Moroccan dirham',
|
label: 'Moroccan dirham',
|
||||||
Icon: IconCurrencyDirham,
|
Icon: IconCurrencyDirham,
|
||||||
|
|||||||
@ -54,6 +54,7 @@ export {
|
|||||||
IconCurrencyDollar,
|
IconCurrencyDollar,
|
||||||
IconCurrencyEuro,
|
IconCurrencyEuro,
|
||||||
IconCurrencyFrank,
|
IconCurrencyFrank,
|
||||||
|
IconCurrencyKroneSwedish,
|
||||||
IconCurrencyPound,
|
IconCurrencyPound,
|
||||||
IconCurrencyRiyal,
|
IconCurrencyRiyal,
|
||||||
IconCurrencyYen,
|
IconCurrencyYen,
|
||||||
|
|||||||
Reference in New Issue
Block a user