import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontFamily?: string; fill?: string; dominantBaseline?: 'auto' | 'hanging' | 'middle' | 'central' | 'text-after-edge' | 'ideographic' | 'mathematical'; } const SvgTextLogo: React.FC = ({ text, className, fontSize = 24, fontFamily = 'Arial, sans-serif', fill = 'currentColor', dominantBaseline = 'middle', }) => { return ( {text} ); }; export default SvgTextLogo;