import React from "react"; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: "normal" | "bold" | "lighter" | "bolder" | number; letterSpacing?: number; } export const SvgTextLogo: React.FC = ({ text, className = "", fontSize = 48, fontWeight = "bold", letterSpacing = 2, }) => { return ( {text} ); };