diff --git a/src/video/components/actions/DownloadAction.tsx b/src/video/components/actions/DownloadAction.tsx new file mode 100644 index 00000000..11435024 --- /dev/null +++ b/src/video/components/actions/DownloadAction.tsx @@ -0,0 +1,22 @@ +import { Icons } from "@/components/Icon"; +import { useVideoPlayerDescriptor } from "@/video/state/hooks"; +import { useSource } from "@/video/state/logic/source"; +import { VideoPlayerIconButton } from "../parts/VideoPlayerIconButton"; + +interface Props { + className?: string; +} + +export function DownloadAction(props: Props) { + const descriptor = useVideoPlayerDescriptor(); + const sourceInterface = useSource(descriptor); + + return ( + + + + ); +}