diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 0ab9763..4e85632 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -3,7 +3,7 @@ import React, { SVGProps } from 'react'; interface SvgTextLogoProps extends SVGProps { text?: string; fontSize?: number; - dominantBaseline?: 'auto' | 'baseline' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'central' | 'middle'; + dominantBaseline?: 'auto' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'central' | 'middle'; } const SvgTextLogo = React.forwardRef(