We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3acde54 commit 3bcdfabCopy full SHA for 3bcdfab
web/src/modules/shared/components/layout/RandomSongButton.tsx
@@ -6,6 +6,7 @@ import { SongPreviewDto } from '@shared/validation/song/dto/SongPreview.dto';
6
import { useRouter } from 'next/navigation';
7
8
import axios from '@web/src/lib/axios';
9
+import { MusicalNote } from './MusicalNote';
10
11
export const RandomSongButton = () => {
12
const router = useRouter();
@@ -41,6 +42,7 @@ export const RandomSongButton = () => {
41
42
onClick={randomSong}
43
>
44
<FontAwesomeIcon icon={faDice} />
45
+ <MusicalNote />
46
</button>
47
);
48
};
0 commit comments