import PropTypes from 'prop-types'; import React from 'react'; import Icon from 'Components/Icon'; import VirtualTableRowCell from 'Components/Table/Cells/TableRowCell'; import { icons } from 'Helpers/Props'; import translate from 'Utilities/String/translate'; import styles from './AuthorStatusCell.css'; function AuthorStatusCell(props) { const { className, monitored, status, component: Component, ...otherProps } = props; return ( ); } AuthorStatusCell.propTypes = { className: PropTypes.string.isRequired, monitored: PropTypes.bool.isRequired, status: PropTypes.string.isRequired, component: PropTypes.elementType }; AuthorStatusCell.defaultProps = { className: styles.status, component: VirtualTableRowCell }; export default AuthorStatusCell;