import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; import pauseIcon from '../stage-header/stagecontrols/pause.svg'; import playIcon from '../stage-header/stagecontrols/play.svg'; import styles from './pause-button.css'; const PauseButtonComponent = function (props) { const { paused, className, onClick, title, ...componentProps } = props; return ( ); }; PauseButtonComponent.propTypes = { paused: PropTypes.bool, className: PropTypes.string, onClick: PropTypes.func.isRequired, title: PropTypes.string }; PauseButtonComponent.defaultProps = { paused: false, title: 'Pause' }; export default PauseButtonComponent;