Merge version_1 into main #4

Merged
bender merged 1 commits from version_1 into main 2026-03-11 06:41:54 +00:00

View File

@@ -10,7 +10,7 @@ interface SvgTextLogoProps {
fill?: string;
x?: number;
y?: number;
dominantBaseline?: "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit";
dominantBaseline?: "auto" | "inherit" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "text-before-edge" | "middle" | "central" | "text-after-edge" | "use-script" | "no-change" | "reset-size";
}
export const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
@@ -21,7 +21,7 @@ export const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
letterSpacing = 0,
fill = "currentColor", x = 0,
y = 0,
dominantBaseline = "middle"}) => {
dominantBaseline = "central"}) => {
return (
<svg
className={className}