Use a ☆ instead of the word "starred"

This commit is contained in:
Deluan
2020-05-24 12:12:12 -04:00
parent ac8f92d7ac
commit cac1a20ec8
4 changed files with 40 additions and 9 deletions
+5 -1
View File
@@ -96,7 +96,11 @@ const SongContextMenu = ({ record, showStar, onAddToPlaylist, visible }) => {
disabled={updating}
className={classes.star}
>
{record.starred ? <StarIcon /> : <StarBorderIcon />}
{record.starred ? (
<StarIcon fontSize={'small'} />
) : (
<StarBorderIcon fontSize={'small'} />
)}
</IconButton>
)}
<IconButton