import React from 'react'; import { HMSPollState } from '@100mslive/react-sdk'; import { Flex, Text } from '../../../../'; import { PollStage } from './constants'; const statusMap: Record = { created: PollStage.DRAFT, started: PollStage.LIVE, stopped: PollStage.ENDED, }; export const StatusIndicator = ({ status }: { status?: HMSPollState }) => { if (!status) return null; return ( {statusMap[status]} ); };