mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-18 10:47:48 +00:00
Contributing all buttons in one place goes against the designs that we set out at the beginning of the project's rewrite and that multiple of us have been following since then.
27 lines
705 B
JavaScript
27 lines
705 B
JavaScript
import React, { Component } from 'react';
|
|
import { View } from 'react-native';
|
|
import Icon from 'react-native-vector-icons/FontAwesome';
|
|
|
|
import styles from './styles';
|
|
|
|
/**
|
|
* Thumbnail badge showing that the participant is the dominant speaker in
|
|
* the conference.
|
|
*/
|
|
export default class DominantSpeakerIndicator extends Component {
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
render() {
|
|
return (
|
|
<View style = { styles.dominantSpeakerIndicatorBackground }>
|
|
<Icon
|
|
name = 'bullhorn'
|
|
style = { styles.dominantSpeakerIndicator } />
|
|
</View>
|
|
);
|
|
}
|
|
}
|