import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fill?: string; fontSize?: number; fontFamily?: string; fontWeight?: number | string; letterSpacing?: number; } const SvgTextLogo: React.FC = ({ text, className = '', fill = 'currentColor', fontSize = 24, fontFamily = 'system-ui, -apple-system, sans-serif', fontWeight = 700, letterSpacing = 0, }) => { return ( {text} ); }; export default SvgTextLogo;