Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-03-11 03:51:24 +00:00

View File

@@ -4,7 +4,7 @@ interface SvgTextLogoProps {
text: string;
className?: string;
fontSize?: number;
dominantBaseline?: SVGTextElement['dominantBaseline'];
dominantBaseline?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
textAnchor?: 'start' | 'middle' | 'end';
fill?: string;
fontWeight?: number | string;
@@ -34,7 +34,7 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
fontSize={fontSize}
fontWeight={fontWeight}
fontFamily={fontFamily}
dominantBaseline={dominantBaseline}
dominantBaseline={dominantBaseline as any}
textAnchor={textAnchor}
fill={fill}
>