import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontFamily?: string; fontWeight?: number; letterSpacing?: number; dominantBaseline?: 'auto' | 'text-top' | 'hanging' | 'middle' | 'central' | 'ideographic' | 'mathematical' | 'inherit'; textAnchor?: 'start' | 'middle' | 'end' | 'inherit'; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 32, fontFamily = 'Arial, sans-serif', fontWeight = 700, letterSpacing = 0, dominantBaseline = 'middle', textAnchor = 'middle', }) => { return ( {text} ); }; export default SvgTextLogo;