import React from 'react' import PropTypes from 'prop-types' import { FaBitcoin } from 'react-icons/lib/fa' // import Litecoin from '../resources/' const CryptoIcon = ({ currency }) => { switch(currency) { case 'btc': return () break case 'ltc': return LTC break default: return } }