import React from 'react'; import { Box, Cpu, Activity } from 'lucide-react'; import { Recipe } from '../types'; import { CyberPanel } from './common/CyberPanel'; interface ModelInfoPanelProps { currentRecipe: Recipe; } export const ModelInfoPanel: React.FC = ({ currentRecipe }) => { return (
Model Information
SELECTED MODEL
{currentRecipe.name}
Model ID
{currentRecipe.id}
Last Mod
{currentRecipe.lastModified}
TARGET CYCLE 12.5s
EST. YIELD 99.8%
); };