From c8cf3603dfc1a8d4e4c977e0387fa4206c866158 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 22:02:36 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 6acc4b1..7abbc46 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,10 +1,11 @@ import React from 'react'; +import { SVGAttributes } from 'react'; interface SvgTextLogoProps { text: string; className?: string; textClassName?: string; - dominantBaseline?: SVGTextElementAttributes['dominantBaseline']; + dominantBaseline?: SVGAttributes['dominantBaseline']; } export const SvgTextLogo: React.FC = ({ -- 2.49.1