From e54a8809bdd2b04ac2253719fd4ccead9e4edc22 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 11:14:20 +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 928cb74..868f5fe 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -6,12 +6,13 @@ interface SvgTextLogoProps { text: string; className?: string; textClassName?: string; - dominantBaseline?: "auto" | "baseline" | "before-edge" | "hanging" | "mathematical" | "central" | "middle" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "inherit"; + dominantBaseline?: "auto" | "text-before-edge" | "hanging" | "mathematical" | "central" | "middle" | "text-after-edge" | "ideographic" | "alphabetic" | "inherit" | "use-script" | "no-change" | "reset-size"; } export const SvgTextLogo = ({ text, - className = "", textClassName = "", dominantBaseline = "central"}: SvgTextLogoProps) => { + className = "", textClassName = "", dominantBaseline = "central" +}: SvgTextLogoProps) => { return (