import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; textClassName?: string; fontSize?: number; fontWeight?: 'normal' | 'bold' | '700'; fill?: string; textAnchor?: 'start' | 'middle' | 'end'; dominantBaseline?: 'auto' | 'text-after-edge' | 'alphabetic' | 'ideographic' | 'middle' | 'central' | 'mathematical' | 'hanging'; } const SvgTextLogo: React.FC = ({ text, className = '', textClassName = '', fontSize = 48, fontWeight = 'bold', fill = 'currentColor', textAnchor = 'middle', dominantBaseline = 'middle', }) => { return ( {text} ); }; export default SvgTextLogo;