From 62664da0f20bdb1aa2aed02b79d772930cb00d52 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:50:00 +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 2282457..15baa09 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; fontSize?: number; fontFamily?: string; @@ -18,12 +18,14 @@ const SvgTextLogo: React.FC = ({ textAnchor = 'middle', dominantBaseline = 'central', className = '', + ...svgProps }) => { return (