Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

AudioMutedIndicator.js 536B

12345678910111213141516171819202122
  1. import React, { Component } from 'react';
  2. import Icon from 'react-native-vector-icons/FontAwesome';
  3. import { styles } from './styles';
  4. /**
  5. * Thumbnail badge for displaying the audio mute status of a participant.
  6. */
  7. export class AudioMutedIndicator extends Component {
  8. /**
  9. * Implements React's {@link Component#render()}.
  10. *
  11. * @inheritdoc
  12. */
  13. render() {
  14. return (
  15. <Icon
  16. name = 'microphone-slash'
  17. style = { styles.thumbnailIndicator } />
  18. );
  19. }
  20. }