Files
jitsi-meet/react/features/conference/components/native/InsecureRoomNameLabel.tsx
2023-05-09 12:10:46 +03:00

30 lines
865 B
TypeScript

import React from 'react';
import { connect } from 'react-redux';
import { translate } from '../../../base/i18n/functions';
import { IconWarning } from '../../../base/icons/svg';
import Label from '../../../base/label/components/native/Label';
import AbstractInsecureRoomNameLabel, { _mapStateToProps } from '../AbstractInsecureRoomNameLabel';
import styles from './styles';
/**
* Renders a label indicating that we are in a room with an insecure name.
*/
class InsecureRoomNameLabel extends AbstractInsecureRoomNameLabel {
/**
* Renders the platform dependent content.
*
* @inheritdoc
*/
_render() {
return (
<Label
icon = { IconWarning }
style = { styles.insecureRoomNameLabel } />
);
}
}
export default translate(connect(_mapStateToProps)(InsecureRoomNameLabel));