Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>

This commit is contained in:
Matt Bruce 2025-07-19 11:40:49 -05:00
parent ba66205fd2
commit b4353000d8
2 changed files with 5 additions and 0 deletions

View File

@ -17,6 +17,8 @@ const extractFilename = (path: string): string => {
};
// Song Information Display Component
// NOTE: The first two lines (title and artist) should match the styling of TwoLineDisplay component
// If you change the styling here, also update TwoLineDisplay to keep them in sync
export const SongInfoDisplay: React.FC<{
song: Song;
showPath?: boolean;

View File

@ -10,6 +10,9 @@ interface TwoLineDisplayProps {
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<TwoLineDisplayProps> = ({
primaryText,
secondaryText,