From 3e05765bca1992a838734828d256d6e15334446b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 01:27:00 +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 d70ee68..3b8a5d6 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -8,7 +8,7 @@ interface SvgTextLogoProps { fontWeight?: 'normal' | 'bold' | 'bolder'; letterSpacing?: number; textAnchor?: 'start' | 'middle' | 'end'; - dominantBaseline?: 'auto' | 'text-top' | 'central' | 'middle' | 'hanging' | 'alphabetic' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; + dominantBaseline?: 'auto' | 'central' | 'middle' | 'hanging' | 'alphabetic' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; } const SvgTextLogo = React.forwardRef( @@ -21,7 +21,7 @@ const SvgTextLogo = React.forwardRef( fontWeight = 'normal', letterSpacing = 0, textAnchor = 'start', - dominantBaseline = 'middle', + dominantBaseline = 'central', }, ref ) => { -- 2.49.1