39 lines
1005 B
JavaScript
39 lines
1005 B
JavaScript
// @flow
|
|
|
|
import React from 'react';
|
|
import { View } from 'react-native';
|
|
|
|
import { IconRaiseHand } from '../../../base/icons';
|
|
import { BaseIndicator } from '../../../base/react';
|
|
import { connect } from '../../../base/redux';
|
|
import AbstractRaisedHandIndicator, {
|
|
type Props,
|
|
_mapStateToProps
|
|
} from '../AbstractRaisedHandIndicator';
|
|
|
|
import styles from './styles';
|
|
|
|
/**
|
|
* Thumbnail badge showing that the participant would like to speak.
|
|
*
|
|
* @augments Component
|
|
*/
|
|
class RaisedHandIndicator extends AbstractRaisedHandIndicator<Props> {
|
|
/**
|
|
* Renders the platform specific indicator element.
|
|
*
|
|
* @returns {React$Element<*>}
|
|
*/
|
|
_renderIndicator() {
|
|
return (
|
|
<View style = { styles.raisedHandIndicator }>
|
|
<BaseIndicator
|
|
icon = { IconRaiseHand }
|
|
iconStyle = { styles.raisedHandIcon } />
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connect(_mapStateToProps)(RaisedHandIndicator);
|