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 (