mirror of
https://github.com/hay-kot/homebox.git
synced 2025-06-26 13:48:34 +00:00
feat: add currencies (NOK, SEK, DKK) (#128)
This commit is contained in:
parent
592d4eda55
commit
b6b2a2d889
4 changed files with 25 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
export type Codes = "USD" | "EUR" | "GBP" | "JPY" | "ZAR" | "AUD";
|
||||
export type Codes = "USD" | "EUR" | "GBP" | "JPY" | "ZAR" | "AUD" | "NOK" | "SEK" | "DKK";
|
||||
|
||||
export type Currency = {
|
||||
code: Codes;
|
||||
|
@ -44,4 +44,22 @@ export const currencies: Currency[] = [
|
|||
symbol: "$",
|
||||
name: "Australian Dollar",
|
||||
},
|
||||
{
|
||||
code: "NOK",
|
||||
local: "nb-NO",
|
||||
symbol: "kr",
|
||||
name: "Norwegian Krone",
|
||||
},
|
||||
{
|
||||
code: "SEK",
|
||||
local: "sv-SE",
|
||||
symbol: "kr",
|
||||
name: "Swedish Krona",
|
||||
},
|
||||
{
|
||||
code: "DKK",
|
||||
local: "da-DK",
|
||||
symbol: "kr",
|
||||
name: "Danish Krone",
|
||||
},
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue