From 201cdf9b0ea69063aaf55772537cd3e7a50b0968 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 11:57:47 +0000 Subject: [PATCH] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 2039c19..bb1e2ea 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -3,19 +3,35 @@ import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; + fontSize?: number; + fontWeight?: 'normal' | 'bold' | 'bolder'; + letterSpacing?: number; } -export const SvgTextLogo: React.FC = ({ text, className = '' }) => { +const SvgTextLogo: React.FC = ({ + text, + className = '', + fontSize = 48, + fontWeight = 'bold', + letterSpacing = 0, +}) => { return ( - + {text} @@ -23,4 +39,4 @@ export const SvgTextLogo: React.FC = ({ text, className = '' } ); }; -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file