Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-11 08:31:16 +00:00

View File

@@ -10,7 +10,7 @@ interface SvgTextLogoProps {
strokeWidth?: number;
stroke?: string;
textAnchor?: 'start' | 'middle' | 'end';
dominantBaseline?: 'auto' | 'baseline' | 'middle' | 'central' | 'hanging' | 'mathematical' | 'ideographic' | 'lower' | 'upper';
dominantBaseline?: 'auto' | 'inherit' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size';
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
@@ -23,7 +23,7 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
strokeWidth = 0,
stroke = 'none',
textAnchor = 'middle',
dominantBaseline = 'middle',
dominantBaseline = 'central',
}) => {
return (
<svg