Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-03-13 03:47:35 +00:00

View File

@@ -6,7 +6,7 @@ interface SvgTextLogoProps {
fontSize?: number;
fontWeight?: number | string;
letterSpacing?: number;
dominantBaseline?: 'auto' | 'baseline' | 'before-edge' | 'after-edge' | 'central' | 'ideographic' | 'hanging' | 'mathematical' | 'inherit';
dominantBaseline?: 'auto' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size' | 'inherit';
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
@@ -29,7 +29,7 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
fontSize={fontSize}
fontWeight={fontWeight}
letterSpacing={letterSpacing}
dominantBaseline={dominantBaseline === 'text-before-edge' ? 'before-edge' : dominantBaseline}
dominantBaseline={dominantBaseline === 'text-before-edge' ? 'text-before-edge' : dominantBaseline}
fill="currentColor"
>
{text}