diff --git a/docs/src/examples/components/Marker/orientation.svelte b/docs/src/examples/components/Marker/orientation.svelte index d181bf05b..721d83eac 100644 --- a/docs/src/examples/components/Marker/orientation.svelte +++ b/docs/src/examples/components/Marker/orientation.svelte @@ -7,9 +7,6 @@ let config = $state({ show: true, tweened: true, - markerStart: true, - markerMid: false, - markerEnd: true, pathGenerator: (x: number) => x, curve: undefined as ComponentProps['value'], pointCount: 10, diff --git a/docs/src/examples/components/Marker/spline.svelte b/docs/src/examples/components/Marker/spline.svelte index 3be081414..fe33c70c3 100644 --- a/docs/src/examples/components/Marker/spline.svelte +++ b/docs/src/examples/components/Marker/spline.svelte @@ -7,7 +7,6 @@ let config = $state({ show: true, markerStart: true, - markerMid: false, markerEnd: true, tweened: true, pathGenerator: (x: number) => x, @@ -45,7 +44,6 @@ curve={config.curve} class="stroke-primary" markerStart={config.markerStart ? marker : undefined} - markerMid={config.markerMid ? marker : undefined} markerEnd={config.markerEnd ? marker : undefined} {motion} /> diff --git a/docs/src/examples/components/Marker/styling.svelte b/docs/src/examples/components/Marker/styling.svelte index c69b2379f..0358c8ce5 100644 --- a/docs/src/examples/components/Marker/styling.svelte +++ b/docs/src/examples/components/Marker/styling.svelte @@ -7,9 +7,6 @@ let config = $state({ show: true, tweened: true, - markerStart: true, - markerMid: false, - markerEnd: true, pathGenerator: (x: number) => x, curve: undefined as ComponentProps['value'], pointCount: 10,