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