diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f127805..9de49dd 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -8,14 +8,15 @@ interface SvgTextLogoProps { fontWeight?: number | string; fill?: string; textAnchor?: "start" | "middle" | "end"; - dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top"; + dominantBaseline?: "auto" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size"; } const SvgTextLogo: React.FC = ({ text, className = "", fontSize = 24, fontFamily = "Arial, sans-serif", fontWeight = 700, - fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle"}) => { + fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle" +}) => { return (