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