import React from 'react'; import { Play, Square, RotateCw } from 'lucide-react'; import { TechButton } from './common/TechButton'; import { CyberPanel } from './common/CyberPanel'; import { SystemState } from '../types'; interface SystemStatusPanelProps { systemState: SystemState; onControl: (action: 'start' | 'stop' | 'reset') => void; } export const SystemStatusPanel: React.FC = ({ systemState, onControl }) => { return (
System Status
{systemState}
{/* Horizontal Button Layout */}
onControl('start')} > START onControl('stop')} > STOP onControl('reset')} > RESET
); };