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