import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: number | string; textAnchor?: 'start' | 'middle' | 'end'; dominantBaseline?: 'auto' | 'text-top' | 'hanging' | 'middle' | 'central' | 'text-bottom' | 'ideographic' | 'mathematical' | 'baseline' | 'inherit'; fill?: string; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 24, fontWeight = 700, textAnchor = 'middle', dominantBaseline = 'middle', fill = 'currentColor', }) => { const viewBoxWidth = text.length * fontSize * 0.6; const viewBoxHeight = fontSize * 1.5; const xPosition = viewBoxWidth / 2; const yPosition = viewBoxHeight / 2; return ( {text} ); }; export default SvgTextLogo;