Removed unused display_name_badge

unused now that we have component specific badges
This commit is contained in:
mgabdev 2019-07-23 00:22:36 -04:00
parent 757fde8798
commit f5f166a985

View File

@ -1,17 +0,0 @@
import React from 'react';
import ImmutablePropTypes from 'react-immutable-proptypes';
import PropTypes from 'prop-types';
export default class DisplayNameBadge extends React.PureComponent {
static propTypes = {
label: PropTypes.string,
};
render() {
const { label } = this.props;
return <span className="display-name__badge">{label}</span>;
}
}