From 7878acb28320fc72e193d2d28466fff4397d8229 Mon Sep 17 00:00:00 2001 From: Fedor Semenov Date: Fri, 16 Feb 2024 14:39:55 +0100 Subject: [PATCH] add strokeDasharray prop to the https://recharts.org/en-US/api/Line\#strokeDasharray (#54) --- src/Line.re | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Line.re b/src/Line.re index aeecf79..c277ebd 100644 --- a/src/Line.re +++ b/src/Line.re @@ -38,6 +38,7 @@ external make: ~points: array(Js.t({..}))=?, ~stroke: string=?, ~strokeWidth: int=?, + ~strokeDasharray: string=?, ~unit: string=?, ~xAxisId: string=?, ~yAxisId: string=?