Add toolbar button for append next

This commit is contained in:
jeffvli
2021-10-09 12:02:30 -07:00
parent 3ea287c801
commit 80bc7ffac9

View File

@@ -21,12 +21,20 @@ export const PlayShuffleButton = ({ ...rest }) => {
export const PlayAppendButton = ({ ...rest }) => {
return (
<CustomTooltip text="Add to queue" placement="bottom">
<CustomTooltip text="Add to queue (last)" placement="bottom">
<StyledIconButton tabIndex={0} icon={<Icon icon="plus" />} {...rest} />
</CustomTooltip>
);
};
export const PlayAppendNextButton = ({ ...rest }) => {
return (
<CustomTooltip text="Add to queue (next)" placement="bottom">
<StyledIconButton tabIndex={0} icon={<Icon icon="plus-circle" />} {...rest} />
</CustomTooltip>
);
};
export const PlayShuffleAppendButton = ({ ...rest }) => {
return (
<CustomTooltip text="Add shuffled to queue" placement="bottom" onClick={rest.onClick}>