'use client'; import { TimeDisplay } from '../Meta/TimeDisplay'; import { LoopButton } from './LoopButton'; import { PlayButton } from './PlayButton'; import { SkipButton } from './SkipButton'; import { VolumeControl } from './VolumeControl'; type Props = { onPrev?: () => void; onNext?: () => void; showTime?: boolean; }; export function ControlsRow({ onPrev, onNext, showTime = false }: Props) { return (
{showTime && }
); }