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