From fc046bd3cb3dfc064acfdd8b9be66fc74dc0d108 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 12:58:38 +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 b98d472..10f77b2 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -7,7 +7,7 @@ interface SvgTextLogoProps { letterSpacing?: number; className?: string; fill?: string; - dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'central' | 'mathematical' | 'inherit'; + dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'central' | 'mathematical' | 'inherit' | 'alphabetic' | 'ideographic' | 'text-before-edge' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } const SvgTextLogo: React.FC = ({ @@ -29,7 +29,7 @@ const SvgTextLogo: React.FC = ({ x="50%" y="50%" textAnchor="middle" - dominantBaseline={dominantBaseline} + dominantBaseline={dominantBaseline as any} fontSize={fontSize} fontWeight={fontWeight} letterSpacing={letterSpacing} -- 2.49.1