From ba4547ea810ab384d115af8e2f4601c56d3bb26f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 03:53:33 +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 465a6eb..a99506f 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -7,13 +7,14 @@ interface SvgTextLogoProps { fontWeight?: number | string; fill?: string; textAnchor?: "start" | "middle" | "end"; - dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging"; + dominantBaseline?: "auto" | "text-after-edge" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging"; } const SvgTextLogo: React.FC = ({ text, className = "", fontSize = 24, - fontWeight = "bold", fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle"}) => { + fontWeight = "bold", fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle" +}) => { return (