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

This commit is contained in:
2026-03-12 17:06:32 +00:00
parent dfdb40bcbc
commit 5e33e3f67d

View File

@@ -7,7 +7,7 @@ interface SvgTextLogoProps {
fontFamily?: string;
fontWeight?: number;
letterSpacing?: number;
dominantBaseline?: 'auto' | 'text-top' | 'hanging' | 'middle' | 'central' | 'ideographic' | 'mathematical' | 'inherit';
dominantBaseline?: 'auto' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'central' | 'text-before-edge' | 'text-after-edge' | 'inherit';
textAnchor?: 'start' | 'middle' | 'end' | 'inherit';
}