import clsx from "clsx"; import type { ComponentPropsWithoutRef } from "react"; import styles from "./YouTubeEmbed.module.css"; export type YouTubeEmbedProps = ComponentPropsWithoutRef<"div"> & { id: string; }; const YouTubeEmbed = ({ id, className, ...rest }: YouTubeEmbedProps) => { return (
); }; export default YouTubeEmbed;