mirror of
https://github.com/lingble/twenty.git
synced 2025-10-30 12:22:29 +00:00
Add missing currencies (#7441)
Related to #7038 --------- Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
@@ -1,20 +1,154 @@
|
|||||||
export enum CurrencyCode {
|
export enum CurrencyCode {
|
||||||
CAD = 'CAD',
|
|
||||||
CHF = 'CHF',
|
|
||||||
CNY = 'CNY',
|
|
||||||
CZK = 'CZK',
|
|
||||||
EUR = 'EUR',
|
|
||||||
GBP = 'GBP',
|
|
||||||
HKD = 'HKD',
|
|
||||||
JPY = 'JPY',
|
|
||||||
USD = 'USD',
|
|
||||||
NOK = 'NOK',
|
|
||||||
SEK = 'SEK',
|
|
||||||
BHT = 'BHT',
|
|
||||||
MAD = 'MAD',
|
|
||||||
QAR = 'QAR',
|
|
||||||
AED = 'AED',
|
AED = 'AED',
|
||||||
KRW = 'KRW',
|
AFN = 'AFN',
|
||||||
BRL = 'BRL',
|
ALL = 'ALL',
|
||||||
|
AMD = 'AMD',
|
||||||
|
ANG = 'ANG',
|
||||||
|
AOA = 'AOA',
|
||||||
|
ARS = 'ARS',
|
||||||
AUD = 'AUD',
|
AUD = 'AUD',
|
||||||
|
AWG = 'AWG',
|
||||||
|
AZN = 'AZN',
|
||||||
|
BAM = 'BAM',
|
||||||
|
BBD = 'BBD',
|
||||||
|
BDT = 'BDT',
|
||||||
|
BGN = 'BGN',
|
||||||
|
BHD = 'BHD',
|
||||||
|
BIF = 'BIF',
|
||||||
|
BMD = 'BMD',
|
||||||
|
BND = 'BND',
|
||||||
|
BOB = 'BOB',
|
||||||
|
BRL = 'BRL',
|
||||||
|
BSD = 'BSD',
|
||||||
|
BTN = 'BTN',
|
||||||
|
BWP = 'BWP',
|
||||||
|
BYN = 'BYN',
|
||||||
|
BZD = 'BZD',
|
||||||
|
CAD = 'CAD',
|
||||||
|
CDF = 'CDF',
|
||||||
|
CHF = 'CHF',
|
||||||
|
CLP = 'CLP',
|
||||||
|
CNY = 'CNY',
|
||||||
|
COP = 'COP',
|
||||||
|
CRC = 'CRC',
|
||||||
|
CUP = 'CUP',
|
||||||
|
CVE = 'CVE',
|
||||||
|
CZK = 'CZK',
|
||||||
|
DJF = 'DJF',
|
||||||
|
DKK = 'DKK',
|
||||||
|
DOP = 'DOP',
|
||||||
|
DZD = 'DZD',
|
||||||
|
EGP = 'EGP',
|
||||||
|
ERN = 'ERN',
|
||||||
|
ETB = 'ETB',
|
||||||
|
EUR = 'EUR',
|
||||||
|
FJD = 'FJD',
|
||||||
|
FKP = 'FKP',
|
||||||
|
GBP = 'GBP',
|
||||||
|
GEL = 'GEL',
|
||||||
|
GHS = 'GHS',
|
||||||
|
GIP = 'GIP',
|
||||||
|
GMD = 'GMD',
|
||||||
|
GNF = 'GNF',
|
||||||
|
GTQ = 'GTQ',
|
||||||
|
GYD = 'GYD',
|
||||||
|
HKD = 'HKD',
|
||||||
|
HNL = 'HNL',
|
||||||
|
HTG = 'HTG',
|
||||||
|
HUF = 'HUF',
|
||||||
|
IDR = 'IDR',
|
||||||
|
ILS = 'ILS',
|
||||||
|
INR = 'INR',
|
||||||
|
IQD = 'IQD',
|
||||||
|
IRR = 'IRR',
|
||||||
|
ISK = 'ISK',
|
||||||
|
JMD = 'JMD',
|
||||||
|
JOD = 'JOD',
|
||||||
|
JPY = 'JPY',
|
||||||
|
KES = 'KES',
|
||||||
|
KGS = 'KGS',
|
||||||
|
KHR = 'KHR',
|
||||||
|
KMF = 'KMF',
|
||||||
|
KPW = 'KPW',
|
||||||
|
KRW = 'KRW',
|
||||||
|
KWD = 'KWD',
|
||||||
|
KYD = 'KYD',
|
||||||
|
KZT = 'KZT',
|
||||||
|
LAK = 'LAK',
|
||||||
|
LBP = 'LBP',
|
||||||
|
LKR = 'LKR',
|
||||||
|
LRD = 'LRD',
|
||||||
|
LSL = 'LSL',
|
||||||
|
LYD = 'LYD',
|
||||||
|
MAD = 'MAD',
|
||||||
|
MDL = 'MDL',
|
||||||
|
MGA = 'MGA',
|
||||||
|
MKD = 'MKD',
|
||||||
|
MMK = 'MMK',
|
||||||
|
MNT = 'MNT',
|
||||||
|
MOP = 'MOP',
|
||||||
|
MRU = 'MRU',
|
||||||
|
MUR = 'MUR',
|
||||||
|
MVR = 'MVR',
|
||||||
|
MWK = 'MWK',
|
||||||
|
MXN = 'MXN',
|
||||||
|
MYR = 'MYR',
|
||||||
|
MZN = 'MZN',
|
||||||
|
NAD = 'NAD',
|
||||||
|
NGN = 'NGN',
|
||||||
|
NIO = 'NIO',
|
||||||
|
NOK = 'NOK',
|
||||||
|
NPR = 'NPR',
|
||||||
|
NZD = 'NZD',
|
||||||
|
OMR = 'OMR',
|
||||||
|
PAB = 'PAB',
|
||||||
|
PEN = 'PEN',
|
||||||
|
PGK = 'PGK',
|
||||||
|
PHP = 'PHP',
|
||||||
|
PKR = 'PKR',
|
||||||
|
PLN = 'PLN',
|
||||||
|
PYG = 'PYG',
|
||||||
|
QAR = 'QAR',
|
||||||
|
RON = 'RON',
|
||||||
|
RSD = 'RSD',
|
||||||
|
RUB = 'RUB',
|
||||||
|
RWF = 'RWF',
|
||||||
|
SAR = 'SAR',
|
||||||
|
SBD = 'SBD',
|
||||||
|
SCR = 'SCR',
|
||||||
|
SDG = 'SDG',
|
||||||
|
SEK = 'SEK',
|
||||||
|
SGD = 'SGD',
|
||||||
|
SHP = 'SHP',
|
||||||
|
SLE = 'SLE',
|
||||||
|
SOS = 'SOS',
|
||||||
|
SRD = 'SRD',
|
||||||
|
SSP = 'SSP',
|
||||||
|
STN = 'STN',
|
||||||
|
SVC = 'SVC',
|
||||||
|
SYP = 'SYP',
|
||||||
|
SZL = 'SZL',
|
||||||
|
THB = 'THB',
|
||||||
|
TJS = 'TJS',
|
||||||
|
TMT = 'TMT',
|
||||||
|
TND = 'TND',
|
||||||
|
TOP = 'TOP',
|
||||||
|
TRY = 'TRY',
|
||||||
|
TTD = 'TTD',
|
||||||
|
TWD = 'TWD',
|
||||||
|
TZS = 'TZS',
|
||||||
|
UAH = 'UAH',
|
||||||
|
UGX = 'UGX',
|
||||||
|
USD = 'USD',
|
||||||
|
UYU = 'UYU',
|
||||||
|
UZS = 'UZS',
|
||||||
|
VES = 'VES',
|
||||||
|
VND = 'VND',
|
||||||
|
VUV = 'VUV',
|
||||||
|
WST = 'WST',
|
||||||
|
XCD = 'XCD',
|
||||||
|
YER = 'YER',
|
||||||
|
ZAR = 'ZAR',
|
||||||
|
ZMW = 'ZMW',
|
||||||
|
ZWG = 'ZWG',
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,18 +1,56 @@
|
|||||||
import {
|
import {
|
||||||
|
IconCoins,
|
||||||
IconComponent,
|
IconComponent,
|
||||||
|
IconCurrencyAfghani,
|
||||||
|
IconCurrencyBahraini,
|
||||||
IconCurrencyBaht,
|
IconCurrencyBaht,
|
||||||
|
IconCurrencyForint,
|
||||||
|
IconCurrencyDinar,
|
||||||
IconCurrencyDirham,
|
IconCurrencyDirham,
|
||||||
IconCurrencyDollar,
|
IconCurrencyDollar,
|
||||||
|
IconCurrencyDollarAustralian,
|
||||||
|
IconCurrencyDollarBrunei,
|
||||||
|
IconCurrencyDollarCanadian,
|
||||||
|
IconCurrencyDollarGuyanese,
|
||||||
|
IconCurrencyDollarSingapore,
|
||||||
|
IconCurrencyDong,
|
||||||
|
IconCurrencyDram,
|
||||||
IconCurrencyEuro,
|
IconCurrencyEuro,
|
||||||
|
IconCurrencyFlorin,
|
||||||
IconCurrencyFrank,
|
IconCurrencyFrank,
|
||||||
|
IconCurrencyGuarani,
|
||||||
|
IconCurrencyHryvnia,
|
||||||
|
IconCurrencyIranianRial,
|
||||||
|
IconCurrencyKip,
|
||||||
IconCurrencyKroneCzech,
|
IconCurrencyKroneCzech,
|
||||||
|
IconCurrencyKroneDanish,
|
||||||
IconCurrencyKroneSwedish,
|
IconCurrencyKroneSwedish,
|
||||||
|
IconCurrencyLari,
|
||||||
|
IconCurrencyLeu,
|
||||||
|
IconCurrencyLira,
|
||||||
|
IconCurrencyLyd,
|
||||||
|
IconCurrencyManat,
|
||||||
|
IconCurrencyNaira,
|
||||||
|
IconCurrencyPaanga,
|
||||||
|
IconCurrencyPeso,
|
||||||
IconCurrencyPound,
|
IconCurrencyPound,
|
||||||
|
IconCurrencyQuetzal,
|
||||||
IconCurrencyReal,
|
IconCurrencyReal,
|
||||||
|
IconCurrencyRenminbi,
|
||||||
IconCurrencyRiyal,
|
IconCurrencyRiyal,
|
||||||
|
IconCurrencyRubel,
|
||||||
|
IconCurrencyRufiyaa,
|
||||||
|
IconCurrencyRupee,
|
||||||
|
IconCurrencyRupeeNepalese,
|
||||||
|
IconCurrencyTaka,
|
||||||
|
IconCurrencyTenge,
|
||||||
|
IconCurrencyTugrik,
|
||||||
|
IconCurrencySom,
|
||||||
|
IconCurrencyShekel,
|
||||||
IconCurrencyWon,
|
IconCurrencyWon,
|
||||||
IconCurrencyYen,
|
IconCurrencyYen,
|
||||||
IconCurrencyYuan,
|
IconCurrencyYuan,
|
||||||
|
IconCurrencyZloty,
|
||||||
} from 'twenty-ui';
|
} from 'twenty-ui';
|
||||||
|
|
||||||
import { CurrencyCode } from '@/object-record/record-field/types/CurrencyCode';
|
import { CurrencyCode } from '@/object-record/record-field/types/CurrencyCode';
|
||||||
@@ -21,76 +59,156 @@ export const SETTINGS_FIELD_CURRENCY_CODES: Record<
|
|||||||
CurrencyCode,
|
CurrencyCode,
|
||||||
{ label: string; Icon: IconComponent }
|
{ label: string; Icon: IconComponent }
|
||||||
> = {
|
> = {
|
||||||
USD: {
|
AED: { label: 'UAE dirham', Icon: IconCurrencyDirham },
|
||||||
label: 'United States dollar',
|
AFN: { label: 'Afghan afghani', Icon: IconCurrencyAfghani },
|
||||||
Icon: IconCurrencyDollar,
|
ALL: { label: 'Albanian lek', Icon: IconCurrencyLeu },
|
||||||
},
|
AMD: { label: 'Armenian dram', Icon: IconCurrencyDram },
|
||||||
EUR: {
|
ANG: { label: 'Netherlands Antillean guilder', Icon: IconCurrencyFlorin },
|
||||||
label: 'Euro',
|
AOA: { label: 'Angolan kwanza', Icon: IconCoins },
|
||||||
Icon: IconCurrencyEuro,
|
ARS: { label: 'Argentine peso', Icon: IconCoins },
|
||||||
},
|
AUD: { label: 'Australian dollar', Icon: IconCurrencyDollarAustralian },
|
||||||
JPY: {
|
AWG: { label: 'Aruban florin', Icon: IconCurrencyFlorin },
|
||||||
label: 'Japanese yen',
|
AZN: { label: 'Azerbaijani manat', Icon: IconCurrencyManat },
|
||||||
Icon: IconCurrencyYen,
|
BAM: { label: 'Bosnia and Herzegovina mark', Icon: IconCoins },
|
||||||
},
|
BBD: { label: 'Barbados dollar', Icon: IconCurrencyDollar },
|
||||||
GBP: {
|
BDT: { label: 'Bangladeshi taka', Icon: IconCurrencyTaka },
|
||||||
label: 'British pound',
|
BGN: { label: 'Bulgarian lev', Icon: IconCoins },
|
||||||
Icon: IconCurrencyPound,
|
BHD: { label: 'Bahraini dinar', Icon: IconCurrencyBahraini },
|
||||||
},
|
BIF: { label: 'Burundian franc', Icon: IconCoins },
|
||||||
CAD: {
|
BMD: { label: 'Bermudian dollar', Icon: IconCurrencyDollar },
|
||||||
label: 'Canadian dollar',
|
BND: { label: 'Brunei dollar', Icon: IconCurrencyDollarBrunei },
|
||||||
Icon: IconCurrencyDollar,
|
BOB: { label: 'Boliviano', Icon: IconCoins },
|
||||||
},
|
BRL: { label: 'Brazilian real', Icon: IconCurrencyReal },
|
||||||
CHF: {
|
BSD: { label: 'Bahamian dollar', Icon: IconCurrencyDollar },
|
||||||
label: 'Swiss franc',
|
BTN: { label: 'Bhutanese ngultrum', Icon: IconCurrencyDollar },
|
||||||
Icon: IconCurrencyFrank,
|
BWP: { label: 'Botswana pula', Icon: IconCoins },
|
||||||
},
|
BYN: { label: 'Belarusian ruble', Icon: IconCoins },
|
||||||
CNY: {
|
BZD: { label: 'Belize dollar', Icon: IconCurrencyDollar },
|
||||||
label: 'Chinese yuan',
|
CAD: { label: 'Canadian dollar', Icon: IconCurrencyDollarCanadian },
|
||||||
Icon: IconCurrencyYuan,
|
CDF: { label: 'Congolese franc', Icon: IconCoins },
|
||||||
},
|
CHF: { label: 'Swiss franc', Icon: IconCurrencyFrank },
|
||||||
CZK: {
|
CLP: { label: 'Chilean peso', Icon: IconCoins },
|
||||||
label: 'Czech koruna',
|
CNY: { label: 'Chinese yuan', Icon: IconCurrencyYuan },
|
||||||
Icon: IconCurrencyKroneCzech,
|
COP: { label: 'Colombian peso', Icon: IconCoins },
|
||||||
},
|
CRC: { label: 'Costa Rican colon', Icon: IconCoins },
|
||||||
HKD: {
|
CUP: { label: 'Cuban peso', Icon: IconCoins },
|
||||||
label: 'Hong Kong dollar',
|
CVE: { label: 'Cape Verdean escudo', Icon: IconCoins },
|
||||||
Icon: IconCurrencyDollar,
|
CZK: { label: 'Czech koruna', Icon: IconCurrencyKroneCzech },
|
||||||
},
|
DJF: { label: 'Djiboutian franc', Icon: IconCoins },
|
||||||
NOK: {
|
DKK: { label: 'Danish krone', Icon: IconCurrencyKroneDanish },
|
||||||
label: 'Norwegian krone',
|
DOP: { label: 'Dominican peso', Icon: IconCoins },
|
||||||
Icon: IconCurrencyKroneSwedish,
|
DZD: { label: 'Algerian Dinar', Icon: IconCoins },
|
||||||
},
|
EGP: { label: 'Egyptian pound', Icon: IconCoins },
|
||||||
SEK: {
|
ERN: { label: 'Eritrean nakfa', Icon: IconCoins },
|
||||||
label: 'Swedish krona',
|
ETB: { label: 'Ethiopian birr', Icon: IconCoins },
|
||||||
Icon: IconCurrencyKroneSwedish,
|
EUR: { label: 'Euro', Icon: IconCurrencyEuro },
|
||||||
},
|
FJD: { label: 'Fiji dollar', Icon: IconCurrencyDollar },
|
||||||
BHT: {
|
FKP: { label: 'Falkland Islands pound', Icon: IconCoins },
|
||||||
label: 'Thai Baht',
|
GBP: { label: 'British pound', Icon: IconCurrencyPound },
|
||||||
Icon: IconCurrencyBaht,
|
GEL: { label: 'Georgian lari', Icon: IconCurrencyLari },
|
||||||
},
|
GHS: { label: 'Ghanaian cedi', Icon: IconCoins },
|
||||||
MAD: {
|
GIP: { label: 'Gibraltar pound', Icon: IconCoins },
|
||||||
label: 'Moroccan dirham',
|
GMD: { label: 'Gambian dalasi', Icon: IconCoins },
|
||||||
Icon: IconCurrencyDirham,
|
GNF: { label: 'Guinean franc', Icon: IconCoins },
|
||||||
},
|
GTQ: { label: 'Guatemalan quetzal', Icon: IconCurrencyQuetzal },
|
||||||
QAR: {
|
GYD: { label: 'Guyanese dollar', Icon: IconCurrencyDollarGuyanese },
|
||||||
label: 'Qatari riyal',
|
HKD: { label: 'Hong Kong dollar', Icon: IconCurrencyRenminbi },
|
||||||
Icon: IconCurrencyRiyal,
|
HNL: { label: 'Honduran lempira', Icon: IconCurrencyLeu },
|
||||||
},
|
HTG: { label: 'Haitian gourde', Icon: IconCoins },
|
||||||
AED: {
|
HUF: { label: 'Hungarian forint', Icon: IconCurrencyForint },
|
||||||
label: 'UAE dirham',
|
IDR: { label: 'Indonesian rupiah', Icon: IconCoins },
|
||||||
Icon: IconCurrencyDirham,
|
ILS: { label: 'Israeli shekel', Icon: IconCurrencyShekel },
|
||||||
},
|
INR: { label: 'Indian rupee', Icon: IconCurrencyRupee },
|
||||||
KRW: {
|
IQD: { label: 'Iraqi dinar', Icon: IconCoins },
|
||||||
label: 'South Korean won',
|
IRR: { label: 'Iranian rial', Icon: IconCurrencyIranianRial },
|
||||||
Icon: IconCurrencyWon,
|
ISK: { label: 'Icelandic króna', Icon: IconCoins },
|
||||||
},
|
JMD: { label: 'Jamaican dollar', Icon: IconCurrencyDollar },
|
||||||
BRL: {
|
JOD: { label: 'Jordanian dinar', Icon: IconCoins },
|
||||||
label: 'Brazilian real',
|
JPY: { label: 'Japanese yen', Icon: IconCurrencyYen },
|
||||||
Icon: IconCurrencyReal,
|
KES: { label: 'Kenyan shilling', Icon: IconCoins },
|
||||||
},
|
KGS: { label: 'Kyrgyzstani som', Icon: IconCurrencySom },
|
||||||
AUD: {
|
KHR: { label: 'Cambodian riel', Icon: IconCoins },
|
||||||
label: 'Australian dollar',
|
KMF: { label: 'Comoro franc', Icon: IconCoins },
|
||||||
Icon: IconCurrencyDollar,
|
KPW: { label: 'North Korean won', Icon: IconCurrencyWon },
|
||||||
},
|
KRW: { label: 'South Korean won', Icon: IconCurrencyWon },
|
||||||
|
KWD: { label: 'Kuwaiti dinar', Icon: IconCurrencyDinar },
|
||||||
|
KYD: { label: 'Cayman Islands dollar', Icon: IconCurrencyDollar },
|
||||||
|
KZT: { label: 'Kazakhstani tenge', Icon: IconCurrencyTenge },
|
||||||
|
LAK: { label: 'Lao kip', Icon: IconCurrencyKip },
|
||||||
|
LBP: { label: 'Lebanese pound', Icon: IconCoins },
|
||||||
|
LKR: { label: 'Sri Lankan rupee', Icon: IconCoins },
|
||||||
|
LRD: { label: 'Liberian dollar', Icon: IconCurrencyDollar },
|
||||||
|
LSL: { label: 'Lesotho loti', Icon: IconCurrencyLeu },
|
||||||
|
LYD: { label: 'Libyan dinar', Icon: IconCurrencyLyd },
|
||||||
|
MAD: { label: 'Moroccan dirham', Icon: IconCurrencyDirham },
|
||||||
|
MDL: { label: 'Moldovan leu', Icon: IconCurrencyLeu },
|
||||||
|
MGA: { label: 'Malagasy ariary', Icon: IconCoins },
|
||||||
|
MKD: { label: 'Macedonian denar', Icon: IconCoins },
|
||||||
|
MMK: { label: 'Myanmar kyat', Icon: IconCoins },
|
||||||
|
MNT: { label: 'Mongolian tögrög', Icon: IconCurrencyTugrik },
|
||||||
|
MOP: { label: 'Macanese pataca', Icon: IconCurrencyRenminbi },
|
||||||
|
MRU: { label: 'Mauritanian ouguiya', Icon: IconCoins },
|
||||||
|
MUR: { label: 'Mauritian rupee', Icon: IconCoins },
|
||||||
|
MVR: { label: 'Maldivian rufiyaa', Icon: IconCurrencyRufiyaa },
|
||||||
|
MWK: { label: 'Malawian kwacha', Icon: IconCoins },
|
||||||
|
MXN: { label: 'Mexican peso', Icon: IconCoins },
|
||||||
|
MYR: { label: 'Malaysian ringgit', Icon: IconCoins },
|
||||||
|
MZN: { label: 'Mozambican metical', Icon: IconCoins },
|
||||||
|
NAD: { label: 'Namibian dollar', Icon: IconCurrencyDollar },
|
||||||
|
NGN: { label: 'Nigerian naira', Icon: IconCurrencyNaira },
|
||||||
|
NIO: { label: 'Nicaraguan córdoba', Icon: IconCoins },
|
||||||
|
NOK: { label: 'Norwegian krone', Icon: IconCurrencyKroneSwedish },
|
||||||
|
NPR: { label: 'Nepalese rupee', Icon: IconCurrencyRupeeNepalese },
|
||||||
|
NZD: { label: 'New Zealand dollar', Icon: IconCurrencyDollar },
|
||||||
|
OMR: { label: 'Omani rial', Icon: IconCoins },
|
||||||
|
PAB: { label: 'Panamanian balboa', Icon: IconCoins },
|
||||||
|
PEN: { label: 'Peruvian sol', Icon: IconCoins },
|
||||||
|
PGK: { label: 'Papua New Guinean kina', Icon: IconCoins },
|
||||||
|
PHP: { label: 'Philippine peso', Icon: IconCurrencyPeso },
|
||||||
|
PKR: { label: 'Pakistani rupee', Icon: IconCoins },
|
||||||
|
PLN: { label: 'Polish złoty', Icon: IconCurrencyZloty },
|
||||||
|
PYG: { label: 'Paraguayan guaraní', Icon: IconCurrencyGuarani },
|
||||||
|
QAR: { label: 'Qatari riyal', Icon: IconCurrencyRiyal },
|
||||||
|
RON: { label: 'Romanian leu', Icon: IconCurrencyLeu },
|
||||||
|
RSD: { label: 'Serbian dinar', Icon: IconCoins },
|
||||||
|
RUB: { label: 'Russian ruble', Icon: IconCurrencyRubel },
|
||||||
|
RWF: { label: 'Rwandan franc', Icon: IconCoins },
|
||||||
|
SAR: { label: 'Saudi riyal', Icon: IconCoins },
|
||||||
|
SBD: { label: 'Solomon Islands dollar', Icon: IconCurrencyDollar },
|
||||||
|
SCR: { label: 'Seychelles rupee', Icon: IconCoins },
|
||||||
|
SDG: { label: 'Sudanese pound', Icon: IconCoins },
|
||||||
|
SEK: { label: 'Swedish krona', Icon: IconCurrencyKroneSwedish },
|
||||||
|
SGD: { label: 'Singapore dollar', Icon: IconCurrencyDollarSingapore },
|
||||||
|
SHP: { label: 'Saint Helena pound', Icon: IconCoins },
|
||||||
|
SLE: { label: 'Sierra Leonean leone', Icon: IconCoins },
|
||||||
|
SOS: { label: 'Somalian shilling', Icon: IconCoins },
|
||||||
|
SRD: { label: 'Surinamese dollar', Icon: IconCurrencyDollar },
|
||||||
|
SSP: { label: 'South Sudanese pound', Icon: IconCoins },
|
||||||
|
STN: { label: 'São Tomé and Príncipe dobra', Icon: IconCoins },
|
||||||
|
SVC: { label: 'Salvadoran colón', Icon: IconCoins },
|
||||||
|
SYP: { label: 'Syrian pound', Icon: IconCoins },
|
||||||
|
SZL: { label: 'Swazi lilangeni', Icon: IconCurrencyLeu },
|
||||||
|
THB: { label: 'Thai Baht', Icon: IconCurrencyBaht },
|
||||||
|
TJS: { label: 'Tajikistani somoni', Icon: IconCoins },
|
||||||
|
TMT: { label: 'Turkmenistan manat', Icon: IconCurrencyManat },
|
||||||
|
TND: { label: 'Tunisian dinar', Icon: IconCoins },
|
||||||
|
TOP: { label: 'Tongan paʻanga', Icon: IconCurrencyPaanga },
|
||||||
|
TRY: { label: 'Turkish lira', Icon: IconCurrencyLira },
|
||||||
|
TTD: { label: 'Trinidad and Tobago dollar', Icon: IconCurrencyDollar },
|
||||||
|
TWD: { label: 'Taiwanese dollar', Icon: IconCurrencyRenminbi },
|
||||||
|
TZS: { label: 'Tanzanian shilling', Icon: IconCoins },
|
||||||
|
UAH: { label: 'Ukrainian hryvnia', Icon: IconCurrencyHryvnia },
|
||||||
|
UGX: { label: 'Ugandan shilling', Icon: IconCoins },
|
||||||
|
USD: { label: 'United States dollar', Icon: IconCurrencyDollar },
|
||||||
|
UYU: { label: 'Uruguayan peso', Icon: IconCoins },
|
||||||
|
UZS: { label: 'Uzbekistani sum', Icon: IconCoins },
|
||||||
|
VES: { label: 'Venezuelan bolívar', Icon: IconCoins },
|
||||||
|
VND: { label: 'Vietnamese đồng', Icon: IconCurrencyDong },
|
||||||
|
VUV: { label: 'Vanuatu vatu', Icon: IconCoins },
|
||||||
|
WST: { label: 'Samoan tala', Icon: IconCoins },
|
||||||
|
XCD: { label: 'East Caribbean dollar', Icon: IconCurrencyDollar },
|
||||||
|
YER: { label: 'Yemeni rial', Icon: IconCoins },
|
||||||
|
ZAR: { label: 'South African rand', Icon: IconCoins },
|
||||||
|
ZMW: { label: 'Zambian kwacha', Icon: IconCoins },
|
||||||
|
ZWG: { label: 'Zimbabwe Gold', Icon: IconCoins },
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -57,19 +57,56 @@ export {
|
|||||||
IconCreativeCommonsSa,
|
IconCreativeCommonsSa,
|
||||||
IconCreditCard,
|
IconCreditCard,
|
||||||
IconCsv,
|
IconCsv,
|
||||||
|
IconCurrencyAfghani,
|
||||||
|
IconCurrencyBahraini,
|
||||||
IconCurrencyBaht,
|
IconCurrencyBaht,
|
||||||
|
IconCurrencyDinar,
|
||||||
IconCurrencyDirham,
|
IconCurrencyDirham,
|
||||||
IconCurrencyDollar,
|
IconCurrencyDollar,
|
||||||
|
IconCurrencyDollarAustralian,
|
||||||
|
IconCurrencyDollarBrunei,
|
||||||
|
IconCurrencyDollarCanadian,
|
||||||
|
IconCurrencyDollarGuyanese,
|
||||||
|
IconCurrencyDollarSingapore,
|
||||||
|
IconCurrencyDong,
|
||||||
|
IconCurrencyDram,
|
||||||
IconCurrencyEuro,
|
IconCurrencyEuro,
|
||||||
|
IconCurrencyFlorin,
|
||||||
|
IconCurrencyForint,
|
||||||
IconCurrencyFrank,
|
IconCurrencyFrank,
|
||||||
|
IconCurrencyGuarani,
|
||||||
|
IconCurrencyHryvnia,
|
||||||
|
IconCurrencyIranianRial,
|
||||||
|
IconCurrencyKip,
|
||||||
IconCurrencyKroneCzech,
|
IconCurrencyKroneCzech,
|
||||||
|
IconCurrencyKroneDanish,
|
||||||
IconCurrencyKroneSwedish,
|
IconCurrencyKroneSwedish,
|
||||||
|
IconCurrencyLari,
|
||||||
|
IconCurrencyLeu,
|
||||||
|
IconCurrencyLira,
|
||||||
|
IconCurrencyLyd,
|
||||||
|
IconCurrencyManat,
|
||||||
|
IconCurrencyNaira,
|
||||||
|
IconCurrencyPaanga,
|
||||||
|
IconCurrencyPeso,
|
||||||
IconCurrencyPound,
|
IconCurrencyPound,
|
||||||
|
IconCurrencyQuetzal,
|
||||||
IconCurrencyReal,
|
IconCurrencyReal,
|
||||||
|
IconCurrencyRenminbi,
|
||||||
IconCurrencyRiyal,
|
IconCurrencyRiyal,
|
||||||
|
IconCurrencyRubel,
|
||||||
|
IconCurrencyRufiyaa,
|
||||||
|
IconCurrencyRupee,
|
||||||
|
IconCurrencyRupeeNepalese,
|
||||||
|
IconCurrencyTaka,
|
||||||
|
IconCurrencyTenge,
|
||||||
|
IconCurrencyTugrik,
|
||||||
|
IconCurrencySom,
|
||||||
|
IconCurrencyShekel,
|
||||||
IconCurrencyWon,
|
IconCurrencyWon,
|
||||||
IconCurrencyYen,
|
IconCurrencyYen,
|
||||||
IconCurrencyYuan,
|
IconCurrencyYuan,
|
||||||
|
IconCurrencyZloty,
|
||||||
IconDatabase,
|
IconDatabase,
|
||||||
IconDeviceFloppy,
|
IconDeviceFloppy,
|
||||||
IconDoorEnter,
|
IconDoorEnter,
|
||||||
|
|||||||
Reference in New Issue
Block a user