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