From 7fd53fab57cae3d3d756772c0606d4424ceb8643 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 01:40:13 +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 81d19a7..9224858 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -8,7 +8,7 @@ interface SvgTextLogoProps { letterSpacing?: number; fill?: string; textAnchor?: 'start' | 'middle' | 'end'; - dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'central' | 'mathematical' | 'ideographic'; + dominantBaseline?: 'auto' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } const SvgTextLogo: React.FC = ({ @@ -31,7 +31,7 @@ const SvgTextLogo: React.FC = ({ x="0" y="50%" fontSize={fontSize} - fontWeight={fontWeight} + n fontWeight={fontWeight} letterSpacing={letterSpacing} fill={fill} textAnchor={textAnchor} -- 2.49.1