From b871dcf02e19ed8e332ef76666b27a06e0bb9e2c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 08:02:44 +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 413f8fa..7f7eb86 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -2,7 +2,7 @@ import React, { SVGProps } from 'react'; interface SvgTextLogoProps extends SVGProps { text?: string; - dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'hanging' | 'mathematical'; + dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'mathematical' | 'alphabetic'; } const SvgTextLogo: React.FC = ({ -- 2.49.1