import React from 'react'; interface SvgTextLogoProps { text: string; width?: number; height?: number; fontSize?: number; fontWeight?: number | string; fill?: string; className?: string; } const SvgTextLogo: React.FC = ({ text, width = 200, height = 60, fontSize = 32, fontWeight = 'bold', fill = 'currentColor', className = '', }) => { return ( {text} ); }; export default SvgTextLogo;