summaryrefslogtreecommitdiffstats
path: root/webapp/components/analytics/statistic_count.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/analytics/statistic_count.jsx')
-rw-r--r--webapp/components/analytics/statistic_count.jsx35
1 files changed, 0 insertions, 35 deletions
diff --git a/webapp/components/analytics/statistic_count.jsx b/webapp/components/analytics/statistic_count.jsx
deleted file mode 100644
index 4b505bb3f..000000000
--- a/webapp/components/analytics/statistic_count.jsx
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {FormattedMessage} from 'react-intl';
-
-import PropTypes from 'prop-types';
-
-import React from 'react';
-
-export default function StatisticCount(props) {
- const loading = (
- <FormattedMessage
- id='analytics.chart.loading'
- defaultMessage='Loading...'
- />
- );
-
- return (
- <div className='col-md-3 col-sm-6'>
- <div className='total-count'>
- <div className='title'>
- {props.title}
- <i className={'fa ' + props.icon}/>
- </div>
- <div className='content'>{props.count == null ? loading : props.count}</div>
- </div>
- </div>
- );
-}
-
-StatisticCount.propTypes = {
- title: PropTypes.node.isRequired,
- icon: PropTypes.string.isRequired,
- count: PropTypes.number
-};