import { forwardRef } from "react"; interface VideoPlayerProps { src?: string; poster?: string; className?: string; } const VideoPlayer = forwardRef( ({ src, poster, className }, ref) => { return (
); } ); VideoPlayer.displayName = "VideoPlayer"; export { VideoPlayer }; export type { VideoPlayerProps };