From b53b26a383b2a60afee26978f7f8cda71e518497 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 03:20:41 +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 1186bbc..d81e541 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -3,12 +3,13 @@ import React from "react"; interface SvgTextLogoProps { text: string; className?: string; - dominantBaseline?: "auto" | "text-top" | "middle" | "central" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit"; + dominantBaseline?: "auto" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit"; } const SvgTextLogo: React.FC = ({ text, - className = "", dominantBaseline = "middle"}) => { + className = "", dominantBaseline = "middle" +}) => { return (