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