diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 928cb74..868f5fe 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -6,12 +6,13 @@ interface SvgTextLogoProps { text: string; className?: string; textClassName?: string; - dominantBaseline?: "auto" | "baseline" | "before-edge" | "hanging" | "mathematical" | "central" | "middle" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "inherit"; + dominantBaseline?: "auto" | "text-before-edge" | "hanging" | "mathematical" | "central" | "middle" | "text-after-edge" | "ideographic" | "alphabetic" | "inherit" | "use-script" | "no-change" | "reset-size"; } export const SvgTextLogo = ({ text, - className = "", textClassName = "", dominantBaseline = "central"}: SvgTextLogoProps) => { + className = "", textClassName = "", dominantBaseline = "central" +}: SvgTextLogoProps) => { return (