Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx

This commit is contained in:
2026-03-11 08:31:12 +00:00
parent 0659569f4e
commit be1265c68e

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