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

This commit is contained in:
2026-03-11 04:06:42 +00:00
parent 5f194bd1b7
commit f38d2b28b3

View File

@@ -6,7 +6,7 @@ interface SvgTextLogoProps {
fontFamily?: string;
fontWeight?: number;
fill?: string;
dominantBaseline?: 'auto' | 'baseline' | 'text-bottom' | 'alphabetic' | 'ideographic' | 'middle' | 'central' | 'mathematical' | 'hanging' | 'text-top';
dominantBaseline?: 'auto' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'middle' | 'central' | 'text-after-edge' | 'use-script' | 'no-change' | 'reset-size';
textAnchor?: 'start' | 'middle' | 'end';
}