diff --git a/src/assets/icons/downSquare.svg b/src/assets/icons/downSquare.svg new file mode 100644 index 0000000..1d3b177 --- /dev/null +++ b/src/assets/icons/downSquare.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/VideoPlayer.tsx b/src/components/VideoPlayer.tsx index 2a5bc5b..d64d7f9 100644 --- a/src/components/VideoPlayer.tsx +++ b/src/components/VideoPlayer.tsx @@ -1,18 +1,25 @@ +import React from 'react'; + import Video from 'react-native-video'; export const VideoPlayer = ({ videoURI, isPaused = true, + snapshotURL, }: { videoURI: string; isPaused?: boolean; + snapshotURL?: string; }) => { + React.useEffect(() => {}, []); return (