Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-11 12:58:42 +00:00

View File

@@ -7,7 +7,7 @@ interface SvgTextLogoProps {
letterSpacing?: number;
className?: string;
fill?: string;
dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'central' | 'mathematical' | 'inherit';
dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'central' | 'mathematical' | 'inherit' | 'alphabetic' | 'ideographic' | 'text-before-edge' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size';
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
@@ -29,7 +29,7 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
x="50%"
y="50%"
textAnchor="middle"
dominantBaseline={dominantBaseline}
dominantBaseline={dominantBaseline as any}
fontSize={fontSize}
fontWeight={fontWeight}
letterSpacing={letterSpacing}