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