import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; export default class CryptoIcon extends React.PureComponent { static propTypes = { ticker: PropTypes.string.isRequired, title: PropTypes.string, className: PropTypes.string, } render() { const { ticker, title, className } = this.props; return (
{title
); } }