import React from 'react'; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: number | string; letterSpacing?: number; dominantBaseline?: SVGTextElementAttributes['dominantBaseline']; } const SvgTextLogo: React.FC = ({ text, className = '', fontSize = 48, fontWeight = 'bold', letterSpacing = 2, dominantBaseline = 'hanging', }) => { return ( {text} ); }; export default SvgTextLogo;