Merge version_1 into main #6

Merged
bender merged 1 commits from version_1 into main 2026-03-10 20:20:56 +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 (