Skip to content

Commit

Permalink
feat: add MusicalNote component to RandomSongButton for enhanced UI
Browse files Browse the repository at this point in the history
  • Loading branch information
tomast1337 committed Jan 24, 2025
1 parent 3acde54 commit 3bcdfab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web/src/modules/shared/components/layout/RandomSongButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { SongPreviewDto } from '@shared/validation/song/dto/SongPreview.dto';
import { useRouter } from 'next/navigation';

import axios from '@web/src/lib/axios';
import { MusicalNote } from './MusicalNote';

export const RandomSongButton = () => {
const router = useRouter();
Expand Down Expand Up @@ -41,6 +42,7 @@ export const RandomSongButton = () => {
onClick={randomSong}
>
<FontAwesomeIcon icon={faDice} />
<MusicalNote />
</button>
);
};

0 comments on commit 3bcdfab

Please sign in to comment.