forked from MapComplete/MapComplete
11 lines
217 B
Svelte
11 lines
217 B
Svelte
|
<script lang="ts">
|
||
|
import {UIEventSource} from "../../../Logic/UIEventSource";
|
||
|
|
||
|
/**
|
||
|
* Simply shows the image
|
||
|
*/
|
||
|
export let value: UIEventSource<undefined | string>
|
||
|
</script>
|
||
|
|
||
|
<img src={$value}/>
|