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