Merge version_1 into main #4

Merged
bender merged 1 commits from version_1 into main 2026-03-10 23:07:27 +00:00

View File

@@ -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}
>