From 4053484926a531bc0860a59a6d561683434794d9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 20:10:43 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- src/components/shared/SvgTextLogo/SvgTextLogo.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 3bd4b7c..a05d1fc 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,6 +1,6 @@ -import React from 'react'; +import React, { SVGAttributes } from 'react'; -interface SvgTextLogoProps { +interface SvgTextLogoProps extends SVGAttributes { text: string; className?: string; fontSize?: number; @@ -16,12 +16,14 @@ const SvgTextLogo: React.FC = ({ fontWeight = 700, letterSpacing = 2, dominantBaseline = 'middle', + ...svgProps }) => { return (