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