From 31cec5cbe2a73546b86821e3d064956e424be5b6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 21:59:36 +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 d1ebb91..20af452 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -4,12 +4,13 @@ interface SvgTextLogoProps { children?: ReactNode; className?: string; textClassName?: string; - dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "hanging" | "mathematical" | "central" | "middle"; + 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 = ({ children, - className = "", textClassName = "", dominantBaseline = "middle"}) => { + className = "", textClassName = "", dominantBaseline = "middle" +}) => { return (