Added new currency - Romanian Lei

This commit is contained in:
Radu Ursache 2023-02-14 22:11:46 +02:00 committed by GitHub
parent 44f13f751a
commit 31adc350c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
export type Codes = "USD" | "EUR" | "GBP" | "JPY" | "ZAR" | "AUD" | "NOK" | "SEK" | "DKK" | "INR" | "RMB" | "BGN"; export type Codes = "USD" | "EUR" | "GBP" | "JPY" | "ZAR" | "AUD" | "NOK" | "SEK" | "DKK" | "INR" | "RMB" | "BGN" | "RON";
export type Currency = { export type Currency = {
code: Codes; code: Codes;
@ -80,4 +80,10 @@ export const currencies: Currency[] = [
symbol: "lv", symbol: "lv",
name: "Bulgarian lev", name: "Bulgarian lev",
}, },
{
code: "RON",
local: "ro-RO",
symbol: "lei",
name: "Romanian Lei",
},
]; ];