1
0
Fork 0
freesewing/packages/freesewing.shared/components/mdx/youtube.js
2021-12-18 15:41:37 +01:00

31 lines
637 B
JavaScript

const YouTube = (props) => {
return (
<div
style={{
position: 'relative',
paddingBottom: '56.25%' /* 16:9 */,
paddingTop: 25,
height: 0,
}}
>
<iframe
style={{
position: 'absolute',
top: 0,
left: 0,
width: '100%',
height: '100%',
}}
src={
props.playlist
? `https://www.youtube.com/embed/videoseries?list=${props.id}`
: `https://www.youtube.com/embed/${props.id}?${props.params || ''}`
}
frameBorder="0"
/>
</div>
)
}
export default YouTube