import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: 'normal' | 'bold' | '700'; letterSpacing?: number; dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'mathematical'; textAnchor?: 'start' | 'middle' | 'end'; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 48, fontWeight = 'bold', letterSpacing = 2, dominantBaseline = 'middle', textAnchor = 'middle', }) => { return ( {text} ); }; export default SvgTextLogo;