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, sans-serif', fill = '#000000', className = '', }) => { const textLength = text.length; const charWidth = fontSize * 0.6; const width = textLength * charWidth + 40; const height = fontSize + 40; return ( {text} ); }; export default SvgTextLogo;