From 49d543d62b7fd2b2f856f4ca792bc9fd61b3f185 Mon Sep 17 00:00:00 2001 From: Abbey Yacoe Date: Tue, 8 Jul 2025 16:15:35 +0200 Subject: [PATCH] docs(edges): update marker documentation to include formatting information --- packages/react/src/types/edges.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react/src/types/edges.ts b/packages/react/src/types/edges.ts index e334546f..2489fb12 100644 --- a/packages/react/src/types/edges.ts +++ b/packages/react/src/types/edges.ts @@ -184,12 +184,12 @@ export type BaseEdgeProps = Omit, 'd' | 'path' | ' path: string; /** * The id of the SVG marker to use at the start of the edge. This should be defined in a - * `` element in a separate SVG document or element. + * `` element in a separate SVG document or element. Use the format "url(#markerId)" where markerId is the id of your marker definition. */ markerStart?: string; /** * The id of the SVG marker to use at the end of the edge. This should be defined in a `` - * element in a separate SVG document or element. + * element in a separate SVG document or element. Use the format "url(#markerId)" where markerId is the id of your marker definition. */ markerEnd?: string; };