import { Pause, Play, RotateCcw, StepForward } from 'lucide-react'; import { Button, IconButton, Select } from '../../components/ui'; export function SimulationControls({ paused, ready, speed, loading, externalControl = false, onTogglePause, onStep, onReset, onSpeed, }: { paused: boolean; ready: boolean; speed: number; loading: boolean; externalControl?: boolean; onTogglePause: () => void; onStep: () => void; onReset: () => void; onSpeed: (speed: number) => void; }) { return (