Spaces:
Running
Running
File size: 395 Bytes
fd2b294 50bb1bc fd2b294 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<script lang="ts">
export let value: string;
export let type: "gallery" | "table";
export let selected = false;
</script>
<div
class:table={type === "table"}
class:gallery={type === "gallery"}
class:selected
class="prose"
>
<iframe title="iframe component" width="100%" height="1000px" srcdoc={value} allow=""></iframe>
</div>
<style>
.gallery {
padding: var(--size-2);
}
</style>
|