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