mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
16 lines
447 B
Svelte
16 lines
447 B
Svelte
|
<script lang="ts">
|
||
|
import type { HTMLImgAttributes } from "svelte/elements";
|
||
|
type $$Props = HTMLImgAttributes;
|
||
|
|
||
|
import { resolve_wasm_src } from "@gradio/wasm/svelte";
|
||
|
|
||
|
export let src: HTMLImgAttributes["src"] = undefined;
|
||
|
</script>
|
||
|
|
||
|
{#await resolve_wasm_src(src) then resolved_src}
|
||
|
<!-- svelte-ignore a11y-missing-attribute -->
|
||
|
<img src={resolved_src} {...$$restProps} />
|
||
|
{:catch error}
|
||
|
<p style="color: red;">{error.message}</p>
|
||
|
{/await}
|