Hi Twenty team, I'd love to have Australian dollar as an option in Twenty! Please let me me know if I have missed anything I need to change to enable this. Thanks for a a great product --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
97 lines
1.8 KiB
TypeScript
97 lines
1.8 KiB
TypeScript
import {
|
|
IconComponent,
|
|
IconCurrencyBaht,
|
|
IconCurrencyDirham,
|
|
IconCurrencyDollar,
|
|
IconCurrencyEuro,
|
|
IconCurrencyFrank,
|
|
IconCurrencyKroneCzech,
|
|
IconCurrencyKroneSwedish,
|
|
IconCurrencyPound,
|
|
IconCurrencyReal,
|
|
IconCurrencyRiyal,
|
|
IconCurrencyWon,
|
|
IconCurrencyYen,
|
|
IconCurrencyYuan,
|
|
} from 'twenty-ui';
|
|
|
|
import { CurrencyCode } from '@/object-record/record-field/types/CurrencyCode';
|
|
|
|
export const SETTINGS_FIELD_CURRENCY_CODES: Record<
|
|
CurrencyCode,
|
|
{ label: string; Icon: IconComponent }
|
|
> = {
|
|
USD: {
|
|
label: 'United States dollar',
|
|
Icon: IconCurrencyDollar,
|
|
},
|
|
EUR: {
|
|
label: 'Euro',
|
|
Icon: IconCurrencyEuro,
|
|
},
|
|
JPY: {
|
|
label: 'Japanese yen',
|
|
Icon: IconCurrencyYen,
|
|
},
|
|
GBP: {
|
|
label: 'British pound',
|
|
Icon: IconCurrencyPound,
|
|
},
|
|
CAD: {
|
|
label: 'Canadian dollar',
|
|
Icon: IconCurrencyDollar,
|
|
},
|
|
CHF: {
|
|
label: 'Swiss franc',
|
|
Icon: IconCurrencyFrank,
|
|
},
|
|
CNY: {
|
|
label: 'Chinese yuan',
|
|
Icon: IconCurrencyYuan,
|
|
},
|
|
CZK: {
|
|
label: 'Czech koruna',
|
|
Icon: IconCurrencyKroneCzech,
|
|
},
|
|
HKD: {
|
|
label: 'Hong Kong dollar',
|
|
Icon: IconCurrencyDollar,
|
|
},
|
|
NOK: {
|
|
label: 'Norwegian krone',
|
|
Icon: IconCurrencyKroneSwedish,
|
|
},
|
|
SEK: {
|
|
label: 'Swedish krona',
|
|
Icon: IconCurrencyKroneSwedish,
|
|
},
|
|
BHT: {
|
|
label: 'Thai Baht',
|
|
Icon: IconCurrencyBaht,
|
|
},
|
|
MAD: {
|
|
label: 'Moroccan dirham',
|
|
Icon: IconCurrencyDirham,
|
|
},
|
|
QAR: {
|
|
label: 'Qatari riyal',
|
|
Icon: IconCurrencyRiyal,
|
|
},
|
|
AED: {
|
|
label: 'UAE dirham',
|
|
Icon: IconCurrencyDirham,
|
|
},
|
|
KRW: {
|
|
label: 'South Korean won',
|
|
Icon: IconCurrencyWon,
|
|
},
|
|
BRL: {
|
|
label: 'Brazilian real',
|
|
Icon: IconCurrencyReal,
|
|
},
|
|
AUD: {
|
|
label: 'Australian dollar',
|
|
Icon: IconCurrencyDollar,
|
|
},
|
|
};
|