From 8ae131cb5f8622813842baaca46fdec8f2060b61 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 03:11:00 +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 3e646e5..4474a91 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -5,13 +5,14 @@ interface SvgTextLogoProps { className?: string; fontSize?: number; fontWeight?: string | number; - dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging"; + 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 = "", fontSize = 48, - fontWeight = "bold", dominantBaseline = "middle"}) => { + fontWeight = "bold", dominantBaseline = "middle" +}) => { return (