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

This commit is contained in:
2026-03-12 11:42:04 +00:00
parent 93b0b9ba78
commit 7a87f8b40d

View File

@@ -1,12 +1,13 @@
import React from 'react';
import type { SVGProps } from 'react';
interface SvgTextLogoProps {
interface SvgTextLogoProps extends SVGProps<SVGTextElement> {
text: string;
className?: string;
fontSize?: number;
fontWeight?: number | string;
letterSpacing?: number;
dominantBaseline?: SVGTextElementAttributes<SVGTextElement>['dominantBaseline'];
dominantBaseline?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({