import React, { SVGProps } from 'react'; interface SvgTextLogoProps extends SVGProps { text?: string; fontSize?: number; fontFamily?: string; fill?: string; className?: string; } const SvgTextLogo = React.forwardRef( ( { text = 'WEBILD', fontSize = 48, fontFamily = 'Arial, sans-serif', fill = '#000000', className = '', ...props }, ref ) => { return ( {text} ); } ); SvgTextLogo.displayName = 'SvgTextLogo'; export default SvgTextLogo;