Skip to content

Commit 111deab

Browse files
Update Player.tsx
1 parent 2e789de commit 111deab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Player.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ const Player = ({ artistSlugsToName }: Props) => {
9393
onClick={() => player.togglePlayPause()}
9494
>
9595
{playback.activeTrack.isPaused ? (
96-
<PlayIcon size={20} className="fill-foreground-muted active:fill-gray-800" />
96+
<PlayIcon size={20} className="fas fa fa-play fill-foreground-muted active:fill-gray-800" />
9797
) : (
98-
<PauseIcon size={20} className="fill-foreground-muted active:fill-gray-800" />
98+
<PauseIcon size={20} className="fas fa fa-pause fill-foreground-muted active:fill-gray-800" />
9999
)}
100100
</Flex>
101101
)}

0 commit comments

Comments
 (0)