about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/icon_with_badge.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/components/icon_with_badge.js')
-rw-r--r--app/javascript/mastodon/components/icon_with_badge.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/app/javascript/mastodon/components/icon_with_badge.js b/app/javascript/mastodon/components/icon_with_badge.js
deleted file mode 100644
index 4214eccfd..000000000
--- a/app/javascript/mastodon/components/icon_with_badge.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import React from 'react';
-import PropTypes from 'prop-types';
-import Icon from 'mastodon/components/icon';
-
-const formatNumber = num => num > 40 ? '40+' : num;
-
-const IconWithBadge = ({ id, count, issueBadge, className }) => (
-  <i className='icon-with-badge'>
-    <Icon id={id} fixedWidth className={className} />
-    {count > 0 && <i className='icon-with-badge__badge'>{formatNumber(count)}</i>}
-    {issueBadge && <i className='icon-with-badge__issue-badge' />}
-  </i>
-);
-
-IconWithBadge.propTypes = {
-  id: PropTypes.string.isRequired,
-  count: PropTypes.number.isRequired,
-  issueBadge: PropTypes.bool,
-  className: PropTypes.string,
-};
-
-export default IconWithBadge;