import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: number | string; letterSpacing?: number; textAnchor?: 'start' | 'middle' | 'end'; dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'ideographic' | 'alphabetic' | 'central' | 'mathematical' | 'inherit'; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 32, fontWeight = 'bold', letterSpacing = 0, textAnchor = 'middle', dominantBaseline = 'middle', }) => { const svgWidth = text.length * (fontSize * 0.6) + 40; const svgHeight = fontSize + 20; return ( {text} ); }; export default SvgTextLogo;