import React from 'react'; import Icon from 'Components/Icon'; import styles from './SeriesIndexOverviewInfoRow.css'; interface SeriesIndexOverviewInfoRowProps { title?: string; iconName: object; label: string; } function SeriesIndexOverviewInfoRow(props: SeriesIndexOverviewInfoRowProps) { const { title, iconName, label } = props; return (
{label}
); } export default SeriesIndexOverviewInfoRow;