14 lines
274 B
Svelte
14 lines
274 B
Svelte
|
<script lang="ts">
|
||
|
export let contentType: string;
|
||
|
export let filename: string;
|
||
|
export let slug: string;
|
||
|
</script>
|
||
|
|
||
|
<iframe src="/s/{slug}.pdf" title="{filename}" frameborder="0"></iframe>
|
||
|
|
||
|
<style>
|
||
|
iframe{
|
||
|
min-width: 100%;
|
||
|
height: 90vh;
|
||
|
}
|
||
|
</style>
|