From ebe54fb0884521d0a2dddb2786b9ba6c8b4df94d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 18:30:05 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index c5ce604..ab2fcd2 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -13,11 +13,18 @@ interface SvgTextLogoProps { textAnchor?: "start" | "middle" | "end"; dominantBaseline?: | "auto" - | "baseline" - | "middle" + | "inherit" + | "alphabetic" | "hanging" + | "ideographic" | "mathematical" - | "central"; + | "text-before-edge" + | "middle" + | "central" + | "text-after-edge" + | "use-script" + | "no-change" + | "reset-size"; fill?: string; stroke?: string; strokeWidth?: number; -- 2.49.1