diff --git a/app/components/CryptoIcon/CryptoIcon.js b/app/components/CryptoIcon/CryptoIcon.js new file mode 100644 index 00000000..ee812ed2 --- /dev/null +++ b/app/components/CryptoIcon/CryptoIcon.js @@ -0,0 +1,17 @@ +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 + } +} \ No newline at end of file diff --git a/app/components/CryptoIcon/CryptoIcon.scss b/app/components/CryptoIcon/CryptoIcon.scss new file mode 100644 index 00000000..e69de29b diff --git a/app/components/CryptoIcon/index.js b/app/components/CryptoIcon/index.js new file mode 100644 index 00000000..e69de29b