Files
zap.stream/src/element/state-pill.tsx
2023-06-30 21:18:27 +01:00

6 lines
230 B
TypeScript

import "./state-pill.css";
import { StreamState } from "index";
export function StatePill({ state }: { state: StreamState }) {
return <span className={`state pill${state === StreamState.Live ? " live" : ""}`}>{state}</span>
}