From 099670140c536d0ad71449a50402147975305610 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:10:46 +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 62f73ac..5e721d0 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -4,7 +4,7 @@ interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; - dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'baseline' | 'central' | 'mathematical'; + dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'central' | 'mathematical' | 'alphabetic' | 'ideographic' | 'text-before-edge' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size' | 'inherit'; } const SvgTextLogo: React.FC = ({ -- 2.49.1