import { Study } from '../../types'; import clsx from 'clsx'; import { Play, CheckCircle, Clock } from 'lucide-react'; interface StudyCardProps { study: Study; isActive: boolean; onClick: () => void; } export const StudyCard = ({ study, isActive, onClick }: StudyCardProps) => { const getStatusIcon = () => { switch (study.status) { case 'running': return ; case 'completed': return ; default: return ; } }; return (

{study.name}

{getStatusIcon()}
{study.status} {study.progress.current} / {study.progress.total} trials
{/* Progress Bar */}
); };