import React from 'react'; interface SvgTextLogoProps { text: string; fontSize?: number; fontFamily?: string; fontWeight?: string | number; className?: string; textClassName?: string; } const SvgTextLogo: React.FC = ({ text, fontSize = 48, fontFamily = 'system-ui, -apple-system, sans-serif', fontWeight = 'bold', className = '', textClassName = '', }) => { const padding = 20; const estimatedWidth = text.length * (fontSize * 0.6) + padding * 2; const estimatedHeight = fontSize + padding * 2; return ( {text} ); }; export default SvgTextLogo;