import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: number | string; letterSpacing?: number; fill?: string; strokeWidth?: number; stroke?: string; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 48, fontWeight = 700, letterSpacing = 0, fill = 'currentColor', strokeWidth = 0, stroke = 'none', }) => { const textLength = text.length; const estimatedWidth = textLength * (fontSize * 0.6); const padding = 20; const width = estimatedWidth + padding * 2; const height = fontSize * 1.5; return ( {text} ); }; export default SvgTextLogo;