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