Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-03-13 01:08:34 +00:00

View File

@@ -4,7 +4,7 @@ export interface SvgTextLogoProps extends SVGProps<SVGSVGElement> {
text?: string;
fontSize?: number;
fontWeight?: number | string;
dominantBaseline?: 'auto' | 'text-bottom' | 'alphabetic' | 'ideographic' | 'middle' | 'central' | 'mathematical' | 'hanging' | 'text-top';
dominantBaseline?: 'auto' | 'alphabetic' | 'hanging' | 'ideographic' | 'mathematical' | 'middle' | 'central' | 'text-before-edge' | 'text-after-edge';
}
const SvgTextLogo = React.forwardRef<SVGSVGElement, SvgTextLogoProps>(