Files
zap.stream/src/element/state-pill.tsx
2023-08-27 16:25:27 +01:00

7 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>;
}