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