mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 14:37:47 +00:00
21 lines
488 B
JavaScript
21 lines
488 B
JavaScript
|
|
// @flow
|
||
|
|
|
||
|
|
import { connect } from 'react-redux';
|
||
|
|
|
||
|
|
import { translate } from '../../../base/i18n';
|
||
|
|
|
||
|
|
import AbstractLiveStreamButton, {
|
||
|
|
_mapStateToProps,
|
||
|
|
type Props
|
||
|
|
} from './AbstractLiveStreamButton';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* An implementation of a button for starting and stopping live streaming.
|
||
|
|
*/
|
||
|
|
class LiveStreamButton extends AbstractLiveStreamButton<Props> {
|
||
|
|
iconName = 'public';
|
||
|
|
toggledIconName = 'public';
|
||
|
|
}
|
||
|
|
|
||
|
|
export default translate(connect(_mapStateToProps)(LiveStreamButton));
|