You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TranscribingLabel.native.js 670B

12345678910111213141516171819202122232425262728293031
  1. // @flow
  2. import React, { Component } from 'react';
  3. import { translate } from '../../base/i18n';
  4. import { CircularLabel } from '../../base/label';
  5. import { type Props } from './AbstractTranscribingLabel';
  6. /**
  7. * React {@code Component} for displaying a label when a transcriber is in the
  8. * conference.
  9. *
  10. * @extends Component
  11. */
  12. class TranscribingLabel extends Component<Props> {
  13. /**
  14. * Renders the platform-specific label component.
  15. *
  16. * @inheritdoc
  17. */
  18. render() {
  19. return (
  20. <CircularLabel
  21. label = { this.props.t('transcribing.tr') } />
  22. );
  23. }
  24. }
  25. export default translate(TranscribingLabel);