interface EmbedYoutubeProps { /** Video ID to embed. */ videoID: string; /** Display height in pixels. */ pxHeight: number; /** Display width in pixels. */ pxWidth?: number; } /** * Embeds a YouTube video into the page using the given video ID and dimensions. */ export function EmbedYoutube({ videoID, pxHeight, pxWidth }: EmbedYoutubeProps) { if (!pxWidth) { pxWidth = (pxHeight * 16) / 9; } return (