From 813c7a9f9ce32b60ddefb3a1b5ac4d2bf0df1c79 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:48:30 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index e95e5cc..52a3774 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' | 'middle' | 'hanging' | 'baseline' | 'central'; + dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'central' | 'middle' | 'text-after-edge' | 'text-before-edge' | 'use-script' | 'no-change' | 'reset-size'; } export const SvgTextLogo: React.FC = ({ -- 2.49.1