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