From a263795df50ee4dcac6e6ac01c9e6e6f37756b60 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 13:02:26 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index e2c1cd5..9f8524c 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -4,11 +4,10 @@ interface SvgTextLogoProps { text?: string; className?: string; textClassName?: string; - dominantBaseline?: SVGTextElement['dominantBaseline']; } const SvgTextLogo = React.forwardRef(( - { text = 'Webild', className = 'w-24 h-auto', textClassName = 'text-2xl font-bold', dominantBaseline = 'middle' }, + { text = 'Webild', className = 'w-24 h-auto', textClassName = 'text-2xl font-bold' }, ref ) => { return ( @@ -21,7 +20,7 @@ const SvgTextLogo = React.forwardRef((