feat: add czech currency (#323)

This commit is contained in:
Vitalij Dovhanyc 2023-03-21 03:42:11 +01:00 committed by GitHub
parent 1f47d96e4c
commit dc08dbbd7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 3 deletions

View file

@ -2,6 +2,7 @@ export type Codes =
| "AUD"
| "BGN"
| "CHF"
| "CZK"
| "DKK"
| "EUR"
| "GBP"
@ -120,4 +121,10 @@ export const currencies: Currency[] = [
symbol: "chf",
name: "Swiss Francs",
},
{
code: "CZK",
local: "cs-CZ",
symbol: "Kč",
name: "Czech Koruna",
},
];