ExamplesEdges

Edge Markers

Svelte Flow has built-in support for different marker types for your edges. It’s possible to add your own SVG markers, too.

<script lang="ts">
const data: string = "world";
</script>

<h1>Hello {data}</h1>

<style>
h1 {
  font-size: 1.5rem;
}
</style>
Read-only