import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: string; letterSpacing?: string; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 48, fontWeight = '700', letterSpacing = '-0.02em', }) => { return ( {text} ); }; export default SvgTextLogo;