<RagStatusBoard>
RAG (red, amber, green) health rows with workstream name and note.
When to use: Programme or portfolio project status on one slide.
Preview
| Prop | Type | Notes |
|---|---|---|
| title | string | Optional. Default: Status. Heading above the list. |
| rows | { workstream: string; status: "red" | "amber" | "green"; note: string }[] | Required. One row per workstream with RAG dot and short note. |
Examples
<RagStatusBoard
title="Programme health"
rows={[
{ workstream: "Platform", status: "green", note: "Release train on schedule." },
{ workstream: "Data", status: "amber", note: "Schema review slips one week." },
{ workstream: "Change", status: "red", note: "SME availability for UAT not confirmed." },
]}
/>