Checkpoint

This commit is contained in:
2026-03-08 22:22:51 +01:00
parent 247c827291
commit 9053ec65a6
65 changed files with 5874 additions and 708 deletions

View File

@@ -0,0 +1,19 @@
import React from 'react';
import { Badge } from 'react-bootstrap';
import '../../styles/ProtocolBriefing.scss';
export interface StatusPillProps {
label: string;
value: string;
tone: 'success' | 'warning' | 'danger' | 'secondary';
}
export const StatusPill: React.FC<StatusPillProps> = ({ label, value, tone }) => {
return (
<div className="protocol-briefing-signal-pill">
<span>{label}</span>
<Badge bg={tone}>{value}</Badge>
</div>
);
};