import React, {PropTypes} from 'react'; import t from 'coral-framework/services/i18n'; import styles from './InactiveCommentLabel.css'; import {Icon} from 'coral-ui'; import cn from 'classnames'; const InactiveCommentLabel = ({status, className, ...rest}) => { let label; let icon; switch (status) { case 'PREMOD': label = t('modqueue.premod'); icon = 'query_builder'; break; case 'REJECTED': label = t('modqueue.rejected'); icon = 'close'; break; default: throw new Error(`Unknown inactive status ${status}`); } return ( {label} ); }; InactiveCommentLabel.propTypes = { status: PropTypes.string.isRequired, }; export default InactiveCommentLabel;