diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 7300fe6..bf1e2ce 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,10 +1,10 @@ import React, { SVGProps } from 'react'; -interface SvgTextLogoProps extends SVGProps { +interface SvgTextLogoProps extends Omit, 'dominantBaseline'> { text?: string; fontSize?: number; fill?: string; - dominantBaseline?: 'auto' | 'before-edge' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'central' | 'after-edge' | 'text-after-edge'; + dominantBaseline?: 'auto' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'central' | 'text-after-edge'; } const SvgTextLogo = React.forwardRef(