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