File size: 557 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script>import { Panel } from '../../container/Panel';
export let proOptions = undefined;
export let position = 'bottom-right';
</script>

{#if !proOptions?.hideAttribution}
  <Panel
    {position}
    class="svelte-flow__attribution"
    data-message="Feel free to remove the attribution or check out how you could support us: https://svelteflow.dev/support-us"
  >
    <a
      href="https://svelteflow.dev"
      target="_blank"
      rel="noopener noreferrer"
      aria-label="Svelte Flow attribution"
    >
      Svelte Flow
    </a>
  </Panel>
{/if}