import React from 'react'; interface SvgTextLogoProps { text: string; fontSize?: number; fontFamily?: string; fill?: string; className?: string; } export const SvgTextLogo: React.FC = ({ text, fontSize = 48, fontFamily = 'Arial, sans-serif', fill = '#000000', className, }) => { return ( {text} ); }; export default SvgTextLogo;