import React from 'react'; import { IonLabel } from '@ionic/react'; interface TwoLineDisplayProps { primaryText: string; secondaryText: string; primaryColor?: string; secondaryColor?: string; primarySize?: string; secondarySize?: string; } // Two Line Display Component // NOTE: This component should match the styling of the first two lines (title and artist) in SongInfoDisplay // If you change the styling here, also update SongInfoDisplay to keep them in sync export const TwoLineDisplay: React.FC = ({ primaryText, secondaryText, primaryColor = 'black', secondaryColor = '#6b7280', primarySize = '1rem', secondarySize = '0.875rem' }) => { return ( {/* Primary Text - styled like song title */}
{primaryText}
{/* Secondary Text - styled like artist name */}
{secondaryText}
); };