21 lines
445 B
JavaScript
21 lines
445 B
JavaScript
import PropTypes from 'prop-types';
|
|
import React from 'react';
|
|
import Label from 'Components/Label';
|
|
import styles from './ProtocolLabel.css';
|
|
|
|
function ProtocolLabel({ protocol }) {
|
|
const protocolName = protocol === 'usenet' ? 'nzb' : protocol;
|
|
|
|
return (
|
|
<Label className={styles[protocol]}>
|
|
{protocolName}
|
|
</Label>
|
|
);
|
|
}
|
|
|
|
ProtocolLabel.propTypes = {
|
|
protocol: PropTypes.string.isRequired
|
|
};
|
|
|
|
export default ProtocolLabel;
|