diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 57b4600..214e5d6 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -3,7 +3,7 @@ import React, { SVGProps } from "react"; interface SvgTextLogoProps extends SVGProps { text?: string; fontSize?: number; - dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top" | undefined; + dominantBaseline?: "auto" | "alphabetic" | "hanging" | "ideographic" | "middle" | "central" | "mathematical" | undefined; } const SvgTextLogo = React.forwardRef(