From 3a1e273042f44a3513c33fddeb8481a0b630fafb Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 07:56:55 +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 938a0ed..009c468 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -6,7 +6,7 @@ interface SvgTextLogoProps { fontSize?: number; fontWeight?: string | number; letterSpacing?: number; - dominantBaseline?: 'auto' | 'baseline' | 'central' | 'hanging' | 'inherit' | 'reset-size' | 'no-change'; + dominantBaseline?: 'auto' | 'alphabetic' | 'central' | 'hanging' | 'inherit' | 'reset-size' | 'no-change'; } const SvgTextLogo: React.FC = ({ @@ -27,7 +27,7 @@ const SvgTextLogo: React.FC = ({ x="50%" y="50%" textAnchor="middle" - dominantBaseline={dominantBaseline as 'auto' | 'baseline' | 'central' | 'hanging' | 'inherit' | 'reset-size' | 'no-change'} + dominantBaseline={dominantBaseline as 'auto' | 'alphabetic' | 'central' | 'hanging' | 'inherit' | 'reset-size' | 'no-change'} fontSize={fontSize} fontWeight={fontWeight} letterSpacing={letterSpacing}