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