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