diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index c4231e2..9115d39 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -10,7 +10,7 @@ interface SvgTextLogoProps { strokeWidth?: number; stroke?: string; textAnchor?: 'start' | 'middle' | 'end'; - dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'central' | 'hanging' | 'mathematical' | 'ideographic' | 'lower' | 'upper'; + 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 = ({ @@ -23,7 +23,7 @@ const SvgTextLogo: React.FC = ({ strokeWidth = 0, stroke = 'none', textAnchor = 'middle', - dominantBaseline = 'middle', + dominantBaseline = 'central', }) => { return (