10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
import { Currency } from "@/components/PaymentTable/Price";
|
|
|
|
|
|
export const symbolByCurrency: Record<string, string> = {
|
|
[Currency.USD]: "$",
|
|
[Currency.EUR]: "€",
|
|
[Currency.USD.toLowerCase()]: "$",
|
|
[Currency.EUR.toLowerCase()]: "€"
|
|
|
|
} |