From b1e390f16941ab02f6f6c5bdc124f9ac7ded51de Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 03:15:26 +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 38ee576..651ec05 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' | 'before-edge' | 'after-edge' | 'central' | 'middle' | 'hanging'; + dominantBaseline?: 'auto' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; } export const SvgTextLogo: React.FC = ({ @@ -17,7 +17,7 @@ export const SvgTextLogo: React.FC = ({ fontWeight = 'bold', letterSpacing = 0, textAnchor = 'start', - dominantBaseline = 'middle', + dominantBaseline = 'central', }) => { return ( -- 2.49.1