Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-03-12 10:53:57 +00:00

View File

@@ -3,7 +3,7 @@ import React from 'react';
interface SvgTextLogoProps {
text: string;
className?: string;
dominantBaseline?: 'auto' | 'text-bottom' | 'alphabetic' | 'ideographic' | 'middle' | 'central' | 'mathematical' | 'hanging' | 'text-top' | 'text-before-edge' | 'text-after-edge';
dominantBaseline?: 'auto' | 'text-bottom' | 'alphabetic' | 'ideographic' | 'middle' | 'central' | 'mathematical' | 'hanging' | 'text-before-edge' | 'text-after-edge';
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({ text, className = '', dominantBaseline = 'middle' }) => {