From c98a49d36195c362fbe5e87c78f6df428ad68149 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 19:25:43 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 7300fe6..bf1e2ce 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,10 +1,10 @@ import React, { SVGProps } from 'react'; -interface SvgTextLogoProps extends SVGProps { +interface SvgTextLogoProps extends Omit, 'dominantBaseline'> { text?: string; fontSize?: number; fill?: string; - dominantBaseline?: 'auto' | 'before-edge' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'central' | 'after-edge' | 'text-after-edge'; + dominantBaseline?: 'auto' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'central' | 'text-after-edge'; } const SvgTextLogo = React.forwardRef( -- 2.49.1