18 lines
511 B
Svelte
18 lines
511 B
Svelte
<script lang="ts">
|
|
import { Position } from '@xyflow/system';
|
|
import type { NodeProps } from '$lib/types';
|
|
|
|
import { Handle } from '$lib/components/Handle';
|
|
|
|
interface $$Props extends NodeProps {}
|
|
|
|
export let data: $$Props['data'] = { label: 'Node' };
|
|
export let targetPosition: $$Props['targetPosition'] = undefined;
|
|
|
|
// this is a workaround for suppressing the warning about unused props
|
|
$$restProps;
|
|
</script>
|
|
|
|
{data?.label}
|
|
<Handle type="target" position={targetPosition ?? Position.Top} />
|