diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 465a6eb..a99506f 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -7,13 +7,14 @@ interface SvgTextLogoProps { fontWeight?: number | string; fill?: string; textAnchor?: "start" | "middle" | "end"; - dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging"; + dominantBaseline?: "auto" | "text-after-edge" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging"; } const SvgTextLogo: React.FC = ({ text, className = "", fontSize = 24, - fontWeight = "bold", fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle"}) => { + fontWeight = "bold", fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle" +}) => { return (