import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: string; fontWeight?: string; fontFamily?: string; letterSpacing?: string; textAnchor?: 'start' | 'middle' | 'end'; dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } export const SvgTextLogo: React.FC = ({ text, className = '', fontSize = '24', fontWeight = 'bold', fontFamily = 'Arial, sans-serif', letterSpacing = '0', textAnchor = 'middle', dominantBaseline = 'middle', }) => { return ( {text} ); }; export default SvgTextLogo;