Merge version_1 into main #4
@@ -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<SvgTextLogoProps> = ({
|
||||
fontWeight = 700,
|
||||
fill = 'currentColor',
|
||||
letterSpacing = 0,
|
||||
lineHeight = 1,
|
||||
textDecoration = 'none',
|
||||
dominantBaseline = 'middle',
|
||||
}) => {
|
||||
@@ -39,7 +37,6 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
|
||||
fontWeight={fontWeight}
|
||||
fill={fill}
|
||||
letterSpacing={letterSpacing}
|
||||
lineHeight={lineHeight}
|
||||
textDecoration={textDecoration}
|
||||
dominantBaseline={dominantBaseline}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user