import PropTypes from 'prop-types'; import React from 'react'; import { icons } from 'Helpers/Props'; import Icon from 'Components/Icon'; import VirtualTableRowCell from 'Components/Table/Cells/TableRowCell'; import styles from './ArtistStatusCell.css'; function ArtistStatusCell(props) { const { className, artistType, monitored, status, component: Component, ...otherProps } = props; const endedString = artistType === 'Person' ? 'Deceased' : 'Ended'; return ( ); } ArtistStatusCell.propTypes = { className: PropTypes.string.isRequired, artistType: PropTypes.string.isRequired, monitored: PropTypes.bool.isRequired, status: PropTypes.string.isRequired, component: PropTypes.func }; ArtistStatusCell.defaultProps = { className: styles.status, component: VirtualTableRowCell }; export default ArtistStatusCell;