// website/src/components/StatusDot.jsx export default function StatusDot({ variant = 'gray' }) { const colors = { green: 'bg-status-green', red: 'bg-status-red', yellow: 'bg-status-yellow', blue: 'bg-status-blue', gray: 'bg-border' }; const pulse = variant === 'green' || variant === 'yellow'; return ( {pulse && } ); }