Skip to content

Commit

Permalink
Added: The support for CZK Currency (twentyhq#5561)
Browse files Browse the repository at this point in the history
Added the Czech Koruna currency support.
- Added the CZK to the currency code.
- Set the desired CZK icon to `TablerIcons` to use it within the
`twenty-ui`

fixes: twentyhq#5530 

![Screenshot
(335)](https://github.com/twentyhq/twenty/assets/140178357/a19a60b8-2261-44b3-9ed2-5c35424631a1)
![Screenshot
(336)](https://github.com/twentyhq/twenty/assets/140178357/20944e43-901c-4dda-b986-a47763fb5f9b)
  • Loading branch information
shashankvish0010 authored May 24, 2024
1 parent c7d61e1 commit 3de5ed3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export enum CurrencyCode {
CAD = 'CAD',
CHF = 'CHF',
CNY = 'CNY',
CZK = 'CZK',
EUR = 'EUR',
GBP = 'GBP',
HKD = 'HKD',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
IconCurrencyEuro,
IconCurrencyFrank,
IconCurrencyKroneSwedish,
IconCurrencyKroneCzech,
IconCurrencyPound,
IconCurrencyRiyal,
IconCurrencyYen,
Expand Down Expand Up @@ -45,6 +46,10 @@ export const SETTINGS_FIELD_CURRENCY_CODES: Record<
label: 'Chinese yuan',
Icon: IconCurrencyYuan,
},
CZK: {
label: 'Czech koruna',
Icon: IconCurrencyKroneCzech,
},
HKD: {
label: 'Hong Kong dollar',
Icon: IconCurrencyDollar,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export {
IconCurrencyEuro,
IconCurrencyFrank,
IconCurrencyKroneSwedish,
IconCurrencyKroneCzech,
IconCurrencyPound,
IconCurrencyRiyal,
IconCurrencyYen,
Expand Down

0 comments on commit 3de5ed3

Please sign in to comment.