import PropTypes from 'prop-types'; import React from 'react'; import Icon from 'Components/Icon'; import styles from './AuthorIndexOverviewInfoRow.css'; function AuthorIndexOverviewInfoRow(props) { const { title, iconName, label } = props; return (
{label}
); } AuthorIndexOverviewInfoRow.propTypes = { title: PropTypes.string, iconName: PropTypes.object.isRequired, label: PropTypes.string.isRequired }; export default AuthorIndexOverviewInfoRow;