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