import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontFamily?: string; fontWeight?: number | string; letterSpacing?: number; fill?: string; strokeWidth?: number; stroke?: string; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 48, fontFamily = 'Arial, sans-serif', fontWeight = 'bold', letterSpacing = 0, fill = 'currentColor', strokeWidth = 0, stroke = 'none', }) => { return ( {text} ); }; export default SvgTextLogo;