diff --git a/src/components/AudioPlayer/AudioPlayer.styles.tsx b/src/components/AudioPlayer/AudioPlayer.styles.tsx new file mode 100644 index 0000000..6ac7870 --- /dev/null +++ b/src/components/AudioPlayer/AudioPlayer.styles.tsx @@ -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` + } + }); diff --git a/src/components/AudioPlayer/index.tsx b/src/components/AudioPlayer/index.tsx new file mode 100644 index 0000000..2be9e12 --- /dev/null +++ b/src/components/AudioPlayer/index.tsx @@ -0,0 +1,3 @@ +import AudioPlayer from "./AudioPlayer"; + +export default AudioPlayer;