import React from 'react'; interface SvgTextLogoProps { text: string; fontSize?: number; fontFamily?: string; fill?: string; className?: string; } const SvgTextLogo: React.FC = ({ text, fontSize = 32, fontFamily = 'Arial', fill = '#000000', className = '', }) => { return ( {text} ); }; export default SvgTextLogo;