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 2e789de commit 111deabCopy full SHA for 111deab
src/components/Player.tsx
@@ -93,9 +93,9 @@ const Player = ({ artistSlugsToName }: Props) => {
93
onClick={() => player.togglePlayPause()}
94
>
95
{playback.activeTrack.isPaused ? (
96
- <PlayIcon size={20} className="fill-foreground-muted active:fill-gray-800" />
+ <PlayIcon size={20} className="fas fa fa-play fill-foreground-muted active:fill-gray-800" />
97
) : (
98
- <PauseIcon size={20} className="fill-foreground-muted active:fill-gray-800" />
+ <PauseIcon size={20} className="fas fa fa-pause fill-foreground-muted active:fill-gray-800" />
99
)}
100
</Flex>
101
0 commit comments