mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
36 lines
660 B
JavaScript
36 lines
660 B
JavaScript
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 (
|
|
<div
|
|
className={styles.infoRow}
|
|
title={title}
|
|
>
|
|
<Icon
|
|
className={styles.icon}
|
|
name={iconName}
|
|
size={14}
|
|
/>
|
|
|
|
{label}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
AuthorIndexOverviewInfoRow.propTypes = {
|
|
title: PropTypes.string,
|
|
iconName: PropTypes.object.isRequired,
|
|
label: PropTypes.string.isRequired
|
|
};
|
|
|
|
export default AuthorIndexOverviewInfoRow;
|