import React from 'react'; interface SvgTextLogoProps { text: string; fontSize?: number; fontWeight?: number; fill?: string; className?: string; } const SvgTextLogo: React.FC = ({ text, fontSize = 24, fontWeight = 700, fill = 'currentColor', className = '', }) => { return ( {text} ); }; export default SvgTextLogo;