import ReactPlayer from "react-player/youtube"; import { styled } from "../../lib/styles/stitches.config"; import type { YouTubePlayerProps } from "react-player/youtube"; const Wrapper = styled("div", { position: "relative", paddingTop: "56.25%", "& > div": { position: "absolute", top: 0, left: 0, }, "& .react-player__preview, & iframe": { borderRadius: "$rounded", }, }); export type YouTubeEmbedProps = Partial & { id: string; className?: string; }; const YouTubeEmbed = ({ id, className, ...rest }: YouTubeEmbedProps) => ( ); export default YouTubeEmbed;