From 6498494e8540ddce12cfe6cfa2bbcaba71c424b3 Mon Sep 17 00:00:00 2001 From: Marquis Kurt Date: Fri, 10 Apr 2020 18:31:13 -0400 Subject: [PATCH] =?UTF-8?q?Add=20missing=20AudioPlayer=20files=20?= =?UTF-8?q?=F0=9F=A4=B7=E2=80=8D=E2=99=82=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AudioPlayer/AudioPlayer.styles.tsx | 17 +++++++++++++++++ src/components/AudioPlayer/index.tsx | 3 +++ 2 files changed, 20 insertions(+) create mode 100644 src/components/AudioPlayer/AudioPlayer.styles.tsx create mode 100644 src/components/AudioPlayer/index.tsx 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;