Add button to share selected songs

This commit is contained in:
Deluan
2023-01-24 16:31:58 -05:00
parent 69b36c75a5
commit 85084cda57
6 changed files with 56 additions and 6 deletions
+2
View File
@@ -6,6 +6,7 @@ import PlayArrowIcon from '@material-ui/icons/PlayArrow'
import { BatchPlayButton } from './index'
import { AddToPlaylistButton } from './AddToPlaylistButton'
import { makeStyles } from '@material-ui/core/styles'
import { BatchShareButton } from './BatchShareButton'
const useStyles = makeStyles((theme) => ({
button: {
@@ -42,6 +43,7 @@ export const SongBulkActions = (props) => {
icon={<RiPlayListAddFill />}
className={classes.button}
/>
<BatchShareButton {...props} className={classes.button} />
<AddToPlaylistButton {...props} className={classes.button} />
</Fragment>
)