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