Merge version_1 into main #3

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

View File

@@ -7,7 +7,7 @@ interface SvgTextLogoProps {
fontWeight?: number | string;
fill?: string;
textAnchor?: 'start' | 'middle' | 'end';
dominantBaseline?: 'auto' | 'baseline' | 'before-edge' | 'hanging' | 'text-top' | 'text-bottom' | 'ideographic' | '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> = ({
@@ -17,7 +17,7 @@ const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
fontWeight = 'bold',
fill = 'currentColor',
textAnchor = 'start',
dominantBaseline = 'hanging'
dominantBaseline = 'auto'
}) => {
return (
<svg