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

This commit is contained in:
2026-03-11 02:45:33 +00:00
parent e6e5ddf763
commit 54af3d3ec5

View File

@@ -6,7 +6,7 @@ interface SvgTextLogoProps extends SVGAttributes<SVGSVGElement> {
fontFamily?: string;
fontWeight?: number | string;
letterSpacing?: number;
dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top";
dominantBaseline?: "auto" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "middle" | "central" | "text-before-edge" | "text-after-edge" | "use-script" | "no-change" | "reset-size" | "inherit";
}
const SvgTextLogo = React.forwardRef<SVGSVGElement, SvgTextLogoProps>(