Spaces:
Running
Running
File size: 1,199 Bytes
6bcb42f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
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 (
<img
className={classNames(
className,
styles.pauseBtn
)}
draggable={false}
src={paused ? playIcon : pauseIcon}
title={title}
onClick={onClick}
// tw: also fire click when opening context menu (right click on all systems and alt+click on chromebooks)
onContextMenu={onClick}
{...componentProps}
/>
);
};
PauseButtonComponent.propTypes = {
paused: PropTypes.bool,
className: PropTypes.string,
onClick: PropTypes.func.isRequired,
title: PropTypes.string
};
PauseButtonComponent.defaultProps = {
paused: false,
title: 'Pause'
};
export default PauseButtonComponent;
|