import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: number | string; letterSpacing?: number; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 48, fontWeight = 'bold', letterSpacing = 0, }) => { const textLength = text.length; const charWidth = fontSize * 0.6; const svgWidth = textLength * charWidth + letterSpacing * (textLength - 1); const svgHeight = fontSize * 1.4; return ( {text} ); }; export default SvgTextLogo;