-
-
-
-
- { this.props.displayName }
-
-
-
-
- { this.props.showFacialExpressions
- && (
- <>
-
- { this.props.facialExpressions.happy }
-
-
- { this.props.facialExpressions.neutral }
-
-
- { this.props.facialExpressions.sad }
-
-
- { this.props.facialExpressions.surprised }
-
- {!this.props.reduceExpressions && (
- <>
-
- { this.props.facialExpressions.angry }
-
-
- { this.props.facialExpressions.fearful }
-
-
- { this.props.facialExpressions.disgusted }
-
- >
- )}
- >
- )
- }
-
-
-
- );
- }
-}
-
-export default translate(SpeakerStatsItem);
diff --git a/react/features/speaker-stats/components/TimeElapsed.js b/react/features/speaker-stats/components/TimeElapsed.js
deleted file mode 100644
index 670183091..000000000
--- a/react/features/speaker-stats/components/TimeElapsed.js
+++ /dev/null
@@ -1,131 +0,0 @@
-/* @flow */
-
-import React, { Component } from 'react';
-
-import { translate } from '../../base/i18n';
-
-/**
- * The type of the React {@code Component} props of {@link TimeElapsed}.
- */
-type Props = {
-
- /**
- * The function to translate human-readable text.
- */
- t: Function,
-
- /**
- * The milliseconds to be converted into a human-readable format.
- */
- time: number
-};
-
-/**
- * React component for displaying total time elapsed. Converts a total count of
- * milliseconds into a more humanized form: "# hours, # minutes, # seconds".
- * With a time of 0, "0s" will be displayed.
- *
- * @augments Component
- */
-class TimeElapsed extends Component