Add missing AudioPlayer files 🤷‍♂️

This commit is contained in:
Marquis Kurt 2020-04-10 18:31:13 -04:00
parent a38fd67434
commit 6498494e85
No known key found for this signature in database
GPG Key ID: 725636D259F5402D
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,17 @@
import { Theme, createStyles } from "@material-ui/core";
export const styles = (theme: Theme) =>
createStyles({
root: {
backgroundColor: theme.palette.background.paper,
borderColor: theme.palette.action.disabledBackground,
borderWidth: 1,
borderStyle: "solid"
},
progressBar: {
width: "100%"
},
download: {
color: `${theme.palette.action.active} !important`
}
});

View File

@ -0,0 +1,3 @@
import AudioPlayer from "./AudioPlayer";
export default AudioPlayer;