import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: 'normal' | 'bold' | 'lighter' | number; fill?: string; dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'mathematical' | 'central'; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 24, fontWeight = 'bold', fill = 'currentColor', dominantBaseline = 'middle', }) => { return ( {text} ); }; export default SvgTextLogo;