Skip to content

Commit

Permalink
feat: Currencies NOK and SEK (twentyhq#5359)
Browse files Browse the repository at this point in the history
Related to twentyhq#5351 and twentyhq#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>
  • Loading branch information
thilles and FelixMalfait committed May 13, 2024
1 parent 4a7aabd commit 92acfe5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export enum CurrencyCode {
HKD = 'HKD',
JPY = 'JPY',
USD = 'USD',
NOK = 'NOK',
SEK = 'SEK',
MAD = 'MAD',
QAR = 'QAR',
AED = 'AED',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
IconCurrencyDollar,
IconCurrencyEuro,
IconCurrencyFrank,
IconCurrencyKroneSwedish,
IconCurrencyPound,
IconCurrencyRiyal,
IconCurrencyYen,
Expand Down Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export {
IconCurrencyDollar,
IconCurrencyEuro,
IconCurrencyFrank,
IconCurrencyKroneSwedish,
IconCurrencyPound,
IconCurrencyRiyal,
IconCurrencyYen,
Expand Down

0 comments on commit 92acfe5

Please sign in to comment.