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