<ControlButton />
<ControlButton /> コンポーネントは、<Controls /> コンポーネントに追加のカスタムボタンをレンダリングするために使用されます。
<script lang="ts">
import { Controls, ControlButton } from '@xyflow/svelte';
</script>
<Controls>
<ControlButton on:click={() => console.log('⚡️')}>
⚡️
</ControlButton>
</Controls>