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

26 lines
410 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>
<div>
2023-01-08 19:25:23 +00:00
<iframe
allowfullscreen
class="w-full aspect-[16/9]"
frameborder="0"
src={`https://www.youtube.com/embed/${id}?rel=0&iv_load_policy=3`}
2023-01-08 19:25:23 +00:00
/>
</div>
</div>
2023-01-08 19:25:23 +00:00
)
}