diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 5b2e16a..202102a 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -7,7 +7,7 @@ interface SvgTextLogoProps { fontWeight?: number | string; letterSpacing?: number; textAnchor?: 'start' | 'middle' | 'end'; - dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'hanging' | 'mathematical'; + dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'central' | 'middle' | 'text-after-edge' | 'text-before-edge' | 'use-script' | 'no-change' | 'reset-size'; fill?: string; stroke?: string; strokeWidth?: number; @@ -42,7 +42,7 @@ const SvgTextLogo: React.FC = ({ fontWeight={fontWeight} letterSpacing={letterSpacing} textAnchor={textAnchor} - dominantBaseline={dominantBaseline} + dominantBaseline={dominantBaseline as any} fill={fill} stroke={stroke} strokeWidth={strokeWidth}