import React from 'react'; import PropTypes from 'prop-types'; import { MusicNoteIcon } from './Icons'; const Cover = ({ className, title, src, onClick }) => (
{src ? {title : }
); Cover.propTypes = { className: PropTypes.string, title: PropTypes.string, src: PropTypes.string, onClick: PropTypes.func, }; export default Cover;