ConstCURRENCY_SYMBOL_MAP['USD'] // returns '$'
CURRENCY_SYMBOL_MAP['EUR'] // returns '€'
export const CURRENCY_SYMBOL_MAP: { [key: string]: string } = Object.fromEntries(
Object.entries(CURRENCY_INFO).map(([code, { symbol }]) => [code, symbol]),
);
Mapping of ISO currency codes to their corresponding currency symbols. Sourced from
country-list-js, so the symbols match the library (e.g. CNY → "CN¥", JPY → "¥", INR → "Rs").