Merge version_1 into main #3

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

View File

@@ -7,7 +7,7 @@ interface SvgTextLogoProps {
fontWeight?: number | string;
letterSpacing?: number;
textAnchor?: 'start' | 'middle' | 'end';
dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'hanging' | 'mathematical';
dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'central' | 'middle' | 'text-after-edge' | 'text-before-edge' | 'use-script' | 'no-change' | 'reset-size';
fill?: string;
stroke?: string;
strokeWidth?: number;
@@ -42,7 +42,7 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
fontWeight={fontWeight}
letterSpacing={letterSpacing}
textAnchor={textAnchor}
dominantBaseline={dominantBaseline}
dominantBaseline={dominantBaseline as any}
fill={fill}
stroke={stroke}
strokeWidth={strokeWidth}