From 2fab4373b54a077ba16109804bceb03ff2d5614e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 23:09:04 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 3e4518f..7aad40a 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -31,7 +31,7 @@ const SvgTextLogo: React.FC = ({ fontWeight={fontWeight} letterSpacing={letterSpacing} textAnchor={textAnchor} - dominantBaseline={dominantBaseline} + dominantBaseline={dominantBaseline as "auto" | "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size"} className="fill-current" > {text} -- 2.49.1