// @flow import React, { Component } from 'react'; import { TouchableOpacity, View } from 'react-native'; import { TranscribingLabel } from '../../../transcribing'; import { VideoQualityLabel } from '../../../video-quality'; import { LabelHitSlop, LABEL_ID_INSECURE_ROOM_NAME, LABEL_ID_QUALITY, LABEL_ID_TRANSCRIBING } from './constants'; import styles from './styles'; import { InsecureRoomNameLabel } from './'; type Props = { /** * Creates a function to be invoked when the onPress of the touchables are * triggered. */ createOnPress: Function } /** * A container that renders the conference indicators, if any. */ class Labels extends Component { /** * Implements React {@code Component}'s render. * * @inheritdoc */ render() { return ( ); } } export default Labels;