From 80bc7ffac9cab1da766937e15ebabc31e722855f Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sat, 9 Oct 2021 12:02:30 -0700 Subject: [PATCH] Add toolbar button for append next --- src/components/shared/ToolbarButtons.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/components/shared/ToolbarButtons.tsx b/src/components/shared/ToolbarButtons.tsx index fdc8d97..8406ec4 100644 --- a/src/components/shared/ToolbarButtons.tsx +++ b/src/components/shared/ToolbarButtons.tsx @@ -21,12 +21,20 @@ export const PlayShuffleButton = ({ ...rest }) => { export const PlayAppendButton = ({ ...rest }) => { return ( - + } {...rest} /> ); }; +export const PlayAppendNextButton = ({ ...rest }) => { + return ( + + } {...rest} /> + + ); +}; + export const PlayShuffleAppendButton = ({ ...rest }) => { return (