"use client"; import { Play, Pause, SkipBack, SkipForward, RotateCcw } from "lucide-react"; import { cn } from "@/lib/utils"; interface StepControlsProps { currentStep: number; totalSteps: number; onPrev: () => void; onNext: () => void; onReset: () => void; isPlaying: boolean; onToggleAutoPlay: () => void; stepTitle: string; stepDescription: string; className?: string; } export function StepControls({ currentStep, totalSteps, onPrev, onNext, onReset, isPlaying, onToggleAutoPlay, stepTitle, stepDescription, className, }: StepControlsProps) { return (