diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index a71caa9..78751f1 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -4,12 +4,13 @@ interface SvgTextLogoProps { text: string; className?: string; fillColor?: string; - dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "hanging" | "mathematical"; + 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 = "", fillColor = "currentColor", dominantBaseline = "middle"}) => { + className = "", fillColor = "currentColor", dominantBaseline = "middle" +}) => { return (