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