import { IconDefinition } from '@fortawesome/free-regular-svg-icons'; import React from 'react'; import Icon from 'Components/Icon'; import styles from './SeriesIndexOverviewInfoRow.css'; interface SeriesIndexOverviewInfoRowProps { title?: string; iconName?: IconDefinition; label: string | null; } function SeriesIndexOverviewInfoRow(props: SeriesIndexOverviewInfoRowProps) { const { title, iconName, label } = props; return (