Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-03-11 03:53:38 +00:00

View File

@@ -7,13 +7,14 @@ interface SvgTextLogoProps {
fontWeight?: number | string;
fill?: string;
textAnchor?: "start" | "middle" | "end";
dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging";
dominantBaseline?: "auto" | "text-after-edge" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging";
}
const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className = "", fontSize = 24,
fontWeight = "bold", fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle"}) => {
fontWeight = "bold", fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle"
}) => {
return (
<svg
viewBox="0 0 200 50"