mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 12:05:28 +00:00
19 lines
438 B
Plaintext
19 lines
438 B
Plaintext
---
|
|
export interface Props {
|
|
class?: string;
|
|
id: string;
|
|
[key: string]: any;
|
|
}
|
|
|
|
const { class: className, id, ...props } = Astro.props;
|
|
---
|
|
|
|
<div class:list={['relative aspect-video mbe-10', className]} {...props}>
|
|
<iframe
|
|
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
|
|
allowfullscreen
|
|
class="absolute h-full w-full"
|
|
frameborder="0"
|
|
src={`https://odysee.com/$/embed/${id}`}></iframe>
|
|
</div>
|