Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx

This commit is contained in:
2026-03-12 21:59:36 +00:00
parent d139b06a0e
commit 31cec5cbe2

View File

@@ -4,12 +4,13 @@ interface SvgTextLogoProps {
children?: ReactNode;
className?: string;
textClassName?: string;
dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "hanging" | "mathematical" | "central" | "middle";
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<SvgTextLogoProps> = ({
children,
className = "", textClassName = "", dominantBaseline = "middle"}) => {
className = "", textClassName = "", dominantBaseline = "middle"
}) => {
return (
<svg
className={`${className}`}