diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index e2c1cd5..9f8524c 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -4,11 +4,10 @@ interface SvgTextLogoProps { text?: string; className?: string; textClassName?: string; - dominantBaseline?: SVGTextElement['dominantBaseline']; } const SvgTextLogo = React.forwardRef(( - { text = 'Webild', className = 'w-24 h-auto', textClassName = 'text-2xl font-bold', dominantBaseline = 'middle' }, + { text = 'Webild', className = 'w-24 h-auto', textClassName = 'text-2xl font-bold' }, ref ) => { return ( @@ -21,7 +20,7 @@ const SvgTextLogo = React.forwardRef((