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