diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 3e646e5..4474a91 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -5,13 +5,14 @@ interface SvgTextLogoProps { className?: string; fontSize?: number; fontWeight?: string | number; - dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging"; + dominantBaseline?: "auto" | "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size"; } const SvgTextLogo: React.FC = ({ text, className = "", fontSize = 48, - fontWeight = "bold", dominantBaseline = "middle"}) => { + fontWeight = "bold", dominantBaseline = "middle" +}) => { return (