import React from 'react'; interface SvgTextLogoProps { text?: string; className?: string; textClassName?: string; } const SvgTextLogo = React.forwardRef(( { text = 'Webild', className = 'w-24 h-auto', textClassName = 'text-2xl font-bold' }, ref ) => { return ( {text} ); }); SvgTextLogo.displayName = 'SvgTextLogo'; export default SvgTextLogo;