import React from "react"; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontFamily?: string; fontWeight?: string | number; fill?: string; letterSpacing?: number; } const SvgTextLogo: React.FC = ({ text, className = "", fontSize = 48, fontFamily = "Inter, sans-serif", fontWeight = 600, fill = "currentColor", letterSpacing = 0, }) => { const textLength = text.length; const charWidth = fontSize * 0.5; const width = textLength * charWidth + 20; const height = fontSize + 20; return ( {text} ); }; export default SvgTextLogo;