import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: number | string; letterSpacing?: number; dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'ideographic' | 'mathematical' | 'central'; } export const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 48, fontWeight = 700, letterSpacing = 2, dominantBaseline = 'middle', }) => { const textLength = text.length; const charWidth = fontSize * 0.6; const width = textLength * charWidth + 40; const height = fontSize + 40; return ( {text} ); }; export default SvgTextLogo;