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