import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; x?: number; y?: number; fontSize?: number; fontFamily?: string; fontWeight?: string | number; fill?: string; textAnchor?: 'start' | 'middle' | 'end'; dominantBaseline?: 'auto' | 'middle' | 'central' | 'hanging'; } const SvgTextLogo: React.FC = ({ text, className, x = 0, y = 0, fontSize = 24, fontFamily = 'Arial, sans-serif', fontWeight = 'bold', fill = 'currentColor', textAnchor = 'middle', dominantBaseline = 'central', }) => { return ( {text} ); }; export default SvgTextLogo;