MediaRendererProps

The props for the MediaRenderer component.

type MediaRendererProps = {
  alt: string;
  children: ReactNode;
  className: string;
  controls: boolean;
  gatewayUrl: string;
  height: string;
  mimeType: string;
  poster: null | string;
  requireInteraction: boolean;
  src: null | string;
  style: CSSProperties;
  width: string;
};