import { Box, SxProps } from "@mui/material"; interface Props { videoUrl: string; containerSX?: SxProps; } export default function YoutubeEmbedIframe({ videoUrl, containerSX }: Props) { const extractYoutubeVideoId = /(?:youtube\.com\/(?:[^\/]+\/.+\/|(?:v|e(?:mbed)?)\/|.*[?&]v=)|youtu\.be\/)([^"&?\/\s]{11})/gi; const videoId = extractYoutubeVideoId.exec(videoUrl)?.[1]; // if (!videoId) return null; const embedUrl = `https://www.youtube.com/embed/${videoId}?controls=0&autoplay=1&modestbranding=0&showinfo=0&disablekb=1&mute=1&loop=1`; // https://www.youtube.com/shorts/9VgqBPd6RPA // https://www.youtube.com/watch?v=I2N8hTHhvGY return ( {/*