diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index cfcf0fa..062012a 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -8,7 +8,6 @@ interface SvgTextLogoProps { fontWeight?: number | string; fill?: string; letterSpacing?: number; - lineHeight?: number; textDecoration?: string; dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size'; } @@ -21,7 +20,6 @@ const SvgTextLogo: React.FC = ({ fontWeight = 700, fill = 'currentColor', letterSpacing = 0, - lineHeight = 1, textDecoration = 'none', dominantBaseline = 'middle', }) => { @@ -39,7 +37,6 @@ const SvgTextLogo: React.FC = ({ fontWeight={fontWeight} fill={fill} letterSpacing={letterSpacing} - lineHeight={lineHeight} textDecoration={textDecoration} dominantBaseline={dominantBaseline} >