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