From 8b33e940eefef1e390aa47294c0cc36148a60cfa Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:56:17 +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 2fd56be..c47f1e8 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -6,7 +6,7 @@ interface SvgTextLogoProps { fontSize?: number; fontFamily?: string; fill?: string; - dominantBaseline?: SVGTextElement['dominantBaseline']; + dominantBaseline?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit'; } const SvgTextLogo: React.FC = ({ @@ -30,7 +30,7 @@ const SvgTextLogo: React.FC = ({ fontFamily={fontFamily} fill={fill} textAnchor="middle" - dominantBaseline={dominantBaseline} + dominantBaseline={dominantBaseline as any} > {text} -- 2.49.1