diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index b98d472..10f77b2 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -7,7 +7,7 @@ interface SvgTextLogoProps { letterSpacing?: number; className?: string; fill?: string; - dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'central' | 'mathematical' | 'inherit'; + dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'central' | 'mathematical' | 'inherit' | 'alphabetic' | 'ideographic' | 'text-before-edge' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } const SvgTextLogo: React.FC = ({ @@ -29,7 +29,7 @@ const SvgTextLogo: React.FC = ({ x="50%" y="50%" textAnchor="middle" - dominantBaseline={dominantBaseline} + dominantBaseline={dominantBaseline as any} fontSize={fontSize} fontWeight={fontWeight} letterSpacing={letterSpacing}