interface EmbedYoutubeProps { videoID: string; pxHeight: number; pxWidth?: number; } function EmbedYoutube({ videoID, pxHeight, pxWidth }: EmbedYoutubeProps) { if (!pxWidth) { pxWidth = (pxHeight * 16) / 9; } return (