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