import React from "react"; interface SvgTextLogoProps { text: string; fontSize?: number; fontWeight?: number; fill?: string; className?: string; } export const SvgTextLogo: React.FC = ({ text, fontSize = 24, fontWeight = 700, fill = "currentColor", className, }) => { const textWidth = text.length * (fontSize * 0.6); const viewBoxWidth = textWidth + 40; const viewBoxHeight = fontSize + 20; return ( {text} ); }; export default SvgTextLogo;