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