import { useContext } from "react"; import { VideoPlayerContext } from "../VideoPlayer"; import { PauseIcon, PlayIcon } from "@heroicons/react/24/solid"; export default function Play() { const { isPlaying, videoRef } = useContext(VideoPlayerContext); return ( <> ); }