import settings from 'settings'; export const getCurrencyLabel = (currencyCode: string) => { const currencyLabel = settings.localization.currencies.find( (item) => item.code === currencyCode )?.label; return currencyLabel ?? currencyCode; };