blob: 6ec70cc3355c101e11eeb63963d65d2dcb1ea1db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import React from "react";
const PlayButtonComponent = ({isPlaying, onPlay, onPause}) => (
<div className="play-btn" onClick={() => isPlaying ? onPause() : onPlay()}>
{isPlaying ?
<span className="fa fa-pause"/> :
<span className="fa fa-play"/>
}
</div>
);
export default PlayButtonComponent;
|