Files
flotilla/src/app/components/ContentLinkDetail.svelte
T
2025-02-03 17:21:46 -08:00

13 lines
356 B
Svelte

<script lang="ts">
import Button from "@lib/components/Button.svelte"
import {imgproxy} from "@app/state"
const {url} = $props()
const back = () => history.back()
</script>
<Button class="m-auto h-screen w-screen cursor-pointer p-4" onclick={back}>
<img alt="" src={imgproxy(url)} class="m-auto max-h-full max-w-full rounded-box" />
</Button>