From 18b819f653550c0ed16b8456ae0fbf75579700f0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:10:31 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 329270c..493af5c 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -6,7 +6,7 @@ interface SvgTextLogoProps extends SVGProps { fontWeight?: string | number; fontFamily?: string; fill?: string; - dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; + dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'use-script' | 'no-change' | 'reset-size' | 'inherit' | 'alphabetic' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'central' | 'text-after-edge'; } export const SvgTextLogo = React.forwardRef( @@ -17,7 +17,7 @@ export const SvgTextLogo = React.forwardRef( fontWeight = 'bold', fontFamily = 'system-ui, -apple-system, sans-serif', fill = 'currentColor', - dominantBaseline = 'central', + dominantBaseline = 'middle', viewBox = '0 0 200 60', width = 200, height = 60, @@ -51,4 +51,4 @@ export const SvgTextLogo = React.forwardRef( } ); -SvgTextLogo.displayName = 'SvgTextLogo'; +SvgTextLogo.displayName = 'SvgTextLogo'; \ No newline at end of file -- 2.49.1