import React from "react"; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontFamily?: string; fontWeight?: number | string; letterSpacing?: number; fill?: string; x?: number; y?: number; dominantBaseline?: "auto" | "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size"; } export const SvgTextLogo: React.FC = ({ text, className, fontSize = 32, fontFamily = "serif", fontWeight = 400, letterSpacing = 0, fill = "currentColor", x = 0, y = 0, dominantBaseline = "central"}) => { return ( {text} ); }; export default SvgTextLogo;