From ad24e30eb12c293c2c7566cc65a5e5a02ce27a2f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:27:09 +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 dc0e96c..7b4693f 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -6,8 +6,8 @@ interface SvgTextLogoProps { fontSize?: number; fontWeight?: number | string; letterSpacing?: number; - dominantBaseline?: string; - textAnchor?: string; + dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; + textAnchor?: 'end' | 'start' | 'inherit' | 'middle'; } const SvgTextLogo: React.FC = ({ -- 2.49.1