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

This commit is contained in:
2026-03-11 17:10:00 +00:00
parent 89785c716b
commit e4561d10dd

View File

@@ -6,7 +6,7 @@ interface SvgTextLogoProps extends SVGProps<SVGSVGElement> {
fontWeight?: string | number;
fontFamily?: string;
fill?: string;
dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'text-top' | 'text-bottom' | 'central' | 'mathematical' | 'inherit';
dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'use-script' | 'no-change' | 'reset-size' | 'inherit';
}
export const SvgTextLogo = React.forwardRef<SVGSVGElement, SvgTextLogoProps>(