lynxkite / web /src /NodeWithImage.svelte
darabos's picture
"Image" node type to display an image.
4d72daa
raw
history blame
325 Bytes
<script lang="ts">
import { type NodeProps } from '@xyflow/svelte';
import NodeWithParams from './NodeWithParams.svelte';
type $$Props = NodeProps;
export let data: $$Props['data'];
</script>
<NodeWithParams {...$$props}>
{#if data.display}
<img src={data.display}/>
{/if}
</NodeWithParams>
<style>
</style>