From 866a9f22deea9b498729a8af63bfce90e6db2efb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 06:41:49 +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 3f3762a..42a82b5 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -10,7 +10,7 @@ interface SvgTextLogoProps { fill?: string; x?: number; y?: number; - dominantBaseline?: "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit"; + dominantBaseline?: "auto" | "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size"; } export const SvgTextLogo: React.FC = ({ @@ -21,7 +21,7 @@ export const SvgTextLogo: React.FC = ({ letterSpacing = 0, fill = "currentColor", x = 0, y = 0, - dominantBaseline = "middle"}) => { + dominantBaseline = "central"}) => { return (