| 12345678910111213141516171819202122232425262728293031 | // @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<Props> {
    /**
     * Renders the platform-specific label component.
     *
     * @inheritdoc
     */
    render() {
        return (
            <CircularLabel
                label = { this.props.t('transcribing.tr') } />
        );
    }
}
export default translate(TranscribingLabel);
 |