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 (