import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontFamily?: string; fontWeight?: string | number; letterSpacing?: number; textAnchor?: 'start' | 'middle' | 'end'; dominantBaseline?: 'auto' | 'middle' | 'hanging'; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 48, fontFamily = 'inherit', fontWeight = 700, letterSpacing = 0, textAnchor = 'middle', dominantBaseline = 'middle', }) => { return ( {text} ); }; export default SvgTextLogo;