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