From 9dc1d2c679097cd41e8738a704928d370d4c4541 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 14:13:08 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f127805..9de49dd 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -8,14 +8,15 @@ interface SvgTextLogoProps { fontWeight?: number | string; fill?: string; textAnchor?: "start" | "middle" | "end"; - dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top"; + dominantBaseline?: "auto" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size"; } const SvgTextLogo: React.FC = ({ text, className = "", fontSize = 24, fontFamily = "Arial, sans-serif", fontWeight = 700, - fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle"}) => { + fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle" +}) => { return (