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