import { IoIosPlay } from "react-icons/io" import { IoIosPause } from "react-icons/io" import { cn } from "@/lib/utils" import { usePlaylist } from "@/lib/usePlaylist" import { VideoInfo } from "@/types/general" export function PlaylistControl() { const playlist = usePlaylist() return (
{/* center buttons */}
{/*
{playlist.current?.label}
*/}
{ playlist.togglePause() }} > {playlist.isPlaying ? : }
) }