import classNames from "classnames"; import ReactPlayer from "react-player/youtube"; import styles from "./YouTubeEmbed.module.css"; type Props = { id: string; className?: string; }; const YouTubeEmbed = ({ id, className, ...rest }: Props) => (