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 = ({ label, value, tone }) => { return (
{label} {value}
); };