11 lines
247 B
Svelte
11 lines
247 B
Svelte
<script lang="ts">
|
|
import BaseSmoothStepEdge from './BaseSmoothStepEdge.svelte';
|
|
import type { EdgeProps } from '$lib/types';
|
|
|
|
type $$Props = EdgeProps;
|
|
|
|
$: props = $$props as $$Props;
|
|
</script>
|
|
|
|
<BaseSmoothStepEdge {...props} internal />
|