import PlayCircleIcon from '@heroicons/react/20/solid/PlayCircleIcon'; // type Props = { // started: boolean; // handleTogglePlay: () => void; // }; export default function BigPlayButton(Props) { const { started, handleTogglePlay } = Props; if (started) { return; } return ( ); }