import React from 'react'; interface SvgTextLogoProps { text: string; size?: number; fill?: string; fontFamily?: string; fontSize?: number; fontWeight?: number | string; letterSpacing?: number; className?: string; } export const SvgTextLogo: React.FC = ({ text, size = 200, fill = 'currentColor', fontFamily = 'system-ui, -apple-system, sans-serif', fontSize = 24, fontWeight = 700, letterSpacing = 0, className = '', }) => { return ( {text} ); }; export default SvgTextLogo;