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