use color instead of fill on player shuffle icon

This commit is contained in:
jeffvli
2026-08-04 21:25:26 -07:00
parent 0b210985a3
commit 2572726730
@@ -135,7 +135,7 @@ const ShuffleButton = ({ disabled }: { disabled?: boolean }) => {
disabled={disabled}
icon={
<Icon
fill={shuffle === PlayerShuffle.NONE ? 'default' : 'primary'}
color={shuffle === PlayerShuffle.NONE ? 'default' : 'primary'}
icon="mediaShuffle"
size={buttonSize}
/>