oliverdavies.uk/website/src/components/talk/Video.astro

27 lines
435 B
Text
Raw Normal View History

---
interface Props {
2023-01-08 19:25:23 +00:00
id: string;
type: string;
}
2023-01-08 19:25:23 +00:00
const { id, type }: Props = Astro.props;
---
2023-01-08 19:25:23 +00:00
{
type == "youtube" && (
<div>
<h2 class="mb-2">Video</h2>
2023-01-08 19:25:23 +00:00
<div class="video-full">
<iframe
width="678"
height="408"
src={`https://www.youtube.com/embed/${id}?rel=0&iv_load_policy=3`}
frameborder="0"
allowfullscreen
/>
</div>
</div>
2023-01-08 19:25:23 +00:00
)
}