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