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