mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-26 13:42:44 +03:00
Added Thai Baht support (#5881)
Hey, saw Thai Baht support was [requested](https://github.com/twentyhq/twenty/issues/5876) and thought it was a cool first issue to get to know the project a little bit.
This commit is contained in:
parent
99f4a75b58
commit
605945bd42
@ -10,6 +10,7 @@ export enum CurrencyCode {
|
||||
USD = 'USD',
|
||||
NOK = 'NOK',
|
||||
SEK = 'SEK',
|
||||
BHT = 'BHT',
|
||||
MAD = 'MAD',
|
||||
QAR = 'QAR',
|
||||
AED = 'AED',
|
||||
|
@ -1,5 +1,6 @@
|
||||
import {
|
||||
IconComponent,
|
||||
IconCurrencyBaht,
|
||||
IconCurrencyDirham,
|
||||
IconCurrencyDollar,
|
||||
IconCurrencyEuro,
|
||||
@ -62,6 +63,10 @@ export const SETTINGS_FIELD_CURRENCY_CODES: Record<
|
||||
label: 'Swedish krona',
|
||||
Icon: IconCurrencyKroneSwedish,
|
||||
},
|
||||
BHT: {
|
||||
label: 'Thai Baht',
|
||||
Icon: IconCurrencyBaht,
|
||||
},
|
||||
MAD: {
|
||||
label: 'Moroccan dirham',
|
||||
Icon: IconCurrencyDirham,
|
||||
|
@ -52,6 +52,7 @@ export {
|
||||
IconMessageCircle as IconComment,
|
||||
IconCopy,
|
||||
IconCreditCard,
|
||||
IconCurrencyBaht,
|
||||
IconCurrencyDirham,
|
||||
IconCurrencyDollar,
|
||||
IconCurrencyEuro,
|
||||
|
Loading…
Reference in New Issue
Block a user