rename file

This commit is contained in:
Jorrin
2024-02-12 20:07:36 +01:00
parent f18a5421e5
commit 7dc0512007

View File

@@ -0,0 +1,21 @@
import { View } from "react-native";
import { Controls } from "./Controls";
import { PlayButton } from "./PlayButton";
import { SeekButton } from "./SeekButton";
export const MiddleControls = () => {
return (
<View className="absolute flex h-full w-full flex-1 flex-row items-center justify-center gap-24">
<Controls>
<SeekButton type="backward" />
</Controls>
<Controls>
<PlayButton />
</Controls>
<Controls>
<SeekButton type="forward" />
</Controls>
</View>
);
};