mirror of
https://github.com/hay-kot/homebox.git
synced 2025-08-04 16:50:27 +00:00
Added new currency - Romanian Lei
This commit is contained in:
parent
44f13f751a
commit
31adc350c0
1 changed files with 7 additions and 1 deletions
|
@ -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",
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue