1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 06:38:30 -04:00
jarv.is/components/YouTubeEmbed/YouTubeEmbed.tsx

26 lines
660 B
TypeScript

import classNames from "classnames";
import ReactPlayer from "react-player/youtube";
import type { YouTubePlayerProps } from "react-player/youtube";
import styles from "./YouTubeEmbed.module.css";
type Props = Partial<YouTubePlayerProps> & {
id: string;
className?: string;
};
const YouTubeEmbed = ({ id, className, ...rest }: Props) => (
<div className={classNames(styles.wrapper, className)}>
<ReactPlayer
width="100%"
height="100%"
url={`https://www.youtube-nocookie.com/watch?v=${id}`}
light={`https://i.ytimg.com/vi/${id}/hqdefault.jpg`}
controls
{...rest}
/>
</div>
);
export default YouTubeEmbed;