ConstCURRENCIES[0] // { code: 'AED', symbol: 'AED' }
export const CURRENCIES: { code: string; symbol: string }[] = Object.entries(CURRENCY_SYMBOL_MAP)
.map(([code, symbol]) => ({ code, symbol }))
.sort((a, b) => a.code.localeCompare(b.code));
Currency options (code + symbol) for selectors, sorted alphabetically by code. Derived from CURRENCY_SYMBOL_MAP so the full set of currencies known to
country-list-jsis available.