From 2c6cbfcea53802dad1a3e7d8a75459aa7be01c21 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 14:22:31 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 22 +++++++------------ 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 44c4b80..9a41064 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -2,33 +2,27 @@ import React from 'react'; interface SvgTextLogoProps { text: string; - fontSize?: number; - fontFamily?: string; - fill?: string; className?: string; + textClassName?: string; } const SvgTextLogo: React.FC = ({ text, - fontSize = 24, - fontFamily = 'Arial, sans-serif', - fill = 'currentColor', className = '', + textClassName = '', }) => { return ( {text} @@ -36,4 +30,4 @@ const SvgTextLogo: React.FC = ({ ); }; -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file