| 4 | type Status = "running" | "done" | "pending"; |
| 5 | |
| 6 | interface StatusItemProps { |
| 7 | status?: Status; |
| 8 | label?: string; |
| 9 | children: ReactNode; |
| 10 | } |
| 11 | |
| 12 | const statusDot: Record<Status, string> = { |
| 13 | running: "bg-term-cyan animate-pulse", |
nothing calls this directly
no outgoing calls
no test coverage detected