import { Tag, Text } from "@blueprintjs/core";
import { SimpleTag } from "./utils";
const styles = {
charChip: {
margin: "0 5px",
},
questionText: {
marginLeft: 30,
marginRight: 10,
},
};
type Props = {
charactersOnStage: string[];
currSpeaker: string | null;
questionState: boolean | null;
};
export const TopBar = (props: Props) => {
const { charactersOnStage, currSpeaker, questionState } = props;
const characterChips =
charactersOnStage.length === 0 ? (