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