Skip to content

Commit 3bcdfab

Browse files
committed
feat: add MusicalNote component to RandomSongButton for enhanced UI
1 parent 3acde54 commit 3bcdfab

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

web/src/modules/shared/components/layout/RandomSongButton.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { SongPreviewDto } from '@shared/validation/song/dto/SongPreview.dto';
66
import { useRouter } from 'next/navigation';
77

88
import axios from '@web/src/lib/axios';
9+
import { MusicalNote } from './MusicalNote';
910

1011
export const RandomSongButton = () => {
1112
const router = useRouter();
@@ -41,6 +42,7 @@ export const RandomSongButton = () => {
4142
onClick={randomSong}
4243
>
4344
<FontAwesomeIcon icon={faDice} />
45+
<MusicalNote />
4446
</button>
4547
);
4648
};

0 commit comments

Comments
 (0)