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