From 7e8236c1cee3ef06ef3d1ede289706876423114e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 16:04:49 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index a71caa9..78751f1 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -4,12 +4,13 @@ interface SvgTextLogoProps { text: string; className?: string; fillColor?: string; - dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "hanging" | "mathematical"; + dominantBaseline?: "auto" | "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size"; } const SvgTextLogo: React.FC = ({ text, - className = "", fillColor = "currentColor", dominantBaseline = "middle"}) => { + className = "", fillColor = "currentColor", dominantBaseline = "middle" +}) => { return (