import React, { SVGProps } from 'react'; interface SvgTextLogoProps extends SVGProps { text?: string; className?: string; } export const SvgTextLogo: React.FC = ({ text = 'Webild', className = '', ...props }) => { return ( {text} ); }; export default SvgTextLogo;