// @flow import React from 'react'; import { TouchableOpacity } from 'react-native'; import { JitsiRecordingConstants } from '../../../base/lib-jitsi-meet'; import { RecordingLabel } from '../../../recording'; import RaisedHandsCountLabel from './RaisedHandsCountLabel'; import { LabelHitSlop, LABEL_ID_RAISED_HANDS_COUNT, LABEL_ID_RECORDING, LABEL_ID_STREAMING } from './constants'; type Props = { /** * Creates a function to be invoked when the onPress of the touchables are * triggered. */ createOnPress: Function } const AlwaysOnLabels = ({ createOnPress }: Props) => (<> ); export default AlwaysOnLabels;