import React, { ReactNode } from "react"; interface SvgTextLogoProps { children?: ReactNode; className?: string; textClassName?: string; 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 = ({ children, className = "", textClassName = "", dominantBaseline = "middle" }) => { return ( {children || "Logo"} ); }; export default SvgTextLogo;