feat: show presentation live replay status
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import type { PresentationTargetHealth } from "./presentation-target-status.js";
|
||||
|
||||
export const PresentationTruthBadge = ({
|
||||
status,
|
||||
}: {
|
||||
readonly status: PresentationTargetHealth;
|
||||
}) => (
|
||||
<aside
|
||||
className="presentation-truth-badge"
|
||||
data-status={status.kind}
|
||||
aria-label="presentation evidence mode"
|
||||
>
|
||||
<strong>{status.label}</strong>
|
||||
<span>{status.detail}</span>
|
||||
</aside>
|
||||
);
|
||||
Reference in New Issue
Block a user