import React from 'react' import styles from './styles.module.css' import PlayIcon from './PlayIcon' import CloseIconBig from './CloseIconBig' export interface Props { onOpen: () => void onClose: () => void youtubeID: string isPlaying: boolean } function PlayButton({ onOpen, youtubeID, onClose, isPlaying, }: Props) { return (
{isPlaying ?