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