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.
2 parents 2e789de + 111deab commit 84cfb7eCopy full SHA for 84cfb7e
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