import React from "react"; interface SvgTextLogoProps { text: string; className?: string; fontSize?: number; fontWeight?: number | string; fill?: string; dominantBaseline?: "auto" | "middle" | "hanging" | "text-bottom" | "alphabetic" | "central" | "mathematical" | "text-top" | "ideographic"; } const SvgTextLogo: React.FC = ({ text, className = "", fontSize = 48, fontWeight = 700, fill = "currentColor", dominantBaseline = "middle"}) => { return ( {text} ); }; export default SvgTextLogo;