import React from 'react' import { SkipBack, Play, Pause, SkipForward, VolumeX, Volume1, Volume2, } from 'lucide-react' interface PlaybackControlsProps { isPlaying: boolean setIsPlaying: (playing: boolean) => void volume: number setVolume: (vol: number) => void changeChannel: (direction: 'next' | 'prev') => void } const PlaybackControls: React.FC = ({ isPlaying, setIsPlaying, volume, setVolume, changeChannel, }) => (
{/* Left Side - Playback Controls */}
{/* Right Side - Volume Control */}
setVolume(parseFloat(e.target.value))} onTouchStart={(e) => { // Prevent default touch behavior e.stopPropagation() }} className="w-full cursor-pointer accent-[var(--lofi-accent)] rounded-lg bg-[var(--lofi-card-hover)] touch-none" />
) export default PlaybackControls