Merge version_1 into main #4

Merged
bender merged 1 commits from version_1 into main 2026-03-11 17:10:35 +00:00

View File

@@ -6,7 +6,7 @@ interface SvgTextLogoProps extends SVGProps<SVGSVGElement> {
fontWeight?: string | number;
fontFamily?: string;
fill?: string;
dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'use-script' | 'no-change' | 'reset-size' | 'inherit';
dominantBaseline?: 'auto' | 'middle' | 'hanging' | 'use-script' | 'no-change' | 'reset-size' | 'inherit' | 'alphabetic' | 'ideographic' | 'mathematical' | 'text-before-edge' | 'central' | 'text-after-edge';
}
export const SvgTextLogo = React.forwardRef<SVGSVGElement, SvgTextLogoProps>(
@@ -17,7 +17,7 @@ export const SvgTextLogo = React.forwardRef<SVGSVGElement, SvgTextLogoProps>(
fontWeight = 'bold',
fontFamily = 'system-ui, -apple-system, sans-serif',
fill = 'currentColor',
dominantBaseline = 'central',
dominantBaseline = 'middle',
viewBox = '0 0 200 60',
width = 200,
height = 60,
@@ -51,4 +51,4 @@ export const SvgTextLogo = React.forwardRef<SVGSVGElement, SvgTextLogoProps>(
}
);
SvgTextLogo.displayName = 'SvgTextLogo';
SvgTextLogo.displayName = 'SvgTextLogo';