import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; width?: number; height?: number; } const SvgTextLogo: React.FC = ({ text, className = '', width = 200, height = 100, }) => { return ( {text} ); }; export default SvgTextLogo;