chore(svelte): add class to BaseEdge comp

This commit is contained in:
moklick
2023-10-16 15:54:43 +02:00
parent c7a533bffe
commit bce7a49c73
2 changed files with 3 additions and 0 deletions
@@ -14,6 +14,8 @@
export let markerEnd: $$Props['markerEnd'] = undefined;
export let style: $$Props['style'] = undefined;
export let interactionWidth: $$Props['interactionWidth'] = 20;
let className: $$Props['class'] = undefined;
export { className as class };
</script>
<path
@@ -10,4 +10,5 @@ export type BaseEdgeProps = Pick<
labelY?: number;
markerStart?: string;
markerEnd?: string;
class?: string;
};