diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index c5ce604..ab2fcd2 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -13,11 +13,18 @@ interface SvgTextLogoProps { textAnchor?: "start" | "middle" | "end"; dominantBaseline?: | "auto" - | "baseline" - | "middle" + | "inherit" + | "alphabetic" | "hanging" + | "ideographic" | "mathematical" - | "central"; + | "text-before-edge" + | "middle" + | "central" + | "text-after-edge" + | "use-script" + | "no-change" + | "reset-size"; fill?: string; stroke?: string; strokeWidth?: number;