import React from "react"; // import { bool, func } from "prop-types"; // import SVG from "src/components/SVG"; const PlayPause = React.memo(({ isPlaying, onClick }) => { return ( ); }); PlayPause.displayName = "PlayPause"; // PlayPause.propTypes = { // isPlaying: bool.isRequired, // onClick: func.isRequired, // }; export default PlayPause;