mirror of
https://github.com/jeffvli/sonixd.git
synced 2026-04-30 19:22:37 -04:00
Add toolbar button for append next
This commit is contained in:
@@ -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}>
|
||||
|
||||
Reference in New Issue
Block a user