import React from 'react'; interface ProgressBarProps { percent: number; status: string; } export const ProgressBar: React.FC = ({ percent, status }) => { let color = 'bg-blue-500'; if (status === 'risk') color = 'bg-red-500'; if (status === 'warning') color = 'bg-amber-500'; if (status === 'review') color = 'bg-purple-500'; if (status === 'new') color = 'bg-slate-300'; return (
); };