| 1234567891011121314151617181920212223242526272829 |
- 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));
|