7 lines
230 B
TypeScript
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>;
|
|
}
|