Props for the ArtistSummary component

interface ArtistSummaryProps {
    isLoading?: boolean;
    artists?: ArtistData[];
    maxItems?: number;
}

Properties

isLoading?: boolean

Optional flag indicating if artist data is being loaded

artists?: ArtistData[]

Array of artist data objects with skip statistics

maxItems?: number

Maximum number of artists to display (default: 5)