import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; } const SvgTextLogo: React.FC = ({ text, className = '' }) => { const textLength = text.length; const charWidth = 60; const width = textLength * charWidth + 40; const height = 120; return ( {text} ); }; export default SvgTextLogo;