Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-03-10 20:20:55 +00:00

View File

@@ -1,6 +1,6 @@
import { SVGProps } from 'react';
type DominantBaseline = 'auto' | 'baseline' | 'before-edge' | 'hanging' | 'ideographic' | 'alphabetic' | 'central' | 'mathematical' | 'use-script' | 'no-change' | 'reset-size' | 'inherit';
type DominantBaseline = 'auto' | 'before-edge' | 'hanging' | 'ideographic' | 'alphabetic' | 'central' | 'mathematical' | 'use-script' | 'no-change' | 'reset-size' | 'inherit';
interface SvgTextLogoProps extends SVGProps<SVGSVGElement> {
text?: string;
@@ -17,7 +17,7 @@ export default function SvgTextLogo({
fontWeight = 'bold',
fill = 'currentColor',
fontFamily = 'system-ui, -apple-system, sans-serif',
dominantBaseline = 'middle',
dominantBaseline = 'central',
...props
}: SvgTextLogoProps) {
return (