Adding new currency (#243)

Adding Bulgarian lev to list of currencies
This commit is contained in:
Serios 2023-01-26 19:59:07 +02:00 committed by GitHub
parent 3e2f6a96bf
commit ad20e4e39b
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";
export type Codes = "USD" | "EUR" | "GBP" | "JPY" | "ZAR" | "AUD" | "NOK" | "SEK" | "DKK" | "INR" | "RMB" | "BGN";
export type Currency = {
code: Codes;
@ -74,4 +74,10 @@ export const currencies: Currency[] = [
symbol: "$",
name: "US Dollar",
},
{
code: "BGN",
local: "bg-BG",
symbol: "lv",
name: "Bulgarian lev",
},
];