Examples
Styling
Turbo Flow

Turbo Flow

Every part of the Svelte Flow UI is customizable. As the name implies the look is taken from the beautiful turbo.build (opens in a new tab) website. You can find more information about custom styles in the theming guide. (Svelte Flow uses Turborepo and we love it 💜)

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

<h1>Hello {data}</h1>

<style>
h1 {
  font-size: 1.5rem;
}
</style>
Read-only
⚠️
To surpress unknown prop warnings in the browser console, please refer to the guide.