import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: string; fill?: string; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 24, fontWeight = '700', fill = 'currentColor', }) => { const textLength = text.length; const charWidth = fontSize * 0.6; const width = charWidth * textLength + 20; const height = fontSize + 20; return ( {text} ); }; export default SvgTextLogo;