import React, { SVGProps } from 'react'; interface SvgTextLogoProps extends SVGProps { text?: string; fontSize?: number; fontFamily?: string; fontWeight?: number | string; letterSpacing?: number; textAnchor?: 'start' | 'middle' | 'end'; dominantBaseline?: 'auto' | 'middle' | 'hanging'; } const SvgTextLogo: React.FC = ({ text = 'LOGO', fontSize = 48, fontFamily = 'Arial, sans-serif', fontWeight = 'bold', letterSpacing = 2, textAnchor = 'middle', dominantBaseline = 'middle', width = '200', height = '100', viewBox = '0 0 200 100', ...props }) => { return ( {text} ); }; export default SvgTextLogo;