// @flow import React, { Component } from 'react'; import { translate } from '../../base/i18n'; import { CircularLabel } from '../../base/label'; import { type Props } from './AbstractTranscribingLabel'; /** * React {@code Component} for displaying a label when a transcriber is in the * conference. * * @extends Component */ class TranscribingLabel extends Component { /** * Renders the platform-specific label component. * * @inheritdoc */ render() { return ( ); } } export default translate(TranscribingLabel);