You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
251 B

// eslint-disable-next-line import/no-unresolved, import/extensions
import svgs from '../node_modules/cryptocurrency-icons/svg/color/*.svg';
const getCoinSVGPath = symbol => svgs[symbol.toLowerCase()] || svgs.generic;
export default getCoinSVGPath;