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.
23 lines
521 B
23 lines
521 B
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
import SkinnyBitcoin from 'components/Icon/SkinnyBitcoin'
|
|
import Litecoin from 'components/Icon/Litecoin'
|
|
|
|
const CryptoIcon = ({ currency, styles }) => {
|
|
switch (currency) {
|
|
case 'btc':
|
|
return <SkinnyBitcoin style={styles} />
|
|
case 'ltc':
|
|
return <Litecoin style={styles} />
|
|
default:
|
|
return <span />
|
|
}
|
|
}
|
|
|
|
CryptoIcon.propTypes = {
|
|
currency: PropTypes.string.isRequired,
|
|
styles: PropTypes.object
|
|
}
|
|
|
|
export default CryptoIcon
|
|
|