import React from 'react'; interface SvgTextLogoProps { text: string; fontSize?: number; fontWeight?: number | string; letterSpacing?: number; fill?: string; className?: string; [key: string]: any; } const SvgTextLogo: React.FC = ({ text, fontSize = 32, fontWeight = 700, letterSpacing = 2, fill = '#000000', className = '', ...rest }) => { return ( {text} ); }; export default SvgTextLogo;