From 5acfa4e4a89613afd0fe468a1c6a6163ec194336 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:14:30 +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 5b2e16a..202102a 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -7,7 +7,7 @@ interface SvgTextLogoProps { fontWeight?: number | string; letterSpacing?: number; textAnchor?: 'start' | 'middle' | 'end'; - dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'hanging' | 'mathematical'; + dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'central' | 'middle' | 'text-after-edge' | 'text-before-edge' | 'use-script' | 'no-change' | 'reset-size'; fill?: string; stroke?: string; strokeWidth?: number; @@ -42,7 +42,7 @@ const SvgTextLogo: React.FC = ({ fontWeight={fontWeight} letterSpacing={letterSpacing} textAnchor={textAnchor} - dominantBaseline={dominantBaseline} + dominantBaseline={dominantBaseline as any} fill={fill} stroke={stroke} strokeWidth={strokeWidth} -- 2.49.1