Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 45x 45x 181x | type Props = {
videoID: string;
style?: React.CSSProperties;
width?: string;
height?: string;
};
const defaultIframeStyles: React.CSSProperties = {
borderRadius: "15px",
border: "none",
};
const VideoPreview = ({
videoID,
style,
width = "100%",
height = "293px",
}: Props) => {
return (
<iframe
width={width}
height={height}
src={`https://www.youtube.com/embed/${videoID}`}
title="YouTube video preview"
allowFullScreen
style={{ ...defaultIframeStyles, ...style }}
></iframe>
);
};
export default VideoPreview;
|