import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: number | string; fill?: string; letterSpacing?: number; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 32, fontWeight = 700, fill = 'currentColor', letterSpacing = 0, }) => { const textWidth = text.length * (fontSize as number) * 0.6; const viewBoxWidth = textWidth + 40; const viewBoxHeight = (fontSize as number) * 1.5; return ( {text} ); }; export default SvgTextLogo;