mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-03 07:14:38 +03:00
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:
parent
4a7aabd060
commit
92acfe57a1
@ -7,6 +7,8 @@ export enum CurrencyCode {
|
||||
HKD = 'HKD',
|
||||
JPY = 'JPY',
|
||||
USD = 'USD',
|
||||
NOK = 'NOK',
|
||||
SEK = 'SEK',
|
||||
MAD = 'MAD',
|
||||
QAR = 'QAR',
|
||||
AED = 'AED',
|
||||
|
@ -4,6 +4,7 @@ import {
|
||||
IconCurrencyDollar,
|
||||
IconCurrencyEuro,
|
||||
IconCurrencyFrank,
|
||||
IconCurrencyKroneSwedish,
|
||||
IconCurrencyPound,
|
||||
IconCurrencyRiyal,
|
||||
IconCurrencyYen,
|
||||
@ -48,6 +49,14 @@ export const SETTINGS_FIELD_CURRENCY_CODES: Record<
|
||||
label: 'Hong Kong dollar',
|
||||
Icon: IconCurrencyDollar,
|
||||
},
|
||||
NOK: {
|
||||
label: 'Norwegian krone',
|
||||
Icon: IconCurrencyKroneSwedish,
|
||||
},
|
||||
SEK: {
|
||||
label: 'Swedish krona',
|
||||
Icon: IconCurrencyKroneSwedish,
|
||||
},
|
||||
MAD: {
|
||||
label: 'Moroccan dirham',
|
||||
Icon: IconCurrencyDirham,
|
||||
|
@ -54,6 +54,7 @@ export {
|
||||
IconCurrencyDollar,
|
||||
IconCurrencyEuro,
|
||||
IconCurrencyFrank,
|
||||
IconCurrencyKroneSwedish,
|
||||
IconCurrencyPound,
|
||||
IconCurrencyRiyal,
|
||||
IconCurrencyYen,
|
||||
|
Loading…
Reference in New Issue
Block a user