From a59d5868544b3aa93a8039cfb8c5b74b471efd48 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 18:19:02 +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 8984884..26d4296 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -6,7 +6,7 @@ interface SvgTextLogoProps { fontSize?: number; fontWeight?: number | string; letterSpacing?: number; - dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'baseline' | 'text-before-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'central' | 'mathematical'; + dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'text-before-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'central' | 'mathematical' | 'inherit' | 'use-script' | 'no-change' | 'reset-size'; } export const SvgTextLogo: React.FC = ({ @@ -15,7 +15,7 @@ export const SvgTextLogo: React.FC = ({ fontSize = 24, fontWeight = 'bold', letterSpacing = 0, - dominantBaseline = 'middle', + dominantBaseline = 'auto', }) => { return (