import React from "react"; interface SvgTextLogoProps { text?: string; className?: string; textClassName?: string; ariaLabel?: string; } const SvgTextLogo = React.forwardRef( ( { text = "Webild", className = "", textClassName = "", ariaLabel }, ref ) => { const textLength = text.length; const charWidth = 50; const viewBoxWidth = textLength * charWidth + 20; return ( {text} ); } ); SvgTextLogo.displayName = "SvgTextLogo"; export default SvgTextLogo;