import React from 'react'; interface SvgTextLogoProps { text: string; fontSize?: number; fontFamily?: string; fontWeight?: string | number; fill?: string; className?: string; dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } const SvgTextLogo: React.FC = ({ text, fontSize = 48, fontFamily = 'Arial', fontWeight = 'bold', fill = '#000000', className = '', dominantBaseline = 'middle', }) => { return ( {text} ); }; export default SvgTextLogo;