From c1f410ad9425be6a848032ae5ec71d22795f65eb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 16:13:34 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index eb89d41..d52f66e 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -9,14 +9,14 @@ interface SvgTextLogoProps { fontSize?: number; fontFamily?: string; textAnchor?: "start" | "middle" | "end"; - dominantBaseline?: "auto" | "baseline" | "text-bottom" | "alphabetic" | "ideographic" | "mathematical" | "central" | "hanging" | "text-top"; + dominantBaseline?: "auto" | "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size"; } const SvgTextLogo: React.FC = ({ text, className = "", svgClassName = "", textClassName = "", strokeWidth = 1, fontSize = 48, - fontFamily = "Arial, sans-serif", textAnchor = "middle", dominantBaseline = "central"}) => { + fontFamily = "Arial, sans-serif", textAnchor = "middle", dominantBaseline = "middle"}) => { return (