From 93f35ffe64bb6c8c783d55f08d8a77686867709e Mon Sep 17 00:00:00 2001 From: Luc Patiny Date: Fri, 4 Aug 2023 14:52:50 +0200 Subject: [PATCH] fix: enforce labelFontSize as a number --- types.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.d.ts b/types.d.ts index 5979980..fc9bb80 100644 --- a/types.d.ts +++ b/types.d.ts @@ -33,7 +33,7 @@ export interface IBaseSvgRendererProps extends IMoleculeToSVGOptions { autoCropMargin?: number; labelFontFamily?: string; - labelFontSize?: string; + labelFontSize?: number; label?: string; }